Crate md5[][src]

An implementation of the MD5 cryptographic hash algorithm.

Usage

use md5::{Md5, Digest};

// create a Md5 hasher instance
let mut hasher = Md5::new();

// process input message
hasher.input(b"hello world");

// acquire hash digest in the form of GenericArray,
// which in this case is equivalent to [u8; 16]
let result = hasher.result();
assert_eq!(result[..], hex!("5eb63bbbe01eeed093cb22bb8f5acdc3"));

Also see RustCrypto/hashes readme.

Re-exports

pub extern crate digest;

Structs

Md5

The MD5 hasher

Traits

Digest

The Digest trait specifies an interface common for digest functions.