Trait FixedOutputReset

trait FixedOutputReset: FixedOutput + Reset

Trait for hash functions with fixed-size output able to reset themselves.

Required Methods

fn finalize_into_reset(self: &mut Self, out: &mut Output<Self>)

Write result into provided array and reset the hasher state.

Provided Methods

fn finalize_fixed_reset(self: &mut Self) -> Output<Self>

Retrieve result and reset the hasher state.

Implementors