Implement pedersen hashes inside and outside of the circuit.

This commit is contained in:
Sean Bowe
2017-12-28 11:06:05 -07:00
parent 07f2e553a7
commit e9c9618ef4
7 changed files with 480 additions and 6 deletions

View File

@@ -5,7 +5,8 @@ pub mod boolean;
pub mod uint32;
pub mod blake2s;
pub mod num;
pub mod mont;
pub mod mont; // TODO: rename
pub mod pedersen_hash;
use bellman::SynthesisError;