Browse Source

Update crypto-primitives/src/nizk/groth16/mod.rs

Co-Authored-By: Pratyush Mishra <pratyushmishra@berkeley.edu>
master
Kobi Gurkan 5 years ago
committed by Pratyush Mishra
parent
commit
d292f637aa
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      crypto-primitives/src/nizk/groth16/mod.rs

+ 1
- 1
crypto-primitives/src/nizk/groth16/mod.rs

@ -74,7 +74,7 @@ impl, V: ToConstraintField
input: &Self::VerifierInput, input: &Self::VerifierInput,
proof: &Self::Proof, proof: &Self::Proof,
) -> Result<bool, Error> { ) -> Result<bool, Error> {
let verify_time = start_timer!(|| "{Groth-Maller 2017}::Verify");
let verify_time = start_timer!(|| "{Groth 2016}::Verify");
let conversion_time = start_timer!(|| "Convert input to E::Fr"); let conversion_time = start_timer!(|| "Convert input to E::Fr");
let input = input.to_field_elements()?; let input = input.to_field_elements()?;
end_timer!(conversion_time); end_timer!(conversion_time);

Loading…
Cancel
Save