logo
pub trait FixedOutput: Update + OutputSizeUser + Sized {
    fn finalize_into(self, out: &mut Output<Self>);

    fn finalize_fixed(self) -> Output<Self> { ... }
}
Expand description

Trait for hash functions with fixed-size output.

Required methods

Consume value and write result into provided array.

Provided methods

Retrieve result and consume the hasher instance.

Implementors