You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have noticed that ark_bn254::G1Affine and ark_bn254::G2Affine are not equal themselves after a round trip of converting to and from respective crate::ethereum::G1 and crate::ethereum::G2 types.
I have noticed that
ark_bn254::G1Affine
andark_bn254::G2Affine
are not equal themselves after a round trip of converting to and from respectivecrate::ethereum::G1
andcrate::ethereum::G2
types.Example:
g1
is represented as:GroupAffine { x: Fp256(BigInteger256([0, 0, 0, 0])), y: Fp256(BigInteger256([15230403791020821917, 754611498739239741, 7381016538464732716, 1011752739694698287])), infinity: true }
g1_2
is represented as:GroupAffine { x: Fp256(BigInteger256([0, 0, 0, 0])), y: Fp256(BigInteger256([15230403791020821917, 754611498739239741, 7381016538464732716, 1011752739694698287])), infinity: false }
Similar situation happens with
G2Affine -> G2 -> G2Affine
.The text was updated successfully, but these errors were encountered: