Trait digest::FixedOutput

source ·
pub trait FixedOutput: Update + OutputSizeUser + Sized {
    // Required method
    fn finalize_into(self, out: &mut Output<Self>);

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

Trait for hash functions with fixed-size output.

Required Methods§

source

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

Consume value and write result into provided array.

Provided Methods§

source

fn finalize_fixed(self) -> Output<Self>

Retrieve result and consume the hasher instance.

Object Safety§

This trait is not object safe.

Implementors§