Forked from kobigurk/phase2-bn254.
This is a multi-party computation (MPC) ceremony which constructs partial zk-SNARK parameters for all circuits up to a depth of 221. It works by taking a step that is performed by all zk-SNARK MPCs and performing it in just one single ceremony. This makes individual zk-SNARK MPCs much cheaper and allows them to scale to practically unbounded numbers of participants.
This protocol is described in a forthcoming paper. It produces parameters for an adaptation of Jens Groth's 2016 pairing-based proving system using the BLS12-381 elliptic curve construction. The security proof relies on a randomness beacon being applied at the end of the ceremony.
Extended to support Ethereum's BN256 curve and made it easier to change size of the ceremony. In addition proof generation process can be done in memory constrained environments now. Benchmark is around 1.3 Gb
of memory and 3 hours
for a 2^26
power of tau on BN256 curve on my personal laptop
Instructions for a planned ceremony will be posted when everything is tested and finalized.
rustup update # tested on rustup 1.17.0
cargo build
response
file from the previous ceremony to root directory.new_challenge
run:
cargo run --release --bin verify_transform_constrained # this will generate new_challenge from response file
challenge
file:
mv challenge challenge_old
mv response response_old
mv new_challenge challenge
cargo run --release --bin compute_constrained # generate response file
Put your hash from output response to private gist (example: https://gist.github.com/skywinder/c35ab03c66c6b200b33ea2f388a6df89)
Reboot laptop to clean up toxic waste.
Save response
file and give it to the next participant.
Participants of the ceremony sample some randomness, perform a computation, and then destroy the randomness. Only one participant needs to do this successfully to ensure the final parameters are secure. In order to see that this randomness is truly destroyed, participants may take various kinds of precautions:
It is totally up to the participants. In general, participants should beware of side-channel attacks and assume that remnants of the randomness will be in RAM after the computation has finished.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.