[][src]Struct tiny_keccak::ParallelHashXof

pub struct ParallelHashXof { /* fields omitted */ }

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

Usage

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

Example

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

ParallelHashXof can be created only by using ParallelHash::IntoXof interface.

Trait Implementations

impl Clone for ParallelHashXof[src]

impl Xof for ParallelHashXof[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.