pub trait PRF {
    type Seed;
    type Input;
    type Output;

    fn prf(&self, seed: &Self::Seed, input: &[Self::Input]) -> Self::Output;
}
Expand description

A trait for a pseudorandom function.

Required Associated Types

Required Methods

Returns the output for the given seed and input.

Implementors