Trait universal_hash::NewUniversalHash[][src]

pub trait NewUniversalHash: Sized {
    type KeySize: ArrayLength<u8>;
    fn new(key: &Key<Self>) -> Self;
}
Expand description

Instantiate a UniversalHash algorithm.

Associated Types

Size of the key for the universal hash function.

Required methods

Instantiate a universal hash function with the given key.

Implementors