1 2 3 4 5 6 7 8
//! This module contains built-in implementations of the [`Hasher`] //! //! [`Hasher`]: crate::Hasher mod sha256; mod sha384; pub use sha256::Sha256Algorithm as Sha256; pub use sha384::Sha384Algorithm as Sha384;