[]Struct openssl::pkcs7::Pkcs7

pub struct Pkcs7(_);

A PKCS#7 structure.

Contains signed and/or encrypted data.

Methods

impl Pkcs7[src]

pub fn from_pem(pem: &[u8]) -> Result<Pkcs7, ErrorStack>[src]

Deserializes a PEM-encoded PKCS#7 signature

The input should have a header of -----BEGIN PKCS7-----.

This corresponds to PEM_read_bio_PKCS7.

pub fn from_smime(input: &[u8]) -> Result<(Pkcs7, Option<Vec<u8>>), ErrorStack>[src]

Parses a message in S/MIME format.

Returns the loaded signature, along with the cleartext message (if available).

This corresponds to SMIME_read_PKCS7.

pub fn encrypt(
    certs: &StackRef<X509>,
    input: &[u8],
    cipher: Cipher,
    flags: Pkcs7Flags
) -> Result<Pkcs7, ErrorStack>
[src]

Creates and returns a PKCS#7 envelopedData structure.

certs is a list of recipient certificates. input is the content to be encrypted. cipher is the symmetric cipher to use. flags is an optional set of flags.

This corresponds to PKCS7_encrypt.

pub fn sign<PT>(
    signcert: &X509Ref,
    pkey: &PKeyRef<PT>,
    certs: &StackRef<X509>,
    input: &[u8],
    flags: Pkcs7Flags
) -> Result<Pkcs7, ErrorStack> where
    PT: HasPrivate
[src]

Creates and returns a PKCS#7 signedData structure.

signcert is the certificate to sign with, pkey is the corresponding private key. certs is an optional additional set of certificates to include in the PKCS#7 structure (for example any intermediate CAs in the chain).

This corresponds to PKCS7_sign.

Methods from Deref<Target = Pkcs7Ref>

pub fn to_smime(
    &self,
    input: &[u8],
    flags: Pkcs7Flags
) -> Result<Vec<u8>, ErrorStack>
[src]

Converts PKCS#7 structure to S/MIME format

This corresponds to SMIME_write_PKCS7.

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

Serializes the data into a PEM-encoded PKCS#7 structure.

The output will have a header of -----BEGIN PKCS7-----.

This corresponds to PEM_write_bio_PKCS7.

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

Decrypts data using the provided private key.

pkey is the recipient's private key, and cert is the recipient's certificate.

Returns the decrypted message.

This corresponds to PKCS7_decrypt.

pub fn verify(
    &self,
    certs: &StackRef<X509>,
    store: &X509StoreRef,
    indata: Option<&[u8]>,
    out: Option<&mut Vec<u8>>,
    flags: Pkcs7Flags
) -> Result<(), ErrorStack>
[src]

Verifies the PKCS#7 signedData structure contained by &self.

certs is a set of certificates in which to search for the signer's certificate. store is a trusted certificate store (used for chain verification). indata is the signed data if the content is not present in &self. The content is written to out if it is not None.

This corresponds to PKCS7_verify.

Trait Implementations

impl AsRef<Pkcs7Ref> for Pkcs7

impl Borrow<Pkcs7Ref> for Pkcs7

impl Deref for Pkcs7

type Target = Pkcs7Ref

The resulting type after dereferencing.

impl DerefMut for Pkcs7

impl Drop for Pkcs7

impl ForeignType for Pkcs7

type CType = PKCS7

The raw C type.

type Ref = Pkcs7Ref

The type representing a reference to this type.

impl Send for Pkcs7[src]

impl Sync for Pkcs7[src]

Auto Trait Implementations

impl RefUnwindSafe for Pkcs7

impl Unpin for Pkcs7

impl UnwindSafe for Pkcs7

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.