sha3-0.7.0 has been yanked.
An implementation of the SHA-3 cryptographic hash algorithms.
There are 6 standard algorithms specified in the SHA-3 standard:
SHA3-224SHA3-256SHA3-384SHA3-512SHAKE128, an extendable output function (XOF)SHAKE256, an extendable output function (XOF)Keccak224,Keccak256,Keccak384,Keccak512(NIST submission without padding changes)
Usage
An example of using SHA3-256 is:
use ;
// create a SHA3-256 object
let mut hasher = default;
// write input message
hasher.input;
// read hash digest
let out = hasher.result;
println!;