[][src]Enum sequoia_openpgp::packet::OnePassSig

#[non_exhaustive]pub enum OnePassSig {
    V3(OnePassSig3),
}

Holds a one-pass signature packet.

See Section 5.4 of RFC 4880 for details.

A OnePassSig packet is not normally instantiated directly. In most cases, you'll create one as a side-effect of signing a message using the streaming serializer, or parsing a signed message using the PacketParser.

Note: This enum cannot be exhaustively matched to allow future extensions.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

OnePassSig packet version 3.

Implementations

impl OnePassSig[src]

pub fn version(&self) -> u8[src]

Gets the version.

Methods from Deref<Target = OnePassSig3>

pub fn typ(&self) -> SignatureType[src]

Gets the signature type.

pub fn set_type(&mut self, t: SignatureType) -> SignatureType[src]

Sets the signature type.

pub fn pk_algo(&self) -> PublicKeyAlgorithm[src]

Gets the public key algorithm.

pub fn set_pk_algo(&mut self, algo: PublicKeyAlgorithm) -> PublicKeyAlgorithm[src]

Sets the public key algorithm.

pub fn hash_algo(&self) -> HashAlgorithm[src]

Gets the hash algorithm.

pub fn set_hash_algo(&mut self, algo: HashAlgorithm) -> HashAlgorithm[src]

Sets the hash algorithm.

pub fn issuer(&self) -> &KeyID[src]

Gets the issuer.

pub fn set_issuer(&mut self, issuer: KeyID) -> KeyID[src]

Sets the issuer.

pub fn last(&self) -> bool[src]

Gets the last flag.

pub fn set_last(&mut self, last: bool) -> bool[src]

Sets the last flag.

pub fn last_raw(&self) -> u8[src]

Gets the raw value of the last flag.

pub fn set_last_raw(&mut self, last: u8) -> u8[src]

Sets the raw value of the last flag.

Trait Implementations

impl Clone for OnePassSig[src]

impl Debug for OnePassSig[src]

impl Deref for OnePassSig[src]

type Target = OnePassSig3

The resulting type after dereferencing.

impl DerefMut for OnePassSig[src]

impl Eq for OnePassSig[src]

impl From<OnePassSig> for Packet[src]

impl From<OnePassSig3> for OnePassSig[src]

impl Hash for OnePassSig[src]

impl IntoIterator for OnePassSig[src]

Implement IntoIterator so that cert::insert_packets(sig) just works.

type Item = OnePassSig

The type of the elements being iterated over.

type IntoIter = Once<OnePassSig>

Which kind of iterator are we turning this into?

impl Marshal for OnePassSig[src]

impl MarshalInto for OnePassSig[src]

impl<'a> Parse<'a, OnePassSig> for OnePassSig[src]

impl PartialEq<OnePassSig> for OnePassSig[src]

impl StructuralEq for OnePassSig[src]

impl StructuralPartialEq for OnePassSig[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> DynClone for T where
    T: Clone
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.