Struct pkcs7::encrypted_data_content::EncryptedDataContent
source · [−]pub struct EncryptedDataContent<'a> {
pub version: Version,
pub encrypted_content_info: EncryptedContentInfo<'a>,
}
Expand description
Encrypted-data content type RFC 5652 § 8
EncryptedData ::= SEQUENCE {
version Version,
encryptedContentInfo EncryptedContentInfo }
The encrypted-data content type consists of encrypted content of any type. Unlike the enveloped-data content type, the encrypted-data content type has neither recipients nor encrypted content-encryption keys. Keys are assumed to be managed by other means.
The fields of type EncryptedData have the following meanings:
version
is the syntax version number.encrypted_content_info
is the encrypted content information, as in EncryptedContentInfo.
Fields
version: Version
the syntax version number.
encrypted_content_info: EncryptedContentInfo<'a>
the encrypted content information.
Trait Implementations
sourceimpl<'a> Clone for EncryptedDataContent<'a>
impl<'a> Clone for EncryptedDataContent<'a>
sourcefn clone(&self) -> EncryptedDataContent<'a>
fn clone(&self) -> EncryptedDataContent<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for EncryptedDataContent<'a>
impl<'a> Debug for EncryptedDataContent<'a>
sourceimpl<'a> Decodable<'a> for EncryptedDataContent<'a>
impl<'a> Decodable<'a> for EncryptedDataContent<'a>
sourceimpl<'a> PartialEq<EncryptedDataContent<'a>> for EncryptedDataContent<'a>
impl<'a> PartialEq<EncryptedDataContent<'a>> for EncryptedDataContent<'a>
sourcefn eq(&self, other: &EncryptedDataContent<'a>) -> bool
fn eq(&self, other: &EncryptedDataContent<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EncryptedDataContent<'a>) -> bool
fn ne(&self, other: &EncryptedDataContent<'a>) -> bool
This method tests for !=
.
sourceimpl<'a> Sequence<'a> for EncryptedDataContent<'a>
impl<'a> Sequence<'a> for EncryptedDataContent<'a>
impl<'a> Copy for EncryptedDataContent<'a>
impl<'a> Eq for EncryptedDataContent<'a>
impl<'a> StructuralEq for EncryptedDataContent<'a>
impl<'a> StructuralPartialEq for EncryptedDataContent<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for EncryptedDataContent<'a>
impl<'a> Send for EncryptedDataContent<'a>
impl<'a> Sync for EncryptedDataContent<'a>
impl<'a> Unpin for EncryptedDataContent<'a>
impl<'a> UnwindSafe for EncryptedDataContent<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<'a, T> Choice<'a> for T where
T: Decodable<'a> + FixedTag,
impl<'a, T> Choice<'a> for T where
T: Decodable<'a> + FixedTag,
sourcefn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided Tag
decodable as a variant of this CHOICE
?