Crate md5 [] [src]

The MD5 hash function.

Example

let digest = md5::compute(b"abcdefghijklmnopqrstuvwxyz");
assert_eq!(format!("{:x}", digest), "c3fcd3d76192e4007dfb496cca67e13b");

Structs

Context

A context.

Digest

A digest.

Functions

compute

Compute the digest of data.