logo
#[non_exhaustive]
pub enum SubpacketTag {
Show 31 variants SignatureCreationTime, SignatureExpirationTime, ExportableCertification, TrustSignature, RegularExpression, Revocable, KeyExpirationTime, PlaceholderForBackwardCompatibility, PreferredSymmetricAlgorithms, RevocationKey, Issuer, NotationData, PreferredHashAlgorithms, PreferredCompressionAlgorithms, KeyServerPreferences, PreferredKeyServer, PrimaryUserID, PolicyURI, KeyFlags, SignersUserID, ReasonForRevocation, Features, SignatureTarget, EmbeddedSignature, IssuerFingerprint, PreferredAEADAlgorithms, IntendedRecipient, AttestedCertifications, Reserved(u8), Private(u8), Unknown(u8),
}
Expand description

The subpacket types.

The SubpacketTag enum holds a Subpacket’s identifier, the so-called tag.

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.

SignatureCreationTime

The time the signature was made.

See Section 5.2.3.4 of RFC 4880 for details.

SignatureExpirationTime

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

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.

RegularExpression

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.

Revocable

Whether a signature can later be revoked.

See Section 5.2.3.12 of RFC 4880 for details.

KeyExpirationTime

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.

PlaceholderForBackwardCompatibility

Deprecated

PreferredSymmetricAlgorithms

The Symmetric algorithms that the certificate holder prefers.

See Section 5.2.3.7 of RFC 4880 for details.

RevocationKey

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

See Section 5.2.3.15 of RFC 4880 for details.

Issuer

The OpenPGP Key ID of the key issuing the signature.

See Section 5.2.3.5 of RFC 4880 for details.

NotationData

A “notation” on the signature.

See Section 5.2.3.16 of RFC 4880 for details.

PreferredHashAlgorithms

The Hash algorithms that the certificate holder prefers.

See Section 5.2.3.8 of RFC 4880 for details.

PreferredCompressionAlgorithms

The compression algorithms that the certificate holder prefers.

See Section 5.2.3.9 of RFC 4880 for details.

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

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

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

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

A list of flags that hold information about a key.

See Section 5.2.3.21 of RFC 4880 for details.

SignersUserID

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.

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.

EmbeddedSignature

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

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

See Section 5.2.3.28 of RFC 4880bis for details.

PreferredAEADAlgorithms

👎 Deprecated

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

See Section 5.2.3.8 of RFC 4880bis for details.

IntendedRecipient

Who the signed message was intended for (proposed).

See Section 5.2.3.29 of RFC 4880bis for details.

AttestedCertifications

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.

Reserved(u8)

Reserved subpacket tag.

Private(u8)

Private subpacket tag.

Unknown(u8)

Unknown subpacket tag.

Implementations

Returns an iterator over all valid variants.

Returns an iterator over all known variants. This does not include the SubpacketTag::Reserved, SubpacketTag::Private, or SubpacketTag::Unknown variants.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Feeds this value into the given Hasher. Read more

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

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

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

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

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

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self

The resulting type after obtaining ownership.

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

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

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.