pub struct KeyTransRecipientInfo {
pub version: CmsVersion,
pub rid: RecipientIdentifier,
pub key_encryption_algorithm: KeyEncryptionAlgorithmIdentifier,
pub encrypted_key: EncryptedKey,
}
Expand description
Key trans recipient info.
KeyTransRecipientInfo ::= SEQUENCE {
version CMSVersion, -- always set to 0 or 2
rid RecipientIdentifier,
keyEncryptionAlgorithm KeyEncryptionAlgorithmIdentifier,
encryptedKey EncryptedKey }
Fields§
§version: CmsVersion
§rid: RecipientIdentifier
§key_encryption_algorithm: KeyEncryptionAlgorithmIdentifier
§encrypted_key: EncryptedKey
Trait Implementations§
Source§impl Clone for KeyTransRecipientInfo
impl Clone for KeyTransRecipientInfo
Source§fn clone(&self) -> KeyTransRecipientInfo
fn clone(&self) -> KeyTransRecipientInfo
Returns a copy 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 KeyTransRecipientInfo
impl Debug for KeyTransRecipientInfo
Source§impl PartialEq for KeyTransRecipientInfo
impl PartialEq for KeyTransRecipientInfo
impl Eq for KeyTransRecipientInfo
impl StructuralPartialEq for KeyTransRecipientInfo
Auto Trait Implementations§
impl !Freeze for KeyTransRecipientInfo
impl RefUnwindSafe for KeyTransRecipientInfo
impl Send for KeyTransRecipientInfo
impl Sync for KeyTransRecipientInfo
impl Unpin for KeyTransRecipientInfo
impl UnwindSafe for KeyTransRecipientInfo
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