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();
A type implementing Xof, eXtendable-output function interface.
A method used to convert type into Xof.