arkworks-rs / groth16

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

feat: prove with matrices #35

Closed gakonst closed 3 years ago

gakonst commented 3 years ago

Problem

Previously, we could not pre-load the Constraint Matrices (e.g. such as in the case of SnarkJS outputting ZKey files containing the coeffs). This PR enables this

How