Struct sp_application_crypto::sr25519::vrf::VrfSignData
source · pub struct VrfSignData { /* private fields */ }
Expand description
VRF input ready to be used for VRF sign and verify operations.
Implementations§
source§impl VrfSignData
impl VrfSignData
sourcepub fn new(input: VrfTranscript) -> VrfSignData
pub fn new(input: VrfTranscript) -> VrfSignData
Build a new instance ready to be used for VRF signer and verifier.
input
will contribute to the VRF output bytes.
sourcepub fn with_extra(self, extra: VrfTranscript) -> VrfSignData
pub fn with_extra(self, extra: VrfTranscript) -> VrfSignData
Add some extra data to be signed.
extra
will not contribute to the VRF output bytes.
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 VrfSignData
impl Clone for VrfSignData
source§fn clone(&self) -> VrfSignData
fn clone(&self) -> VrfSignData
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 Freeze for VrfSignData
impl RefUnwindSafe for VrfSignData
impl Send for VrfSignData
impl Sync for VrfSignData
impl Unpin for VrfSignData
impl UnwindSafe for VrfSignData
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> 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
.