Trait tiny_keccak::IntoXof[][src]

pub trait IntoXof {
    type Xof: Xof;
    fn into_xof(self) -> Self::Xof;
}
[]

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

Example

let xof = hasher.into_xof();

Associated Types

type Xof: Xof[src][]

A type implementing Xof, eXtendable-output function interface.

Required methods

fn into_xof(self) -> Self::Xof[src][]

A method used to convert type into Xof.

Implementors