Trait gclient::ext::sp_core::crypto::VrfCrypto

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

VRF input.

type VrfPreOutput

VRF pre-output.

type VrfSignData

VRF signing data.

type VrfSignature

VRF signature.

Implementors§