#[non_exhaustive]
pub enum SubpacketValue {
Show 28 variants Unknown { tag: SubpacketTag, body: Vec<u8>, }, SignatureCreationTime(Timestamp), SignatureExpirationTime(Duration), ExportableCertification(bool), TrustSignature { level: u8, trust: u8, }, RegularExpression(Vec<u8>), Revocable(bool), KeyExpirationTime(Duration), PreferredSymmetricAlgorithms(Vec<SymmetricAlgorithm>), RevocationKey(RevocationKey), Issuer(KeyID), NotationData(NotationData), PreferredHashAlgorithms(Vec<HashAlgorithm>), PreferredCompressionAlgorithms(Vec<CompressionAlgorithm>), KeyServerPreferences(KeyServerPreferences), PreferredKeyServer(Vec<u8>), PrimaryUserID(bool), PolicyURI(Vec<u8>), KeyFlags(KeyFlags), SignersUserID(Vec<u8>), ReasonForRevocation { code: ReasonForRevocation, reason: Vec<u8>, }, Features(Features), SignatureTarget { pk_algo: PublicKeyAlgorithm, hash_algo: HashAlgorithm, digest: Vec<u8>, }, EmbeddedSignature(Signature), IssuerFingerprint(Fingerprint), PreferredAEADAlgorithms(Vec<AEADAlgorithm>), IntendedRecipient(Fingerprint), AttestedCertifications(Vec<Box<[u8]>>),
}
Expand description

Holds an arbitrary, well-structured subpacket.

The SubpacketValue enum holds a Subpacket’s value. The values are well structured in the sense that they have been parsed into Sequoia’s native data types rather than just holding the raw byte vector. For instance, the Issuer variant holds a KeyID.

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

Variants (Non-exhaustive)§

This enum is marked as 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.
§

Unknown

An unknown subpacket.

Fields

§tag: SubpacketTag

The unknown subpacket’s tag.

§body: Vec<u8>

The unknown subpacket’s uninterpreted body.

§

SignatureCreationTime(Timestamp)

The time the signature was made.

See Section 5.2.3.4 of RFC 4880 for details.

§

SignatureExpirationTime(Duration)

The validity period of the signature.

The validity is relative to the time stored in the signature’s Signature Creation Time subpacket.

See Section 5.2.3.10 of RFC 4880 for details.

§

ExportableCertification(bool)

Whether a signature should be published.

See Section 5.2.3.11 of RFC 4880 for details.

§

TrustSignature

Signer asserts that the key is not only valid but also trustworthy at the specified level.

See Section 5.2.3.13 of RFC 4880 for details.

Fields

§level: u8

Trust level, or depth.

Level 0 has the same meaning as an ordinary validity signature. Level 1 means that the signed key is asserted to be a valid trusted introducer, with the 2nd octet of the body specifying the degree of trust. Level 2 means that the signed key is asserted to be trusted to issue level 1 trust signatures, i.e., that it is a “meta introducer”.

§trust: u8

Trust amount.

This is interpreted such that values less than 120 indicate partial trust and values of 120 or greater indicate complete trust. Implementations SHOULD emit values of 60 for partial trust and 120 for complete trust.

§

RegularExpression(Vec<u8>)

Used in conjunction with Trust Signature packets (of level > 0) to limit the scope of trust that is extended.

See Section 5.2.3.14 of RFC 4880 for details.

Note: The RFC requires that the serialized form includes a trailing NUL byte. When Sequoia parses the regular expression subpacket, it strips the trailing NUL. (If it doesn’t include a NUL, then parsing fails.) Likewise, when it serializes a regular expression subpacket, it unconditionally adds a NUL.

§

Revocable(bool)

Whether a signature can later be revoked.

See Section 5.2.3.12 of RFC 4880 for details.

§

KeyExpirationTime(Duration)

The validity period of the key.

The validity period is relative to the key’s (not the signature’s) creation time.

See Section 5.2.3.6 of RFC 4880 for details.

§

PreferredSymmetricAlgorithms(Vec<SymmetricAlgorithm>)

The Symmetric algorithms that the certificate holder prefers.

See Section 5.2.3.7 of RFC 4880 for details.

§

RevocationKey(RevocationKey)

Authorizes the specified key to issue revocation signatures for this certificate.

See Section 5.2.3.15 of RFC 4880 for details.

§

Issuer(KeyID)

The OpenPGP Key ID of the key issuing the signature.

See Section 5.2.3.5 of RFC 4880 for details.

§

NotationData(NotationData)

A “notation” on the signature.

See Section 5.2.3.16 of RFC 4880 for details.

§

PreferredHashAlgorithms(Vec<HashAlgorithm>)

