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