logo
pub trait FixedOutput {
    type OutputSize: ArrayLength<u8>;
    fn fixed_result(self) -> GenericArray<u8, Self::OutputSize>;
}
Expand description

Trait for returning digest result with the fixed size

Associated Types

Required methods

Retrieve result and consume hasher instance.

Implementors