snark-verifier 0.2.3

Generic (S)NARK verifier for Rust, halo2, and EVM. This is a fork of PSE's version.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Hash algorithms.

mod poseidon;

pub use crate::util::hash::poseidon::Poseidon;
#[cfg(feature = "loader_halo2")]
pub(crate) use halo2_base::poseidon::hasher::spec::OptimizedPoseidonSpec;

#[cfg(feature = "loader_evm")]
pub use sha3::{Digest, Keccak256};