Trait FixedOutput

trait FixedOutput: Update + OutputSizeUser + Sized

Trait for hash functions with fixed-size output.

Required Methods

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

Consume value and write result into provided array.

Provided Methods

fn finalize_fixed(self: Self) -> Output<Self>

Retrieve result and consume the hasher instance.

Implementors