pub struct EncryptedData {
pub algorithm: Algorithm,
pub nonce: Vec<u8>,
pub ciphertext: Vec<u8>,
pub key_version: u32,
pub aad_context: Option<String>,
}Expand description
Encrypted data with associated metadata
Fields§
§algorithm: AlgorithmEncryption algorithm used
nonce: Vec<u8>Nonce/IV used for encryption (96 bits for AES-GCM)
ciphertext: Vec<u8>Encrypted ciphertext + authentication tag
key_version: u32Key version for key rotation support
aad_context: Option<String>Optional additional authenticated data context
Trait Implementations§
Source§impl Clone for EncryptedData
impl Clone for EncryptedData
Source§fn clone(&self) -> EncryptedData
fn clone(&self) -> EncryptedData
Returns a duplicate 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 EncryptedData
impl Debug for EncryptedData
Source§impl<'de> Deserialize<'de> for EncryptedData
impl<'de> Deserialize<'de> for EncryptedData
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
Auto Trait Implementations§
impl Freeze for EncryptedData
impl RefUnwindSafe for EncryptedData
impl Send for EncryptedData
impl Sync for EncryptedData
impl Unpin for EncryptedData
impl UnwindSafe for EncryptedData
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