//! # Crypto
//!
//! `crypto` is the module providing the traits used to implement cryptographic functionalities.
/// Trait implemented by types that implement cryptographic hashing.
/// Trait implemented by types that implement cryptographic signing.
/// Trait implemented by types that implement cryptographic commitment.
/// Trait implemented by types that implement cryptographic authenticated.
/// Trait implemented by types that implement cryptographic proving.
pub use Hash;
pub use Sign;
pub use Commit;
pub use Authenticate;
pub use Prove;