pub struct Ssgp {
pub label: [u8; 20],
pub iv: [u8; 8],
pub ciphertext: Vec<u8>,
}Expand description
An item’s encrypted secret, as stored in the record’s key data.
Fields§
§label: [u8; 20]ssgp plus a 16-byte label: together, the key record’s Label.
iv: [u8; 8]§ciphertext: Vec<u8>Implementations§
Source§impl Ssgp
impl Ssgp
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Ssgp
impl RefUnwindSafe for Ssgp
impl Send for Ssgp
impl Sync for Ssgp
impl Unpin for Ssgp
impl UnsafeUnpin for Ssgp
impl UnwindSafe for Ssgp
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