Zebra/zebra-consensus/src/primitives.rs

10 lines
338 B
Rust

//! Asynchronous verification of cryptographic primitives.
pub mod groth16;
pub mod redjubjub;
/// The maximum batch size for any of the batch verifiers.
const MAX_BATCH_SIZE: usize = 64;
/// The maximum latency bound for any of the batch verifiers.
const MAX_BATCH_LATENCY: std::time::Duration = std::time::Duration::from_millis(100);