Function sha3_256

Source
pub fn sha3_256(input: &[u8]) -> [u8; 32]
Expand description

Computes the SHA-3 hash of the input data.

§Arguments

  • input - A byte slice containing the data to hash.

§Returns

A fixed-size array containing the hash output.