pub trait ObliviousPrfwhere
    Self: Sized,
{ type Seed: Sized; type Input: Sized; type Output: Sized; }
Expand description

Trait containing the associated types used by an oblivious PRF.

Required Associated Types

PRF seed.

PRF input.

PRF output.

Implementors