1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#![deny(unsafe_code)] #![deny(missing_docs)] #![deny(clippy::unwrap_used)] #![deny(clippy::panic)] //! Hash Functions //! //! Cryptographic hash functions (SHA2, SHA3, BLAKE2b). pub mod blake2; pub mod sha2; pub mod sha3; pub use blake2::*; pub use sha2::*; pub use sha3::*;