RustCrypto: MD4
Pure Rust implementation of the MD4 cryptographic hash algorithm.
Examples
use ;
use hex;
// create a Md4 hasher instance
let mut hasher = new;
// process input message
hasher.update;
// acquire hash digest in the form of Array,
// which in this case is equivalent to [u8; 16]
let hash = hasher.finalize;
assert_eq!;
// Hex-encode hash using https://docs.rs/base16ct
let hex_hash = encode_string;
assert_eq!;
Also, see the examples section in the RustCrypto/hashes readme.
License
The crate is licensed under either of:
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.