mirror of
https://github.com/arnaucube/ark-curves-cherry-picked.git
synced 2026-01-08 23:11:29 +01:00
Fixes
This commit is contained in:
@@ -57,8 +57,8 @@ fn test_bilinearity() {
|
||||
let b: G2Projective = rng.gen();
|
||||
let s: Fr = rng.gen();
|
||||
|
||||
let sa = a.mul(s);
|
||||
let sb = b.mul(s);
|
||||
let sa = a.mul(s.into_repr());
|
||||
let sb = b.mul(s.into_repr());
|
||||
|
||||
let ans1 = BW6_761::pairing(sa, b);
|
||||
let ans2 = BW6_761::pairing(a, sb);
|
||||
|
||||
Reference in New Issue
Block a user