pub trait HashSuite<F: Field> {
    type Hash: ConfigHash<F>;
    type Rng: ConfigRng<F>;
}
Expand description

Make it easy compute both hash related traits from a single source

Required Associated Types§

source

type Hash: ConfigHash<F>

Define the hash used by the HashSuite

source

type Rng: ConfigRng<F>

Define the random mixer used by the HashSuite

Implementors§