[][src]Trait tiny_keccak::IntoXof

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

Converts Hasher into it's Xof counterpart.

Example

let xof = hasher.into_xof();

Associated Types

type Xof: Xof

Loading content...

Required methods

fn into_xof(self) -> Self::Xof

Loading content...

Implementors

impl IntoXof for CShake[src]

type Xof = CShake

impl IntoXof for Kmac[src]

type Xof = KmacXof

impl IntoXof for ParallelHash[src]

type Xof = ParallelHashXof

impl IntoXof for Shake[src]

type Xof = Shake

impl IntoXof for TupleHash[src]

Loading content...