We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3821aa3 commit 1421be4Copy full SHA for 1421be4
bip-0374/run_test_vectors.py
@@ -23,7 +23,6 @@
23
next(reader)
24
for row in reader:
25
(index, point_G_hex, seckey_a_hex, point_B_hex, aux_rand_hex, msg_hex, result_str, comment) = row
26
- print(seckey_a_hex)
27
G = GE() if point_G_hex == 'INFINITY' else GE.from_bytes(bytes.fromhex(point_G_hex))
28
a = int.from_bytes(bytes.fromhex(seckey_a_hex), 'big')
29
B = GE() if point_B_hex == 'INFINITY' else GE.from_bytes(bytes.fromhex(point_B_hex))
0 commit comments