//! A collection of constant words for each of the different SHA-2 variations
//! To use the SHA-2 algorithm with different constants you can implement the [Constants] trait
/// Implement this for your constants to be used in the SHA-2 algorithm
/// Note that the SHA-256 algorithm uses a list of 64 constant `u32` words.
/// The SHA-512 algorithm uses a list of 80 constant `u64` words.
pub use Sha256Constants as Sha256;
pub use Sha224Constants as Sha224;
pub use Sha512Constants as Sha512;
pub use Sha384Constants as Sha384;