[][src]Enum sequoia_openpgp::parse::stream::MessageLayer

pub enum MessageLayer<'a> {
    Compression {
        algo: CompressionAlgorithm,
    },
    Encryption {
        sym_algo: SymmetricAlgorithm,
        aead_algo: Option<AEADAlgorithm>,
    },
    SignatureGroup {
        results: Vec<VerificationResult<'a>>,
    },
}

Represents a layer of the message structure.

A valid OpenPGP message contains one literal data packet with optional encryption, signing, and compression layers on top.

Variants

Compression

Represents an compression container.

Fields of Compression

algo: CompressionAlgorithm

Compression algorithm used.

Encryption

Represents an encryption container.

Fields of Encryption

sym_algo: SymmetricAlgorithm

Symmetric algorithm used.

aead_algo: Option<AEADAlgorithm>

AEAD algorithm used, if any.

This feature is experimental.

SignatureGroup

Represents a signature group.

A signature group consists of all signatures with the same level. Each VerificationResult represents the result of a single signature verification. In your VerificationHelper::check method, iterate over the verification results, see if it meets your policies' demands, and communicate it to the user, if applicable.

Fields of SignatureGroup

results: Vec<VerificationResult<'a>>

The results of the signature verifications.

Trait Implementations

impl<'a> Debug for MessageLayer<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for MessageLayer<'a>

impl<'a> !Send for MessageLayer<'a>

impl<'a> !Sync for MessageLayer<'a>

impl<'a> Unpin for MessageLayer<'a>

impl<'a> !UnwindSafe for MessageLayer<'a>

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.