aboutsummaryrefslogtreecommitdiffhomepage
path: root/pyecsca
diff options
context:
space:
mode:
authorJ08nY2024-01-10 16:29:57 +0100
committerJ08nY2024-01-10 16:29:57 +0100
commitd36649c3b665c5341b411f735f0f4e84f331d1be (patch)
treedf6f1f6d20d6126c4e9e85cf5a192afecf985aec /pyecsca
parenta1741a558997ba49d132b0f47998ed4ef9ffab22 (diff)
downloadpyecsca-d36649c3b665c5341b411f735f0f4e84f331d1be.tar.gz
pyecsca-d36649c3b665c5341b411f735f0f4e84f331d1be.tar.zst
pyecsca-d36649c3b665c5341b411f735f0f4e84f331d1be.zip
Bump notebook repo.
Diffstat (limited to 'pyecsca')
-rw-r--r--pyecsca/sca/re/zvp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyecsca/sca/re/zvp.py b/pyecsca/sca/re/zvp.py
index c71ace8..6b1beac 100644
--- a/pyecsca/sca/re/zvp.py
+++ b/pyecsca/sca/re/zvp.py
@@ -431,7 +431,7 @@ def zvp_points(poly: Poly, curve: EllipticCurve, k: int, n: int) -> Set[Point]:
:param curve: The curve to compute over.
:param k: The discrete-log relationship between the two points, i.e. (x2, x2) = [k](x1, x1)
:param n: The curve order.
- :return: The set of points (x1, x1).
+ :return: The set of points (x1, y1).
"""
# If input poly is trivial (only in params), abort early
if not set(symbols("x1,x2,y1,y2")).intersection(poly.gens): # type: ignore[attr-defined]