[][src]Struct sequoia_openpgp::packet::signature::subpacket::Subpacket

pub struct Subpacket { /* fields omitted */ }

Signature subpackets.

Most of a signature's attributes are not stored in fixed fields, but in so-called subpackets. These subpackets are stored in a Signature's so-called subpacket areas, which are effectively small key-value stores. The keys are subpacket tags (SubpacketTag). The values are well-structured (SubpacketValue).

In addition to their key and value, subpackets also include a critical flag. When set, this flag indicates to the OpenPGP implementation that if it doesn't understand the subpacket, it must consider the signature to be invalid. (Likewise, if it isn't set, then it means that it is safe for the implementation to ignore the subpacket.) This enables forward compatibility with security-relevant extensions.

It is possible to control how Sequoia's higher-level functionality handles unknown, critical subpackets using a Policy object. Depending on the degree of control required, it may be sufficient to customize a StandardPolicy object using, for instance, the StandardPolicy::accept_critical_subpacket method.

The subpacket system is extensible in two ways. First, although limited, the subpacket name space is not exhausted. So, it is possible to introduce new packets. Second, one of the subpackets, the Notation Data subpacket (NotationData), is explicitly designed for adding arbitrary data to signatures.

Subpackets are described in Section 5.2.3.1 of RFC 4880.

Implementations

impl Subpacket[src]

pub fn new(value: SubpacketValue, critical: bool) -> Result<Subpacket>[src]

Creates a new Subpacket.

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

Returns whether the critical bit is set.

pub fn tag(&self) -> SubpacketTag[src]

Returns the Subpacket's tag.

pub fn value(&self) -> &SubpacketValue[src]

Returns the Subpacket's value.

Trait Implementations

impl Clone for Subpacket[src]

impl Debug for Subpacket[src]

impl Eq for Subpacket[src]

impl Hash for Subpacket[src]

impl Marshal for Subpacket[src]

impl MarshalInto for Subpacket[src]

impl PartialEq<Subpacket> for Subpacket[src]

impl StructuralEq for Subpacket[src]

impl StructuralPartialEq for Subpacket[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> 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.