Trait sp_core::crypto::VrfCrypto

source ·
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§

source

type VrfInput

VRF input.

source

type VrfOutput

VRF output.

source

type VrfSignData

VRF signing data.

source

type VrfSignature

VRF signature.

Implementors§