[][src]Struct tiny_keccak::TupleHashXof

pub struct TupleHashXof { /* fields omitted */ }

The TupleHashXOF extendable-output functions defined in SP800-185.

Usage

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

Example

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

TupleHashXof can be created only by using TupleHash::IntoXof interface.

Trait Implementations

impl Xof for TupleHashXof[src]

impl Clone for TupleHashXof[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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