pub trait VrfCrypto {
type VrfInput;
type VrfPreOutput;
type VrfSignData;
type VrfSignature;
}
Expand description
Trait grouping types shared by a VRF signer and verifiers.
Required Associated Types§
Sourcetype VrfPreOutput
type VrfPreOutput
VRF pre-output.
Sourcetype VrfSignData
type VrfSignData
VRF signing data.
Sourcetype VrfSignature
type VrfSignature
VRF signature.