summaryrefslogtreecommitdiff
path: root/bip-schnorr
diff options
context:
space:
mode:
authorJonas Nick <jonasd.nick@gmail.com>2019-08-20 10:53:58 +0000
committerPieter Wuille <pieter.wuille@gmail.com>2020-01-19 14:47:33 -0800
commita67e5e323ca31aba1e525326462956d7e6e785b1 (patch)
tree792955a7b57eab4c4f929b4118d60a7c81d597ea /bip-schnorr
parent5da30bd5688df5738afa157db877797f5cf480dd (diff)
downloadbips-a67e5e323ca31aba1e525326462956d7e6e785b1.tar.xz
Update bip-schnorr/test-vectors.py
Co-Authored-By: Tim Ruffing <tim@timruffing.de>
Diffstat (limited to 'bip-schnorr')
-rw-r--r--bip-schnorr/test-vectors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bip-schnorr/test-vectors.py b/bip-schnorr/test-vectors.py
index 5088400..45c8b1c 100644
--- a/bip-schnorr/test-vectors.py
+++ b/bip-schnorr/test-vectors.py
@@ -30,7 +30,7 @@ def vector2():
msg = bytes_from_int(0x5E2D58D8B3BCDF1ABADEC7829054F90DDA9805AAB56C77333024B9D0A508B75C)
sig = schnorr_sign(msg, seckey)
- # This signature does not verify vector if the implementer would check the
+ # This singature vector would not verify if the implementer checked the
# jacobi symbol of the X coordinate of R instead of the Y coordinate.
R = point_from_bytes(sig[0:32])
assert(jacobi(R[0]) != 1)