tiny_keccak

Trait IntoXof

Source
pub trait IntoXof {
    type Xof: Xof;

    // Required method
    fn into_xof(self) -> Self::Xof;
}
Expand description

A trait used to convert Hasher into it’s Xof counterpart.

§Example

let xof = hasher.into_xof();

Required Associated Types§

Source

type Xof: Xof

A type implementing Xof, eXtendable-output function interface.

Required Methods§

Source

fn into_xof(self) -> Self::Xof

A method used to convert type into Xof.

Implementors§