Hasher

Trait Hasher 

Source
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§

Source

fn new() -> Self

Source

fn update(&mut self, input: &[u8])

Source

fn finalize(self) -> Vec<u8>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§