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§
type VrfInput
type VrfInput
VRF input.
type VrfPreOutput
type VrfPreOutput
VRF pre-output.
type VrfSignData
type VrfSignData
VRF signing data.
type VrfSignature
type VrfSignature
VRF signature.