pub trait Sha3Hash {
    // Required method
    fn hash(&self, hasher: &mut Sha3);
}
Expand description

Values in the MerkleReg must be hasheable with tiny_keccak::Sha3.

Required Methods§

source

fn hash(&self, hasher: &mut Sha3)

Update the hasher with self’s data

Implementors§

source§

impl<T: AsRef<[u8]>> Sha3Hash for T