1 2 3 4 5 6 7 8 9 10 11 12
// Helper functions #[cfg(feature = "block")] pub mod block; // Fixed size digest of byte arrays #[cfg(feature = "digest")] pub mod digest; // Same-length hash of byte arrays #[cfg(feature = "hash")] pub mod hash; #[cfg(test)] mod tests;