pub struct EncryptedShareSet {
pub ciphertext: Vec<u8>,
pub encrypted_shares: Vec<Vec<u8>>,
pub eph_public_key: PublicKey,
}
Expand description
A set of encrypted shares, together with the public key used for encryption and the encrypted secret
Fields§
§ciphertext: Vec<u8>
§eph_public_key: PublicKey
Trait Implementations§
Auto Trait Implementations§
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