[][src]Struct tiny_keccak::KangarooTwelveXof

pub struct KangarooTwelveXof { /* fields omitted */ }

The KangarooTwelve extendable-output function defined here.

Usage

[dependencies]
tiny-keccak = { version = "2.0.0", features = ["k12"] }

Example

let input = b"hello world";
let mut output = [0u8; 64];
let mut hasher = KangarooTwelve::new(b"");
hasher.update(input);
let mut xof = hasher.into_xof();
xof.squeeze(&mut output[..32]);
xof.squeeze(&mut output[32..]);

KangarooTwelveXof can be created only by using KangarooTwelve::IntoXof interface.

Trait Implementations

impl Clone for KangarooTwelveXof[src]

impl Xof for KangarooTwelveXof[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.