From ae962289131f593f12a77fcae6d90971853c9d25 Mon Sep 17 00:00:00 2001 From: Jonas Nick Date: Tue, 20 Aug 2019 10:53:58 +0000 Subject: [PATCH] Update bip-schnorr/test-vectors.py Co-Authored-By: Tim Ruffing --- bip-schnorr/test-vectors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bip-schnorr/test-vectors.py b/bip-schnorr/test-vectors.py index 5088400d..45c8b1ca 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)