openpgp-notes/book/source/06-certifications.md
2023-10-29 22:26:39 +01:00

24 KiB

(certifications_chapter)=

Certification signatures

Signatures make up the magic of OpenPGP. They act as the syntax that allows forming and interpreting complex statements about data and identities. Without signatures there would only be loose keys, impossible to associate with their owner. Signatures are the glue that allows for keys, subkeys and identities to be assembled into hierarchical certificates and for messages to gain authenticity.

So far we've looked at the components in an OpenPGP certificate, but certificates actually contain another set of elements, which bind the components together, and add metadata to them.

Internally, an OpenPGP certificate consists of a sequence of OpenPGP packets. These packets are just stringed together, one after the other. When a certificate is stored in a file1, it's easy to remove some of these packets, or add new ones.

However, the owner of a certificate doesn't want a third party to add subkeys (or add identity components) to their certificate, pretending that the certificate owner put those components there.

To prevent malicious addition of components, OpenPGP uses cryptographic signatures. These signatures show that components have been added by the owner of the OpenPGP certificate (these linking signatures are issued by the primary key of the certificate).

So while anyone can still unilaterally store unrelated subkeys and identity components in an OpenPGP certificate dataset, OpenPGP implementations that read this certificate should discard components that don't have a valid cryptographic connection with the certificate.

