logo
pub trait VoprfParameters: Curve {
    type Hash: Digest;

    const ID: u16;
}
Available on crate feature voprf only.
Expand description

Elliptic curve parameters used by VOPRF.

Required Associated Types

The Hash parameter which assigns a particular hash function to this ciphersuite as defined in section 4 of draft-irtf-cfrg-voprf-08.

Required Associated Constants

The ID parameter which identifies a particular elliptic curve as defined in section 4 of draft-irtf-cfrg-voprf-08.

Implementors