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
type OutputSize: ArrayLength<u8>
Required Methods
fn fixed_result(self) -> GenericArray<u8, Self::OutputSize>
Retrieve the digest result. This method consumes digest instance.