Expand description
An implementation of the MD4 cryptographic hash algorithm.
§Usage
use md4::{Md4, Digest};
use hex_literal::hex;
// create a Md4 hasher instance
let mut hasher = Md4::new();
// process input message
hasher.update(b"hello world");
// acquire hash digest in the form of GenericArray,
// which in this case is equivalent to [u8; 16]
let result = hasher.finalize();
assert_eq!(result[..], hex!("aa010fbc1d14c795d86ef98c95479d17"));
Also see RustCrypto/hashes readme.
Re-exports§
pub use digest;
Structs§
Traits§
- Convenience wrapper trait covering functionality of cryptographic hash functions with fixed output size.
Type Aliases§
- MD4 hasher state.