sha3_circuit/
lib.rs

1//! Implementation of keccak/sha3 hash functions using packed arithmetic
2
3mod constants;
4pub mod instructions;
5#[cfg(not(doctest))]
6pub mod packed_chip;
7pub mod sha3_256_gadget;
8
9/// Number of bytes in a digest of Keccak.
10pub use constants::KECCAK_SQUEEZE_BYTES;