Struct sp_application_crypto::sr25519::vrf::VrfTranscript
source · pub struct VrfTranscript(pub Transcript);
Expand description
Transcript ready to be used for VRF related operations.
Tuple Fields§
§0: Transcript
Implementations§
source§impl VrfTranscript
impl VrfTranscript
sourcepub fn new(
label: &'static [u8],
data: &[(&'static [u8], &[u8])]
) -> VrfTranscript
pub fn new( label: &'static [u8], data: &[(&'static [u8], &[u8])] ) -> VrfTranscript
Build a new transcript instance.
Each data
element is a tuple (domain, message)
used to build the transcript.
sourcepub fn into_sign_data(self) -> VrfSignData
pub fn into_sign_data(self) -> VrfSignData
Map transcript to VrfSignData
.
Trait Implementations§
source§impl AsRef<VrfTranscript> for VrfSignData
impl AsRef<VrfTranscript> for VrfSignData
source§fn as_ref(&self) -> &VrfTranscript
fn as_ref(&self) -> &VrfTranscript
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Clone for VrfTranscript
impl Clone for VrfTranscript
source§fn clone(&self) -> VrfTranscript
fn clone(&self) -> VrfTranscript
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl From<VrfTranscript> for VrfSignData
impl From<VrfTranscript> for VrfSignData
source§fn from(transcript: VrfTranscript) -> VrfSignData
fn from(transcript: VrfTranscript) -> VrfSignData
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for VrfTranscript
impl Send for VrfTranscript
impl Sync for VrfTranscript
impl Unpin for VrfTranscript
impl UnwindSafe for VrfTranscript
Blanket Implementations§
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.