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 4da7cf7 commit 89301aaCopy full SHA for 89301aa
main.py
@@ -331,7 +331,7 @@ def case01_add_G1():
331
},
332
{
333
"Input": ""
334
- # G1 point (wrong order)
+ # G1 point (not in correct subgroup)
335
+ int_to_hex(int(G1_not_in_correct_subgroup[0]), 64)
336
+ int_to_hex(int(G1_not_in_correct_subgroup[1]), 64)
337
# G1 point
@@ -481,7 +481,7 @@ def case02_add_G2():
481
482
483
484
- # G2 point (wrong order)
+ # G2 point (not in correct subgroup)
485
+ int_to_hex(int(G2_not_in_correct_subgroup[0].coeffs[0]), 64)
486
+ int_to_hex(int(G2_not_in_correct_subgroup[0].coeffs[1]), 64)
487
+ int_to_hex(int(G2_not_in_correct_subgroup[1].coeffs[0]), 64)
0 commit comments