[][src]Trait tiny_keccak::IntoXof

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

A type implementing Xof, eXtendable-output function interface.

Loading content...

Required methods

fn into_xof(self) -> Self::Xof

A method used to convert type into Xof.

Loading content...

Implementors

impl IntoXof for Kmac[src]

type Xof = KmacXof

impl IntoXof for ParallelHash[src]

type Xof = ParallelHashXof

impl IntoXof for TupleHash[src]

impl<T: AsRef<[u8]>> IntoXof for KangarooTwelve<T>[src]

Loading content...