Enum pkcs7::ContentInfo
source · [−]pub enum ContentInfo<'a> {
Data(Option<DataContent<'a>>),
EncryptedData(Option<EncryptedDataContent<'a>>),
Other((ContentType, Option<OctetString<'a>>)),
}
Expand description
Content exchanged between entities RFC 5652 § 3
ContentInfo ::= SEQUENCE {
contentType ContentType,
content
[0] EXPLICIT ANY DEFINED BY contentType OPTIONAL }
Variants
Data(Option<DataContent<'a>>)
Content type data
EncryptedData(Option<EncryptedDataContent<'a>>)
Content type encrypted-data
Other((ContentType, Option<OctetString<'a>>))
Catch-all case for content types that are not explicitly supported
- signed-data
- enveloped-data
- signed-and-enveloped-data
- digested-data
Implementations
sourceimpl<'a> ContentInfo<'a>
impl<'a> ContentInfo<'a>
sourcepub fn content_type(&self) -> ContentType
pub fn content_type(&self) -> ContentType
return content type of content info
sourceimpl<'a> ContentInfo<'a>
impl<'a> ContentInfo<'a>
sourcepub fn new_empty(content_type: ContentType) -> Self
pub fn new_empty(content_type: ContentType) -> Self
new ContentInfo of given content type with empty content
sourcepub fn new_raw(content_type: ContentType, content: &'a [u8]) -> Result<Self>
pub fn new_raw(content_type: ContentType, content: &'a [u8]) -> Result<Self>
new Content info of given content type with given raw content
Trait Implementations
sourceimpl<'a> Decodable<'a> for ContentInfo<'a>
impl<'a> Decodable<'a> for ContentInfo<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for ContentInfo<'a>
impl<'a> Send for ContentInfo<'a>
impl<'a> Sync for ContentInfo<'a>
impl<'a> Unpin for ContentInfo<'a>
impl<'a> UnwindSafe for ContentInfo<'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
?