bls12-381 Basic repeated exponentiation test Failing #597
-
I am trying to use the gnark and gnark-crypto library for one of my project. I noticed that the following very basic test is failiing. I am not sure whether I am using the library incorrectly or there are some bugs. Snippet from go-mod
Actual Test where the assertiion fails.
|
Beta Was this translation helpful? Give feedback.
Answered by
ivokub
Mar 23, 2023
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sourav1547
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
assert.Equal
performs byte-by-byte comparison, but you are using Jacobian coordinates. Either normalise to affine coordinates or useEqual
method.