(Conversely, it's easy for a third party to leave out packets when passing on an OpenPGP certificate. An attacker can, for example, choose to omit revocation packets. The recipient of such a partial copy has no way to notice the omission, without access to a different source for the certificate that contains the revocation packet.)

Note, though, that there are some cases where third parties legitimately add "unbound" packets to certificates (that is: packets that are not signed by the certificate's owner):

  • Third-party certifications are traditionally added to the certificate that they make a statement about (this can cause problems in systems that unconditionally accept and include such certifications2),
  • OpenPGP software may add unbound identity data, locally.

Terminology

The term signature can have multiple meanings in the context of the OpenPGP specification. Cryptographic keys create raw signatures which are byte sequences calculated according to some signature scheme. OpenPGP packs these raw signatures up into OpenPGP signature packets, which carry additional information in the form of signature subpackets. For the purpose of this document, the term signature will refer to an OpenPGP signature packet (tag 2).

OpenPGP signatures can be separated into data signatures and certifications. A data signature serves the purpose to cryptographically guarantee the authenticity (and implicitly also the integrity) of a message, e.g. an email or a file, while a certification is used to attach metadata or subkeys to a certificate. Data signatures are always calculated by keys carrying the Signing key flag. Different types of signatures are distinguished by a signature type code and are calculated in different ways. Signatures can either be distributed standalone as detached signatures, or can be inlined with OpenPGP data, such as an OpenPGP message or a key or certificate.

Data signatures (type 0x00 and 0x01) are created by hashing the message content and calculating a cryptographic signature over the hash. You can read more about data signatures in the next chapter. The result is packed up into an OpenPGP signature packet, which can either be included in the OpenPGP message (TODO: See section about forming messages, cleartext signature framework), or distributed separately as a so called detached signature. Data signatures are always calculated using a Signing key.

Certifications are separated into self-certifications and third-party certifications. A certification made by a key over components of the same certificate is referred to as a self-certification. :::{note} The Ccertify Others key flag is not required in order to issue self-certifications. It is only necessary to issue valid third-party certifications. ::: A typical use-case for a self-certification is to attach a User ID, such as a name and email address to a certificate. This is done by calculating the signature over the User ID and the public primary key. The resulting User ID certification (typically type 0x13, potentially type 0x10-0x12) can then be inserted into the certificate, right after the User ID packet.

Other examples for self-signatures are binding signatures for subkeys. In order to add an OpenPGP subkey to a certificate, a subkey binding signature is calculated over the public primary key, followed by the public subkey. The resulting subkey binding signature (type 0x18) can then be inserted into the certificate right after the subkey. If the subkey itself is intended to be used as a Signing key, an extra step is required. To prevent an attacker from being able to "adopt" a victims signing subkey and then being able to claim to be the origin of signatures in fact made by victim, subkey binding signatures for signing subkeys need to include an embedded "back signature" (formally known as primary key binding signature) made by the signing key itself.

Certifications over User IDs can also be used to certify certificates of third-parties. If Alice is certain that Bob Baker <bob@example.com> controls the key 0xB0B, she can create a User ID certification signature for that identity and send it to Bob. Bob can then add this signature to his certificate. TODO: More WoT.

Another important category of signatures are revocations. A revocation is used to retract the statement formed by a prior signature. A subkey revocation signature revokes a prior subkey binding signature, while a certification revocation revokes a certification signature. Typical use-cases for revocations are marking certificates or individual subkeys as unusable, or marking User IDs as no longer used.

A revocation signature can either be hard or soft. A soft revocation of a certificate invalidates it from the revocation signature's creation time onwards, meaning signatures that were issued before the revocation remain intact, while a hard revocation invalidates the certificate retroactively, rendering all issued signatures invalid, regardless of creation time. Soft revocations are typically used whenever a key or User ID is retired or superseded gracefully, while hard revocations can for example signal compromise of secret key material.

Signature Types

There is a number of different Signature Types in the form of numerical IDs. These give guidance on what the intent of a signature is and how it needs to be interpreted, however, the meaning of a signature also depends on who issued it. A self-signature has a different meaning from a signature issued by a third party.

A DirectKeySignature issued as a self-signature can be used to set preferences and advertise features that apply to the whole certificate. A third-party DirectKeySignature carrying a TrustSignature subpacket on the other hand can be interpreted as a statement by the issuer that it delegates trust to the signed certificate (WoT).

Self-certifications of types 0x10 - 0x13 can be used to bind a User ID to a certificate, while the same types issued by a third-party are statements by the issuer that they have checked the authenticity of the signed User ID to some degree.

There are further signature types for signatures on data, as well as designated types to bind and revoke subkeys.

Signature Subpackets

A cryptographic signature alone is often not expressive enough to serve certain use-cases. For this reason, the OpenPGP protocol introduced signature subpackets with rfc4880. These are well-defined data structures that can be placed as subelements into signature packets, which give additional context and meaning to a signature. Typical examples are the issuer fingerprint subpacket, which contains the fingerprint of the issuer key, or the key flags subpacket which states, what purpose a component key is intended for.

Signature subpackets can reside in two different areas of a signature packet. Subpackets in the hashed area are incorporated in the digest calculation that is done during signature calculation and are therefore covered by the cryptographic signature. In other words; hashed subpackets are authenticated. If a subpacket is placed in the unhashed area instead, it is not included in the signature calculation procedure and is therefore not protected against tampering. The unhashed area can be used to retroactively add, change or remove subpackets from a signature without invalidating it.

Due to the fact that the unhashed area doesn't provide any cryptographic guarantees, it is only intended for advisory packets, or packets that self-authenticate (e.g. the issuer fingerprint subpacket, whose "correctness" can be proven by successfully verifying the signature using the referenced issuer key). In most cases, signature subpackets are simply added into the hashed area.

Criticality

Each signature subpacket has a flag that indicates whether or not the subpacket is critical. Since different OpenPGP implementations might support subsets of the standard, it would be fatal, if for example an implementation did not understand the concept of signature expiration. Such an implementation would potentially accept an already expired signature. By marking the expiration date subpacket as critical, the user can indicate, that implementations that do not understand this type of subpacket are supposed to reject the signature as invalid.

Sections 5.2.3.11 - 5.2.3.36 give guidance on which subpackets are usually marked as critical.

(direct_key_signature)=

Direct key signature

explain metadata associated with this signature, and that c-r prefers this over primary user id.

Revocations

:class: warning

This section only contains notes and still needs to be written

Note: certification signatures can be made irrevocable.

Hard vs. soft revocations

A revocation signature may contain a subpacket indicating the reason for revocation. This subpacket contains a code which specifies why the revocation was issued. This code determines, whether the revocation is hard or soft.

A soft revocation is typically used for graceful or planned revocations. A soft revocation can be reverted by re-validating the certificate, User ID or subkey with a fresh binding signature. A soft revocation invalidates the target certificate beginning with the revocations creation time.

Contrary, a hard revocation cannot be re-validated. Furthermore, a hard-revoked certificate is invalidated retroactively.

A missing revocation reason subpacket is equivalent with a hard revocation reason.

Certification Recipes

As mentioned above, different signatures are used for different purposes. In this section, we will try to give guidance on how to create certain signatures by example.

Change Algorithm Preferences

In order to change what symmetric, compression, hash or AEAD algorithms are preferred by the key owner, they can issue a direct-key signature (type 0x1F) on the primary key. This signature should have the following structure:

Subpacket Area Critical Mandatory Notes
Signature Creation Time Hashed True True Current time
Issuer Fingerprint Hashed True or false Strongly recommended The primary key is the issuer
Key Flags Hashed True False Carry over key flags from previous self-signature
Features Hashed True False Carry over features from previous self-signature
Key Expiration Time Hashed True False Carry over expiration time from previous self-signature, if present
Hash Alg. Pref. Hashed False False New preferences
Comp. Alg. Pref. Hashed False False New preferences
Symm. Alg. Pref. Hashed False False New preferences
AEAD Alg. Pref. Hashed False False New preferences

Change Expiration Time

The recommended way to change the expiration time of a certificate is by issuing a new DirectKey signature (type 0x1F) with an adjusted Key Expiration Time subpacket. The structure of such a signature is the same as in the section above. It is also possible to change the expiration date of individual User IDs (see section below) or separate subkeys (see section X).

Add User ID

"User ID" identity components are bound to an OpenPGP certificate by issuing a self-signature ("User Attributes" work analogously).

For example, the User ID Alice Adams <alice@example.org> may be associated with Alice's certificate AAA1 8CBB 2546 85C5 8358 3205 63FD 37B6 7F33 00F9 FB0E C457 378C D29F 1026 98B3.

Alice can link a User ID to her OpenPGP certificate with a cryptographic signature. To link a User ID, a self-signature is created (usually with the signature type PositiveCertification). This signature is issued by the primary key.

---
---
Linking a User ID to an OpenPGP certificate

This signature is calculated over the primary key and User ID. The signature should have the following structure:

Subpacket Area Critical Mandatory Notes
Signature Creation Time Hashed True True Current time
Issuer Fingerprint Hashed True or false Strongly Recommended The primary key is the issuer
Primary User ID Hashed True False Optional
Signature Expiration Time Hashed True False Optional

Self-certifications over User IDs can optionally carry the same subpackets as listed in the previous table (key flags, features, algorithm preferences). This way, separate capabilities can be assigned to different identities.

Remove / Revoke User ID

Since OpenPGP certificates are often distributed by the means of key servers, new signatures on a certificate are often "merged" into existing copies of the certificate locally by the recipient. This means, that it is not really possible to remove signatures / User IDs from a certificate, as there is no way to communicate the intention of packet deletion to the recipient.

So in order to mark a User ID as invalid, the user can publish a copy of their certificate with a CertificationRevocation (signature type 0x30) attached to the invalidated User ID. This signature signals that the holder of the certificate no longer wants to be associated with that User ID.

The structure of a certification revocation is as follows:

Subpacket Area Critical Mandatory Notes
Signature Creation Time Hashed True True Current time
Issuer Fingerprint Hashed True or false Strongly Recommended The primary key is the issuer
Reason for Revocation Hashed True False Decides over soft / hard revocation

For User ID revocations, the value of the reason subpacket can either be 0 (no reason specified) or 32, signaling that the User ID is no longer valid. The latter would result in a soft revocation, while a reason code of 0 is considered a hard revocation. Omitting the reason packet altogether is also equivalent to a hard revocation. It is recommended to issue User ID certifications using a reason code 32 and to do certificate revocations using a direct-key signature.

(binding_subkeys)=

Add a Subkey

For the purpose of key freshness, a user might want to add a new subkey to their certificate.

Linking a subkey to an OpenPGP certificate is done with a "Subkey Binding Signature". Such a signature signals that the "primary key wants to be associated with the subkey".

The subkey binding signature also adds metadata.


Linking an OpenPGP subkey to the primary key with a binding signature

The Signature packet that binds the subkey to the primary key has the signature type SubkeyBinding.

The structure is as follows:

Subpacket Area Critical Mandatory Notes
Signature Creation Time Hashed True True Current time
Issuer Fingerprint Hashed True or false Strongly Recommended The primary key is the issuer
Key Flags Hashed True Strongly Recommended Determine the usage of the key
Key Expiration Time Hashed True False Specifies the expiration date of the subkey
Embedded Signature Hashed True If Key Flags contains S Signing subkeys require embedded PrimaryKeyBinding signature
Hash Alg. Pref. Hashed False False Per key preferences
Comp. Alg. Pref. Hashed False False Per key preferences
Symm. Alg. Pref. Hashed False False Per key preferences
AEAD Alg. Pref. Hashed False False Per key preferences

Optional algorithm preference subpackets can be used to signal per-subkey preferences that deviate from those set in the certificates DirectKey signature.

In order to specify an expiration time for the subkey, a key expiration time subpacket can be included. Note, that the validity of the subkey is bounded by that of the primary key, meaning an expired primary key causes the subkey to be invalidated, no matter the subkey expiration time.

Binding subkeys with the "signing" key flag is a special case:

When binding a signing subkey to a primary key, it is not sufficient that the "primary key wants to be associated with the subkey." In addition, the subkey must signal that it "wants to be associated with that primary key."

Otherwise, Alice could "adopt" Bob's signing subkey and convincingly claim that she made signatures that were in fact issued by Bob. This is to prevent an attack where the attacker "adopts" the victims signing subkey as their own in order to claim ownership over documents which were in fact signed by the victim. Contrary to the SubkeyBinding signature, which is issued by the certificates primary key, the PrimaryKeyBinding signature is instead created by the subkey.


Linking an OpenPGP signing subkey to the primary key with a binding signature, and an embedded primary key binding signature

This additional "Primary Key Binding" Signature is informally called a "back signature" (because the subkey uses the signature to point "back" to the primary key) is an embedded PrimaryKeyBinding "back signature" (type 0x19).

Note, that a subkey cannot be "older" than the primary key. The value of the subkeys creation date MUST be greater than that of the primary key.

Revoke a Subkey

Analogous to User IDs, subkeys can be revoked individually. This is done by issuing a SubkeyRevocation signature (type 0x28) using the primary key. The structure of such a signature is rather minimal:

Subpacket Area Critical Mandatory Notes
Signature Creation Time Hashed True True Current time
Issuer Fingerprint Hashed True or false Strongly Recommended The primary key is the issuer
Reason for Revocation Hashed True False Decides over soft / hard revocation

In SubkeyRevocation signatures, the reason subpacket cannot have value 32, but instead may be from the range of 0-3. Values 1 (key superseded) and 3 (key retired and no longer used) are soft reasons, while 0 (no reason) and 2 (key compromised) are considered hard.

Revoke a Certificate

A user might want to revoke their whole certificate, rendering it unusable. Depending on the circumstances, they might either want to revoke it softly, e.g. in case of migration to a new certificate, or they want to issue a hard revocation, e.g. in case of secret key material compromise. A soft-revoked certificate can be re-validated at a later point in time, by issuing a new certification, while a hard revocation is typically permanent.

The recommended way to revoke a certificate is by issuing a KeyRevocation signature (type 0x20). The structure of a key revocation signature is similar to that of a CertificationRevocation signature.

Subpacket Area Critical Mandatory Notes
Signature Creation Time Hashed True True Current time
Issuer Fingerprint Hashed True or false Strongly Recommended The primary key is the issuer
Reason for Revocation Hashed True False Decides over soft / hard revocation

For KeyRevocation signatures, the same constraints as for SubkeyRevocation signatures apply to the reason subpacket.

Common Subpackets

There are some subpackets that are expected to be included in any type of signature.

  • Signature Creation Time: Every OpenPGP signature MUST contain a Signature Creation Time subpacket (2) containing the timestamp at which the signature was made. This packet MUST be present in the hashed area of the signature and SHOULD be marked as critical.

  • Issuer Fingerprint: In order to be able to verify a signature, the verifier needs to know, which (sub-)key was used to issue the signature in the first place. Therefore, every OpenPGP v6 signature SHOULD contain an Issuer Fingerprint subpacket (33) containing the 32 byte fingerprint of the particular component key that was used to create the signature. :::{note} The issuer key might be a subkey. ::: Since the issuer fingerprint subpacket is self-authenticating, it can either be included as a hashed or unhashed subpacket, but the authors of this book recommend to place it in the hashed area of the signature.

Potential conflicts and duplication

Since the hashed and unhashed areas of a signature are just lists of subpackets, in principle they allow duplicates of the same subpacket, which might lead to conflicts. Therefore, packets in the hashed area take precendence over the unhashed area. However, there may still be conflicts between packets in the same area, e.g. two conflicting expiration dates, etc. The specification recommends that implementations favor the last occurence of a conflicting packet in the hashed area.

In some cases, duplicate packets with conflicting content even make sense, e.g. if a signature was made by a version 4 issuer key whose key material was migrated from an older OpenPGP version such as v3. In this case, either the v3 or v4 key could be used to validate the v4 signature, but since the key ID calculation scheme was changed between v3 and v4, these identifiers would differ. Therefore, the signature could contain two isuer key ID subpackets with conflicting, but correct values.

:class: warning

- Key Flags
- Preferences
- Embedded Signature (back sig)
- Trust Signatures (amount, depth)
- Direct key signatures

  1. When stored in a file, OpenPGP certificates are in a format called transferable public key. ↩︎

  2. Storing third-party identity certifications in the target OpenPGP certificate is convenient for consumers: it is easy to find all relevant certifications in one central location. However, when third parties can unilaterally add certifications, this opens an avenue for denial-of-service attacks by flooding. The SKS network of OpenPGP key servers allowed and experienced this problem. ↩︎