pub enum HiddenMessage {
ProofSpecificBlinding(SignatureMessage),
ExternalBlinding(SignatureMessage, ProofNonce),
}
Expand description
Two types of hidden messages
Variants§
ProofSpecificBlinding(SignatureMessage)
Indicates the message is hidden and no other work is involved so a blinding factor will be generated specific to this proof
ExternalBlinding(SignatureMessage, ProofNonce)
Indicates the message is hidden but it is involved with other proofs like boundchecks, set memberships or inequalities, so the blinding factor is provided from an external source.
Auto Trait Implementations§
impl Freeze for HiddenMessage
impl RefUnwindSafe for HiddenMessage
impl Send for HiddenMessage
impl Sync for HiddenMessage
impl Unpin for HiddenMessage
impl UnwindSafe for HiddenMessage
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> 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 more