1
2
3
4
5
6
//! This module contains built-in implementations of the [`Hasher`]
//!
//! [`Hasher`]: crate::Hasher
mod sha256;

pub use sha256::Sha256Algorithm as Sha256;