Trait NewUniversalHash

Source
pub trait NewUniversalHash: Sized {
    type KeySize: ArrayLength<u8>;

    // Required method
    fn new(key: &Key<Self>) -> Self;
}
Expand description

Instantiate a UniversalHash algorithm.

Required Associated Types§

Source

type KeySize: ArrayLength<u8>

Size of the key for the universal hash function.

Required Methods§

Source

fn new(key: &Key<Self>) -> Self

Instantiate a universal hash function with the given key.

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§