1
2
3
4
5
6
7
8
9
10
/// Cryptography module
pub mod crypto;

#[cfg(feature = "rand")]
pub use crypto::generate_random_string;

#[cfg(feature = "hash")]
pub use crypto::generate_hash;
#[cfg(feature = "hash")]
pub use crypto::verify_hash;