#[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),
IntendedRecipient(Fingerprint),
ApprovedCertifications(Vec<Box<[u8]>>),
PreferredAEADCiphersuites(Vec<(SymmetricAlgorithm, AEADAlgorithm)>),
}
Expand description
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Unknown
An unknown subpacket.
Fields
tag: SubpacketTag
The unknown subpacket’s tag.
SignatureCreationTime(Timestamp)
The time the signature was made.
See Section 5.2.3.11 of RFC 9580 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.18 of RFC 9580 for details.
ExportableCertification(bool)
Whether a signature should be published.
See Section 5.2.3.19 of RFC 9580 for details.
TrustSignature
Signer asserts that the key is not only valid but also trustworthy at the specified level.
See Section 5.2.3.21 of RFC 9580 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”.
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.22 of RFC 9580 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.20 of RFC 9580 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.13 of RFC 9580 for details.
PreferredSymmetricAlgorithms(Vec<SymmetricAlgorithm>)
The Symmetric algorithms that the certificate holder prefers.
See Section 5.2.3.14 of RFC 9580 for details.
RevocationKey(RevocationKey)
Authorizes the specified key to issue revocation signatures for this certificate.
See Section 5.2.3.23 of RFC 9580 for details.
Issuer(KeyID)
The OpenPGP Key ID of the key issuing the signature.
See Section 5.2.3.12 of RFC 9580 for details.
NotationData(NotationData)
A “notation” on the signature.
See Section 5.2.3.24 of RFC 9580 for details.
PreferredHashAlgorithms(Vec<HashAlgorithm>)
The Hash algorithms that the certificate holder prefers.
See Section 5.2.3.16 of RFC 9580 for details.
PreferredCompressionAlgorithms(Vec<CompressionAlgorithm>)
The compression algorithms that the certificate holder prefers.
See Section 5.2.3.17 of RFC 9580 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.25 of RFC 9580 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.26 of RFC 9580 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.27 of RFC 9580 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.28 of RFC 9580 for details.
KeyFlags(KeyFlags)
A list of flags that hold information about a key.
See Section 5.2.3.29 of RFC 9580 for details.
SignersUserID(Vec<u8>)
The User ID that is responsible for the signature.
See Section 5.2.3.30 of RFC 9580 for details.
ReasonForRevocation
The reason for a revocation, used in key revocations and certification revocation signatures.
See Section 5.2.3.31 of RFC 9580 for details.
Fields
code: ReasonForRevocation
Machine-readable reason for revocation.
Features(Features)
The OpenPGP features a user’s implementation supports.
See Section 5.2.3.32 of RFC 9580 for details.
SignatureTarget
A signature to which this signature refers.
See Section 5.2.3.33 of RFC 9580 for details.
Fields
pk_algo: PublicKeyAlgorithm
Public-key algorithm of the target signature.
hash_algo: HashAlgorithm
Hash algorithm 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.34 of RFC 9580 for details.
IssuerFingerprint(Fingerprint)
The Fingerprint of the key that issued the signature.
See Section 5.2.3.35 of RFC 9580 for details.
IntendedRecipient(Fingerprint)
Who the signed message was intended for.
See Section 5.2.3.36 of RFC 9580 for details.
ApprovedCertifications(Vec<Box<[u8]>>)
The Approved Certifications subpacket (experimental).
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 2.2 of draft-dkg-openpgp-1pa3pc-02 for details.
PreferredAEADCiphersuites(Vec<(SymmetricAlgorithm, AEADAlgorithm)>)
The AEAD Ciphersuites that the certificate holder prefers.
A series of paired algorithm identifiers indicating how the keyholder prefers to receive version 2 Symmetrically Encrypted Integrity Protected Data. Each pair of octets indicates a combination of a symmetric cipher and an AEAD mode that the key holder prefers to use.
It is assumed that only the combinations of algorithms listed are supported by the recipient’s software, with the exception of the mandatory-to-implement combination of AES-128 and OCB. If AES-128 and OCB are not found in the subpacket, it is implicitly listed at the end.
See Section 5.2.3.15 of RFC 9580 for details.
Implementations§
Source§impl SubpacketValue
impl SubpacketValue
Sourcepub fn tag(&self) -> SubpacketTag
pub fn tag(&self) -> SubpacketTag
Returns the subpacket tag for this value.
Trait Implementations§
Source§impl Clone for SubpacketValue
impl Clone for SubpacketValue
Source§fn clone(&self) -> SubpacketValue
fn clone(&self) -> SubpacketValue
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read more