[][src]Crate md4

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

Md4

The MD4 hasher

Traits

Digest

The Digest trait specifies an interface common for digest functions.