pub struct ThresholdDecryptionResponse {
pub ritual_id: u32,
pub decryption_share: Box<[u8]>,
}
Expand description
A response from Ursula with a derived decryption share.
Fields§
§ritual_id: u32
The ID of the ritual.
The decryption share to include in the response.
Implementations§
Source§impl ThresholdDecryptionResponse
impl ThresholdDecryptionResponse
Sourcepub fn new(ritual_id: u32, decryption_share: &[u8]) -> Self
pub fn new(ritual_id: u32, decryption_share: &[u8]) -> Self
Creates and a new decryption response.
Sourcepub fn encrypt(
&self,
shared_secret: &SessionSharedSecret,
) -> EncryptedThresholdDecryptionResponse
pub fn encrypt( &self, shared_secret: &SessionSharedSecret, ) -> EncryptedThresholdDecryptionResponse
Encrypts the decryption response.
Trait Implementations§
Source§impl Clone for ThresholdDecryptionResponse
impl Clone for ThresholdDecryptionResponse
Source§fn clone(&self) -> ThresholdDecryptionResponse
fn clone(&self) -> ThresholdDecryptionResponse
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 Debug for ThresholdDecryptionResponse
impl Debug for ThresholdDecryptionResponse
Source§impl<'de> Deserialize<'de> for ThresholdDecryptionResponse
impl<'de> Deserialize<'de> for ThresholdDecryptionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> ProtocolObject<'a> for ThresholdDecryptionResponse
impl<'a> ProtocolObject<'a> for ThresholdDecryptionResponse
impl Eq for ThresholdDecryptionResponse
impl StructuralPartialEq for ThresholdDecryptionResponse
Auto Trait Implementations§
impl Freeze for ThresholdDecryptionResponse
impl RefUnwindSafe for ThresholdDecryptionResponse
impl Send for ThresholdDecryptionResponse
impl Sync for ThresholdDecryptionResponse
impl Unpin for ThresholdDecryptionResponse
impl UnwindSafe for ThresholdDecryptionResponse
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> FromBytes for Twhere
T: for<'de> Deserialize<'de>,
impl<T> FromBytes for Twhere
T: for<'de> Deserialize<'de>,
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