pub trait ExtendableOutputReset: ExtendableOutput + Reset {
    // Required method
    fn finalize_xof_reset(&mut self) -> Self::Reader;

    // Provided method
    fn finalize_xof_reset_into(&mut self, out: &mut [u8]) { ... }
}
Expand description

Trait for hash functions with extendable-output (XOF) able to reset themselves.

Required Methods§

source

fn finalize_xof_reset(&mut self) -> Self::Reader

Retrieve XOF reader and reset hasher instance state.

Provided Methods§

source

fn finalize_xof_reset_into(&mut self, out: &mut [u8])

Finalize XOF, write result into out, and reset the hasher state.

Implementors§