Trait VrfCrypto

Source
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§

Source

type VrfInput

VRF input.

Source

type VrfPreOutput

VRF pre-output.

Source

type VrfSignData

VRF signing data.

Source

type VrfSignature

VRF signature.

Implementors§