1 2 3 4 5 6 7 8 9 10
//! Cryptography backends, providing hash function implementations. #[cfg(feature = "backend-boringssl")] pub mod boringssl; #[cfg(feature = "backend-openssl")] pub mod openssl; #[cfg(feature = "backend-rustcrypto")] pub mod rustcrypto;