Trait digest::FixedOutput[][src]

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

Trait for returning digest result with the fixed size

Associated Types

Required Methods

Retrieve result and consume hasher instance.

Implementors