pub trait Hasher {
// Required methods
fn new() -> Self;
fn update(&mut self, input: &[u8]);
fn finalize(self) -> Vec<u8> ⓘ;
}Expand description
The hash function trait with multiple updates.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".