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