macro_rules! md5 {
($($tt:tt)*) => { ... };
}
Expand description
Calculate MD5 hash.
You may add md-5 = "0.10"
to your Cargo.toml
.
Just a shortcut for calc_hash!(MD5: ...)
, see [calc_hash
] for more
details.
// General usage. Multiple params supported.
md5!("hello", "world")