pub trait VrfCrypto {
    type VrfInput;
    type VrfOutput;
    type VrfSignData;
    type VrfSignature;
}
Expand description

Trait grouping types shared by a VRF signer and verifiers.

Required Associated Types§

type VrfInput

VRF input.

type VrfOutput

VRF output.

type VrfSignData

VRF signing data.

type VrfSignature

VRF signature.

Implementors§