Closed colinnielsen closed 1 year ago
Pairing has not been implemented on bn254 at this point.
Gotcha, so I would have to create an instance of both curves, and use pairing functions directly?
Yeah, and I don't think bls pairing would work for bn. They are probably different? I didn't do a deep dive though.
I will be using Schnorr aggregate / threshold signatures in this context. I bet I could set up the Cruve
and ProjectivePoint
instances, and do the math manually.
Thanks!
yup
Hello, For context, I am working with the Noir lang and the Aztec protocol, which uses
bn254
andGrumpkin
curves, defined here.How can I set up pairing on
bn254
? I am looking into how to set up a weierstrass instance ofbn254
with aG2
pairing group so I can do aggregation - will this lib allow for that?(amazing work btw, keep it up!)