md5

Macro md5 

Source
macro_rules! md5 {
    ($($tt:tt)*) => { ... };
}
Expand description

Calculate MD5 hash.

You should add md-5 = "0.10" to your Cargo.toml.

Just a shortcut for calc_hash!(MD5: ...), see [calc_hash] for more details. Here are some examples:

// General usage, multiple params supported
md5!("hello", "world")
// Iterator is supported
md5!(ITER => ["hello", "world"])
// Uppercase
md5!(UPPERCASE => "hello", "world")
// Combine them
md5!(UPPERCASE; ITER => ["hello", "world"])