Trait IntoXof
tiny_keccak
pub trait IntoXof { type Xof: Xof; fn into_xof(self) -> Self::Xof; }
A trait used to convert Hasher into it’s Xof counterpart.
Hasher
Xof
let xof = hasher.into_xof();
type Xof: Xof
A type implementing Xof, eXtendable-output function interface.
fn into_xof(self) -> Self::Xof
A method used to convert type into Xof.