[][src]Struct openssl::cms::CmsContentInfoRef

pub struct CmsContentInfoRef(_);

Reference to CMSContentInfo

Methods

impl CmsContentInfoRef[src]

pub fn decrypt<T>(
    &self,
    pkey: &PKeyRef<T>,
    cert: &X509
) -> Result<Vec<u8>, ErrorStack> where
    T: HasPrivate
[src]

Given the sender's private key, pkey and the recipient's certificiate, cert, decrypt the data in self.

OpenSSL documentation at CMS_decrypt

pub fn to_der(&self) -> Result<Vec<u8>, ErrorStack>[src]

Serializes this CmsContentInfo using DER.

OpenSSL documentation at i2d_CMS_ContentInfo

pub fn to_pem(&self) -> Result<Vec<u8>, ErrorStack>[src]

Serializes this CmsContentInfo using DER.

OpenSSL documentation at PEM_write_bio_CMS

Trait Implementations

impl AsRef<CmsContentInfoRef> for CmsContentInfo[src]

impl Borrow<CmsContentInfoRef> for CmsContentInfo[src]

impl ForeignTypeRef for CmsContentInfoRef[src]

type CType = CMS_ContentInfo

The raw C type.

impl Send for CmsContentInfoRef[src]

impl Sync for CmsContentInfoRef[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.