pub struct ExportedStoreCipher {
pub kdf_info: KdfInfo,
pub ciphertext_info: CiphertextInfo,
}Fields§
§kdf_info: KdfInfoInfo about the key derivation method that was used to expand the passphrase into an encryption key.
ciphertext_info: CiphertextInfoThe ciphertext of known plaintext and additional data that is needed to verify correct key derivation and cipher choice.
Trait Implementations§
Source§impl Debug for ExportedStoreCipher
impl Debug for ExportedStoreCipher
Source§impl<'de> Deserialize<'de> for ExportedStoreCipher
impl<'de> Deserialize<'de> for ExportedStoreCipher
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
Source§impl PartialEq for ExportedStoreCipher
impl PartialEq for ExportedStoreCipher
Source§impl Serialize for ExportedStoreCipher
impl Serialize for ExportedStoreCipher
impl Eq for ExportedStoreCipher
impl StructuralPartialEq for ExportedStoreCipher
Auto Trait Implementations§
impl Freeze for ExportedStoreCipher
impl RefUnwindSafe for ExportedStoreCipher
impl Send for ExportedStoreCipher
impl Sync for ExportedStoreCipher
impl Unpin for ExportedStoreCipher
impl UnwindSafe for ExportedStoreCipher
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