The Hash algorithms that the certificate holder prefers.

See Section 5.2.3.8 of RFC 4880 for details.

§

PreferredCompressionAlgorithms(Vec<CompressionAlgorithm>)

The compression algorithms that the certificate holder prefers.

See Section 5.2.3.9 of RFC 4880 for details.

§

KeyServerPreferences(KeyServerPreferences)

A list of flags that indicate preferences that the certificate holder has about how the key is handled by a key server.

See Section 5.2.3.17 of RFC 4880 for details.

§

PreferredKeyServer(Vec<u8>)

The URI of a key server where the certificate holder keeps their certificate up to date.

See Section 5.2.3.18 of RFC 4880 for details.

§

PrimaryUserID(bool)

A flag in a User ID’s self-signature that states whether this User ID is the primary User ID for this certificate.

See Section 5.2.3.19 of RFC 4880 for details.

§

PolicyURI(Vec<u8>)

The URI of a document that describes the policy under which the signature was issued.

See Section 5.2.3.20 of RFC 4880 for details.

§

KeyFlags(KeyFlags)

A list of flags that hold information about a key.

See Section 5.2.3.21 of RFC 4880 for details.

§

SignersUserID(Vec<u8>)

The User ID that is responsible for the signature.

See Section 5.2.3.22 of RFC 4880 for details.

§

ReasonForRevocation

The reason for a revocation, used in key revocations and certification revocation signatures.

See Section 5.2.3.23 of RFC 4880 for details.

Fields

§code: ReasonForRevocation

Machine-readable reason for revocation.

§reason: Vec<u8>

Human-readable reason for revocation.

§

Features(Features)

The OpenPGP features a user’s implementation supports.

See Section 5.2.3.24 of RFC 4880 for details.

§

SignatureTarget

A signature to which this signature refers.

See Section 5.2.3.25 of RFC 4880 for details.

Fields

§pk_algo: PublicKeyAlgorithm

Public-key algorithm of the target signature.

§hash_algo: HashAlgorithm

Hash algorithm of the target signature.

§digest: Vec<u8>

Hash digest of the target signature.

§

EmbeddedSignature(Signature)

A complete Signature packet body.

This is used to store a backsig in a subkey binding signature.

See Section 5.2.3.26 of RFC 4880 for details.

§

IssuerFingerprint(Fingerprint)

The Fingerprint of the key that issued the signature (proposed).

See Section 5.2.3.28 of RFC 4880bis for details.

§

PreferredAEADAlgorithms(Vec<AEADAlgorithm>)

👎Deprecated

The AEAD algorithms that the certificate holder prefers (proposed).

See Section 5.2.3.8 of RFC 4880bis for details.

§

IntendedRecipient(Fingerprint)

Who the signed message was intended for (proposed).

See Section 5.2.3.29 of RFC 4880bis for details.

§

AttestedCertifications(Vec<Box<[u8]>>)

The Attested Certifications subpacket (proposed).

Allows the certificate holder to attest to third party certifications, allowing them to be distributed with the certificate. This can be used to address certificate flooding concerns.

See Section 5.2.3.30 of RFC 4880bis for details.

Implementations§

source§

impl SubpacketValue

source

pub fn tag(&self) -> SubpacketTag

Returns the subpacket tag for this value.

Trait Implementations§

source§

impl Clone for SubpacketValue

source§

fn clone(&self) -> SubpacketValue

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SubpacketValue

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for SubpacketValue

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Marshal for SubpacketValue

source§

fn serialize(&self, o: &mut dyn Write) -> Result<()>

Writes a serialized version of the object to o.
source§

fn export(&self, o: &mut dyn Write) -> Result<()>

Exports a serialized version of the object to o. Read more
source§

impl MarshalInto for SubpacketValue

source§

fn serialized_len(&self) -> usize

Computes the maximal length of the serialized representation. Read more
source§

fn serialize_into(&self, buf: &mut [u8]) -> Result<usize>

Serializes into the given buffer. Read more
source§

fn to_vec(&self) -> Result<Vec<u8>>

Serializes the packet to a vector.
source§

fn export_into(&self, buf: &mut [u8]) -> Result<usize>

Exports into the given buffer. Read more
source§

fn export_to_vec(&self) -> Result<Vec<u8>>

Exports to a vector. Read more
source§

impl Ord for SubpacketValue

source§

fn cmp(&self, other: &SubpacketValue) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for SubpacketValue

source§

fn eq(&self, other: &SubpacketValue) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for SubpacketValue

source§

fn partial_cmp(&self, other: &SubpacketValue) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Eq for SubpacketValue

source§

impl StructuralPartialEq for SubpacketValue

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.