pub struct SecretRow {
pub nonce: Vec<u8>,
pub ciphertext: Vec<u8>,
}Expand description
Encrypted secret row (nonce + ciphertext); no plaintext in storage.
Fields§
§nonce: Vec<u8>§ciphertext: Vec<u8>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SecretRow
impl RefUnwindSafe for SecretRow
impl Send for SecretRow
impl Sync for SecretRow
impl Unpin for SecretRow
impl UnwindSafe for SecretRow
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