pub struct EncryptionFields<'a> {
pub public_point: &'a Mpi,
pub encrypted_session_key: &'a [u8],
pub fingerprint: &'a [u8],
}
Fields§
§public_point: &'a Mpi
§encrypted_session_key: &'a [u8]
Encrypted and wrapped value, derived from the session key
fingerprint: &'a [u8]
NOTE: The fingerprint isn’t part of the “Algorithm-Specific Fields”, but it is needed for session key derivation
Auto Trait Implementations§
impl<'a> Freeze for EncryptionFields<'a>
impl<'a> RefUnwindSafe for EncryptionFields<'a>
impl<'a> Send for EncryptionFields<'a>
impl<'a> Sync for EncryptionFields<'a>
impl<'a> Unpin for EncryptionFields<'a>
impl<'a> UnwindSafe for EncryptionFields<'a>
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