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:
# extern crate hex_literal;
# extern crate sha3;
#
Also see RustCrypto/hashes readme.