Macro sha384

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

Calculate SHA384 hash.

You should add sha2 = "0.10" to your Cargo.toml.

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

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