Struct schnorrkel::vrf::VRFOutput [−][src]
VRF output, possibly unverified.
Internally, we keep both RistrettoPoint
and CompressedRistretto
forms using RistrettoBoth
.
We’d actually love to statically distinguish here between inputs
and outputs, as well as whether outputs were verified, but doing
so would disrupt our general purpose DLEQ proof mechanism, so
users must be responcible for this themselves. We do however
consume by value in actual output methods, and do not implement
Copy
, as a reminder that VRF outputs should only be used once
and should be checked before usage.
Implementations
impl VRFOutput
[src]
impl VRFOutput
[src]pub fn to_bytes(&self) -> [u8; 32]
[src]
Convert this VRF output to a byte array.
pub fn as_bytes(&self) -> &[u8; 32]
[src]
View this secret key as a byte array.
pub fn from_bytes(bytes: &[u8]) -> SignatureResult<VRFOutput>
[src]
Construct a VRFOutput
from a slice of bytes.
pub fn attach_input_hash<T>(
&self,
public: &PublicKey,
t: T
) -> SignatureResult<VRFInOut> where
T: VRFSigningTranscript,
[src]
&self,
public: &PublicKey,
t: T
) -> SignatureResult<VRFInOut> where
T: VRFSigningTranscript,
Pair a non-malleable VRF output with the hash of the given transcript.
Trait Implementations
impl<'d> Deserialize<'d> for VRFOutput
[src]
impl<'d> Deserialize<'d> for VRFOutput
[src]fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'d>,
[src]
D: Deserializer<'d>,
impl PartialOrd<VRFOutput> for VRFOutput
[src]
impl PartialOrd<VRFOutput> for VRFOutput
[src]