arkworks-rs / groth16

A Rust implementation of the Groth16 zkSNARK
https://www.arkworks.rs
Apache License 2.0
242 stars 97 forks source link

Does it support BN curve? #49

Closed VegeBun-csj closed 1 year ago

VegeBun-csj commented 1 year ago

it support bn128 or bn256 curve?

mmagician commented 1 year ago

Yes, it is generic over pairing-friendly curves. You can see an example here. In the case of bn254 (I assume you mean that one, see here), you'd replace the bls part with Bn254 from the arkworks-rs/curves.