pub struct EncryptedShareBackup {
pub signing_share: Vec<u8>,
pub sub_share: (Vec<u8>, Vec<u8>),
pub nonce: Vec<u8>,
}
Expand description
An encrypted share backup (i.e an encrypted “signing share” and “sub-share”, and a random nonce).
Fields§
An encrypted “signing share”.
An encrypted “sub-share”.
nonce: Vec<u8>
The encryption/decryption nonce.
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