<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.23 (Ruby 3.1.3) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-ietf-openpgp-crypto-refresh-09" category="std" consensus="true" submissionType="IETF" obsoletes="4880, 5581, 6637" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title>OpenPGP</title>

    <author initials="P." surname="Wouters" fullname="Paul Wouters" role="editor">
      <organization>Aiven</organization>
      <address>
        <email>paul.wouters@aiven.io</email>
      </address>
    </author>
    <author initials="D." surname="Huigens" fullname="Daniel Huigens">
      <organization>Proton AG</organization>
      <address>
        <email>d.huigens@protonmail.com</email>
      </address>
    </author>
    <author initials="J." surname="Winter" fullname="Justus Winter">
      <organization>Sequoia-PGP</organization>
      <address>
        <email>justus@sequoia-pgp.org</email>
      </address>
    </author>
    <author initials="Y." surname="Niibe" fullname="Yutaka Niibe">
      <organization>FSIJ</organization>
      <address>
        <email>gniibe@fsij.org</email>
      </address>
    </author>

    <date year="2023" month="June" day="05"/>

    <area>sec</area>
    <workgroup>Network Working Group</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document specifies the message formats used in OpenPGP.
OpenPGP provides encryption with public-key or symmetric cryptographic algorithms, digital signatures, compression and key management.</t>

<t>This document is maintained in order to publish all necessary information needed to develop interoperable applications based on the OpenPGP format.
It is not a step-by-step cookbook for writing an application.
It describes only the format and methods needed to read, check, generate, and write conforming packets crossing any network.
It does not deal with storage and implementation questions.
It does, however, discuss implementation issues necessary to avoid security flaws.</t>

<t>This document obsoletes: RFC 4880 (OpenPGP), RFC 5581 (Camellia in OpenPGP) and RFC 6637 (Elliptic Curves in OpenPGP).</t>



    </abstract>

    <note title="About This Document" removeInRFC="true">
      <t>
        The latest revision of this draft can be found at <eref target="https://openpgp-wg.gitlab.io/rfc4880bis/"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-openpgp-crypto-refresh/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        OpenPGP Working Group mailing list (<eref target="mailto:openpgp@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/openpgp/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/openpgp/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://gitlab.com/openpgp-wg/rfc4880bis"/>.</t>
    </note>


  </front>

  <middle>


<section anchor="introduction"><name>Introduction</name>

<t>This document provides information on the message-exchange packet formats used by OpenPGP to provide encryption, decryption, signing, and key management functions.
It is a revision of RFC 4880, "OpenPGP Message Format", which is a revision of RFC 2440, which itself replaces RFC 1991, "PGP Message Exchange Formats" <xref target="RFC1991"/> <xref target="RFC2440"/> <xref target="RFC4880"/>.</t>

<t>This document obsoletes: RFC 4880 (OpenPGP), RFC 5581 (Camellia in OpenPGP) and RFC 6637 (Elliptic Curves in OpenPGP).
Software that has already implemented those previous standards may want to review <xref target="upgrade-guidance"/> for pointers to what has changed.</t>

<section anchor="terms"><name>Terms</name>

<t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

<t>The key words "PRIVATE USE", "SPECIFICATION <bcp14>REQUIRED</bcp14>", and "RFC <bcp14>REQUIRED</bcp14>" that appear in this document when used to describe namespace allocation are to be interpreted as described in <xref target="RFC8126"/>.</t>

<t>Some terminology used in this document has been improved from previous versions of the OpenPGP specification.
See <xref target="terminology-changes"/> for more details.</t>

</section>
</section>
<section anchor="general-functions"><name>General functions</name>

<t>OpenPGP provides data confidentiality and integrity for messages and data files by using public-key and/or symmetric encryption, and digital signatures.
It provides formats for encoding and transferring encrypted and/or signed messages.
In addition, OpenPGP provides functionality for encoding and transferring keys and certificates, though key storage and management is beyond the scope of this document.</t>

<section anchor="confidentiality-via-encryption"><name>Confidentiality via Encryption</name>

<t>OpenPGP combines symmetric-key encryption and (optionally) public-key encryption to provide confidentiality.
When using public keys, first the object is encrypted using a symmetric encryption algorithm.
Each symmetric key is used only once, for a single object.
A new "session key" is generated as a random number for each object (sometimes referred to as a session).
Since it is used only once, the session key is bound to the message and transmitted with it.
To protect the key, it is encrypted with the receiver's public key.
The sequence is as follows:</t>

<t><list style="numbers">
  <t>The sender creates a message.</t>
  <t>The sending OpenPGP implementation generates a random session key for this message.</t>
  <t>The session key is encrypted using each recipient's public key.
These "encrypted session keys" start the message.</t>
  <t>The sending OpenPGP implementation optionally compresses the message, and then encrypts it using a message key derived from the session key.
The encrypted message forms the remainder of the OpenPGP message.</t>
  <t>The receiving OpenPGP implementation decrypts the session key using the recipient's private key.</t>
  <t>The receiving OpenPGP implementation decrypts the message using the message key derived from the session key.
If the message was compressed, it will be decompressed.</t>
</list></t>

<t>When using symmetric-key encryption, a similar process as described above is used, but the session key is encrypted with a symmetric algorithm derived from a shared secret.</t>

<t>Both digital signature and confidentiality services may be applied to the same message.
First, a signature is generated for the message and attached to the message.
Then the message plus signature is encrypted using a symmetric message key derived from the session key.
Finally, the session key is encrypted using public-key encryption and prefixed to the encrypted block.</t>

</section>
<section anchor="authentication-via-digital-signature"><name>Authentication via Digital Signature</name>

<t>The digital signature uses a cryptographic hash function and a public-key signature algorithm.
The sequence is as follows:</t>

<t><list style="numbers">
  <t>The sender creates a message.</t>
  <t>The sending software generates a hash digest of the message.</t>
  <t>The sending software generates a signature from the hash digest using the sender's private key.</t>
  <t>The signature is attached to or transmitted alongside the message.</t>
  <t>The receiving software obtains a copy of the message and the message signature.</t>
  <t>The receiving software generates a new hash digest for the received message and verifies it using the message's signature.
If the verification is successful, the message is accepted as authentic.</t>
</list></t>

</section>
<section anchor="compression"><name>Compression</name>

<t>An OpenPGP implementation <bcp14>MAY</bcp14> support the compression of data.
Many existing OpenPGP messages are compressed.
Implementers, such as those working on constrained implementations that do not want to support compression, might want to consider at least implementing decompression.</t>

</section>
<section anchor="conversion-to-base64"><name>Conversion to Base64</name>

<t>OpenPGP's underlying native representation for encrypted messages, signatures, keys, and certificates is a stream of arbitrary octets.
Some systems only permit the use of blocks consisting of seven-bit, printable text.
For transporting OpenPGP's native raw binary octets through channels that are not safe to transport raw binary data, a printable encoding of these binary octets is defined.
The raw 8-bit binary octet stream can be converted to a stream of printable ASCII characters using base64 encoding, in a format called ASCII Armor (see <xref target="base64"/>).</t>

<t>Implementations <bcp14>SHOULD</bcp14> support base64 conversions.</t>

</section>
<section anchor="signature-only-applications"><name>Signature-Only Applications</name>

<t>OpenPGP is designed for applications that use both encryption and signatures, but there are a number of use cases that only require a signature-only implementation.
Although this specification requires both encryption and signatures, it is reasonable for there to be subset implementations that are non-conformant only in that they omit encryption support.</t>

</section>
</section>
<section anchor="data-element-formats"><name>Data Element Formats</name>

<t>This section describes the data elements used by OpenPGP.</t>

<section anchor="scalar-numbers"><name>Scalar Numbers</name>

<t>Scalar numbers are unsigned and are always stored in big-endian format.
Using n[k] to refer to the kth octet being interpreted, the value of a two-octet scalar is ((n[0] &lt;&lt; 8) + n[1]).
The value of a four-octet scalar is ((n[0] &lt;&lt; 24) + (n[1] &lt;&lt; 16) + (n[2] &lt;&lt; 8) + n[3]).</t>

</section>
<section anchor="mpi"><name>Multiprecision Integers</name>

<t>Multiprecision integers (also called MPIs) are unsigned integers used to hold large integers such as the ones used in cryptographic calculations.</t>

<t>An MPI consists of two pieces: a two-octet scalar that is the length of the MPI in bits followed by a string of octets that contain the actual integer.</t>

<t>These octets form a big-endian number; a big-endian number can be made into an MPI by prefixing it with the appropriate length.</t>

<t>Examples:</t>

<t>(all numbers in the octet strings identified by square brackets are in hexadecimal)</t>

<t>The string of octets [00 00] forms an MPI with the value 0.
The string of octets [00 01 01] forms an MPI with the value 1.
The string [00 09 01 FF] forms an MPI with the value of 511.</t>

<t>Additional rules:</t>

<t>The size of an MPI is ((MPI.length + 7) / 8) + 2 octets.</t>

<t>The length field of an MPI describes the length starting from its most significant non-zero bit.
Thus, the MPI [00 02 01] is not formed correctly.
It should be [00 01 01].
When parsing an MPI in a v6 Key, Signature, or Public-Key Encrypted Session Key packet, the implementation <bcp14>MUST</bcp14> check that the encoded length matches the length starting from the most significant non-zero bit, and reject the packet as malformed if not.</t>

<t>Unused bits of an MPI <bcp14>MUST</bcp14> be zero.</t>

<section anchor="using-mpis-to-encode-other-data"><name>Using MPIs to encode other data</name>

<t>Note that MPIs are in some places used to encode non-integer data, such as an elliptic curve point (see <xref target="ec-point-wire-formats"/>), or an octet string of known, fixed length (see <xref target="ec-scalar-wire-formats"/>).
The wire representation is the same: two octets of length in bits counted from the first non-zero bit, followed by the smallest series of octets that can represent the value while stripping off any leading zero octets.</t>

</section>
</section>
<section anchor="key-ids-and-fingerprints"><name>Key IDs and Fingerprints</name>

<t>A Key ID is an eight-octet scalar that identifies a key.
Implementations <bcp14>SHOULD NOT</bcp14> assume that Key IDs are unique.
A fingerprint is more likely to be unique than a key ID.
The fingerprint and key ID of a key are calculated differently according to the version of the key.</t>

<t><xref target="key-ids-fingerprints"/> describes how Key IDs and Fingerprints are formed.</t>

</section>
<section anchor="text"><name>Text</name>

<t>Unless otherwise specified, the character set for text is the UTF-8 <xref target="RFC3629"/> encoding of Unicode <xref target="ISO10646"/>.</t>

</section>
<section anchor="time-fields"><name>Time Fields</name>

<t>A time field is an unsigned four-octet number containing the number of seconds elapsed since midnight, 1 January 1970 UTC.</t>

</section>
<section anchor="keyrings"><name>Keyrings</name>

<t>A keyring is a collection of one or more keys in a file or database.
Traditionally, a keyring is simply a sequential list of keys, but may be any suitable database.
It is beyond the scope of this standard to discuss the details of keyrings or other databases.</t>

</section>
<section anchor="string-to-key-s2k-specifier"><name>String-to-Key (S2K) Specifier</name>

<t>A string-to-key (S2K) specifier type is used to convert a passphrase string into a symmetric-key encryption/decryption key.
Passphrases requiring use of S2K conversion are currently used in two places: to encrypt the secret part of private keys, and for symmetrically encrypted messages.</t>

<section anchor="s2k-types"><name>String-to-Key (S2K) Specifier Types</name>

<t>There are four types of S2K Specifier Types currently specified, and some reserved values:</t>

<texttable title="String-to-Key (S2K) Types registry" anchor="s2k-types-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>S2K Type</ttcol>
      <ttcol align='left'>S2K field size (octets)</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Generate?</ttcol>
      <c>0</c>
      <c>Simple S2K</c>
      <c>2</c>
      <c><xref target="s2k-simple"/></c>
      <c>No</c>
      <c>1</c>
      <c>Salted S2K</c>
      <c>10</c>
      <c><xref target="s2k-salted"/></c>
      <c>Only when string is high entropy</c>
      <c>2</c>
      <c>Reserved value</c>
      <c>-</c>
      <c>-</c>
      <c>No</c>
      <c>3</c>
      <c>Iterated and Salted S2K</c>
      <c>11</c>
      <c><xref target="s2k-iter-salted"/></c>
      <c>Yes</c>
      <c>4</c>
      <c>Argon2</c>
      <c>20</c>
      <c><xref target="s2k-argon2"/></c>
      <c>Yes</c>
      <c>100 to 110</c>
      <c>Private/Experimental S2K</c>
      <c>-</c>
      <c>-</c>
      <c>As appropriate</c>
</texttable>

<t>These are described in the subsections below.
If the "Generate?" column is not "Yes", the S2K entry is used only for reading in backwards compatibility mode and should not be used to generate new output.</t>

<section anchor="s2k-simple"><name>Simple S2K</name>

<t>This directly hashes the string to produce the key data.
See below for how this hashing is done.</t>

<figure><artwork><![CDATA[
  Octet 0:        0x00
  Octet 1:        hash algorithm
]]></artwork></figure>

<t>Simple S2K hashes the passphrase to produce the session key.
The manner in which this is done depends on the size of the session key (which depends on the cipher the session key will be used with) and the size of the hash algorithm's output.
If the hash size is greater than the session key size, the high-order (leftmost) octets of the hash are used as the key.</t>

<t>If the hash size is less than the key size, multiple instances of the hash context are created --- enough to produce the required key data.
These instances are preloaded with 0, 1, 2, ...
octets of zeros (that is to say, the first instance has no preloading, the second gets preloaded with 1 octet of zero, the third is preloaded with two octets of zeros, and so forth).</t>

<t>As the data is hashed, it is given independently to each hash context.
Since the contexts have been initialized differently, they will each produce different hash output.
Once the passphrase is hashed, the output data from the multiple hashes is concatenated, first hash leftmost, to produce the key data, with any excess octets on the right discarded.</t>

</section>
<section anchor="s2k-salted"><name>Salted S2K</name>

<t>This includes a "salt" value in the S2K specifier --- some arbitrary data --- that gets hashed along with the passphrase string, to help prevent dictionary attacks.</t>

<figure><artwork><![CDATA[
  Octet 0:        0x01
  Octet 1:        hash algorithm
  Octets 2-9:     8-octet salt value
]]></artwork></figure>

<t>Salted S2K is exactly like Simple S2K, except that the input to the hash function(s) consists of the 8 octets of salt from the S2K specifier, followed by the passphrase.</t>

</section>
<section anchor="s2k-iter-salted"><name>Iterated and Salted S2K</name>

<t>This includes both a salt and an octet count.
The salt is combined with the passphrase and the resulting value is repeated and then hashed.
This further increases the amount of work an attacker must do to try dictionary attacks.</t>

<figure><artwork><![CDATA[
  Octet  0:        0x03
  Octet  1:        hash algorithm
  Octets 2-9:      8-octet salt value
  Octet  10:       count, a one-octet, coded value
]]></artwork></figure>

<t>The count is coded into a one-octet number using the following formula:</t>

<figure><artwork><![CDATA[
  #define EXPBIAS 6
      count = ((Int32)16 + (c & 15)) << ((c >> 4) + EXPBIAS);
]]></artwork></figure>

<t>The above formula is in C, where "Int32" is a type for a 32-bit integer, and the variable "c" is the coded count, Octet 10.</t>

<t>Iterated-Salted S2K hashes the passphrase and salt data multiple times.
The total number of octets to be hashed is specified in the encoded count in the S2K specifier.
Note that the resulting count value is an octet count of how many octets will be hashed, not an iteration count.</t>

<t>Initially, one or more hash contexts are set up as with the other S2K algorithms, depending on how many octets of key data are needed.
Then the salt, followed by the passphrase data, is repeatedly processed as input to each hash context until the number of octets specified by the octet count has been hashed.
The input is truncated to the octet count, except if the octet count is less than the initial isize of the salt plus passphrase.
That is, at least one copy of the full salt plus passphrase will be provided as input to each hash context regardless of the octet count.
After the hashing is done, the key data is produced from the hash digest(s) as with the other S2K algorithms.</t>

</section>
<section anchor="s2k-argon2"><name>Argon2</name>

<t>This S2K method hashes the passphrase using Argon2, specified in <xref target="RFC9106"/>.
This provides memory-hardness, further protecting the passphrase against brute-force attacks.</t>

<figure><artwork><![CDATA[
  Octet  0:        0x04
  Octets 1-16:     16-octet salt value
  Octet  17:       one-octet number of passes t
  Octet  18:       one-octet degree of parallelism p
  Octet  19:       one-octet exponent indicating the memory size m
]]></artwork></figure>

<t>The salt <bcp14>SHOULD</bcp14> be unique for each passphrase.</t>

<t>The number of passes t and the degree of parallelism p <bcp14>MUST</bcp14> be non-zero.</t>

<t>The memory size m is 2**encoded_m kibibytes of RAM, where "encoded_m" is the encoded memory size in Octet 19.
The encoded memory size <bcp14>MUST</bcp14> be a value from 3+ceil(log_2(p)) to 31, such that the decoded memory size m is a value from 8*p to 2**31.
Note that memory-hardness size is indicated in kibibytes (KiB), not octets.</t>

<t>Argon2 is invoked with the passphrase as P, the salt as S, the values of t, p and m as described above, the required key size as the tag length T, 0x13 as the version v, and Argon2id as the type.</t>

<t>For the recommended values of t, p and m, see <xref section="4" sectionFormat="of" target="RFC9106"/>.
If the recommended value of m for a given application is not a power of 2, it is <bcp14>RECOMMENDED</bcp14> to round up to the next power of 2 if the resulting performance would be acceptable, and round down otherwise (keeping in mind that m must be at least 8*p).</t>

<t>As an example, with the first recommended option (t=1, p=4, m=2**21), the full S2K specifier would be:</t>

<figure><artwork><![CDATA[
  04 XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX
  XX 01 04 15
]]></artwork></figure>

<t>(where XX represents a random octet of salt).</t>

</section>
</section>
<section anchor="s2k-usage-octet"><name>String-to-Key Usage</name>

<t>Simple S2K and Salted S2K specifiers can be brute-forced when used with a low-entropy string, such as those typically provided by users.
In addition, the usage of Simple S2K can lead to key and IV reuse (see <xref target="skesk"/>).
Therefore, when generating an S2K specifier, an implementation <bcp14>MUST NOT</bcp14> use Simple S2K.
Furthermore, an implementation <bcp14>SHOULD NOT</bcp14> generate a Salted S2K unless unless the implementation knows that the input string is high-entropy (for example, it generated the string itself using a known-good source of randomness).</t>

<t>It is <bcp14>RECOMMENDED</bcp14> that implementations use Argon2.
If Argon2 is not available, Iterated and Salted S2K <bcp14>MAY</bcp14> be used if care is taken to use a high octet count and a strong passphrase.
However, this method does not provide memory-hardness, unlike Argon2.</t>

<section anchor="secret-key-encryption"><name>Secret-Key Encryption</name>

<t>The first octet following the public key material in a secret key packet (<xref target="secret-key-packet-formats"/>) indicates whether and how the secret key material is passphrase-protected.
This first octet is known as the "S2K usage octet".</t>

<t>If S2K usage octet is zero, the secret key data is unprotected.
If it is non-zero, it describes how to use a passphrase to unlock the secret key.</t>

<t>Legacy implementations indicated a protected key by storing a symmetric cipher algorithm ID (see <xref target="symmetric-algos"/>) in the S2K usage octet.
In this case, the MD5 hash function was always used to convert the passphrase to a key for the specified cipher algorithm.</t>

<t>Modern implementations indicate a protected secret key by storing a special value 253 (AEAD), 254 (CFB), or 255 (MalleableCFB) in the S2K usage octet.
The S2K usage octet is then followed immediately by a set of fields that describe how to convert a passphrase to a symmetric key that can unlock the secret material, plus other parameters relevant to the type of encryption used.</t>

<t>The wire format fields also differ based on the version of the enclosing OpenPGP packet.
The table below, indexed by S2K usage octet, summarizes the specifics described in <xref target="secret-key-packet-formats"/>.</t>

<t>In the table below, <spanx style="verb">check(x)</spanx> means the "2-octet checksum" meaning the sum of all octets in x mod 65536.
The <spanx style="verb">info</spanx> and <spanx style="verb">packetprefix</spanx> parameters are described in detail in <xref target="secret-key-packet-formats"/>.</t>

<texttable title="Secret Key Encryption (S2K Usage Octet) registry" anchor="secret-key-protection-registry">
      <ttcol align='left'>S2K usage octet</ttcol>
      <ttcol align='left'>Shorthand</ttcol>
      <ttcol align='left'>Encryption parameter fields</ttcol>
      <ttcol align='left'>Encryption</ttcol>
      <ttcol align='left'>Generate?</ttcol>
      <c>0</c>
      <c>Unprotected</c>
      <c>-</c>
      <c><strong>v3 or v4 keys:</strong> [cleartext secrets || check(secrets)] <br /> <strong>v6 keys:</strong> [cleartext secrets]</c>
      <c>Yes</c>
      <c>Known symmetric cipher algo ID (see <xref target="symmetric-algos"/>)</c>
      <c>LegacyCFB</c>
      <c>IV</c>
      <c>CFB(MD5(passphrase), secrets || check(secrets))</c>
      <c>No</c>
      <c>253</c>
      <c>AEAD</c>
      <c>params-length (<strong>v6-only</strong>), cipher-algo, AEAD-mode, S2K-specifier-length (<strong>v6-only</strong>), S2K-specifier, nonce</c>
      <c>AEAD(HKDF(S2K(passphrase), info), secrets, packetprefix)</c>
      <c>Yes</c>
      <c>254</c>
      <c>CFB</c>
      <c>params-length (<strong>v6-only</strong>), cipher-algo, S2K-specifier-length (<strong>v6-only</strong>), S2K-specifier, IV</c>
      <c>CFB(S2K(passphrase), secrets || SHA1(secrets))</c>
      <c>Yes</c>
      <c>255</c>
      <c>MalleableCFB</c>
      <c>cipher-algo, S2K-specifier, IV</c>
      <c>CFB(S2K(passphrase), secrets || check(secrets))</c>
      <c>No</c>
</texttable>

<t>When emitting a secret key (with or without passphrase-protection) an implementation <bcp14>MUST</bcp14> only produce data from a row with "Generate?" marked as "Yes".
Each row with "Generate?" marked as "No" is described for backward compatibility (for reading v4 and earlier keys only), and <bcp14>MUST NOT</bcp14> be used to generate new output.
Version 6 secret keys using these formats <bcp14>MUST</bcp14> be rejected.</t>

<t>Note that compared to a version 4 secret key, the parameters of a passphrase-protected version 6 secret key are stored with an additional pair of length counts, each of which is one octet wide.</t>

<t>Argon2 is only used with AEAD (S2K usage octet 253).
An implementation <bcp14>MUST NOT</bcp14> create and <bcp14>MUST</bcp14> reject as malformed any secret key packet where the S2K usage octet is not AEAD (253) and the S2K specifier type is Argon2.</t>

</section>
<section anchor="symmetric-key-message-encryption"><name>Symmetric-Key Message Encryption</name>

<t>OpenPGP can create a Symmetric-key Encrypted Session Key (ESK) packet at the front of a message.
This is used to allow S2K specifiers to be used for the passphrase conversion or to create messages with a mix of symmetric-key ESKs and public-key ESKs.
This allows a message to be decrypted either with a passphrase or a public-key pair.</t>

<t>Legacy implementations always used IDEA with Simple string-to-key conversion when encrypting a message with a symmetric algorithm.
See <xref target="sed"/>.
This <bcp14>MUST NOT</bcp14> be generated, but <bcp14>MAY</bcp14> be consumed for backward-compatibility.</t>

</section>
</section>
</section>
</section>
<section anchor="packet-syntax"><name>Packet Syntax</name>

<t>This section describes the packets used by OpenPGP.</t>

<section anchor="overview"><name>Overview</name>

<t>An OpenPGP message is constructed from a number of records that are traditionally called packets.
A packet is a chunk of data that has a tag specifying its meaning.
An OpenPGP message, keyring, certificate, detached signature, and so forth consists of a number of packets.
Some of those packets may contain other OpenPGP packets (for example, a compressed data packet, when uncompressed, contains OpenPGP packets).</t>

<t>Each packet consists of a packet header, followed by the packet body.
The packet header is of variable length.</t>

<t>When handling a stream of packets, the length information in each packet header is the canonical source of packet boundaries.
An implementation handling a packet stream that wants to find the next packet <bcp14>MUST</bcp14> look for it at the precise offset indicated in the previous packet header.</t>

<t>Additionally, some packets contain internal length indicators (for example, a subfield within the packet).
In the event that a subfield length indicator within a packet implies inclusion of octets outside the range indicated in the packet header, a parser <bcp14>MUST</bcp14> abort without writing outside the indicated range and <bcp14>MUST</bcp14> treat the packet as malformed and unusable.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> interpret octets outside the range indicated in the packet header as part of the contents of the packet.</t>

</section>
<section anchor="packet-headers"><name>Packet Headers</name>

<t>The first octet of the packet header contains the "Packet Tag".
The first octet determines the format of the header and denotes the packet contents.
The remainder of the packet header is the length of the packet.</t>

<t>There are two packet formats, the (current) OpenPGP packet format specified by this document and its predecessors and the Legacy packet format as used by legacy implementations.</t>

<t>Note that the most significant bit is the leftmost bit, called bit 7.
A mask for this bit is 0x80 in hexadecimal.</t>

<figure><artwork><![CDATA[
       ┌───────────────┐
  PTag │7 6 5 4 3 2 1 0│
       └───────────────┘
  Bit 7 -- Always one
  Bit 6 -- Always one (except for Legacy packet format)
]]></artwork></figure>

<t>A zero in bit 6 of the first octet of the packet header indicates a Legacy packet format.
The Legacy packet format <bcp14>MAY</bcp14> be used when consuming packets to facilitate interoperability with legacy implementations and accessing archived data.
The Legacy packet format <bcp14>SHOULD NOT</bcp14> be used to generate new data, unless the recipient is known to only support the Legacy packet format.</t>

<t>An implementation that consumes and re-distributes pre-existing OpenPGP data (such as Transferable Public Keys) may encounter packets framed with the Legacy packet format.
Such an implementation <bcp14>MAY</bcp14> either re-distribute these packets in their Legacy format, or transform them to the current OpenPGP packet format before re-distribution.</t>

<t>The current OpenPGP packet format treats the remaining bits of the first octet as a single field:</t>

<figure><artwork><![CDATA[
  Bits 5 to 0 -- packet tag
]]></artwork></figure>

<t>Legacy packet format packets treat the remaining bits of the first octet as two fields:</t>

<figure><artwork><![CDATA[
  Bits 5 to 2 -- packet tag
  Bits 1 to 0 -- length-type
]]></artwork></figure>

<section anchor="openpgp-packet-format"><name>OpenPGP Format Packet Lengths</name>

<t>OpenPGP format packets have four possible ways of encoding length:</t>

<t><list style="numbers">
  <t>A one-octet Body Length header encodes packet lengths of up to 191 octets.</t>
  <t>A two-octet Body Length header encodes packet lengths of 192 to 8383 octets.</t>
  <t>A five-octet Body Length header encodes packet lengths of up to 4,294,967,295 (0xFFFFFFFF) octets in length.
(This actually encodes a four-octet scalar number.)</t>
  <t>When the length of the packet body is not known in advance by the issuer, Partial Body Length headers encode a packet of indeterminate length, effectively making it a stream.</t>
</list></t>

<section anchor="one-octet-lengths"><name>One-Octet Lengths</name>

<t>A one-octet Body Length header encodes a length of 0 to 191 octets.
This type of length header is recognized because the one octet value is less than 192.
The body length is equal to:</t>

<figure><artwork><![CDATA[
  bodyLen = 1st_octet;
]]></artwork></figure>

</section>
<section anchor="two-octet-lengths"><name>Two-Octet Lengths</name>

<t>A two-octet Body Length header encodes a length of 192 to 8383 octets.
It is recognized because its first octet is in the range 192 to 223.
The body length is equal to:</t>

<figure><artwork><![CDATA[
  bodyLen = ((1st_octet - 192) << 8) + (2nd_octet) + 192
]]></artwork></figure>

</section>
<section anchor="five-octet-lengths"><name>Five-Octet Lengths</name>

<t>A five-octet Body Length header consists of a single octet holding the value 255, followed by a four-octet scalar.
The body length is equal to:</t>

<figure><artwork><![CDATA[
  bodyLen = (2nd_octet << 24) | (3rd_octet << 16) |
            (4th_octet << 8)  | 5th_octet
]]></artwork></figure>

<t>This basic set of one, two, and five-octet lengths is also used internally to some packets.</t>

</section>
<section anchor="partial-body-lengths"><name>Partial Body Lengths</name>

<t>A Partial Body Length header is one octet long and encodes the length of only part of the data packet.
This length is a power of 2, from 1 to 1,073,741,824 (2 to the 30th power).
It is recognized by its one octet value that is greater than or equal to 224, and less than 255.
The Partial Body Length is equal to:</t>

<figure><artwork><![CDATA[
  partialBodyLen = 1 << (1st_octet & 0x1F);
]]></artwork></figure>

<t>Each Partial Body Length header is followed by a portion of the packet body data.
The Partial Body Length header specifies this portion's length.
Another length header (one octet, two-octet, five-octet, or partial) follows that portion.
The last length header in the packet <bcp14>MUST NOT</bcp14> be a Partial Body Length header.
Partial Body Length headers may only be used for the non-final parts of the packet.</t>

<t>Note also that the last Body Length header can be a zero-length header.</t>

<t>An implementation <bcp14>MAY</bcp14> use Partial Body Lengths for data packets, be they literal, compressed, or encrypted.
The first partial length <bcp14>MUST</bcp14> be at least 512 octets long.
Partial Body Lengths <bcp14>MUST NOT</bcp14> be used for any other packet types.</t>

</section>
</section>
<section anchor="legacy-packet-format"><name>Legacy Format Packet Lengths</name>

<t>A zero in bit 6 of the first octet of the packet indicates a Legacy packet format.
Bits 1 and 0 of the first octet of a Legacy packet are the "length-type" field.
The meaning of the length-type in Legacy format packets is:</t>

<dl>
  <dt>0</dt>
  <dd>
    <t>The packet has a one-octet length.
The header is 2 octets long.</t>
  </dd>
  <dt>1</dt>
  <dd>
    <t>The packet has a two-octet length.
The header is 3 octets long.</t>
  </dd>
  <dt>2</dt>
  <dd>
    <t>The packet has a four-octet length.
The header is 5 octets long.</t>
  </dd>
  <dt>3</dt>
  <dd>
    <t>The packet is of indeterminate length.
The header is 1 octet long, and the implementation must determine how long the packet is.
If the packet is in a file, this means that the packet extends until the end of the file.
The OpenPGP format headers have a mechanism for precisely encoding data of indeterminate length.
An implementation <bcp14>MUST NOT</bcp14> generate a Legacy format packet with indeterminate length.
An implementation <bcp14>MAY</bcp14> interpret an indeterminate length Legacy format packet in order to deal with historic data, or data generated by a legacy system.</t>
  </dd>
</dl>

</section>
<section anchor="packet-length-examples"><name>Packet Length Examples</name>

<t>These examples show ways that OpenPGP format packets might encode the packet body lengths.</t>

<t>A packet body with length 100 may have its length encoded in one octet: 0x64.
This is followed by 100 octets of data.</t>

<t>A packet body with length 1723 may have its length encoded in two octets: 0xC5, 0xFB.
This header is followed by the 1723 octets of data.</t>

<t>A packet body with length 100000 may have its length encoded in five octets: 0xFF, 0x00, 0x01, 0x86, 0xA0.</t>

<t>It might also be encoded in the following octet stream: 0xEF, first 32768 octets of data; 0xE1, next two octets of data; 0xE0, next one octet of data; 0xF0, next 65536 octets of data; 0xC5, 0xDD, last 1693 octets of data.
This is just one possible encoding, and many variations are possible on the size of the Partial Body Length headers, as long as a regular Body Length header encodes the last portion of the data.</t>

<t>Please note that in all of these explanations, the total length of the packet is the length of the header(s) plus the length of the body.</t>

</section>
</section>
<section anchor="packet-tags"><name>Packet Tags</name>

<t>The packet tag denotes what type of packet the body holds.
Note that Legacy format headers can only have tags less than 16, whereas the OpenPGP format headers can have tags as great as 63.
The defined tags (in decimal) are as follows:</t>

<texttable title="Packet Types/Tags registry" anchor="packet-types-registry">
      <ttcol align='right'>Tag</ttcol>
      <ttcol align='left'>Critical</ttcol>
      <ttcol align='left'>Packet Type</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Shorthand</ttcol>
      <c>0</c>
      <c>yes</c>
      <c>Reserved - a packet tag <bcp14>MUST NOT</bcp14> have this value</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>1</c>
      <c>yes</c>
      <c>Public-Key Encrypted Session Key Packet</c>
      <c><xref target="pkesk"/></c>
      <c>PKESK</c>
      <c>2</c>
      <c>yes</c>
      <c>Signature Packet</c>
      <c><xref target="signature-packet"/></c>
      <c>SIG</c>
      <c>3</c>
      <c>yes</c>
      <c>Symmetric-Key Encrypted Session Key Packet</c>
      <c><xref target="skesk"/></c>
      <c>SKESK</c>
      <c>4</c>
      <c>yes</c>
      <c>One-Pass Signature Packet</c>
      <c><xref target="one-pass-sig"/></c>
      <c>OPS</c>
      <c>5</c>
      <c>yes</c>
      <c>Secret-Key Packet</c>
      <c><xref target="seckey"/></c>
      <c>SECKEY</c>
      <c>6</c>
      <c>yes</c>
      <c>Public-Key Packet</c>
      <c><xref target="pubkey"/></c>
      <c>PUBKEY</c>
      <c>7</c>
      <c>yes</c>
      <c>Secret-Subkey Packet</c>
      <c><xref target="secsubkey"/></c>
      <c>SECSUBKEY</c>
      <c>8</c>
      <c>yes</c>
      <c>Compressed Data Packet</c>
      <c><xref target="compressed-data"/></c>
      <c>COMP</c>
      <c>9</c>
      <c>yes</c>
      <c>Symmetrically Encrypted Data Packet</c>
      <c><xref target="sed"/></c>
      <c>SED</c>
      <c>10</c>
      <c>yes</c>
      <c>Marker Packet</c>
      <c><xref target="marker-packet"/></c>
      <c>MARKER</c>
      <c>11</c>
      <c>yes</c>
      <c>Literal Data Packet</c>
      <c><xref target="lit"/></c>
      <c>LIT</c>
      <c>12</c>
      <c>yes</c>
      <c>Trust Packet</c>
      <c><xref target="trust"/></c>
      <c>TRUST</c>
      <c>13</c>
      <c>yes</c>
      <c>User ID Packet</c>
      <c><xref target="uid"/></c>
      <c>UID</c>
      <c>14</c>
      <c>yes</c>
      <c>Public-Subkey Packet</c>
      <c><xref target="pubsubkey"/></c>
      <c>PUBSUBKEY</c>
      <c>17</c>
      <c>yes</c>
      <c>User Attribute Packet</c>
      <c><xref target="user-attribute-packet"/></c>
      <c>UAT</c>
      <c>18</c>
      <c>yes</c>
      <c>Symmetrically Encrypted and Integrity Protected Data Packet</c>
      <c><xref target="seipd"/></c>
      <c>SEIPD</c>
      <c>19</c>
      <c>yes</c>
      <c>Reserved (formerly Modification Detection Code Packet)</c>
      <c>(see <xref target="version-one-seipd"/>)</c>
      <c>&#160;</c>
      <c>20</c>
      <c>yes</c>
      <c>Reserved (formerly AEAD Encrypted Data Packet)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>21</c>
      <c>yes</c>
      <c>Padding Packet</c>
      <c><xref target="padding-packet"/></c>
      <c>PADDING</c>
      <c>22 to 39</c>
      <c>yes</c>
      <c>Unassigned Critical Packet</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>40 to 59</c>
      <c>no</c>
      <c>Unassigned Non-Critical Packet</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>60 to 63</c>
      <c>no</c>
      <c>Private or Experimental Values</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<t>The labels in the "Shorthand" column are used for compact reference elsewhere in this draft, and may also be used by implementations that provide debugging or inspection affordances for streams of OpenPGP packets.</t>

<section anchor="packet-criticality"><name>Packet Criticality</name>

<t>The Packet Tag space is partitioned into critical packets and non-critical packets.
If an implementation encounters a critical packet where the packet type is unknown in a packet sequence, it <bcp14>MUST</bcp14> reject the whole packet sequence (see <xref target="packet-composition"/>).
On the other hand, an unknown non-critical packet <bcp14>MUST</bcp14> be ignored.</t>

<t>Packet Tags from 0 to 39 are critical.
Packet Tags from 40 to 63 are non-critical.</t>

</section>
</section>
</section>
<section anchor="packet-types"><name>Packet Types</name>

<section anchor="pkesk"><name>Public-Key Encrypted Session Key Packet (Tag 1)</name>

<t>Zero or more Public-Key Encrypted Session Key (PKESK) packets and/or Symmetric-Key Encrypted Session Key packets (<xref target="skesk"/>) precede an encryption container (that is, a Symmetrically Encrypted Integrity Protected Data packet or --- for historic data --- a Symmetrically Encrypted Data packet), which holds an encrypted message.
The message is encrypted with the session key, and the session key is itself encrypted and stored in the Encrypted Session Key packet(s).
The encryption container is preceded by one Public-Key Encrypted Session Key packet for each OpenPGP key to which the message is encrypted.
The recipient of the message finds a session key that is encrypted to their public key, decrypts the session key, and then uses the session key to decrypt the message.</t>

<t>The body of this packet starts with a one-octet number giving the version number of the packet type.
The currently defined versions are 3 and 6.
The remainder of the packet depends on the version.</t>

<t>The versions differ in how they identify the recipient key, and in what they encode.
The version of the PKESK packet must align with the version of the SEIPD packet (see <xref target="encrypted-message-versions"/>).
Any new version of the PKESK packet should be registered in the registry established in <xref target="encrypted-message-versions"/>.</t>

<section anchor="v3-pkesk"><name>Version 3 Public-Key Encrypted Session Key Packet Format</name>

<t>A version 3 Public-Key Encrypted Session Key (PKESK) packet precedes a version 1 Symmetrically Encrypted Integrity Protected Data (v1 SEIPD, see <xref target="version-one-seipd"/>) packet.
In historic data, it is sometimes found preceding a deprecated Symmetrically Encrypted Data packet (SED, see <xref target="sed"/>).
A v3 PKESK packet <bcp14>MUST NOT</bcp14> precede a v2 SEIPD packet (see <xref target="encrypted-message-versions"/>).</t>

<t>The v3 PKESK packet consists of:</t>

<t><list style="symbols">
  <t>A one-octet version number with value 3.</t>
  <t>An eight-octet number that gives the Key ID of the public key to which the session key is encrypted.
If the session key is encrypted to a subkey, then the Key ID of this subkey is used here instead of the Key ID of the primary key.
The Key ID may also be all zeros, for an "anonymous recipient" (see <xref target="pkesk-notes"/>).</t>
  <t>A one-octet number giving the public-key algorithm used.</t>
  <t>A series of values comprising the encrypted session key.
This is algorithm-specific and described below.</t>
</list></t>

<t>The public-key encryption algorithm (described in subsequent sections) is passed two values:</t>

<t><list style="symbols">
  <t>The session key.</t>
  <t>The one-octet algorithm identifier that specifies the symmetric encryption algorithm used to encrypt the following v1 SEIPD packet.</t>
</list></t>

</section>
<section anchor="v6-pkesk"><name>Version 6 Public-Key Encrypted Session Key Packet Format</name>

<t>A version 6 Public-Key Encrypted Session Key (PKESK) packet precedes a version 2 Symmetrically Encrypted Integrity Protected Data (v2 SEIPD, see <xref target="version-two-seipd"/>) packet.
A v6 PKESK packet <bcp14>MUST NOT</bcp14> precede a v1 SEIPD packet or a deprecated Symmetrically Encrypted Data packet (see <xref target="encrypted-message-versions"/>).</t>

<t>The v6 PKESK packet consists of:</t>

<t><list style="symbols">
  <t>A one-octet version number with value 6.</t>
  <t>A one-octet size of the following two fields.
The size may also be zero, and the key version and fingerprint omitted for an "anonymous recipient" (see <xref target="pkesk-notes"/>).</t>
  <t>A one octet key version number.</t>
  <t>The fingerprint of the public key or subkey to which the session key is encrypted.
Note that the length N of the fingerprint for a version 4 key is 20 octets; for a version 6 key N is 32.</t>
  <t>A one-octet number giving the public-key algorithm used.</t>
  <t>A series of values comprising the encrypted session key.
This is algorithm-specific and described below.</t>
</list></t>

<t>The session key is encrypted according to the public-key algorithm used, as described below.
No symmetric encryption algorithm identifier is passed to the public-key algorithm for a v6 PKESK packet, as it is included in the v2 SEIPD packet.</t>

</section>
<section anchor="pkesk-rsa"><name>Algorithm-Specific Fields for RSA encryption</name>

<t><list style="symbols">
  <t>Multiprecision integer (MPI) of RSA-encrypted value m**e mod n.</t>
</list></t>

<t>To produce the value value "m" in the above formula, first concatenate the following values:</t>

<t><list style="symbols">
  <t>The one-octet algorithm identifier, if it was passed (in the case of a v3 PKESK packet).</t>
  <t>The session key.</t>
  <t>A two-octet checksum of the session key, equal to the sum of the session key octets, modulo 65536.</t>
</list></t>

<t>Then, the above values are encoded using the PKCS#1 block encoding EME-PKCS1-v1_5 described in step 2 of <xref section="7.2.1" sectionFormat="of" target="RFC8017"/> (see also <xref target="eme-pkcs1-v1-5-encode"/>).
When decoding "m" during decryption, an implementation should follow step 3 of <xref section="7.2.2" sectionFormat="of" target="RFC8017"/> (see also <xref target="eme-pkcs1-v1-5-decode"/>).</t>

<t>Note that when an implementation forms several PKESKs with one session key, forming a message that can be decrypted by several keys, the implementation <bcp14>MUST</bcp14> make a new PKCS#1 encoding for each key.
This defends against attacks such as those discussed in <xref target="HASTAD"/>.</t>

</section>
<section anchor="pkesk-elgamal"><name>Algorithm-Specific Fields for Elgamal encryption</name>

<t><list style="symbols">
  <t>MPI of Elgamal (Diffie-Hellman) value g**k mod p.</t>
  <t>MPI of Elgamal (Diffie-Hellman) value m * y**k mod p.</t>
</list></t>

<t>To produce the value value "m" in the above formula, first concatenate the following values:</t>

<t><list style="symbols">
  <t>The one-octet algorithm identifier, if it was passed (in the case of a v3 PKESK packet).</t>
  <t>The session key.</t>
  <t>A two-octet checksum of the session key, equal to the sum of the session key octets, modulo 65536.</t>
</list></t>

<t>Then, the above values are encoded using the PKCS#1 block encoding EME-PKCS1-v1_5 described in step 2 of <xref section="7.2.1" sectionFormat="of" target="RFC8017"/> (see also <xref target="eme-pkcs1-v1-5-encode"/>).
When decoding "m" during decryption, an implementation should follow step 3 of <xref section="7.2.2" sectionFormat="of" target="RFC8017"/> (see also <xref target="eme-pkcs1-v1-5-decode"/>).</t>

<t>Note that when an implementation forms several PKESKs with one session key, forming a message that can be decrypted by several keys, the implementation <bcp14>MUST</bcp14> make a new PKCS#1 encoding for each key.
This defends against attacks such as those discussed in <xref target="HASTAD"/>.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> generate ElGamal v6 PKESKs.</t>

</section>
<section anchor="pkesk-ecdh"><name>Algorithm-Specific Fields for ECDH encryption</name>

<t><list style="symbols">
  <t>MPI of an EC point representing an ephemeral public key, in the point format associated with the curve as specified in <xref target="ec-curves"/>.</t>
  <t>A one-octet size, followed by a symmetric key encoded using the method described in <xref target="ecdh"/>.</t>
</list></t>

</section>
<section anchor="pkesk-x25519"><name>Algorithm-Specific Fields for X25519 encryption</name>

<t><list style="symbols">
  <t>32 octets representing an ephemeral X25519 public key.</t>
  <t>A one-octet size of the following fields.</t>
  <t>The one-octet algorithm identifier, if it was passed (in the case of a v3 PKESK packet).</t>
  <t>The encrypted session key.</t>
</list></t>

<t>See <xref section="6.1" sectionFormat="of" target="RFC7748"/> for more details on the computation of the ephemeral public key and the shared secret.
HKDF (see <xref target="RFC5869"/>) is then used with SHA256 and an info parameter of "OpenPGP X25519" and no salt.
The input of HKDF is the concatenation of the following three values:</t>

<t><list style="symbols">
  <t>32 octets of the ephemeral X25519 public key from this packet.</t>
  <t>32 octets of the recipient public key material.</t>
  <t>32 octets of the shared secret.</t>
</list></t>

<t>The key produced from HKDF is used to encrypt the session key with AES-128 key wrap, as defined in <xref target="RFC3394"/>.</t>

<t>Note that unlike ECDH, no checksum or padding are appended to the session key before key wrapping.
Finally, note that unlike the other public-key algorithms, in the case of a v3 PKESK packet, the symmetric algorithm identifier is not encrypted.
Instead, it is prepended to the encrypted session key in plaintext.
In this case, the symmetric algorithm used <bcp14>MUST</bcp14> be AES-128, AES-192 or AES-256 (algorithm ID 7, 8 or 9).</t>

</section>
<section anchor="pkesk-x448"><name>Algorithm-Specific Fields for X448 encryption</name>

<t><list style="symbols">
  <t>56 octets representing an ephemeral X448 public key.</t>
  <t>A one-octet size of the following fields.</t>
  <t>The one-octet algorithm identifier, if it was passed (in the case of a v3 PKESK packet).</t>
  <t>The encrypted session key.</t>
</list></t>

<t>See <xref section="6.2" sectionFormat="of" target="RFC7748"/> for more details on the computation of the ephemeral public key and the shared secret.
HKDF (see <xref target="RFC5869"/>) is then used with SHA512 and an info parameter of "OpenPGP X448" and no salt.
The input of HKDF is the concatenation of the following three values:</t>

<t><list style="symbols">
  <t>56 octets of the ephemeral X448 public key from this packet.</t>
  <t>56 octets of the recipient public key material.</t>
  <t>56 octets of the shared secret.</t>
</list></t>

<t>The key produced from HKDF is used to encrypt the session key with AES-256 key wrap, as defined in <xref target="RFC3394"/>.</t>

<t>Note that unlike ECDH, no checksum or padding are appended to the session key before key wrapping.
Finally, note that unlike the other public-key algorithms, in the case of a v3 PKESK packet, the symmetric algorithm identifier is not encrypted.
Instead, it is prepended to the encrypted session key in plaintext.
In this case, the symmetric algorithm used <bcp14>MUST</bcp14> be AES-128, AES-192 or AES-256 (algorithm ID 7, 8 or 9).</t>

</section>
<section anchor="pkesk-notes"><name>Notes on PKESK</name>

<t>An implementation <bcp14>MAY</bcp14> accept or use a Key ID of all zeros, or an omitted key fingerprint, to hide the intended decryption key.
In this case, the receiving implementation would try all available private keys, checking for a valid decrypted session key.
This format helps reduce traffic analysis of messages.</t>

</section>
</section>
<section anchor="signature-packet"><name>Signature Packet (Tag 2)</name>

<t>A Signature packet describes a binding between some public key and some data.
The most common signatures are a signature of a file or a block of text, and a signature that is a certification of a User ID.</t>

<t>Three versions of Signature packets are defined.
Version 3 provides basic signature information, while versions 4 and 6 provide an expandable format with subpackets that can specify more information about the signature.</t>

<t>For historical reasons, versions 1, 2, and 5 of the Signature packet are unspecified.
Any new Signature packet version should be registered in the registry established in <xref target="signed-message-versions"/>.</t>

<t>An implementation <bcp14>MUST</bcp14> generate a version 6 signature when signing with a version 6 key.
An implementation <bcp14>MUST</bcp14> generate a version 4 signature when signing with a version 4 key.
Implementations <bcp14>MUST NOT</bcp14> create version 3 signatures; they <bcp14>MAY</bcp14> accept version 3 signatures.
See <xref target="signed-message-versions"/> for more details about packet version correspondence between keys and signatures.</t>

<section anchor="signature-types"><name>Signature Types</name>

<t>There are a number of possible meanings for a signature, which are indicated in a signature type octet in any given signature.
Please note that the vagueness of these meanings is not a flaw, but a feature of the system.
Because OpenPGP places final authority for validity upon the receiver of a signature, it may be that one signer's casual act might be more rigorous than some other authority's positive act.
See <xref target="computing-signatures"/> for detailed information on how to compute and verify signatures of each type.</t>

<texttable title="Signature Types registry" anchor="signature-types-registry">
      <ttcol align='left'>Sigtype</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0x00</c>
      <c>Binary Signature</c>
      <c><xref target="sigtype-binary"/></c>
      <c>0x01</c>
      <c>Text Signature</c>
      <c><xref target="sigtype-text"/></c>
      <c>0x02</c>
      <c>Standalone Signature</c>
      <c><xref target="sigtype-standalone"/></c>
      <c>0x10</c>
      <c>Generic Certification</c>
      <c><xref target="sigtype-generic-cert"/></c>
      <c>0x11</c>
      <c>Persona Certification</c>
      <c><xref target="sigtype-persona-cert"/></c>
      <c>0x12</c>
      <c>Casual Certification</c>
      <c><xref target="sigtype-casual-cert"/></c>
      <c>0x13</c>
      <c>Positive Certification</c>
      <c><xref target="sigtype-positive-cert"/></c>
      <c>0x18</c>
      <c>Subkey Binding Signature</c>
      <c><xref target="sigtype-subkey-binding"/></c>
      <c>0x19</c>
      <c>Primary Key Binding Signature</c>
      <c><xref target="sigtype-primary-binding"/></c>
      <c>0x1F</c>
      <c>Direct Key Signature</c>
      <c><xref target="sigtype-direct-key"/></c>
      <c>0x20</c>
      <c>Key Revocation</c>
      <c><xref target="sigtype-key-revocation"/></c>
      <c>0x28</c>
      <c>Subkey Revocation</c>
      <c><xref target="sigtype-subkey-revocation"/></c>
      <c>0x30</c>
      <c>Certification Revocation</c>
      <c><xref target="sigtype-certification-revocation"/></c>
      <c>0x40</c>
      <c>Timestamp Signature</c>
      <c><xref target="sigtype-timestamp"/></c>
      <c>0x50</c>
      <c>Third-Party Confirmation</c>
      <c><xref target="sigtype-third-party-confirmation"/></c>
      <c>0xFF</c>
      <c>Reserved</c>
      <c><xref target="sigtype-reserved"/></c>
</texttable>

<t>These meanings of each signature type are described in the subsections below.</t>

<section anchor="sigtype-binary"><name>Signature of a binary document (sigtype 0x00)</name>

<t>This means the signer owns it, created it, or certifies that it has not been modified.</t>

</section>
<section anchor="sigtype-text"><name>Signature of a canonical text document (sigtype 0x01)</name>

<t>This means the signer owns it, created it, or certifies that it has not been modified.
The signature is calculated over the text data with its line endings converted to &lt;CR&gt;&lt;LF&gt;.</t>

</section>
<section anchor="sigtype-standalone"><name>Standalone signature (sigtype 0x02)</name>

<t>This signature is a signature of only its own subpacket contents.
It is calculated identically to a signature over a zero-length binary document.
 V3 standalone signatures <bcp14>MUST NOT</bcp14> be generated and <bcp14>MUST</bcp14> be ignored.</t>

</section>
<section anchor="sigtype-generic-cert"><name>Generic certification of a User ID and Public-Key packet (sigtype 0x10)</name>

<t>The issuer of this certification does not make any particular assertion as to how well the certifier has checked that the owner of the key is in fact the person described by the User ID.</t>

</section>
<section anchor="sigtype-persona-cert"><name>Persona certification of a User ID and Public-Key packet (sigtype 0x11)</name>

<t>The issuer of this certification has not done any verification of the claim that the owner of this key is the User ID specified.</t>

</section>
<section anchor="sigtype-casual-cert"><name>Casual certification of a User ID and Public-Key packet (sigtype 0x12)</name>

<t>The issuer of this certification has done some casual verification of the claim of identity.</t>

</section>
<section anchor="sigtype-positive-cert"><name>Positive certification of a User ID and Public-Key packet (sigtype 0x13)</name>

<t>The issuer of this certification has done substantial verification of the claim of identity.</t>

<t>Most OpenPGP implementations make their "key signatures" as generic (sigtype 0x10) certifications.
Some implementations can issue 0x11-0x13 certifications, but few differentiate between the types.</t>

</section>
<section anchor="sigtype-subkey-binding"><name>Subkey Binding Signature (sigtype 0x18)</name>

<t>This signature is a statement by the top-level signing key that indicates that it owns the subkey.
This signature is calculated directly on the primary key and subkey, and not on any User ID or other packets.
A signature that binds a signing subkey <bcp14>MUST</bcp14> have an Embedded Signature subpacket in this binding signature that contains a 0x19 signature made by the signing subkey on the primary key and subkey.</t>

</section>
<section anchor="sigtype-primary-binding"><name>Primary Key Binding Signature (sigtype 0x19)</name>

<t>This signature is a statement by a signing subkey, indicating that it is owned by the primary key and subkey.
This signature is calculated the same way as a subkey binding signature (0x18): directly on the primary key and subkey, and not on any User ID or other packets.</t>

</section>
<section anchor="sigtype-direct-key"><name>Signature directly on a key (sigtype 0x1F)</name>

<t>This signature is calculated directly on a key.
It binds the information in the Signature subpackets to the key, and is appropriate to be used for subpackets that provide information about the key, such as the Key Flags subpacket or (deprecated) Revocation Key.
It is also appropriate for statements that non-self certifiers want to make about the key itself, rather than the binding between a key and a name.</t>

</section>
<section anchor="sigtype-key-revocation"><name>Key revocation signature (sigtype 0x20)</name>

<t>The signature is calculated directly on the key being revoked.
A revoked key is not to be used.
Only revocation signatures by the key being revoked, or by a (deprecated) Revocation Key, should be considered valid revocation signatures.</t>

</section>
<section anchor="sigtype-subkey-revocation"><name>Subkey revocation signature (sigtype 0x28)</name>

<t>The signature is calculated directly on the primary key and the subkey being revoked.
A revoked subkey is not to be used.
Only revocation signatures by the top-level signature key that is bound to this subkey, or by a (deprecated) Revocation Key, should be considered valid revocation signatures.</t>

</section>
<section anchor="sigtype-certification-revocation"><name>Certification revocation signature (sigtype 0x30)</name>

<t>This signature revokes an earlier User ID certification signature (signature class 0x10 through 0x13) or direct-key signature (0x1F).
It should be issued by the same key that issued the revoked signature or by a (deprecated) Revocation Key.
The signature is computed over the same data as the certification that it revokes, and should have a later creation date than that certification.</t>

</section>
<section anchor="sigtype-timestamp"><name>Timestamp signature (sigtype 0x40)</name>

<t>This signature is only meaningful for the timestamp contained in it.</t>

</section>
<section anchor="sigtype-third-party-confirmation"><name>Third-Party Confirmation signature (sigtype 0x50)</name>

<t>This signature is a signature over some other OpenPGP Signature packet(s).
It is analogous to a notary seal on the signed data.
A third-party signature <bcp14>SHOULD</bcp14> include Signature Target subpacket(s) to give easy identification.
Note that we really do mean <bcp14>SHOULD</bcp14>.
There are plausible uses for this (such as a blind party that only sees the signature, not the key or source document) that cannot include a target subpacket.</t>

</section>
<section anchor="sigtype-reserved"><name>Reserved (sigtype 0xFF)</name>

<t>An implementation <bcp14>MUST NOT</bcp14> create any signature with this type, and <bcp14>MUST NOT</bcp14> validate any signature made with this type.
See <xref target="sig-computation-notes"/> for more details.</t>

</section>
</section>
<section anchor="version-three-sig"><name>Version 3 Signature Packet Format</name>

<t>The body of a version 3 Signature Packet contains:</t>

<t><list style="symbols">
  <t>One-octet version number (3).</t>
  <t>One-octet length of following hashed material.
<bcp14>MUST</bcp14> be 5.  <list style="symbols">
      <t>One-octet signature type.</t>
      <t>Four-octet creation time.</t>
    </list></t>
  <t>Eight-octet Key ID of signer.</t>
  <t>One-octet public-key algorithm.</t>
  <t>One-octet hash algorithm.</t>
  <t>Two-octet field holding left 16 bits of signed hash value.</t>
  <t>One or more multiprecision integers comprising the signature.
This portion is algorithm-specific, as described below.</t>
</list></t>

<t>The concatenation of the data to be signed, the signature type, and creation time from the Signature packet (5 additional octets) is hashed.
The resulting hash value is used in the signature algorithm.
The high 16 bits (first two octets) of the hash are included in the Signature packet to provide a way to reject some invalid signatures without performing a signature verification.</t>

<t>Algorithm-Specific Fields for RSA signatures:</t>

<t><list style="symbols">
  <t>Multiprecision integer (MPI) of RSA signature value m**d mod n.</t>
</list></t>

<t>Algorithm-Specific Fields for DSA signatures:</t>

<t><list style="symbols">
  <t>MPI of DSA value r.</t>
  <t>MPI of DSA value s.</t>
</list></t>

<t>The signature calculation is based on a hash of the signed data, as described above.
The details of the calculation are different for DSA signatures than for RSA signatures, see <xref target="sig-rsa"/> and <xref target="sig-dsa"/>.</t>

</section>
<section anchor="version-four-and-six-sig"><name>Version 4 and 6 Signature Packet Formats</name>

<t>The body of a v4 or v6 Signature packet contains:</t>

<t><list style="symbols">
  <t>One-octet version number.
This is 4 for v4 signatures and 6 for v6 signatures.</t>
  <t>One-octet signature type.</t>
  <t>One-octet public-key algorithm.</t>
  <t>One-octet hash algorithm.</t>
  <t>A scalar octet count for the following hashed subpacket data.
For a v4 signature, this is a two-octet field.
For a v6 signature, this is a four-octet field.
Note that this is the length in octets of all of the hashed subpackets; a pointer incremented by this number will skip over the hashed subpackets.</t>
  <t>Hashed subpacket data set (zero or more subpackets).</t>
  <t>A scalar octet count for the following unhashed subpacket data.
For a v4 signature, this is a two-octet field.
For a v6 signature, this is a four-octet field.
Note that this is the length in octets of all of the unhashed subpackets; a pointer incremented by this number will skip over the unhashed subpackets.</t>
  <t>Unhashed subpacket data set (zero or more subpackets).</t>
  <t>Two-octet field holding the left 16 bits of the signed hash value.</t>
  <t>Only for v6 signatures, a variable-length field containing:  <list style="symbols">
      <t>A one-octet salt size. The value <bcp14>MUST</bcp14> match the value defined for the hash algorithm as specified in <xref target="hash-algorithms-registry"/>.</t>
      <t>The salt; a random value value of the specified size.</t>
    </list></t>
  <t>One or more multiprecision integers comprising the signature.
This portion is algorithm-specific:</t>
</list></t>

<section anchor="sig-rsa"><name>Algorithm-Specific Fields for RSA signatures</name>

<t><list style="symbols">
  <t>Multiprecision integer (MPI) of RSA signature value m**d mod n.</t>
</list></t>

<t>With RSA signatures, the hash value is encoded using PKCS#1 encoding type EMSA-PKCS1-v1_5 as described in <xref section="9.2" sectionFormat="of" target="RFC8017"/> (see also <xref target="emsa-pkcs1-v1-5"/>).
This requires inserting the hash value as an octet string into an ASN.1 structure.
The object identifier (OID) for the hash algorithm itself is also included in the structure, see the OIDs in <xref target="emsa-hash-oids-registry"/>.</t>

</section>
<section anchor="sig-dsa"><name>Algorithm-Specific Fields for DSA or ECDSA signatures</name>

<t><list style="symbols">
  <t>MPI of DSA or ECDSA value r.</t>
  <t>MPI of DSA or ECDSA value s.</t>
</list></t>

<t>A version 3 signature <bcp14>MUST NOT</bcp14> be created and <bcp14>MUST NOT</bcp14> be used with ECDSA.</t>

<t>DSA signatures <bcp14>MUST</bcp14> use hashes that are equal in size to the number of bits of q, the group generated by the DSA key's generator value.</t>

<t>If the output size of the chosen hash is larger than the number of bits of q, the hash result is truncated to fit by taking the number of leftmost bits equal to the number of bits of q.
This (possibly truncated) hash function result is treated as a number and used directly in the DSA signature algorithm.</t>

</section>
<section anchor="sig-eddsa-legacy"><name>Algorithm-Specific Fields for EdDSALegacy signatures (deprecated)</name>

<t><list style="symbols">
  <t>Two MPI-encoded values, whose contents and formatting depend on the choice of curve used (see <xref target="curve-specific-formats"/>).</t>
</list></t>

<t>A version 3 signature <bcp14>MUST NOT</bcp14> be created and <bcp14>MUST NOT</bcp14> be used with EdDSALegacy.</t>

<section anchor="algorithm-specific-fields-for-ed25519legacy-signatures-deprecated"><name>Algorithm-Specific Fields for Ed25519Legacy signatures (deprecated)</name>

<t>The two MPIs for Ed25519Legacy use octet strings R and S as described in <xref target="RFC8032"/>.
Ed25519Legacy <bcp14>MUST NOT</bcp14> be used in signature packets version 6 or above.</t>

<t><list style="symbols">
  <t>MPI of an EC point R, represented as a (non-prefixed) native (little-endian) octet string up to 32 octets.</t>
  <t>MPI of EdDSA value S, also in (non-prefixed) native (little-endian) format with a length up to 32 octets.</t>
</list></t>

</section>
</section>
<section anchor="sig-ed25519"><name>Algorithm-Specific Fields for Ed25519 signatures</name>

<t><list style="symbols">
  <t>64 octets of the native signature.</t>
</list></t>

<t>For more details, see <xref target="eddsa-notes"/>.</t>

<t>A version 3 signature <bcp14>MUST NOT</bcp14> be created and <bcp14>MUST NOT</bcp14> be used with Ed25519.</t>

</section>
<section anchor="sig-ed448"><name>Algorithm-Specific Fields for Ed448 signatures</name>

<t><list style="symbols">
  <t>114 octets of the native signature.</t>
</list></t>

<t>For more details, see <xref target="eddsa-notes"/>.</t>

<t>A version 3 signature <bcp14>MUST NOT</bcp14> be created and <bcp14>MUST NOT</bcp14> be used with Ed448.</t>

</section>
<section anchor="notes-on-signatures"><name>Notes on Signatures</name>

<t>The concatenation of the data being signed and the signature data from the version number through the hashed subpacket data (inclusive) is hashed.
The resulting hash value is what is signed.
The high 16 bits (first two octets) of the hash are included in the Signature packet to provide a way to reject some invalid signatures without performing a signature verification.
When verifying a v6 signature, an implementation <bcp14>MUST</bcp14> reject the signature if these octets don't match the first two octets of the computed hash.</t>

<t>There are two fields consisting of Signature subpackets.
The first field is hashed with the rest of the signature data, while the second is unhashed.
The second set of subpackets (the "unhashed section") is not cryptographically protected by the signature and should include only advisory information.
See <xref target="subpacket-section-guidance"/> for more information.</t>

<t>The differences between a v4 and v6 signature are two-fold: first, a v6 signature increases the width of the fields that indicate the size of the hashed and unhashed subpackets, making it possible to include significantly more data in subpackets.
Second, the hash is salted with random data (see <xref target="signature-salt-rationale"/>).</t>

<t>The algorithms for converting the hash function result to a signature are described in <xref target="computing-signatures"/>.</t>

</section>
<section anchor="signature-subpacket"><name>Signature Subpacket Specification</name>

<t>A subpacket data set consists of zero or more Signature subpackets.
In Signature packets, the subpacket data set is preceded by a two-octet (for v4 signatures) or four-octet (for v6 signatures) scalar count of the length in octets of all the subpackets.
A pointer incremented by this number will skip over the subpacket data set.</t>

<t>Each subpacket consists of a subpacket header and a body.
The header consists of:</t>

<t><list style="symbols">
  <t>The subpacket length (1, 2, or 5 octets),</t>
  <t>The subpacket type (1 octet),</t>
</list></t>

<t>and is followed by the subpacket-specific data.</t>

<t>The length includes the type octet but not this length.
Its format is similar to the OpenPGP format packet header lengths, but cannot have Partial Body Lengths.
That is:</t>

<figure><artwork><![CDATA[
if the 1st octet <  192, then
    lengthOfLength = 1
    subpacketLen = 1st_octet

if the 1st octet >= 192 and < 255, then
    lengthOfLength = 2
    subpacketLen = ((1st_octet - 192) << 8) + (2nd_octet) + 192

if the 1st octet = 255, then
    lengthOfLength = 5
    subpacket length = [four-octet scalar starting at 2nd_octet]
]]></artwork></figure>

<t>The value of the subpacket type octet may be:</t>

<texttable title="Signature Subpacket Types registry" anchor="signature-subpacket-types-registry">
      <ttcol align='right'>Type</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>1</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>2</c>
      <c>Signature Creation Time</c>
      <c><xref target="signature-creation-subpacket"/></c>
      <c>3</c>
      <c>Signature Expiration Time</c>
      <c><xref target="signature-expiration-subpacket"/></c>
      <c>4</c>
      <c>Exportable Certification</c>
      <c><xref target="exportable-certification-subpacket"/></c>
      <c>5</c>
      <c>Trust Signature</c>
      <c><xref target="trust-signature-subpacket"/></c>
      <c>6</c>
      <c>Regular Expression</c>
      <c><xref target="regex-subpacket"/></c>
      <c>7</c>
      <c>Revocable</c>
      <c><xref target="revocable-subpacket"/></c>
      <c>8</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>9</c>
      <c>Key Expiration Time</c>
      <c><xref target="key-expiration-subpacket"/></c>
      <c>10</c>
      <c>Placeholder for backward compatibility</c>
      <c>&#160;</c>
      <c>11</c>
      <c>Preferred Symmetric Ciphers for v1 SEIPD</c>
      <c><xref target="preferred-v1-seipd"/></c>
      <c>12</c>
      <c>Revocation Key (deprecated)</c>
      <c><xref target="revocation-key"/></c>
      <c>13 to 15</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>16</c>
      <c>Issuer Key ID <xref target="issuer-keyid-subpacket"/></c>
      <c>&#160;</c>
      <c>17 to 19</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>20</c>
      <c>Notation Data</c>
      <c><xref target="notation-data"/></c>
      <c>21</c>
      <c>Preferred Hash Algorithms</c>
      <c><xref target="preferred-hashes-subpacket"/></c>
      <c>22</c>
      <c>Preferred Compression Algorithms</c>
      <c><xref target="preferred-compression-subpacket"/></c>
      <c>23</c>
      <c>Key Server Preferences</c>
      <c><xref target="key-server-preferences"/></c>
      <c>24</c>
      <c>Preferred Key Server</c>
      <c><xref target="preferred-key-server-subpacket"/></c>
      <c>25</c>
      <c>Primary User ID</c>
      <c><xref target="primary-user-id-subpacket"/></c>
      <c>26</c>
      <c>Policy URI</c>
      <c><xref target="policy-uri-subpacket"/></c>
      <c>27</c>
      <c>Key Flags</c>
      <c><xref target="key-flags"/></c>
      <c>28</c>
      <c>Signer's User ID</c>
      <c><xref target="signers-user-id-subpacket"/></c>
      <c>29</c>
      <c>Reason for Revocation</c>
      <c><xref target="reason-for-revocation"/></c>
      <c>30</c>
      <c>Features</c>
      <c><xref target="features-subpacket"/></c>
      <c>31</c>
      <c>Signature Target</c>
      <c><xref target="signature-target-subpacket"/></c>
      <c>32</c>
      <c>Embedded Signature</c>
      <c><xref target="embedded-signature-subpacket"/></c>
      <c>33</c>
      <c>Issuer Fingerprint</c>
      <c><xref target="issuer-fingerprint-subpacket"/></c>
      <c>34</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>35</c>
      <c>Intended Recipient Fingerprint</c>
      <c><xref target="intended-recipient-fingerprint"/></c>
      <c>37</c>
      <c>Reserved (Attested Certifications)</c>
      <c>&#160;</c>
      <c>38</c>
      <c>Reserved (Key Block)</c>
      <c>&#160;</c>
      <c>39</c>
      <c>Preferred AEAD Ciphersuites</c>
      <c><xref target="preferred-v2-seipd"/></c>
      <c>100 to 110</c>
      <c>Private or experimental</c>
      <c>&#160;</c>
</texttable>

<t>An implementation <bcp14>SHOULD</bcp14> ignore any subpacket of a type that it does not recognize.</t>

<t>Bit 7 of the subpacket type is the "critical" bit.
If set, it denotes that the subpacket is one that is critical for the evaluator of the signature to recognize.
If a subpacket is encountered that is marked critical but is unknown to the evaluating software, the evaluator <bcp14>SHOULD</bcp14> consider the signature to be in error.</t>

<t>An evaluator may "recognize" a subpacket, but not implement it.
The purpose of the critical bit is to allow the signer to tell an evaluator that it would prefer a new, unknown feature to generate an error rather than being ignored.</t>

<t>Implementations <bcp14>SHOULD</bcp14> implement the four preferred algorithm subpackets (11, 21, 22, and 39), as well as the "Features" subpacket and the "Reason for Revocation" subpacket.
To avoid surreptitious forwarding (see <xref target="surreptitious-forwarding"/>), implementations <bcp14>SHOULD</bcp14> also implement the "Intended Recipients" subpacket.
Note that if an implementation chooses not to implement some of the preferences subpackets, it <bcp14>MUST</bcp14> default to the mandatory-to-implement algorithms to ensure interoperability.
An encrypting implementation that does not implement the "Features" subpacket <bcp14>SHOULD</bcp14> select the type of encrypted data format based instead on the versions of the recipient keys or external inference (see <xref target="ciphertext-malleability"/> for more details).</t>

</section>
<section anchor="signature-subpacket-types"><name>Signature Subpacket Types</name>

<t>A number of subpackets are currently defined for OpenPGP signatures.
Some subpackets apply to the signature itself and some are attributes of the key.
Subpackets that are found on a self-signature are placed on a certification made by the key itself.
Note that a key may have more than one User ID, and thus may have more than one self-signature, and differing subpackets.</t>

<t>A subpacket may be found either in the hashed or unhashed subpacket sections of a signature.
If a subpacket is not hashed, then the information in it cannot be considered definitive because it is not part of the signature proper.
See <xref target="subpacket-section-guidance"/> for more discussion about hashed and unhashed subpackets.</t>

</section>
<section anchor="notes-on-subpackets"><name>Notes on Subpackets</name>

<t>It is certainly possible for a signature to contain conflicting information in subpackets.
For example, a signature may contain multiple copies of a preference or multiple expiration times.
In most cases, an implementation <bcp14>SHOULD</bcp14> use the last subpacket in the hashed section of the signature, but <bcp14>MAY</bcp14> use any conflict resolution scheme that makes more sense.
Please note that we are intentionally leaving conflict resolution to the implementer; most conflicts are simply syntax errors, and the wishy-washy language here allows a receiver to be generous in what they accept, while putting pressure on a creator to be stingy in what they generate.</t>

<t>Some apparent conflicts may actually make sense --- for example, suppose a keyholder has a v3 key and a v4 key that share the same RSA key material.
Either of these keys can verify a signature created by the other, and it may be reasonable for a signature to contain an Issuer Key ID subpacket (<xref target="issuer-keyid-subpacket"/>) for each key, as a way of explicitly tying those keys to the signature.</t>

</section>
<section anchor="self-sigs"><name>Notes on Self-Signatures</name>

<t>A self-signature is a binding signature made by the key to which the signature refers.
There are three types of self-signatures, the certification signatures (types 0x10-0x13), the direct-key signature (type 0x1F), and the subkey binding signature (type 0x18).
A cryptographically-valid self-signature should be accepted from any primary key, regardless of what Key Flags (<xref target="key-flags"/>) apply to the primary key.
In particular, a primary key does not need to have 0x01 set in the first octet of Key Flags order to make a valid self-signature.</t>

<t>For certification self-signatures, each User ID <bcp14>MAY</bcp14> have a self-signature, and thus different subpackets in those self-signatures.
For subkey binding signatures, each subkey <bcp14>MUST</bcp14> have a self-signature.
Subpackets that appear in a certification self-signature apply to the User ID, and subpackets that appear in the subkey self-signature apply to the subkey.
Lastly, subpackets on the direct-key signature apply to the entire key.</t>

<t>Implementing software should interpret a self-signature's preference subpackets as narrowly as possible.
For example, suppose a key has two user names, Alice and Bob.
Suppose that Alice prefers the AEAD ciphersuite AES-256 with OCB, and Bob prefers Camellia-256 with GCM.
If the software locates this key via Alice's name, then the preferred AEAD ciphersuite is AES-256 with OCB; if software locates the key via Bob's name, then the preferred algorithm is Camellia-256 with GCM.
If the key is located by Key ID, the algorithm of the primary User ID of the key provides the preferred AEAD ciphersuite.</t>

<t>Revoking a self-signature or allowing it to expire has a semantic meaning that varies with the signature type.
Revoking the self-signature on a User ID effectively retires that user name.
The self-signature is a statement, "My name X is tied to my signing key K" and is corroborated by other users' certifications.
If another user revokes their certification, they are effectively saying that they no longer believe that name and that key are tied together.
Similarly, if the users themselves revoke their self-signature, then the users no longer go by that name, no longer have that email address, etc.
Revoking a binding signature effectively retires that subkey.
Revoking a direct-key signature cancels that signature.
Please see <xref target="reason-for-revocation"/> for more relevant detail.</t>

<t>Since a self-signature contains important information about the key's use, an implementation <bcp14>SHOULD</bcp14> allow the user to rewrite the self-signature, and important information in it, such as preferences and key expiration.</t>

<t>When an implementation imports a secret key, it <bcp14>SHOULD</bcp14> verify that the key's internal self-signatures do not advertise features or algorithms that the implementation doesn't support.
If an implementation observes such a mismatch, it <bcp14>SHOULD</bcp14> warn the user and offer to create new self-signatures that advertise the actual set of features and algorithms supported by the implementation.</t>

<t>An implementation that encounters multiple self-signatures on the same object <bcp14>MUST</bcp14> select the most recent valid self-signature, and ignore all other self-signatures.</t>

<t>By convention, a version 4 key stores information about the primary Public-Key (key flags, key expiration, etc.) and the Transferable Public Key as a whole (features, algorithm preferences, etc.) in a User ID self-signature of type 0x10 or 0x13.
Some implementations require at least one User ID with a valid self-signature to be present to use a v4 key.
For this reason, it is <bcp14>RECOMMENDED</bcp14> to include at least one User ID with a self-signature in v4 keys.</t>

<t>For version 6 keys, it is <bcp14>RECOMMENDED</bcp14> to store information about the primary Public-Key as well as the Transferable Public Key as a whole (key flags, key expiration, features, algorithm preferences, etc.) in a direct-key signature (type 0x1F) over the Public-Key instead of placing that information in a User ID self-signature.
An implementation <bcp14>MUST</bcp14> ensure that a valid direct-key signature is present before using a v6 key.
This prevents certain attacks where an adversary strips a self-signature specifying a key expiration time or certain preferences.</t>

<t>An implementation <bcp14>SHOULD NOT</bcp14> require a User ID self-signature to be present in order to consume or use a key, unless the particular use is contingent on the keyholder identifying themselves with the textual label in the User ID.
For example, when refreshing a key to learn about changes in expiration, advertised features, algorithm preferences, revocation, subkey rotation, and so forth, there is no need to require a User ID self-signature.
On the other hand, when verifying a signature over an e-mail message, an implementation <bcp14>MAY</bcp14> choose to only accept a signature from a key that has a valid self-signature over a User ID that matches the message's From: header, as a way to avoid a signature transplant attack.</t>

</section>
<section anchor="signature-creation-subpacket"><name>Signature Creation Time</name>

<t>(4-octet time field)</t>

<t>The time the signature was made.</t>

<t>This subpacket <bcp14>MUST</bcp14> be present in the hashed area.</t>

<t>When generating this subpacket, it <bcp14>SHOULD</bcp14> be marked as critical.</t>

</section>
<section anchor="issuer-keyid-subpacket"><name>Issuer Key ID</name>

<t>(8-octet Key ID)</t>

<t>The OpenPGP Key ID of the key issuing the signature.
If the version of that key is greater than 4, this subpacket <bcp14>MUST NOT</bcp14> be included in the signature.
For these keys, consider the Issuer Fingerprint subpacket (<xref target="issuer-fingerprint-subpacket"/>) instead.</t>

<t>Note: in previous versions of this specification, this subpacket was simply known as the "Issuer" subpacket.</t>

</section>
<section anchor="key-expiration-subpacket"><name>Key Expiration Time</name>

<t>(4-octet time field)</t>

<t>The validity period of the key.
This is the number of seconds after the key creation time that the key expires.
For a direct or certification self-signature, the key creation time is that of the primary key.
For a subkey binding signature, the key creation time is that of the subkey.
If this is not present or has a value of zero, the key never expires.
This is found only on a self-signature.</t>

<t>When an implementation generates this subpacket, it <bcp14>SHOULD</bcp14> be marked as critical.</t>

</section>
<section anchor="preferred-v1-seipd"><name>Preferred Symmetric Ciphers for v1 SEIPD</name>

<t>(array of one-octet values)</t>

<t>A series of symmetric cipher algorithm identifiers indicating how the keyholder prefers to receive version 1 Symmetrically Encrypted Integrity Protected Data (<xref target="version-one-seipd"/>).
The subpacket body is an ordered list of octets with the most preferred listed first.
It is assumed that only algorithms listed are supported by the recipient's software.
Algorithm numbers are in <xref target="symmetric-algos"/>.
This is only found on a self-signature.</t>

<t>When generating a v2 SEIPD packet, this preference list is not relevant.
See <xref target="preferred-v2-seipd"/> instead.</t>

</section>
<section anchor="preferred-v2-seipd"><name>Preferred AEAD Ciphersuites</name>

<t>(array of pairs of octets indicating Symmetric Cipher and AEAD algorithms)</t>

<t>A series of paired algorithm identifiers indicating how the keyholder prefers to receive version 2 Symmetrically Encrypted Integrity Protected Data (<xref target="version-two-seipd"/>).
Each pair of octets indicates a combination of a symmetric cipher and an AEAD mode that the key holder prefers to use.
The symmetric cipher identifier precedes the AEAD identifier in each pair.
The subpacket body is an ordered list of pairs of octets with the most preferred algorithm combination listed first.</t>

<t>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.</t>

<t>AEAD algorithm numbers are listed in <xref target="aead-algorithms"/>.
Symmetric cipher algorithm numbers are listed in <xref target="symmetric-algos"/>.</t>

<t>For example, a subpacket with content of these six octets:</t>

<figure><artwork><![CDATA[
09 02 09 03 13 02
]]></artwork></figure>

<t>Indicates that the keyholder prefers to receive v2 SEIPD using AES-256 with OCB, then AES-256 with GCM, then Camellia-256 with OCB, and finally the implicit AES-128 with OCB.</t>

<t>Note that support for version 2 of the Symmetrically Encrypted Integrity Protected Data packet (<xref target="version-two-seipd"/>) in general is indicated by a Features Flag (<xref target="features-subpacket"/>).</t>

<t>This subpacket is only found on a self-signature.</t>

<t>When generating a v1 SEIPD packet, this preference list is not relevant.
See <xref target="preferred-v1-seipd"/> instead.</t>

</section>
<section anchor="preferred-hashes-subpacket"><name>Preferred Hash Algorithms</name>

<t>(array of one-octet values)</t>

<t>Message digest algorithm numbers that indicate which algorithms the key holder prefers to receive.
Like the preferred AEAD ciphersuites, the list is ordered.
Algorithm numbers are in <xref target="hash-algos"/>.
This is only found on a self-signature.</t>

</section>
<section anchor="preferred-compression-subpacket"><name>Preferred Compression Algorithms</name>

<t>(array of one-octet values)</t>

<t>Compression algorithm numbers that indicate which algorithms the key holder prefers to use.
Like the preferred AEAD ciphersuites, the list is ordered.
Algorithm numbers are in <xref target="compression-algos"/>.
A zero, or the absence of this subpacket, denotes that uncompressed data is preferred; the key holder's software might have no compression software in that implementation.
This is only found on a self-signature.</t>

</section>
<section anchor="signature-expiration-subpacket"><name>Signature Expiration Time</name>

<t>(4-octet time field)</t>

<t>The validity period of the signature.
This is the number of seconds after the signature creation time that the signature expires.
If this is not present or has a value of zero, it never expires.</t>

<t>When an implementation generates this subpacket, it <bcp14>SHOULD</bcp14> be marked as critical.</t>

</section>
<section anchor="exportable-certification-subpacket"><name>Exportable Certification</name>

<t>(1 octet of exportability, 0 for not, 1 for exportable)</t>

<t>This subpacket denotes whether a certification signature is "exportable", to be used by other users than the signature's issuer.
The packet body contains a Boolean flag indicating whether the signature is exportable.
If this packet is not present, the certification is exportable; it is equivalent to a flag containing a 1.</t>

<t>Non-exportable, or "local", certifications are signatures made by a user to mark a key as valid within that user's implementation only.</t>

<t>Thus, when an implementation prepares a user's copy of a key for transport to another user (this is the process of "exporting" the key), any local certification signatures are deleted from the key.</t>

<t>The receiver of a transported key "imports" it, and likewise trims any local certifications.
In normal operation, there won't be any, assuming the import is performed on an exported key.
However, there are instances where this can reasonably happen.
For example, if an implementation allows keys to be imported from a key database in addition to an exported key, then this situation can arise.</t>

<t>Some implementations do not represent the interest of a single user (for example, a key server).
Such implementations always trim local certifications from any key they handle.</t>

<t>When an implementation generates this subpacket and denotes the signature as non-exportable, the subpacket <bcp14>MUST</bcp14> be marked as critical.</t>

</section>
<section anchor="revocable-subpacket"><name>Revocable</name>

<t>(1 octet of revocability, 0 for not, 1 for revocable)</t>

<t>Signature's revocability status.
The packet body contains a Boolean flag indicating whether the signature is revocable.
Signatures that are not revocable have any later revocation signatures ignored.
They represent a commitment by the signer that he cannot revoke his signature for the life of his key.
If this packet is not present, the signature is revocable.</t>

</section>
<section anchor="trust-signature-subpacket"><name>Trust Signature</name>

<t>(1 octet "level" (depth), 1 octet of trust amount)</t>

<t>Signer asserts that the key is not only valid but also trustworthy at the specified level.
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; that is, the signed key is a "meta introducer".
Generally, a level n trust signature asserts that a key is trusted to issue level n-1 trust signatures.
The trust amount is in a range from 0-255, interpreted such that values less than 120 indicate partial trust and values of 120 or greater indicate complete trust.
Implementations <bcp14>SHOULD</bcp14> emit values of 60 for partial trust and 120 for complete trust.</t>

</section>
<section anchor="regex-subpacket"><name>Regular Expression</name>

<t>(null-terminated regular expression)</t>

<t>Used in conjunction with trust Signature packets (of level &gt; 0) to limit the scope of trust that is extended.
Only signatures by the target key on User IDs that match the regular expression in the body of this packet have trust extended by the trust Signature subpacket.
The regular expression uses the same syntax as the Henry Spencer's "almost public domain" regular expression <xref target="REGEX"/> package.
A description of the syntax is found in <xref target="regular-expressions"/>.</t>

<t>For historical reasons, this subpacket includes a null character (octet with value zero) after the regular expression.
When an implementation parses a regular expression subpacket, it <bcp14>MUST</bcp14> remove this octet; if it is not present, it <bcp14>MUST</bcp14> reject the subpacket (i.e. ignore the subpacket if it's non-critical and reject the signature if it's critical).
When an implementation generates a regular expression subpacket, it <bcp14>MUST</bcp14> include the null terminator.</t>

<t>When generating this subpacket, it <bcp14>SHOULD</bcp14> be marked as critical.</t>

</section>
<section anchor="revocation-key"><name>Revocation Key</name>

<t>(1 octet of class, 1 octet of public-key algorithm ID, 20 octets of v4 fingerprint)</t>

<t>This mechanism is deprecated.
Applications <bcp14>MUST NOT</bcp14> generate such a subpacket.</t>

<t>An application that wants the functionality of delegating revocation <bcp14>SHOULD</bcp14> instead use an escrowed Revocation Signature.
See <xref target="escrowed-revocations"/> for more details.</t>

<t>The remainder of this section describes how some implementations attempt to interpret this deprecated subpacket.</t>

<t>This packet was intended to authorize the specified key to issue revocation signatures for this key.
Class octet must have bit 0x80 set.
If the bit 0x40 is set, then this means that the revocation information is sensitive.
Other bits are for future expansion to other kinds of authorizations.
This is only found on a direct-key self-signature (type 0x1F).
The use on other types of self-signatures is unspecified.</t>

<t>If the "sensitive" flag is set, the keyholder feels this subpacket contains private trust information that describes a real-world sensitive relationship.
If this flag is set, implementations <bcp14>SHOULD NOT</bcp14> export this signature to other users except in cases where the data needs to be available: when the signature is being sent to the designated revoker, or when it is accompanied by a revocation signature from that revoker.
Note that it may be appropriate to isolate this subpacket within a separate signature so that it is not combined with other subpackets that need to be exported.</t>

</section>
<section anchor="notation-data"><name>Notation Data</name>

<t>(4 octets of flags, 2 octets of name length (M), 2 octets of value length (N), M octets of name data, N octets of value data)</t>

<t>This subpacket describes a "notation" on the signature that the issuer wishes to make.
The notation has a name and a value, each of which are strings of octets.
There may be more than one notation in a signature.
Notations can be used for any extension the issuer of the signature cares to make.
The "flags" field holds four octets of flags.</t>

<t>All undefined flags <bcp14>MUST</bcp14> be zero.
Defined flags are as follows:</t>

<texttable title="Signature Notation Data Subpacket Notation Flags registry" anchor="sig-note-data-note-flags-registry">
      <ttcol align='left'>Flag Position</ttcol>
      <ttcol align='left'>Shorthand</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0x80000000 (first bit of first octet)</c>
      <c>human-readable</c>
      <c>Notation value is UTF-8 text.</c>
      <c>This document</c>
</texttable>

<t>Notation names are arbitrary strings encoded in UTF-8.
They reside in two namespaces: The IETF namespace and the user namespace.</t>

<t>The IETF namespace is registered with IANA.
These names <bcp14>MUST NOT</bcp14> contain the "@" character (0x40).
This is a tag for the user namespace.</t>

<texttable title="Signature Notation Data Subpacket Types registry" anchor="sig-note-data-subpacket-types">
      <ttcol align='left'>Notation Name</ttcol>
      <ttcol align='left'>Data Type</ttcol>
      <ttcol align='left'>Allowed Values</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<t>This registry is initially empty.</t>

<t>Names in the user namespace consist of a UTF-8 string tag followed by "@" followed by a DNS domain name.
Note that the tag <bcp14>MUST NOT</bcp14> contain an "@" character.
For example, the "sample" tag used by Example Corporation could be "sample@example.com".</t>

<t>Names in a user space are owned and controlled by the owners of that domain.
Obviously, it's bad form to create a new name in a DNS space that you don't own.</t>

<t>Since the user namespace is in the form of an email address, implementers <bcp14>MAY</bcp14> wish to arrange for that address to reach a person who can be consulted about the use of the named tag.
Note that due to UTF-8 encoding, not all valid user space name tags are valid email addresses.</t>

<t>If there is a critical notation, the criticality applies to that specific notation and not to notations in general.</t>

</section>
<section anchor="key-server-preferences"><name>Key Server Preferences</name>

<t>(N octets of flags)</t>

<t>This is a list of one-bit flags that indicate preferences that the key holder has about how the key is handled on a key server.
All undefined flags <bcp14>MUST</bcp14> be zero.</t>

<texttable title="Key Server Preference Flags registry" anchor="key-server-preference-flags-registry">
      <ttcol align='left'>Flag</ttcol>
      <ttcol align='left'>Shorthand</ttcol>
      <ttcol align='left'>Definition</ttcol>
      <c>0x80...</c>
      <c>No-modify</c>
      <c>The key holder requests that this key only be modified or updated by the key holder or an administrator of the key server.</c>
</texttable>

<t>This is found only on a self-signature.</t>

</section>
<section anchor="preferred-key-server-subpacket"><name>Preferred Key Server</name>

<t>(String)</t>

<t>This is a URI of a key server that the key holder prefers be used for updates.
Note that keys with multiple User IDs can have a preferred key server for each User ID.
Note also that since this is a URI, the key server can actually be a copy of the key retrieved by https, ftp, http, etc.</t>

</section>
<section anchor="primary-user-id-subpacket"><name>Primary User ID</name>

<t>(1 octet, Boolean)</t>

<t>This is a flag in a User ID's self-signature that states whether this User ID is the main User ID for this key.
It is reasonable for an implementation to resolve ambiguities in preferences, for example, by referring to the primary User ID.
If this flag is absent, its value is zero.
If more than one User ID in a key is marked as primary, the implementation may resolve the ambiguity in any way it sees fit, but it is <bcp14>RECOMMENDED</bcp14> that priority be given to the User ID with the most recent self-signature.</t>

<t>When appearing on a self-signature on a User ID packet, this subpacket applies only to User ID packets.
When appearing on a self-signature on a User Attribute packet, this subpacket applies only to User Attribute packets.
That is to say, there are two different and independent "primaries" --- one for User IDs, and one for User Attributes.</t>

</section>
<section anchor="policy-uri-subpacket"><name>Policy URI</name>

<t>(String)</t>

<t>This subpacket contains a URI of a document that describes the policy under which the signature was issued.</t>

</section>
<section anchor="key-flags"><name>Key Flags</name>

<t>(N octets of flags)</t>

<t>This subpacket contains a list of binary flags that hold information about a key.
It is a string of octets, and an implementation <bcp14>MUST NOT</bcp14> assume a fixed size.
This is so it can grow over time.
If a list is shorter than an implementation expects, the unstated flags are considered to be zero.
The defined flags are as follows:</t>

<texttable title="Key Flags registry" anchor="key-flags-registry">
      <ttcol align='left'>Flag</ttcol>
      <ttcol align='left'>Definition</ttcol>
      <c>0x01...</c>
      <c>This key may be used to make User ID certifications (signature types 0x10-0x13) or direct-key signatures (signature type 0x1F) over other keys.</c>
      <c>0x02...</c>
      <c>This key may be used to sign data.</c>
      <c>0x04...</c>
      <c>This key may be used to encrypt communications.</c>
      <c>0x08...</c>
      <c>This key may be used to encrypt storage.</c>
      <c>0x10...</c>
      <c>The private component of this key may have been split by a secret-sharing mechanism.</c>
      <c>0x20...</c>
      <c>This key may be used for authentication.</c>
      <c>0x80...</c>
      <c>The private component of this key may be in the possession of more than one person.</c>
      <c>0x0004...</c>
      <c>Reserved (ADSK).</c>
      <c>0x0008...</c>
      <c>Reserved (timestamping).</c>
</texttable>

<t>Usage notes:</t>

<t>The flags in this packet may appear in self-signatures or in certification signatures.
They mean different things depending on who is making the statement --- for example, a certification signature that has the "sign data" flag is stating that the certification is for that use.
On the other hand, the "communications encryption" flag in a self-signature is stating a preference that a given key be used for communications.
Note however, that it is a thorny issue to determine what is "communications" and what is "storage".
This decision is left wholly up to the implementation; the authors of this document do not claim any special wisdom on the issue and realize that accepted opinion may change.</t>

<t>The "split key" (0x10) and "group key" (0x80) flags are placed on a self-signature only; they are meaningless on a certification signature.
They <bcp14>SHOULD</bcp14> be placed only on a direct-key signature (type 0x1F) or a subkey signature (type 0x18), one that refers to the key the flag applies to.</t>

<t>When an implementation generates this subpacket, it <bcp14>SHOULD</bcp14> be marked as critical.</t>

</section>
<section anchor="signers-user-id-subpacket"><name>Signer's User ID</name>

<t>(String)</t>

<t>This subpacket allows a keyholder to state which User ID is responsible for the signing.
Many keyholders use a single key for different purposes, such as business communications as well as personal communications.
This subpacket allows such a keyholder to state which of their roles is making a signature.</t>

<t>This subpacket is not appropriate to use to refer to a User Attribute packet.</t>

</section>
<section anchor="reason-for-revocation"><name>Reason for Revocation</name>

<t>(1 octet of revocation code, N octets of reason string)</t>

<t>This subpacket is used only in key revocation and certification revocation signatures.
It describes the reason why the key or certification was revoked.</t>

<t>The first octet contains a machine-readable code that denotes the reason for the revocation:</t>

<texttable title="Reason for Revocation Code registry" anchor="reason-for-revocation-code-registry">
      <ttcol align='right'>Code</ttcol>
      <ttcol align='left'>Reason</ttcol>
      <c>0</c>
      <c>No reason specified (key revocations or cert revocations)</c>
      <c>1</c>
      <c>Key is superseded (key revocations)</c>
      <c>2</c>
      <c>Key material has been compromised (key revocations)</c>
      <c>3</c>
      <c>Key is retired and no longer used (key revocations)</c>
      <c>32</c>
      <c>User ID information is no longer valid (cert revocations)</c>
      <c>100-110</c>
      <c>Private Use</c>
</texttable>

<t>Following the revocation code is a string of octets that gives information about the Reason for Revocation in human-readable form (UTF-8).
The string may be null (of zero length).
The length of the subpacket is the length of the reason string plus one.
An implementation <bcp14>SHOULD</bcp14> implement this subpacket, include it in all revocation signatures, and interpret revocations appropriately.
There are important semantic differences between the reasons, and there are thus important reasons for revoking signatures.</t>

<t>If a key has been revoked because of a compromise, all signatures created by that key are suspect.
However, if it was merely superseded or retired, old signatures are still valid.
If the revoked signature is the self-signature for certifying a User ID, a revocation denotes that that user name is no longer in use.
Such a signature revocation <bcp14>SHOULD</bcp14> include a Reason for Revocation subpacket containing code 32.</t>

<t>Note that any signature may be revoked, including a certification on some other person's key.
There are many good reasons for revoking a certification signature, such as the case where the keyholder leaves the employ of a business with an email address.
A revoked certification is no longer a part of validity calculations.</t>

</section>
<section anchor="features-subpacket"><name>Features</name>

<t>(N octets of flags)</t>

<t>The Features subpacket denotes which advanced OpenPGP features a user's implementation supports.
This is so that as features are added to OpenPGP that cannot be backwards-compatible, a user can state that they can use that feature.
The flags are single bits that indicate that a given feature is supported.</t>

<t>This subpacket is similar to a preferences subpacket, and only appears in a self-signature.</t>

<t>An implementation <bcp14>SHOULD NOT</bcp14> use a feature listed when sending to a user who does not state that they can use it, unless the implementation can infer support for the feature from another implementation-dependent mechanism.</t>

<t>Defined features are as follows:</t>

<t>First octet:</t>

<texttable title="Features Flags registry" anchor="features-flags-registry">
      <ttcol align='left'>Feature</ttcol>
      <ttcol align='left'>Definition</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0x01...</c>
      <c>Symmetrically Encrypted Integrity Protected Data packet version 1</c>
      <c><xref target="version-one-seipd"/></c>
      <c>0x02...</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>0x04...</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>0x08...</c>
      <c>Symmetrically Encrypted Integrity Protected Data packet version 2</c>
      <c><xref target="version-two-seipd"/></c>
</texttable>

<t>If an implementation implements any of the defined features, it <bcp14>SHOULD</bcp14> implement the Features subpacket, too.</t>

<t>See <xref target="ciphertext-malleability"/> for details about how to use the Features subpacket when generating encryption data.</t>

</section>
<section anchor="signature-target-subpacket"><name>Signature Target</name>

<t>(1 octet public-key algorithm, 1 octet hash algorithm, N octets hash)</t>

<t>This subpacket identifies a specific target signature to which a signature refers.
For revocation signatures, this subpacket provides explicit designation of which signature is being revoked.
For a third-party or timestamp signature, this designates what signature is signed.
All arguments are an identifier of that target signature.</t>

<t>The N octets of hash data <bcp14>MUST</bcp14> be the size of the hash of the signature.
For example, a target signature with a SHA-1 hash <bcp14>MUST</bcp14> have 20 octets of hash data.</t>

</section>
<section anchor="embedded-signature-subpacket"><name>Embedded Signature</name>

<t>(1 signature packet body)</t>

<t>This subpacket contains a complete Signature packet body as specified in <xref target="signature-packet"/>.
It is useful when one signature needs to refer to, or be incorporated in, another signature.</t>

</section>
<section anchor="issuer-fingerprint-subpacket"><name>Issuer Fingerprint</name>

<t>(1 octet key version number, N octets of fingerprint)</t>

<t>The OpenPGP Key fingerprint of the key issuing the signature.
This subpacket <bcp14>SHOULD</bcp14> be included in all signatures.
If the version of the issuing key is 4 and an Issuer Key ID subpacket (<xref target="issuer-keyid-subpacket"/>) is also included in the signature, the key ID of the Issuer Key ID subpacket <bcp14>MUST</bcp14> match the low 64 bits of the fingerprint.</t>

<t>Note that the length N of the fingerprint for a version 4 key is 20 octets; for a version 6 key N is 32.
Since the version of the signature is bound to the version of the key, the version octet here <bcp14>MUST</bcp14> match the version of the signature.
If the version octet does not match the signature version, the receiving implementation <bcp14>MUST</bcp14> treat it as a malformed signature (see <xref target="malformed-signatures"/>).</t>

</section>
<section anchor="intended-recipient-fingerprint"><name>Intended Recipient Fingerprint</name>

<t>(1 octet key version number, N octets of fingerprint)</t>

<t>The OpenPGP Key fingerprint of the intended recipient primary key.
If one or more subpackets of this type are included in a signature, it <bcp14>SHOULD</bcp14> be considered valid only in an encrypted context, where the key it was encrypted to is one of the indicated primary keys, or one of their subkeys.
This can be used to prevent forwarding a signature outside of its intended, encrypted context (see <xref target="surreptitious-forwarding"/>).</t>

<t>Note that the length N of the fingerprint for a version 4 key is 20 octets; for a version 6 key N is 32.</t>

<t>An implementation <bcp14>SHOULD</bcp14> generate this subpacket when creating a signed and encrypted message.</t>

<t>When generating this subpacket in a v6 signature, it <bcp14>SHOULD</bcp14> be marked as critical.</t>

</section>
</section>
<section anchor="computing-signatures"><name>Computing Signatures</name>

<t>All signatures are formed by producing a hash over the signature data, and then using the resulting hash in the signature algorithm.</t>

<t>When creating or verifying a v6 signature, the salt is the fed into the hash context before any other data.</t>

<t>For binary document signatures (type 0x00), the document data is hashed directly.
For text document signatures (type 0x01), the implementation <bcp14>MUST</bcp14> first canonicalize the document by converting line endings to &lt;CR&gt;&lt;LF&gt; and encoding it in UTF-8 (see <xref target="RFC3629"/>).
The resulting UTF-8 bytestream is hashed.</t>

<t>When a v4 signature is made over a key, the hash data starts with the octet 0x99, followed by a two-octet length of the key, and then the body of the key packet.
When a v6 signature is made over a key, the hash data starts with the salt, then octet 0x9B, followed by a four-octet length of the key, and then the body of the key packet.</t>

<t>A subkey binding signature (type 0x18) or primary key binding signature (type 0x19) then hashes the subkey using the same format as the main key (also using 0x99 or 0x9B as the first octet).
Primary key revocation signatures (type 0x20) hash only the key being revoked.
Subkey revocation signature (type 0x28) hash first the primary key and then the subkey being revoked.</t>

<t>A certification signature (type 0x10 through 0x13) hashes the User ID being bound to the key into the hash context after the above data.
A v3 certification hashes the contents of the User ID or User Attribute packet, without the packet header.
A v4 or v6 certification hashes the constant 0xB4 for User ID certifications or the constant 0xD1 for User Attribute certifications, followed by a four-octet number giving the length of the User ID or User Attribute data, and then the User ID or User Attribute data.</t>

<t>When a signature is made over a Signature packet (type 0x50, "Third-Party Confirmation signature"), the hash data starts the salt (v6 signatures only), followed by the octet 0x88, followed by the four-octet length of the signature, and then the body of the Signature packet.
(Note that this is a Legacy packet header for a Signature packet with the length-of-length field set to zero.) The unhashed subpacket data of the Signature packet being hashed is not included in the hash, and the unhashed subpacket data length value is set to zero.</t>

<t>Once the data body is hashed, then a trailer is hashed.
This trailer depends on the version of the signature.</t>

<t><list style="symbols">
  <t>A v3 signature hashes five octets of the packet body, starting from the signature type field.
This data is the signature type, followed by the four-octet signature creation time.</t>
  <t>A v4 or v6 signature hashes the packet body starting from its first field, the version number, through the end of the hashed subpacket data and a final extra trailer.
Thus, the hashed fields are:  <list style="symbols">
      <t>An octet indicating the signature version (0x04 for v4, 0x06 for v6),</t>
      <t>The signature type,</t>
      <t>The public-key algorithm,</t>
      <t>The hash algorithm,</t>
      <t>The hashed subpacket length,</t>
      <t>The hashed subpacket body,</t>
      <t>A second version octet (0x04 for v4, 0x06 for v6)</t>
      <t>A single octet 0xFF,</t>
      <t>A number representing the length (in octets) of the hashed data from the Signature packet through the hashed subpacket body.
This a four-octet big-endian unsigned integer of the length modulo 2**32.</t>
    </list></t>
</list></t>

<t>After all this has been hashed in a single hash context, the resulting hash field is used in the signature algorithm and its first two octets are placed in the Signature packet, as described in <xref target="version-four-and-six-sig"/>.</t>

<t>For worked examples of the data hashed during a signature, see <xref target="sig-hashed-data-example"/>.</t>

<section anchor="sig-computation-notes"><name>Notes About Signature Computation</name>

<t>The data actually hashed by OpenPGP varies depending on signature version, in order to ensure that a signature made using one version cannot be repurposed as a signature with a different version over subtly different data.
The hashed data streams differ based on their trailer, most critically in the fifth and sixth octets from the end of the stream.
In particular:</t>

<t><list style="symbols">
  <t>A v3 signature uses the fifth octet from the end to store its signature type.
This <bcp14>MUST NOT</bcp14> be signature type <spanx style="verb">0xFF</spanx>.</t>
  <t>All signature versions later than v3 always use a literal <spanx style="verb">0xFF</spanx> in the fifth octet from the end.
For these later signature versions, the sixth octet from the end (the octet before the <spanx style="verb">0xFF</spanx>) stores the signature version number.</t>
</list></t>

</section>
</section>
<section anchor="malformed-signatures"><name>Malformed and Unknown Signatures</name>

<t>In some cases, a signature packet (or its corresponding One-Pass Signature Packet, see <xref target="one-pass-sig"/>) may be malformed or unknown.
For example, it might encounter any of the following problems (this is not an exhaustive list):</t>

<t><list style="symbols">
  <t>An unknown signature type</t>
  <t>An unknown signature version</t>
  <t>An unsupported signature version</t>
  <t>An unknown "critical" subpacket (see <xref target="signature-subpacket"/>) in the hashed area</t>
  <t>A subpacket with a length that diverges from the expected length</t>
  <t>A hashed subpacket area with length that exceeds the length of the signature packet itself</t>
  <t>A known-weak hash algorithm (e.g. MD5)</t>
  <t>A mismatch between the hash algorithm expected salt length and the actual salt length</t>
  <t>A mismatch between the One-Pass Signature version and the Signature version (see <xref target="signed-message-versions"/>)</t>
  <t>A signature with a version other than 6, made by a v6 key</t>
</list></t>

<t>When an implementation encounters such a malformed or unknown signature, it <bcp14>MUST</bcp14> ignore the signature for validation purposes.
It <bcp14>MUST NOT</bcp14> indicate a successful signature validation for such a signature.
At the same time, it <bcp14>MUST NOT</bcp14> halt processing on the packet stream or reject other signatures in the same packet stream just because an unknown or invalid signature exists.</t>

<t>This requirement is necessary for forward-compatibility.
Producing an output that indicates that no successful signatures were found is preferable to aborting processing entirely.</t>

</section>
</section>
<section anchor="skesk"><name>Symmetric-Key Encrypted Session Key Packet (Tag 3)</name>

<t>The Symmetric-Key Encrypted Session Key (SKESK) packet holds the symmetric-key encryption of a session key used to encrypt a message.
Zero or more Public-Key Encrypted Session Key packets (<xref target="pkesk"/>) and/or Symmetric-Key Encrypted Session Key packets precede an encryption container (that is, a Symmetrically Encrypted Integrity Protected Data packet or --- for historic data --- a Symmetrically Encrypted Data packet) that holds an encrypted message.
The message is encrypted with a session key, and the session key is itself encrypted and stored in the Encrypted Session Key packet(s).</t>

<t>If the encryption container is preceded by one or more Symmetric-Key Encrypted Session Key packets, each specifies a passphrase that may be used to decrypt the message.
This allows a message to be encrypted to a number of public keys, and also to one or more passphrases.</t>

<t>The body of this packet starts with a one-octet number giving the version number of the packet type.
The currently defined versions are 4 and 6.
The remainder of the packet depends on the version.</t>

<t>The versions differ in how they encrypt the session key with the passphrase, and in what they encode.
The version of the SKESK packet must align with the version of the SEIPD packet (see <xref target="encrypted-message-versions"/>).
Any new version of the SKESK packet should be registered in the registry established in <xref target="encrypted-message-versions"/>.</t>

<section anchor="v4-skesk"><name>Version 4 Symmetric-Key Encrypted Session Key Packet Format</name>

<t>A version 4 Symmetric-Key Encrypted Session Key (SKESK) packet precedes a version 1 Symmetrically Encrypted Integrity Protected Data (v1 SEIPD, see <xref target="version-one-seipd"/>) packet.
In historic data, it is sometimes found preceding a deprecated Symmetrically Encrypted Data packet (SED, see <xref target="sed"/>).
A v4 SKESK packet <bcp14>MUST NOT</bcp14> precede a v2 SEIPD packet (see <xref target="encrypted-message-versions"/>).</t>

<t>A version 4 Symmetric-Key Encrypted Session Key packet consists of:</t>

<t><list style="symbols">
  <t>A one-octet version number with value 4.</t>
  <t>A one-octet number describing the symmetric algorithm used.</t>
  <t>A string-to-key (S2K) specifier.
The length of the string-to-key specifier depends on its type (see <xref target="s2k-types"/>).</t>
  <t>Optionally, the encrypted session key itself, which is decrypted with the string-to-key object.</t>
</list></t>

<t>If the encrypted session key is not present (which can be detected on the basis of packet length and S2K specifier size), then the S2K algorithm applied to the passphrase produces the session key for decrypting the message, using the symmetric cipher algorithm from the Symmetric-Key Encrypted Session Key packet.</t>

<t>If the encrypted session key is present, the result of applying the S2K algorithm to the passphrase is used to decrypt just that encrypted session key field, using CFB mode with an IV of all zeros.
The decryption result consists of a one-octet algorithm identifier that specifies the symmetric-key encryption algorithm used to encrypt the following encryption container, followed by the session key octets themselves.</t>

<t>Note: because an all-zero IV is used for this decryption, the S2K specifier <bcp14>MUST</bcp14> use a salt value, either a Salted S2K, an Iterated-Salted S2K, or Argon2.
The salt value will ensure that the decryption key is not repeated even if the passphrase is reused.</t>

</section>
<section anchor="v6-skesk"><name>Version 6 Symmetric-Key Encrypted Session Key Packet Format</name>

<t>A version 6 Symmetric-Key Encrypted Session Key (SKESK) packet precedes a version 2 Symmetrically Encrypted Integrity Protected Data (v2 SEIPD, see <xref target="version-two-seipd"/>) packet.
A v6 SKESK packet <bcp14>MUST NOT</bcp14> precede a v1 SEIPD packet or a deprecated Symmetrically Encrypted Data packet (see <xref target="encrypted-message-versions"/>).</t>

<t>A version 6 Symmetric-Key Encrypted Session Key packet consists of:</t>

<t><list style="symbols">
  <t>A one-octet version number with value 6.</t>
  <t>A one-octet scalar octet count of the following 5 fields.</t>
  <t>A one-octet symmetric cipher algorithm identifier.</t>
  <t>A one-octet AEAD algorithm identifier.</t>
  <t>A one-octet scalar octet count of the following field.</t>
  <t>A string-to-key (S2K) specifier.
The length of the string-to-key specifier depends on its type (see <xref target="s2k-types"/>).</t>
  <t>A starting initialization vector of size specified by the AEAD algorithm.</t>
  <t>The encrypted session key itself.</t>
  <t>An authentication tag for the AEAD mode.</t>
</list></t>

<t>A key-encryption key is derived using HKDF (see <xref target="RFC5869"/>) with SHA256 as the hash algorithm.
The Initial Keying Material (IKM) for HKDF is the key derived from S2K.
No salt is used.
The info parameter is comprised of the Packet Tag in new format encoding (bits 7 and 6 set, bits 5-0 carry the packet tag), the packet version, and the cipher-algo and AEAD-mode used to encrypt the key material.</t>

<t>Then, the session key is encrypted using the resulting key, with the AEAD algorithm specified for version 2 of the Symmetrically Encrypted Integrity Protected Data packet.
Note that no chunks are used and that there is only one authentication tag.
The Packet Tag in OpenPGP format encoding (bits 7 and 6 set, bits 5-0 carry the packet tag), the packet version number, the cipher algorithm octet, and the AEAD algorithm octet are given as additional data.
For example, the additional data used with AES-128 with OCB consists of the octets 0xC3, 0x06, 0x07, and 0x02.</t>

</section>
</section>
<section anchor="one-pass-sig"><name>One-Pass Signature Packet (Tag 4)</name>

<t>The One-Pass Signature packet precedes the signed data and contains enough information to allow the receiver to begin calculating any hashes needed to verify the signature.
It allows the Signature packet to be placed at the end of the message, so that the signer can compute the entire signed message in one pass.</t>

<t>The body of this packet consists of:</t>

<t><list style="symbols">
  <t>A one-octet version number.
The currently defined versions are 3 and 6.
Any new One-Pass Signature packet version should be registered in the registry established in <xref target="signed-message-versions"/>.</t>
  <t>A one-octet signature type.
Signature types are described in <xref target="signature-types"/>.</t>
  <t>A one-octet number describing the hash algorithm used.</t>
  <t>A one-octet number describing the public-key algorithm used.</t>
  <t>Only for v6 packets, a variable-length field containing:  <list style="symbols">
      <t>A one-octet salt size. The value <bcp14>MUST</bcp14> match the value defined for the hash algorithm as specified in <xref target="hash-algorithms-registry"/>.</t>
      <t>The salt; a random value value of the specified size. The value <bcp14>MUST</bcp14> match the salt field of the corresponding Signature packet.</t>
    </list></t>
  <t>Only for v3 packets, an eight-octet number holding the Key ID of the signing key.</t>
  <t>Only for v6 packets, 32 octets of the fingerprint of the signing key.
Since a v6 signature can only be made by a v6 key, the length of the fingerprint is fixed.</t>
  <t>A one-octet number holding a flag showing whether the signature is nested.
A zero value indicates that the next packet is another One-Pass Signature packet that describes another signature to be applied to the same message data.</t>
</list></t>

<t>When generating a one-pass signature, the OPS packet version <bcp14>MUST</bcp14> correspond to the version of the associated signature packet, except for the historical accident that v4 keys use a v3 one-pass signature packet (there is no v4 OPS).
See <xref target="signed-message-versions"/> for the full correspondence of versions between Keys, Signatures, and One-Pass Signatures.</t>

<t>Note that if a message contains more than one one-pass signature, then the Signature packets bracket the message; that is, the first Signature packet after the message corresponds to the last one-pass packet and the final Signature packet corresponds to the first one-pass packet.</t>

</section>
<section anchor="key-material-packets"><name>Key Material Packets</name>

<t>A key material packet contains all the information about a public or private key.
There are four variants of this packet type, two major versions (versions 4 and 6), and two strongly deprecated versions (versions 2 and 3).
Consequently, this section is complex.</t>

<t>For historical reasons, versions 1 and 5 of the key packets are unspecified.</t>

<section anchor="key-packet-variants"><name>Key Packet Variants</name>

<section anchor="pubkey"><name>Public-Key Packet (Tag 6)</name>

<t>A Public-Key packet starts a series of packets that forms an OpenPGP key (sometimes called an OpenPGP certificate).</t>

</section>
<section anchor="pubsubkey"><name>Public-Subkey Packet (Tag 14)</name>

<t>A Public-Subkey packet (tag 14) has exactly the same format as a Public-Key packet, but denotes a subkey.
One or more subkeys may be associated with a top-level key.
By convention, the top-level key provides signature services, and the subkeys provide encryption services.</t>

</section>
<section anchor="seckey"><name>Secret-Key Packet (Tag 5)</name>

<t>A Secret-Key packet contains all the information that is found in a Public-Key packet, including the public-key material, but also includes the secret-key material after all the public-key fields.</t>

</section>
<section anchor="secsubkey"><name>Secret-Subkey Packet (Tag 7)</name>

<t>A Secret-Subkey packet (tag 7) is the subkey analog of the Secret Key packet and has exactly the same format.</t>

</section>
</section>
<section anchor="public-key-packet-formats"><name>Public-Key Packet Formats</name>

<t>There are four versions of key-material packets, two of which are strongly deprecated.</t>

<t>OpenPGP implementations <bcp14>SHOULD</bcp14> create keys with version 6 format.
V4 keys are deprecated; an implementation <bcp14>SHOULD NOT</bcp14> generate a v4 key, but <bcp14>SHOULD</bcp14> accept it.
V3 keys are deprecated; an implementation <bcp14>MUST NOT</bcp14> generate a v3 key, but <bcp14>MAY</bcp14> accept it.
V2 keys are deprecated; an implementation <bcp14>MUST NOT</bcp14> generate a v2 key, but <bcp14>MAY</bcp14> accept it.</t>

<t>Any new Key version should be registered in the registry established in <xref target="signed-message-versions"/>.</t>

<section anchor="v3-pubkeys"><name>Version 3 Public Keys</name>

<t>A version 3 public key or public-subkey packet contains:</t>

<t><list style="symbols">
  <t>A one-octet version number (3).</t>
  <t>A four-octet number denoting the time that the key was created.</t>
  <t>A two-octet number denoting the time in days that this key is valid.
If this number is zero, then it does not expire.</t>
  <t>A one-octet number denoting the public-key algorithm of this key.</t>
  <t>A series of multiprecision integers comprising the key material:  <list style="symbols">
      <t>A multiprecision integer (MPI) of RSA public modulus n;</t>
      <t>An MPI of RSA public encryption exponent e.</t>
    </list></t>
</list></t>

<t>V3 keys are deprecated.
They contain three weaknesses.
First, it is relatively easy to construct a v3 key that has the same Key ID as any other key because the Key ID is simply the low 64 bits of the public modulus.
Secondly, because the fingerprint of a v3 key hashes the key material, but not its length, there is an increased opportunity for fingerprint collisions.
Third, there are weaknesses in the MD5 hash algorithm that make developers prefer other algorithms.
See <xref target="key-ids-fingerprints"/> for a fuller discussion of Key IDs and fingerprints.</t>

<t>V2 keys are identical to the deprecated v3 keys except for the version number.</t>

</section>
<section anchor="v4-pubkeys"><name>Version 4 Public Keys</name>

<t>The version 4 format is similar to the version 3 format except for the absence of a validity period.
This has been moved to the Signature packet.
In addition, fingerprints of version 4 keys are calculated differently from version 3 keys, as described in <xref target="key-ids-fingerprints"/>.</t>

<t>A version 4 packet contains:</t>

<t><list style="symbols">
  <t>A one-octet version number (4).</t>
  <t>A four-octet number denoting the time that the key was created.</t>
  <t>A one-octet number denoting the public-key algorithm of this key.</t>
  <t>A series of values comprising the key material.
This is algorithm-specific and described in <xref target="algorithm-specific-parts-of-keys"/>.</t>
</list></t>

</section>
<section anchor="v6-pubkeys"><name>Version 6 Public Keys</name>

<t>The version 6 format is similar to the version 4 format except for the addition of a count for the key material.
This count helps parsing secret key packets (which are an extension of the public key packet format) in the case of an unknown algorithm.
In addition, fingerprints of version 6 keys are calculated differently from version 4 keys, as described in <xref target="key-ids-fingerprints"/>.</t>

<t>A version 6 packet contains:</t>

<t><list style="symbols">
  <t>A one-octet version number (6).</t>
  <t>A four-octet number denoting the time that the key was created.</t>
  <t>A one-octet number denoting the public-key algorithm of this key.</t>
  <t>A four-octet scalar octet count for the following public key material.</t>
  <t>A series of values comprising the public key material.
This is algorithm-specific and described in <xref target="algorithm-specific-parts-of-keys"/>.</t>
</list></t>

</section>
</section>
<section anchor="secret-key-packet-formats"><name>Secret-Key Packet Formats</name>

<t>The Secret-Key and Secret-Subkey packets contain all the data of the Public-Key and Public-Subkey packets, with additional algorithm-specific secret-key data appended, usually in encrypted form.</t>

<t>The packet contains:</t>

<t><list style="symbols">
  <t>The fields of a Public-Key or Public-Subkey packet, as described above.</t>
  <t>One octet (the "S2K usage octet") indicating whether and how the secret key material is protected by a passphrase.
Zero indicates that the secret-key data is not encrypted.
255 (MalleableCFB), 254 (CFB), or 253 (AEAD) indicates that a string-to-key specifier and other parameters will follow.
Any other value is a symmetric-key encryption algorithm identifier.
A version 6 packet <bcp14>MUST NOT</bcp14> use the value 255 (MalleableCFB).</t>
  <t>Only for a version 6 packet where the secret key material is encrypted (that is, where the previous octet is not zero), a one-octet scalar octet count of the cumulative length of all the following conditionally included string-to-key parameter fields.</t>
  <t>Conditionally included string-to-key parameter fields:  <list style="symbols">
      <t>If string-to-key usage octet was 255, 254, or 253, a one-octet symmetric encryption algorithm.</t>
      <t>If string-to-key usage octet was 253 (AEAD), a one-octet AEAD algorithm.</t>
      <t>Only for a version 6 packet, and if string-to-key usage octet was 255, 254, or 253, a one-octet count of the following field.</t>
      <t>If string-to-key usage octet was 255, 254, or 253, a string-to-key (S2K) specifier.
The length of the string-to-key specifier depends on its type (see <xref target="s2k-types"/>).</t>
      <t>If string-to-key usage octet was 253 (AEAD), an initialization vector (IV) of size specified by the AEAD algorithm (see <xref target="version-two-seipd"/>), which is used as the nonce for the AEAD algorithm.</t>
      <t>If string-to-key usage octet was 255, 254, or a cipher algorithm identifier (that is, the secret data uses some form of CFB encryption), an initialization vector (IV) of the same length as the cipher's block size.</t>
    </list></t>
  <t>Plain or encrypted multiprecision integers comprising the secret key data.
This is algorithm-specific and described in <xref target="algorithm-specific-parts-of-keys"/>.
If the string-to-key usage octet is 253 (AEAD), then an AEAD authentication tag is at the end of that data.
If the string-to-key usage octet is 254 (CFB), a 20-octet SHA-1 hash of the plaintext of the algorithm-specific portion is appended to plaintext and encrypted with it.
If the string-to-key usage octet is 255 (MalleableCFB) or another nonzero value (that is, a symmetric-key encryption algorithm identifier), a two-octet checksum of the plaintext of the algorithm-specific portion (sum of all octets, mod 65536) is appended to plaintext and encrypted with it.
(This is deprecated and <bcp14>SHOULD NOT</bcp14> be used, see below.)</t>
  <t>Only for a version 3 or 4 packet where the string-to-key usage octet is zero, a two-octet checksum of the algorithm-specific portion (sum of all octets, mod 65536).</t>
</list></t>

<t>The details about storing algorithm-specific secrets above are summarized in <xref target="secret-key-protection-registry"/>.</t>

<t>Note that the version 6 packet format adds two count values to help parsing packets with unknown S2K or public key algorithms.</t>

<t>Secret MPI values can be encrypted using a passphrase.
If a string-to-key specifier is given, that describes the algorithm for converting the passphrase to a key, else a simple MD5 hash of the passphrase is used.
Implementations <bcp14>MUST</bcp14> use a string-to-key specifier; the simple hash is for backward compatibility and is deprecated, though implementations <bcp14>MAY</bcp14> continue to use existing private keys in the old format.
The cipher for encrypting the MPIs is specified in the Secret-Key packet.</t>

<t>Encryption/decryption of the secret data is done using the key created from the passphrase and the initialization vector from the packet.
If the string-to-key usage octet is not 253, CFB mode is used.
A different mode is used with v3 keys (which are only RSA) than with other key formats.
With v3 keys, the MPI bit count prefix (that is, the first two octets) is not encrypted.
Only the MPI non-prefix data is encrypted.
Furthermore, the CFB state is resynchronized at the beginning of each new MPI value, so that the CFB block boundary is aligned with the start of the MPI data.</t>

<t>With v4 and v6 keys, a simpler method is used.
All secret MPI values are encrypted, including the MPI bitcount prefix.</t>

<t>If the string-to-key usage octet is 253, the key encryption key is derived using HKDF (see <xref target="RFC5869"/>) to provide key separation.
SHA256 is used as the hash algorithm for HKDF.
The Initial Keying Material (IKM)  for HKDF is the key derived from S2K.
No salt is used.
The info parameter is comprised of the Packet Tag in OpenPGP format encoding (bits 7 and 6 set, bits 5-0 carry the packet tag), the packet version, and the cipher-algo and AEAD-mode used to encrypt the key material.</t>

<t>Then, the encrypted MPI values are encrypted as one combined plaintext using one of the AEAD algorithms specified for version 2 of the Symmetrically Encrypted Integrity Protected Data packet.
Note that no chunks are used and that there is only one authentication tag.
As additional data, the Packet Tag in OpenPGP format encoding (bits 7 and 6 set, bits 5-0 carry the packet tag), followed by the public key packet fields, starting with the packet version number, are passed to the AEAD algorithm.
For example, the additional data used with a Secret-Key Packet of version 4 consists of the octets 0xC5, 0x04, followed by four octets of creation time, one octet denoting the public-key algorithm, and the algorithm-specific public-key parameters.
For a Secret-Subkey Packet, the first octet would be 0xC7.
For a version 6 key packet, the second octet would be 0x06, and the four-octet octet count of the public key material would be included as well (see <xref target="public-key-packet-formats"/>).</t>

<t>The two-octet checksum that follows the algorithm-specific portion is the algebraic sum, mod 65536, of the plaintext of all the algorithm-specific octets (including MPI prefix and data).
With v3 keys, the checksum is stored in the clear.
With v4 keys, the checksum is encrypted like the algorithm-specific data.
This value is used to check that the passphrase was correct.
However, this checksum is deprecated; an implementation <bcp14>SHOULD NOT</bcp14> use it, but should rather use the SHA-1 hash denoted with a usage octet of 254.
The reason for this is that there are some attacks that involve undetectably modifying the secret key.
If the string-to-key usage octet is 253 no checksum or SHA-1 hash is used but the authentication tag of the AEAD algorithm follows.</t>

<t>When decrypting the secret key material using any of these schemes (that is, where the usage octet is non-zero), the resulting cleartext octet stream <bcp14>MUST</bcp14> be well-formed.
In particular, an implementation <bcp14>MUST NOT</bcp14> interpret octets beyond the unwrapped cleartext octet stream as part of any of the unwrapped MPI objects.
Furthermore, an implementation <bcp14>MUST</bcp14> reject as unusable any secret key material whose cleartext length does not align with the lengths of the unwrapped MPI objects.</t>

</section>
<section anchor="key-ids-fingerprints"><name>Key IDs and Fingerprints</name>

<t>Every OpenPGP key has a fingerprint and a key ID.
The computation of these values differs based on the key version.
The fingerprint length varies with the key version, but the key ID (which is only used in v3 PKESK packets, see <xref target="v3-pkesk"/>) is always 64 bits.
The following registry represents the subsections below:</t>

<texttable title="Key ID and Fingerprint registry" anchor="key-id-fingerprint-registry">
      <ttcol align='left'>Key Version</ttcol>
      <ttcol align='left'>Fingerprint</ttcol>
      <ttcol align='left'>Fingerprint Length (bits)</ttcol>
      <ttcol align='left'>Key ID</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>3</c>
      <c>MD5(MPIs without length octets)</c>
      <c>128</c>
      <c>low 64 bits of RSA modulus</c>
      <c><xref target="v3-key-id-fingerprint"/></c>
      <c>4</c>
      <c>SHA1(normalized pubkey packet)</c>
      <c>160</c>
      <c>last 64 bits of fingerprint</c>
      <c><xref target="v4-key-id-fingerprint"/></c>
      <c>6</c>
      <c>SHA256(normalized pubkey packet)</c>
      <c>256</c>
      <c>first 64 bits of fingerprint</c>
      <c><xref target="v6-key-id-fingerprint"/></c>
</texttable>

<section anchor="v3-key-id-fingerprint"><name>Version 3 Key ID and Fingerprint</name>

<t>For a v3 key, the eight-octet Key ID consists of the low 64 bits of the public modulus of the RSA key.</t>

<t>The fingerprint of a v3 key is formed by hashing the body (but not the two-octet length) of the MPIs that form the key material (public modulus n, followed by exponent e) with MD5.
Note that both v3 keys and MD5 are deprecated.</t>

</section>
<section anchor="v4-key-id-fingerprint"><name>Version 4 Key ID and Fingerprint</name>

<t>A v4 fingerprint is the 160-bit SHA-1 hash of the octet 0x99, followed by the two-octet packet length, followed by the entire Public-Key packet starting with the version field.
The Key ID is the low-order 64 bits of the fingerprint.
Here are the fields of the hash material, with the example of an Ed25519 key:</t>

<t>a.1) 0x99 (1 octet)</t>

<t>a.2) two-octet, big-endian scalar octet count of (b)-(e)</t>

<t>b) version number = 4 (1 octet);</t>

<t>c) timestamp of key creation (4 octets);</t>

<t>d) algorithm (1 octet): 27 = Ed25519 (example);</t>

<t>e) Algorithm-specific fields.</t>

<t>Algorithm-Specific Fields for Ed25519 keys (example):</t>

<t>e.1) 32 octets representing the public key.</t>

</section>
<section anchor="v6-key-id-fingerprint"><name>Version 6 Key ID and Fingerprint</name>

<t>A v6 fingerprint is the 256-bit SHA2-256 hash of the octet 0x9B, followed by the four-octet packet length, followed by the entire Public-Key packet starting with the version field.
The Key ID is the high-order 64 bits of the fingerprint.
Here are the fields of the hash material, with the example of an Ed25519 key:</t>

<t>a.1) 0x9B (1 octet)</t>

<t>a.2) four-octet scalar octet count of (b)-(f)</t>

<t>b) version number = 6 (1 octet);</t>

<t>c) timestamp of key creation (4 octets);</t>

<t>d) algorithm (1 octet): 27 = Ed25519 (example);</t>

<t>e) four-octet scalar octet count for the following key material;</t>

<t>f) algorithm-specific fields.</t>

<t>Algorithm-Specific Fields for Ed25519 keys (example):</t>

<t>e.1) 32 octets representing the public key.</t>

<t>Note that it is possible for there to be collisions of Key IDs --- two different keys with the same Key ID.
Note that there is a much smaller, but still non-zero, probability that two different keys have the same fingerprint.</t>

<t>Also note that if v3, v4, and v6 format keys share the same RSA key material, they will have different Key IDs as well as different fingerprints.</t>

<t>Finally, the Key ID and fingerprint of a subkey are calculated in the same way as for a primary key, including the 0x99 (v4 key) or 0x9B (v6 key) as the first octet (even though this is not a valid packet ID for a public subkey).</t>

</section>
</section>
<section anchor="algorithm-specific-parts-of-keys"><name>Algorithm-specific Parts of Keys</name>

<t>The public and secret key format specifies algorithm-specific parts of a key.
The following sections describe them in detail.</t>

<section anchor="key-rsa"><name>Algorithm-Specific Part for RSA Keys</name>

<t>The public key is this series of multiprecision integers:</t>

<t><list style="symbols">
  <t>MPI of RSA public modulus n;</t>
  <t>MPI of RSA public encryption exponent e.</t>
</list></t>

<t>The secret key is this series of multiprecision integers:</t>

<t><list style="symbols">
  <t>MPI of RSA secret exponent d;</t>
  <t>MPI of RSA secret prime value p;</t>
  <t>MPI of RSA secret prime value q (p &lt; q);</t>
  <t>MPI of u, the multiplicative inverse of p, mod q.</t>
</list></t>

</section>
<section anchor="key-dsa"><name>Algorithm-Specific Part for DSA Keys</name>

<t>The public key is this series of multiprecision integers:</t>

<t><list style="symbols">
  <t>MPI of DSA prime p;</t>
  <t>MPI of DSA group order q (q is a prime divisor of p-1);</t>
  <t>MPI of DSA group generator g;</t>
  <t>MPI of DSA public-key value y (= g**x mod p where x is secret).</t>
</list></t>

<t>The secret key is this single multiprecision integer:</t>

<t><list style="symbols">
  <t>MPI of DSA secret exponent x.</t>
</list></t>

</section>
<section anchor="key-elgamal"><name>Algorithm-Specific Part for Elgamal Keys</name>

<t>The public key is this series of multiprecision integers:</t>

<t><list style="symbols">
  <t>MPI of Elgamal prime p;</t>
  <t>MPI of Elgamal group generator g;</t>
  <t>MPI of Elgamal public key value y (= g**x mod p where x is secret).</t>
</list></t>

<t>The secret key is this single multiprecision integer:</t>

<t><list style="symbols">
  <t>MPI of Elgamal secret exponent x.</t>
</list></t>

</section>
<section anchor="key-ecdsa"><name>Algorithm-Specific Part for ECDSA Keys</name>

<t>The public key is this series of values:</t>

<t><list style="symbols">
  <t>A variable-length field containing a curve OID, which is formatted as follows:  <list style="symbols">
      <t>A one-octet size of the following field; values 0 and 0xFF are reserved for future extensions,</t>
      <t>The octets representing a curve OID (defined in <xref target="ec-curves"/>);</t>
    </list></t>
  <t>MPI of an EC point representing a public key.</t>
</list></t>

<t>The secret key is this single multiprecision integer:</t>

<t><list style="symbols">
  <t>MPI of an integer representing the secret key, which is a scalar of the public EC point.</t>
</list></t>

</section>
<section anchor="key-eddsa-legacy"><name>Algorithm-Specific Part for EdDSALegacy Keys (deprecated)</name>

<t>The public key is this series of values:</t>

<t><list style="symbols">
  <t>A variable-length field containing a curve OID, formatted as follows:  <list style="symbols">
      <t>A one-octet size of the following field; values 0 and 0xFF are reserved for future extensions,</t>
      <t>The octets representing a curve OID, defined in <xref target="ec-curves"/>;</t>
    </list></t>
  <t>An MPI of an EC point representing a public key Q in prefixed native form (see <xref target="ec-point-prefixed-native"/>).</t>
</list></t>

<t>The secret key is this single multiprecision integer:</t>

<t><list style="symbols">
  <t>An MPI-encoded octet string representing the native form of the secret key, in the curve-specific format described in <xref target="curve-specific-formats"/>.</t>
</list></t>

<t>Note that the native form for an EdDSA secret key is a fixed-width sequence of unstructured random octets, with size corresponding to the specific curve.
That sequence of random octets is used with a cryptographic digest to produce both a curve-specific secret scalar and a prefix used when making a signature.
See <xref section="5.1.5" sectionFormat="of" target="RFC8032"/> for more details about how to use the native octet strings for Ed25519Legacy.
The value stored in an OpenPGP EdDSALegacy secret key packet is the original sequence of random octets.</t>

<t>Note that the only curve defined for use with EdDSALegacy is the Ed25519Legacy OID.</t>

</section>
<section anchor="key-ecdh"><name>Algorithm-Specific Part for ECDH Keys</name>

<t>The public key is this series of values:</t>

<t><list style="symbols">
  <t>A variable-length field containing a curve OID, which is formatted as follows:  <list style="symbols">
      <t>A one-octet size of the following field; values 0 and 0xFF are reserved for future extensions,</t>
      <t>Octets representing a curve OID, defined in <xref target="ec-curves"/>;</t>
    </list></t>
  <t>MPI of an EC point representing a public key, in the point format associated with the curve as specified in <xref target="curve-specific-formats"/></t>
  <t>A variable-length field containing KDF parameters, which is formatted as follows:  <list style="symbols">
      <t>A one-octet size of the following fields; values 0 and 0xFF are reserved for future extensions,</t>
      <t>A one-octet value 1, reserved for future extensions,</t>
      <t>A one-octet hash function ID used with a KDF,</t>
      <t>A one-octet algorithm ID for the symmetric algorithm used to wrap the symmetric key used for the message encryption; see <xref target="ecdh"/> for details.</t>
    </list></t>
</list></t>

<t>The secret key is this single multiprecision integer:</t>

<t><list style="symbols">
  <t>An MPI representing the secret key, in the curve-specific format described in <xref target="curve-specific-formats"/>.</t>
</list></t>

<section anchor="ecdh-secret-key-material"><name>ECDH Secret Key Material</name>

<t>When curve NIST P-256, NIST P-384, NIST P-521, brainpoolP256r1, brainpoolP384r1, or brainpoolP512r1 are used in ECDH, their secret keys are represented as a simple integer in standard MPI form.
Other curves are presented on the wire differently (though still as a single MPI), as described below and in <xref target="curve-specific-formats"/>.</t>

<section anchor="curve25519-secrets"><name>Curve25519Legacy ECDH Secret Key Material (deprecated)</name>

<t>A Curve25519Legacy secret key is stored as a standard integer in big-endian MPI form.
Curve25519Legacy <bcp14>MUST NOT</bcp14> be used in key packets version 6 or above.
Note that this form is in reverse octet order from the little-endian "native" form found in <xref target="RFC7748"/>.</t>

<t>Note also that the integer for a Curve25519Legacy secret key for OpenPGP <bcp14>MUST</bcp14> have the appropriate form: that is, it <bcp14>MUST</bcp14> be divisible by 8, <bcp14>MUST</bcp14> be at least 2**254, and <bcp14>MUST</bcp14> be less than 2**255.
The length of this MPI in bits is by definition always 255, so the two leading octets of the MPI will always be <spanx style="verb">00 FF</spanx> and reversing the following 32 octets from the wire will produce the "native" form.</t>

<t>When generating a new Curve25519Legacy secret key from 32 fully-random octets, the following pseudocode produces the MPI wire format (note the similarity to <spanx style="verb">decodeScalar25519</spanx> from <xref target="RFC7748"/>):</t>

<figure><artwork><![CDATA[
def curve25519Legacy_MPI_from_random(octet_list):
    octet_list[0] &= 248
    octet_list[31] &= 127
    octet_list[31] |= 64
    mpi_header = [ 0x00, 0xFF ]
    return mpi_header || reversed(octet_list)
]]></artwork></figure>

</section>
</section>
</section>
<section anchor="key-x25519"><name>Algorithm-Specific Part for X25519 Keys</name>

<t>The public key is this single value:</t>

<t><list style="symbols">
  <t>32 octets of the native public key.</t>
</list></t>

<t>The secret key is this single value:</t>

<t><list style="symbols">
  <t>32 octets of the native secret key.</t>
</list></t>

<t>See <xref section="6.1" sectionFormat="of" target="RFC7748"/> for more details about how to use the native octet strings.
The value stored in an OpenPGP X25519 secret key packet is the original sequence of random octets.
The value stored in an OpenPGP X25519 public key packet is the value X25519(secretKey, 9).</t>

</section>
<section anchor="key-x448"><name>Algorithm-Specific Part for X448 Keys</name>

<t>The public key is this single value:</t>

<t><list style="symbols">
  <t>56 octets of the native public key.</t>
</list></t>

<t>The secret key is this single value:</t>

<t><list style="symbols">
  <t>56 octets of the native secret key.</t>
</list></t>

<t>See <xref section="6.2" sectionFormat="of" target="RFC7748"/> for more details about how to use the native octet strings.
The value stored in an OpenPGP X448 secret key packet is the original sequence of random octets.
The value stored in an OpenPGP X448 public key packet is the value X448(secretKey, 5).</t>

</section>
<section anchor="key-ed25519"><name>Algorithm-Specific Part for Ed25519 Keys</name>

<t>The public key is this single value:</t>

<t><list style="symbols">
  <t>32 octets of the native public key.</t>
</list></t>

<t>The secret key is this single value:</t>

<t><list style="symbols">
  <t>32 octets of the native secret key.</t>
</list></t>

<t>See <xref section="5.1.5" sectionFormat="of" target="RFC8032"/> for more details about how to use the native octet strings.
The value stored in an OpenPGP Ed25519 secret key packet is the original sequence of random octets.</t>

</section>
<section anchor="key-ed448"><name>Algorithm-Specific Part for Ed448 Keys</name>

<t>The public key is this single value:</t>

<t><list style="symbols">
  <t>57 octets of the native public key.</t>
</list></t>

<t>The secret key is this single value:</t>

<t><list style="symbols">
  <t>57 octets of the native secret key.</t>
</list></t>

<t>See <xref section="5.2.5" sectionFormat="of" target="RFC8032"/> for more details about how to use the native octet strings.
The value stored in an OpenPGP Ed448 secret key packet is the original sequence of random octets.</t>

</section>
</section>
</section>
<section anchor="compressed-data"><name>Compressed Data Packet (Tag 8)</name>

<t>The Compressed Data packet contains compressed data.
Typically, this packet is found as the contents of an encrypted packet, or following a Signature or One-Pass Signature packet, and contains a literal data packet.</t>

<t>The body of this packet consists of:</t>

<t><list style="symbols">
  <t>One octet that gives the algorithm used to compress the packet.</t>
  <t>Compressed data, which makes up the remainder of the packet.</t>
</list></t>

<t>A Compressed Data Packet's body contains data that is a compression of a series of OpenPGP packets.
See <xref target="packet-composition"/> for details on how messages are formed.</t>

<t>A ZIP-compressed series of packets is compressed into raw <xref target="RFC1951"/> DEFLATE blocks.</t>

<t>A ZLIB-compressed series of packets is compressed with raw <xref target="RFC1950"/> ZLIB-style blocks.</t>

<t>A BZip2-compressed series of packets is compressed using the BZip2 <xref target="BZ2"/> algorithm.</t>

<t>An implementation that generates a Compressed Data packet <bcp14>MUST</bcp14> use the non-legacy format for packet framing (see <xref target="openpgp-packet-format"/>).
It <bcp14>MUST NOT</bcp14> generate a Compressed Data packet with Legacy format (<xref target="legacy-packet-format"/>)</t>

<t>An implementation that deals with either historic data or data generated by legacy implementations <bcp14>MAY</bcp14> interpret Compressed Data packets that use the Legacy format for packet framing.</t>

</section>
<section anchor="sed"><name>Symmetrically Encrypted Data Packet (Tag 9)</name>

<t>The Symmetrically Encrypted Data packet contains data encrypted with a symmetric-key algorithm.
When it has been decrypted, it contains other packets (usually a literal data packet or compressed data packet, but in theory other Symmetrically Encrypted Data packets or sequences of packets that form whole OpenPGP messages).</t>

<t>This packet is obsolete.
An implementation <bcp14>MUST NOT</bcp14> create this packet.
An implementation <bcp14>MAY</bcp14> process such a packet but it <bcp14>MUST</bcp14> return a clear diagnostic that a non-integrity protected packet has been processed.
The implementation <bcp14>SHOULD</bcp14> also return an error in this case and stop processing.</t>

<t>This packet format is impossible to handle safely in general because the ciphertext it provides is malleable.
See <xref target="ciphertext-malleability"/> about selecting a better OpenPGP encryption container that does not have this flaw.</t>

<t>The body of this packet consists of:</t>

<t><list style="symbols">
  <t>A random prefix, containing block-size random octets (for example, 8 octets for a 64-bit block length) followed by a copy of the last two octets, encrypted together using Cipher Feedback (CFB) mode, with an Initial Vector (IV) of all zeros.</t>
  <t>Data encrypted using CFB mode, with the last block-size octets of the first ciphertext as the IV.</t>
</list></t>

<t>The symmetric cipher used may be specified in a Public-Key or Symmetric-Key Encrypted Session Key packet that precedes the Symmetrically Encrypted Data packet.
In that case, the cipher algorithm octet is prefixed to the session key before it is encrypted.
If no packets of these types precede the encrypted data, the IDEA algorithm is used with the session key calculated as the MD5 hash of the passphrase, though this use is deprecated.</t>

<t>The data is encrypted in CFB mode (see <xref target="cfb-mode"/>).
For the random prefix, the Initial Vector (IV) is specified as all zeros.
Instead of using an IV, a string of length equal to the block size of the cipher plus two is encrypted.
The first block-size octets (for example, 8 octets for a 64-bit block length) are random, and the following two octets are copies of the last two octets of the IV.
For example, in an 8-octet block, octet 9 is a repeat of octet 7, and octet 10 is a repeat of octet 8.
In a cipher of length 16, octet 17 is a repeat of octet 15 and octet 18 is a repeat of octet 16.
(In both these examples, we consider the first octet to be numbered 1.)</t>

<t>After encrypting these block-size-plus-two octets, a new CFB context is created for the encryption of the data, with the last block-size octets of the first ciphertext as the IV.
(Alternatively and equivalently, the CFB state is resynchronized: the last block-size octets of ciphertext are passed through the cipher and the block boundary is reset.)</t>

<t>The repetition of two octets in the random prefix allows the receiver to immediately check whether the session key is incorrect.
See <xref target="quick-check-oracle"/> for hints on the proper use of this "quick check".</t>

</section>
<section anchor="marker-packet"><name>Marker Packet (Tag 10)</name>

<t>The body of this packet consists of:</t>

<t><list style="symbols">
  <t>The three octets 0x50, 0x47, 0x50 (which spell "PGP" in UTF-8).</t>
</list></t>

<t>Such a packet <bcp14>MUST</bcp14> be ignored when received.</t>

</section>
<section anchor="lit"><name>Literal Data Packet (Tag 11)</name>

<t>A Literal Data packet contains the body of a message; data that is not to be further interpreted.</t>

<t>The body of this packet consists of:</t>

<t><list style="symbols">
  <t>A one-octet field that describes how the data is formatted.  <vspace blankLines='1'/>
If it is a <spanx style="verb">b</spanx> (0x62), then the Literal packet contains binary data.
If it is a <spanx style="verb">u</spanx> (0x75), then the Literal packet contains UTF-8-encoded text data, and thus may need line ends converted to local form, or other text mode changes.  <vspace blankLines='1'/>
Older versions of OpenPGP used <spanx style="verb">t</spanx> (0x74) to indicate textual data, but did not specify the character encoding.
Implementations <bcp14>SHOULD NOT</bcp14> emit this value.
An implementation that receives a literal data packet with this value in the format field <bcp14>SHOULD</bcp14> interpret the packet data as UTF-8 encoded text, unless reliable (not attacker-controlled) context indicates a specific alternate text encoding.
This mode is deprecated due to its ambiguity.  <vspace blankLines='1'/>
Some legacy implementations also defined a value of <spanx style="verb">l</spanx> as a 'local' mode for machine-local conversions.
<xref target="RFC1991"/> incorrectly stated this local mode flag as <spanx style="verb">1</spanx> (ASCII numeral one).
Both of these local modes are deprecated.</t>
  <t>File name as a string (one-octet length, followed by a file name).
This may be a zero-length string.
Commonly, if the source of the encrypted data is a file, this will be the name of the encrypted file.
An implementation <bcp14>MAY</bcp14> consider the file name in the Literal packet to be a more authoritative name than the actual file name.</t>
  <t>A four-octet number that indicates a date associated with the literal data.
Commonly, the date might be the modification date of a file, or the time the packet was created, or a zero that indicates no specific time.</t>
  <t>The remainder of the packet is literal data.  <vspace blankLines='1'/>
Text data <bcp14>MUST</bcp14> be encoded with UTF-8 (see <xref target="RFC3629"/>), and stored with &lt;CR&gt;&lt;LF&gt; text endings (that is, network-normal line endings).
These should be converted to native line endings by the receiving software.</t>
</list></t>

<t>Note that OpenPGP signatures do not include the formatting octet, the file name, and the date field of the literal packet in a signature hash and thus those fields are not protected against tampering in a signed document.
A receiving implementation <bcp14>MUST NOT</bcp14> treat those fields as though they were cryptographically secured by the surrounding signature either when representing them to the user or acting on them.</t>

<t>Due to their inherent malleability, an implementation that generates a literal data packet <bcp14>SHOULD</bcp14> avoid storing any significant data in these fields.
If the implementation is certain that the data is textual and is encoded with UTF-8 (for example, if it will follow this literal data packet with a signature packet of type 0x01 (see <xref target="signature-types"/>), it <bcp14>MAY</bcp14> set the format octet to <spanx style="verb">u</spanx>.
Otherwise, it <bcp14>SHOULD</bcp14> set the format octet to <spanx style="verb">b</spanx>.
It <bcp14>SHOULD</bcp14> set the filename to the empty string (encoded as a single zero octet), and the timestamp to zero (encoded as four zero octets).</t>

<t>An application that wishes to include such filesystem metadata within a signature is advised to sign an encapsulated archive (for example, <xref target="PAX"/>).</t>

<t>An implementation that generates a Literal Data packet <bcp14>MUST</bcp14> use the OpenPGP format for packet framing (see <xref target="openpgp-packet-format"/>).
It <bcp14>MUST NOT</bcp14> generate a Literal Data packet with Legacy format (<xref target="legacy-packet-format"/>)</t>

<t>An implementation that deals with either historic data or data generated by legacy implementations <bcp14>MAY</bcp14> interpret Literal Data packets that use the Legacy format for packet framing.</t>

<section anchor="for-eyes-only"><name>Special Filename _CONSOLE (Deprecated)</name>

<t>The Literal Data packet's filename field has a historical special case for the special name <spanx style="verb">_CONSOLE</spanx>.
When the filename field is <spanx style="verb">_CONSOLE</spanx>, the message is considered to be "for your eyes only".
This advises that the message data is unusually sensitive, and the receiving program should process it more carefully, perhaps avoiding storing the received data to disk, for example.</t>

<t>An OpenPGP deployment that generates literal data packets <bcp14>MUST NOT</bcp14> depend on this indicator being honored in any particular way.
It cannot be enforced, and the field itself is not covered by any cryptographic signature.</t>

<t>It is <bcp14>NOT RECOMMENDED</bcp14> to use this special filename in a newly-generated literal data packet.</t>

</section>
</section>
<section anchor="trust"><name>Trust Packet (Tag 12)</name>

<t>The Trust packet is used only within keyrings and is not normally exported.
Trust packets contain data that record the user's specifications of which key holders are trustworthy introducers, along with other information that implementing software uses for trust information.
The format of Trust packets is defined by a given implementation.</t>

<t>Trust packets <bcp14>SHOULD NOT</bcp14> be emitted to output streams that are transferred to other users, and they <bcp14>SHOULD</bcp14> be ignored on any input other than local keyring files.</t>

</section>
<section anchor="uid"><name>User ID Packet (Tag 13)</name>

<t>A User ID packet consists of UTF-8 text that is intended to represent the name and email address of the key holder.
By convention, it includes an <xref target="RFC2822"/> mail name-addr, but there are no restrictions on its content.
The packet length in the header specifies the length of the User ID.</t>

</section>
<section anchor="user-attribute-packet"><name>User Attribute Packet (Tag 17)</name>

<t>The User Attribute packet is a variation of the User ID packet.
It is capable of storing more types of data than the User ID packet, which is limited to text.
Like the User ID packet, a User Attribute packet may be certified by the key owner ("self-signed") or any other key owner who cares to certify it.
Except as noted, a User Attribute packet may be used anywhere that a User ID packet may be used.</t>

<t>While User Attribute packets are not a required part of the OpenPGP standard, implementations <bcp14>SHOULD</bcp14> provide at least enough compatibility to properly handle a certification signature on the User Attribute packet.
A simple way to do this is by treating the User Attribute packet as a User ID packet with opaque contents, but an implementation may use any method desired.</t>

<t>The User Attribute packet is made up of one or more attribute subpackets.
Each subpacket consists of a subpacket header and a body.
The header consists of:</t>

<t><list style="symbols">
  <t>The subpacket length (1, 2, or 5 octets)</t>
  <t>The subpacket type (1 octet)</t>
</list></t>

<t>and is followed by the subpacket specific data.</t>

<t>The following table lists the currently known subpackets:</t>

<texttable title="User Attribute Subpacket Types registry" anchor="user-attr-subpacket-types-registry">
      <ttcol align='right'>Type</ttcol>
      <ttcol align='left'>Attribute Subpacket</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>1</c>
      <c>Image Attribute Subpacket</c>
      <c><xref target="uat-image"/></c>
      <c>100-110</c>
      <c>Private/Experimental Use</c>
      <c>&#160;</c>
</texttable>

<t>An implementation <bcp14>SHOULD</bcp14> ignore any subpacket of a type that it does not recognize.</t>

<section anchor="uat-image"><name>The Image Attribute Subpacket</name>

<t>The Image Attribute subpacket is used to encode an image, presumably (but not required to be) that of the key owner.</t>

<t>The Image Attribute subpacket begins with an image header.
The first two octets of the image header contain the length of the image header.
Note that unlike other multi-octet numerical values in this document, due to a historical accident this value is encoded as a little-endian number.
The image header length is followed by a single octet for the image header version.
The only currently defined version of the image header is 1, which is a 16-octet image header.
The first three octets of a version 1 image header are thus 0x10, 0x00, 0x01.</t>

<texttable title="Image Attribute Version registry" anchor="image-attribute-version-registry">
      <ttcol align='right'>Version</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>1</c>
      <c><xref target="uat-image"/></c>
</texttable>

<t>The fourth octet of a version 1 image header designates the encoding format of the image.
The only currently defined encoding format is the value 1 to indicate JPEG.
Image format types 100 through 110 are reserved for private or experimental use.
The rest of the version 1 image header is made up of 12 reserved octets, all of which <bcp14>MUST</bcp14> be set to 0.</t>

<texttable title="Image Attribute Encoding Format registry" anchor="image-attr-encoding-format-registry">
      <ttcol align='right'>Value</ttcol>
      <ttcol align='left'>Encoding</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>1</c>
      <c>JPEG</c>
      <c>JPEG File Interchange Format (<xref target="JFIF"/>)</c>
      <c>100-110</c>
      <c>Private/Experimental use</c>
      <c>&#160;</c>
</texttable>

<t>The rest of the image subpacket contains the image itself.
As the only currently defined image type is JPEG, the image is encoded in the JPEG File Interchange Format (JFIF), a standard file format for JPEG images <xref target="JFIF"/>.</t>

<t>An implementation <bcp14>MAY</bcp14> try to determine the type of an image by examination of the image data if it is unable to handle a particular version of the image header or if a specified encoding format value is not recognized.</t>

</section>
</section>
<section anchor="seipd"><name>Symmetrically Encrypted Integrity Protected Data Packet (Tag 18)</name>

<t>This packet (the "SEIPD" packet) contains integrity protected and encrypted data.
When it has been decrypted, it will contain other packets forming an OpenPGP Message (see <xref target="openpgp-messages"/>).</t>

<t>The first octet of this packet is always used to indicate the version number, but different versions contain differently-structured ciphertext.
Version 1 of this packet contains data encrypted with a symmetric-key algorithm and protected against modification by the SHA-1 hash algorithm.
This is a legacy OpenPGP mechanism that offers some protections against ciphertext malleability.</t>

<t>Version 2 of this packet contains data encrypted with an authenticated encryption and additional data (AEAD) construction.
This offers a more cryptographically rigorous defense against ciphertext malleability, but may not be as widely supported yet.
See <xref target="ciphertext-malleability"/> for more details on choosing between these formats.</t>

<t>Any new version of the SEIPD packet should be registered in the registry established in <xref target="encrypted-message-versions"/>.</t>

<section anchor="version-one-seipd"><name>Version 1 Symmetrically Encrypted Integrity Protected Data Packet Format</name>

<t>A version 1 Symmetrically Encrypted Integrity Protected Data packet consists of:</t>

<t><list style="symbols">
  <t>A one-octet version number with value 1.</t>
  <t>Encrypted data, the output of the selected symmetric-key cipher operating in Cipher Feedback (CFB) mode.</t>
</list></t>

<t>The symmetric cipher used <bcp14>MUST</bcp14> be specified in a Public-Key or Symmetric-Key Encrypted Session Key packet that precedes the Symmetrically Encrypted Integrity Protected Data packet.
In either case, the cipher algorithm octet is prefixed to the session key before it is encrypted.</t>

<t>The data is encrypted in CFB mode (see <xref target="cfb-mode"/>).
The Initial Vector (IV) is specified as all zeros.
Instead of using an IV, OpenPGP prefixes an octet string to the data before it is encrypted.
The length of the octet string equals the block size of the cipher in octets, plus two.
The first octets in the group, of length equal to the block size of the cipher, are random; the last two octets are each copies of their 2nd preceding octet.
For example, with a cipher whose block size is 128 bits or 16 octets, the prefix data will contain 16 random octets, then two more octets, which are copies of the 15th and 16th octets, respectively.
Unlike the deprecated Symmetrically Encrypted Data Packet (<xref target="sed"/>), this prefix data is encrypted in the same CFB context, and no special CFB resynchronization is done.</t>

<t>The repetition of 16 bits in the random data prefixed to the message allows the receiver to immediately check whether the session key is incorrect.
See <xref target="quick-check-oracle"/> for hints on the proper use of this "quick check".</t>

<t>Two constant octets with the values 0xD3 and 0x14 are appended to the plaintext.
Then, the plaintext of the data to be encrypted is passed through the SHA-1 hash function.
The input to the hash function includes the prefix data described above; it includes all of the plaintext, including the trailing constant octets 0xD3, 0x14.
The 20 octets of the SHA-1 hash are then appended to the plaintext (after the constant octets 0xD3, 0x14) and encrypted along with the plaintext using the same CFB context.
This trailing checksum is known as the Modification Detection Code (MDC).</t>

<t>During decryption, the plaintext data should be hashed with SHA-1, including the prefix data as well as the trailing constant octets 0xD3, 0x14, but excluding the last 20 octets containing the SHA-1 hash.
The computed SHA-1 hash is then compared with the last 20 octets of plaintext.
A mismatch of the hash indicates that the message has been modified and <bcp14>MUST</bcp14> be treated as a security problem.
Any failure <bcp14>SHOULD</bcp14> be reported to the user.</t>

<ul empty="true"><li>
  <t>NON-NORMATIVE EXPLANATION</t>

  <t>The Modification Detection Code (MDC) system, as the integrity
  protection mechanism of version 1 of the Symmetrically Encrypted
  Integrity Protected Data packet is called, was created to
  provide an integrity mechanism that is less strong than a
  signature, yet stronger than bare CFB encryption.</t>

  <t>It is a limitation of CFB encryption that damage to the ciphertext
  will corrupt the affected cipher blocks and the block following.
  Additionally, if data is removed from the end of a CFB-encrypted
  block, that removal is undetectable.  (Note also that CBC mode has
  a similar limitation, but data removed from the front of the block
  is undetectable.)</t>

  <t>The obvious way to protect or authenticate an encrypted block is
  to digitally sign it.  However, many people do not wish to
  habitually sign data, for a large number of reasons beyond the
  scope of this document.  Suffice it to say that many people
  consider properties such as deniability to be as valuable as
  integrity.</t>

  <t>OpenPGP addresses this desire to have more security than raw
  encryption and yet preserve deniability with the MDC system.  An
  MDC is intentionally not a MAC.  Its name was not selected by
  accident.  It is analogous to a checksum.</t>

  <t>Despite the fact that it is a relatively modest system, it has
  proved itself in the real world.  It is an effective defense to
  several attacks that have surfaced since it has been created.  It
  has met its modest goals admirably.</t>

  <t>Consequently, because it is a modest security system, it has
  modest requirements on the hash function(s) it employs.  It does
  not rely on a hash function being collision-free, it relies on a
  hash function being one-way.  If a forger, Frank, wishes to send
  Alice a (digitally) unsigned message that says, "I've always
  secretly loved you, signed Bob", it is far easier for him to
  construct a new message than it is to modify anything intercepted
  from Bob.  (Note also that if Bob wishes to communicate secretly
  with Alice, but without authentication or identification and with
  a threat model that includes forgers, he has a problem that
  transcends mere cryptography.)</t>

  <t>Note also that unlike nearly every other OpenPGP subsystem, there
  are no parameters in the MDC system.  It hard-defines SHA-1 as its
  hash function.  This is not an accident.  It is an intentional
  choice to avoid downgrade and cross-grade attacks while making a
  simple, fast system.  (A downgrade attack would be an attack that
  replaced SHA2-256 with SHA-1, for example.  A cross-grade attack
  would replace SHA-1 with another 160-bit hash, such as
  RIPEMD-160, for example.)</t>

  <t>However, no update will be needed because the MDC has been replaced
  by the AEAD encryption described in this document.</t>
</li></ul>

</section>
<section anchor="version-two-seipd"><name>Version 2 Symmetrically Encrypted Integrity Protected Data Packet Format</name>

<t>A version 2 Symmetrically Encrypted Integrity Protected Data packet consists of:</t>

<t><list style="symbols">
  <t>A one-octet version number with value 2.</t>
  <t>A one-octet cipher algorithm identifier.</t>
  <t>A one-octet AEAD algorithm identifier.</t>
  <t>A one-octet chunk size.</t>
  <t>Thirty-two octets of salt.
The salt is used to derive the message key and must be unique.</t>
  <t>Encrypted data, the output of the selected symmetric-key cipher operating in the given AEAD mode.</t>
  <t>A final, summary authentication tag for the AEAD mode.</t>
</list></t>

<t>The decrypted session key and the salt are used to derive an M-bit message key and N-64 bits used as initialization vector, where M is the key size of the symmetric algorithm and N is the nonce size of the AEAD algorithm.
M + N - 64 bits are derived using HKDF (see <xref target="RFC5869"/>).
The left-most M bits are used as symmetric algorithm key, the remaining N - 64 bits are used as initialization vector.
HKDF is used with SHA256 as hash algorithm, the session key as Initial Keying Material (IKM), the salt as salt, and the Packet Tag in OpenPGP format encoding (bits 7 and 6 set, bits 5-0 carry the packet tag), version number, cipher algorithm octet, AEAD algorithm octet, and chunk size octet as info parameter.</t>

<t>The KDF mechanism provides key separation between cipher and AEAD algorithms.
Furthermore, an implementation can securely reply to a message even if a recipient's certificate is unknown by reusing the encrypted session key packets and replying with a different salt yielding a new, unique message key.
See <xref target="secure-sessionkey-reuse"/> for guidance on how applications can securely implement this feature.</t>

<t>A v2 SEIPD packet consists of one or more chunks of data.
The plaintext of each chunk is of a size specified using the chunk size octet using the method specified below.</t>

<t>The encrypted data consists of the encryption of each chunk of plaintext, followed immediately by the relevant authentication tag.
If the last chunk of plaintext is smaller than the chunk size, the ciphertext for that data may be shorter; it is nevertheless followed by a full authentication tag.</t>

<t>For each chunk, the AEAD construction is given the Packet Tag in OpenPGP format encoding (bits 7 and 6 set, bits 5-0 carry the packet tag), version number, cipher algorithm octet, AEAD algorithm octet, and chunk size octet as additional data.
For example, the additional data of the first chunk using EAX and AES-128 with a chunk size of 2**22 octets consists of the octets 0xD2, 0x02, 0x07, 0x01, and 0x10.</t>

<t>After the final chunk, the AEAD algorithm is used to produce a final authentication tag encrypting the empty string.
This AEAD instance is given the additional data specified above, plus an eight-octet, big-endian value specifying the total number of plaintext octets encrypted.
This allows detection of a truncated ciphertext.</t>

<t>The chunk size octet specifies the size of chunks using the following formula (in C), where c is the chunk size octet:</t>

<figure><artwork><![CDATA[
  chunk_size = (uint32_t) 1 << (c + 6)
]]></artwork></figure>

<t>An implementation <bcp14>MUST</bcp14> accept chunk size octets with values from 0 to 16.
An implementation <bcp14>MUST NOT</bcp14> create data with a chunk size octet value larger than 16 (4 MiB chunks).</t>

<t>The nonce for AEAD mode consists of two parts.
Let N be the size of the nonce.
The left-most N - 64 bits are the initialization vector derived using HKDF.
The right-most 64 bits are the chunk index as big-endian value.
The index of the first chunk is zero.</t>

</section>
<section anchor="aead-mode-eax"><name>EAX Mode</name>

<t>The EAX AEAD Algorithm used in this document is defined in <xref target="EAX"/>.</t>

<t>The EAX algorithm can only use block ciphers with 16-octet blocks.
The nonce is 16 octets long.
EAX authentication tags are 16 octets long.</t>

</section>
<section anchor="aead-mode-ocb"><name>OCB Mode</name>

<t>The OCB AEAD Algorithm used in this document is defined in <xref target="RFC7253"/>.</t>

<t>The OCB algorithm can only use block ciphers with 16-octet blocks.
The nonce is 15 octets long.
OCB authentication tags are 16 octets long.</t>

</section>
<section anchor="aead-mode-gcm"><name>GCM Mode</name>

<t>The GCM AEAD Algorithm used in this document is defined in <xref target="SP800-38D"/>.</t>

<t>The GCM algorithm can only use block ciphers with 16-octet blocks.
The nonce is 12 octets long.
GCM authentication tags are 16 octets long.</t>

</section>
</section>
<section anchor="padding-packet"><name>Padding Packet (Tag 21)</name>

<t>The Padding packet contains random data, and can be used to defend against traffic analysis (see <xref target="traffic-analysis"/>) on version 2 SEIPD messages (see <xref target="version-two-seipd"/>) and Transferable Public Keys (see <xref target="transferable-public-keys"/>).</t>

<t>Such a packet <bcp14>MUST</bcp14> be ignored when received.</t>

<t>Its contents <bcp14>SHOULD</bcp14> be random octets to make the length obfuscation it provides more robust even when compressed.</t>

<t>An implementation adding padding to an OpenPGP stream <bcp14>SHOULD</bcp14> place such a packet:</t>

<t><list style="symbols">
  <t>At the end of a v6 Transferable Public Key that is transferred over an encrypted channel (see <xref target="transferable-public-keys"/>).</t>
  <t>As the last packet of an Optionally Padded Message within a version 2 Symmetrically Encrypted Integrity Protected Data Packet (see <xref target="unwrapping"/>).</t>
</list></t>

<t>An implementation <bcp14>MUST</bcp14> be able to process padding packets anywhere else in an OpenPGP stream, so that future revisions of this document may specify further locations for padding.</t>

<t>Policy about how large to make such a packet to defend against traffic analysis is beyond the scope of this document.</t>

</section>
</section>
<section anchor="base64"><name>Base64 Conversions</name>

<t>As stated in the introduction, OpenPGP's underlying native representation for objects is a stream of arbitrary octets, and some systems desire these objects to be immune to damage caused by character set translation, data conversions, etc.</t>

<t>In principle, any printable encoding scheme that met the requirements of the unsafe channel would suffice, since it would not change the underlying binary bit streams of the native OpenPGP data structures.
The OpenPGP standard specifies one such printable encoding scheme to ensure interoperability.</t>

<t>The encoding is composed of two parts: a base64 encoding of the binary data and an optional checksum.
The base64 encoding used is described in <xref section="4" sectionFormat="of" target="RFC4648"/>, and it is wrapped into lines of no more than 76 characters each.</t>

<t>When decoding base64, an OpenPGP implementation must ignore all white space.</t>

<section anchor="optional-crc24"><name>Optional checksum</name>

<t>The optional checksum is a 24-bit Cyclic Redundancy Check (CRC) converted to four characters of base64 encoding by the same MIME base64 transformation, preceded by an equal sign (=).
The CRC is computed by using the generator 0x864CFB and an initialization of 0xB704CE.
The accumulation is done on the data before it is converted to base64, rather than on the converted data.
A sample implementation of this algorithm is in <xref target="sample-crc24"/>.</t>

<t>If present, the checksum with its leading equal sign <bcp14>MUST</bcp14> appear on the next line after the base64 encoded data.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> reject an OpenPGP object when the CRC24 footer is present, missing, malformed, or disagrees with the computed CRC24 sum.
When forming ASCII Armor, the CRC24 footer <bcp14>SHOULD NOT</bcp14> be generated, unless interoperability with implementations that require the CRC24 footer to be present is a concern.</t>

<t>The CRC24 footer <bcp14>MUST NOT</bcp14> be generated if it can be determined by context or by the OpenPGP object being encoded that the consuming implementation accepts base64 encoded blocks without CRC24 footer.
Notably:</t>

<t><list style="symbols">
  <t>An ASCII-armored Encrypted Message packet sequence that ends in an v2 SEIPD packet <bcp14>MUST NOT</bcp14> contain a CRC24 footer.</t>
  <t>An ASCII-armored sequence of Signature packets that only includes v6 Signature packets <bcp14>MUST NOT</bcp14> contain a CRC24 footer.</t>
  <t>An ASCII-armored Transferable Public Key packet sequence of a v6 key <bcp14>MUST NOT</bcp14> contain a CRC24 footer.</t>
  <t>An ASCII-armored keyring consisting of only v6 keys <bcp14>MUST NOT</bcp14> contain a CRC24 footer.</t>
</list></t>

<t>Rationale:
Previous versions of this document state that the CRC24 footer is optional, but the text was ambiguous.
In practice, very few implementations require the CRC24 footer to be present.
Computing the CRC24 incurs a significant cost, while providing no meaningful integrity protection.
Therefore, generating it is now discouraged.</t>

<section anchor="sample-crc24"><name>An Implementation of the CRC-24 in "C"</name>

<figure><sourcecode type="text/x-csrc" name="sample-crc24.c"><![CDATA[
#define CRC24_INIT 0xB704CEL
#define CRC24_GENERATOR 0x864CFBL

typedef unsigned long crc24;
crc24 crc_octets(unsigned char *octets, size_t len)
{
    crc24 crc = CRC24_INIT;
    int i;
    while (len--) {
        crc ^= (*octets++) << 16;
        for (i = 0; i < 8; i++) {
            crc <<= 1;
            if (crc & 0x1000000) {
                crc &= 0XFFFFFF; /* Clear bit 25 to avoid overflow */
                crc ^= CRC24_GENERATOR;
            }
        }
    }
    return crc & 0xFFFFFFL;
}
]]></sourcecode></figure>

</section>
</section>
<section anchor="forming-ascii-armor"><name>Forming ASCII Armor</name>

<t>When OpenPGP encodes data into ASCII Armor, it puts specific headers around the base64 encoded data, so OpenPGP can reconstruct the data later.
An OpenPGP implementation <bcp14>MAY</bcp14> use ASCII armor to protect raw binary data.
OpenPGP informs the user what kind of data is encoded in the ASCII armor through the use of the headers.</t>

<t>Concatenating the following data creates ASCII Armor:</t>

<t><list style="symbols">
  <t>An Armor Header Line, appropriate for the type of data</t>
  <t>Armor Headers</t>
  <t>A blank (zero-length, or containing only whitespace) line</t>
  <t>The ASCII-Armored data</t>
  <t>An optional Armor Checksum (discouraged, see <xref target="optional-crc24"/>)</t>
  <t>The Armor Tail, which depends on the Armor Header Line</t>
</list></t>

<section anchor="armor-header-line"><name>Armor Header Line</name>

<t>An Armor Header Line consists of the appropriate header line text surrounded by five (5) dashes (<spanx style="verb">-</spanx>, 0x2D) on either side of the header line text.
The header line text is chosen based upon the type of data that is being encoded in Armor, and how it is being encoded.
Header line texts include the following strings:</t>

<texttable title="Armor Header Line registry" anchor="armor-header-line-registry">
      <ttcol align='left'>Armor Header</ttcol>
      <ttcol align='left'>Use</ttcol>
      <c><spanx style="verb">BEGIN PGP MESSAGE</spanx></c>
      <c>Used for signed, encrypted, or compressed files.</c>
      <c><spanx style="verb">BEGIN PGP PUBLIC KEY BLOCK</spanx></c>
      <c>Used for armoring public keys.</c>
      <c><spanx style="verb">BEGIN PGP PRIVATE KEY BLOCK</spanx></c>
      <c>Used for armoring private keys.</c>
      <c><spanx style="verb">BEGIN PGP SIGNATURE</spanx></c>
      <c>Used for detached signatures, OpenPGP/MIME signatures, and cleartext signatures.</c>
</texttable>

<t>Note that all these Armor Header Lines are to consist of a complete line.
The header lines, therefore, <bcp14>MUST</bcp14> start at the beginning of a line, and <bcp14>MUST NOT</bcp14> have text other than whitespace following them on the same line.</t>

</section>
<section anchor="armor-headers"><name>Armor Headers</name>

<t>The Armor Headers are pairs of strings that can give the user or the receiving OpenPGP implementation some information about how to decode or use the message.
The Armor Headers are a part of the armor, not a part of the message, and hence are not protected by any signatures applied to the message.</t>

<t>The format of an Armor Header is that of a key-value pair.
A colon (<spanx style="verb">:</spanx> 0x38) and a single space (0x20) separate the key and value.
An OpenPGP implementation may consider improperly formatted Armor Headers to be corruption of the ASCII Armor, but <bcp14>SHOULD</bcp14> make an effort to recover.
Unknown keys should be silently ignored, and an OpenPGP implementation <bcp14>SHOULD</bcp14> continue to process the message.</t>

<t>Note that some transport methods are sensitive to line length.
While there is a limit of 76 characters for the base64 data (<xref target="base64"/>), there is no limit to the length of Armor Headers.
Care should be taken that the Armor Headers are short enough to survive transport.
One way to do this is to repeat an Armor Header Key multiple times with different values for each so that no one line is overly long.</t>

<t>Currently defined Armor Header Keys are as follows:</t>

<texttable title="Armor Header Key registry" anchor="armor-header-key-registry">
      <ttcol align='left'>Key</ttcol>
      <ttcol align='left'>Summary</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c><spanx style="verb">Version</spanx></c>
      <c>Implementation information</c>
      <c><xref target="armor-header-key-version"/></c>
      <c><spanx style="verb">Comment</spanx></c>
      <c>Arbitrary text</c>
      <c><xref target="armor-header-key-comment"/></c>
      <c><spanx style="verb">Hash</spanx></c>
      <c>Hash algorithms used in some v4 cleartext signed messages</c>
      <c><xref target="armor-header-key-hash"/></c>
      <c><spanx style="verb">Charset</spanx></c>
      <c>Character set</c>
      <c><xref target="armor-header-key-charset"/></c>
</texttable>

<section anchor="armor-header-key-version"><name>"Version" Armor Header</name>

<t>The armor header key <spanx style="verb">Version</spanx> describes the OpenPGP implementation and version used to encode the message.
To minimize metadata, implementations <bcp14>SHOULD NOT</bcp14> emit this key and its corresponding value except for debugging purposes with explicit user consent.</t>

</section>
<section anchor="armor-header-key-comment"><name>"Comment" Armor Header</name>

<t>The armor header key <spanx style="verb">Comment</spanx> supplies a user-defined comment.
OpenPGP defines all text to be in UTF-8.
A comment may be any UTF-8 string.
However, the whole point of armoring is to provide seven-bit-clean data.
Consequently, if a comment has characters that are outside the US-ASCII range of UTF, they may very well not survive transport.</t>

</section>
<section anchor="armor-header-key-hash"><name>"Hash" Armor Header</name>

<t>This header is deprecated, but some older implementations expect it in messages using the Cleartext Signature Framework (<xref target="cleartext-signature"/>).
When present, The armor header key <spanx style="verb">Hash</spanx> contains a comma-separated list of hash algorithms used in the signatures on message, with digest names as specified in "Text Name" column in <xref target="hash-algorithms-registry"/>.
These headers <bcp14>SHOULD NOT</bcp14> be emitted unless:</t>

<t><list style="symbols">
  <t>The cleartext signed message contains a v4 signature made using a SHA2-based digest (<spanx style="verb">SHA224</spanx>, <spanx style="verb">SHA256</spanx>, <spanx style="verb">SHA384</spanx>, or <spanx style="verb">SHA512</spanx>), and</t>
  <t>The cleartext signed message might be verified by a legacy client.</t>
</list></t>

<t>An implementation that is verifying a cleartext signed message <bcp14>MUST</bcp14> ignore this header.
The digest algorithm is indicated in the signature itself.</t>

</section>
<section anchor="armor-header-key-charset"><name>"Charset" Armor Header</name>

<t>The armor header key <spanx style="verb">Charset</spanx> contains a description of the character set that the plaintext is in (see <xref target="RFC2978"/>).
Please note that OpenPGP defines text to be in UTF-8.
An implementation will get best results by translating into and out of UTF-8.
However, there are many instances where this is easier said than done.
Also, there are communities of users who have no need for UTF-8 because they are all happy with a character set like ISO Latin-5 or a Japanese character set.
In such instances, an implementation <bcp14>MAY</bcp14> override the UTF-8 default by using this header key.
An implementation <bcp14>MAY</bcp14> implement this key and any translations it cares to; an implementation <bcp14>MAY</bcp14> ignore it and assume all text is UTF-8.</t>

</section>
</section>
<section anchor="armor-tail-line"><name>Armor Tail Line</name>

<t>The Armor Tail Line is composed in the same manner as the Armor Header Line, except the string "BEGIN" is replaced by the string "END".</t>

</section>
</section>
</section>
<section anchor="cleartext-signature"><name>Cleartext Signature Framework</name>

<t>It is desirable to be able to sign a textual octet stream without ASCII armoring the stream itself, so the signed text is still readable without special software.
In order to bind a signature to such a cleartext, this framework is used, which follows the same basic format and restrictions as the ASCII armoring described in <xref target="forming-ascii-armor"/>.
(Note that this framework is not intended to be reversible.
<xref target="RFC3156"/> defines another way to sign cleartext messages for environments that support MIME.)</t>

<t>The cleartext signed message consists of:</t>

<t><list style="symbols">
  <t>The cleartext header <spanx style="verb">-----BEGIN PGP SIGNED MESSAGE-----</spanx> on a single line,</t>
  <t>Some implementations <bcp14>MAY</bcp14> include one or more legacy "Hash" Armor Headers, which <bcp14>MUST</bcp14> be ignored (see <xref target="armor-header-key-hash"/>),</t>
  <t>An empty line (not included into the message digest),</t>
  <t>The dash-escaped cleartext,</t>
  <t>A line ending separating the cleartext and following armored signature (not included into the message digest),</t>
  <t>The ASCII armored signature(s) including the <spanx style="verb">-----BEGIN PGP SIGNATURE-----</spanx> Armor Header and Armor Tail Lines.</t>
</list></t>

<t>As with binary signatures on text documents, a cleartext signature is calculated on the text using canonical &lt;CR&gt;&lt;LF&gt; line endings.
As described above, the line ending before the <spanx style="verb">-----BEGIN PGP SIGNATURE-----</spanx> Armor Header Line of the armored signature is not considered part of the signed text.</t>

<t>Also, any trailing whitespace --- spaces (0x20) and tabs (0x09) --- at the end of any line is removed before signing or verifying a cleartext signed message.</t>

<section anchor="dash-escaping"><name>Dash-Escaped Text</name>

<t>The cleartext content of the message must also be dash-escaped.</t>

<t>Dash-escaped cleartext is the ordinary cleartext where every line starting with a <u>-</u> is prefixed by the sequence <u>-</u> and <u> </u>.
This prevents the parser from recognizing armor headers of the cleartext itself.
An implementation <bcp14>MAY</bcp14> dash-escape any line, <bcp14>SHOULD</bcp14> dash-escape lines commencing "From" followed by a space, and <bcp14>MUST</bcp14> dash-escape any line commencing in a dash.
The message digest is computed using the cleartext itself, not the dash-escaped form.</t>

<t>When reversing dash-escaping, an implementation <bcp14>MUST</bcp14> strip the string <spanx style="verb">- </spanx> if it occurs at the beginning of a line, and <bcp14>SHOULD</bcp14> warn on <spanx style="verb">-</spanx> and any character other than a space at the beginning of a line.</t>

</section>
<section anchor="incompatibilities-with-cleartext-signature-framework"><name>Incompatibilities with Cleartext Signature Framework</name>

<t>Since creating a cleartext signed message involves trimming trailing whitespace on every line, the Cleartext Signature Framework will fail to safely round-trip any textual stream that may include semantically meaningful whitespace.</t>

<t>For example, the Unified Diff format <xref target="UNIFIED-DIFF"/> contains semantically meaningful whitespace: an empty line of context will consist of a line with a single <u> </u> character, and any line that has trailing whitespace added or removed will represent such a change with semantically meaningful whitespace.</t>

<t>Furthermore, a Cleartext Signature Framework message that is very large is unlikely to work well.
In particular, it will be difficult for any human reading the message to know which part of the message is covered by the signature because they can't understand the whole message at once, in case an Armor Header line is placed somewhere in the body.
And, very large Cleartext Signature Framework messages cannot be processed in a single pass, since the signature salt and digest algorithms are only discovered at the end.</t>

<t>An implementation that knows it is working with a textual stream with any of the above characteristics <bcp14>SHOULD NOT</bcp14> use the Cleartext Signature Framework.
Safe alternatives for a semantically meaningful OpenPGP signature over such a file format are:</t>

<t><list style="symbols">
  <t>A Signed Message, as described in <xref target="openpgp-messages"/>.</t>
  <t>A Detached Signature as described in <xref target="detached-signatures"/>.</t>
</list></t>

<t>Either of these alternatives may be ASCII-armored (see <xref target="forming-ascii-armor"/>) if they need to be transmitted across a text-only (or 7-bit clean) channel.</t>

</section>
</section>
<section anchor="regular-expressions"><name>Regular Expressions</name>

<t>A regular expression is zero or more branches, separated by <spanx style="verb">|</spanx>.
It matches anything that matches one of the branches.</t>

<t>A branch is zero or more pieces, concatenated.
It matches a match for the first, followed by a match for the second, etc.</t>

<t>A piece is an atom possibly followed by <spanx style="verb">*</spanx>, <spanx style="verb">+</spanx>, or <spanx style="verb">?</spanx>.
An atom followed by <spanx style="verb">*</spanx> matches a sequence of 0 or more matches of the atom.
An atom followed by <spanx style="verb">+</spanx> matches a sequence of 1 or more matches of the atom.
An atom followed by <spanx style="verb">?</spanx> matches a match of the atom, or the null string.</t>

<t>An atom is a regular expression in parentheses (matching a match for the regular expression), a range (see below), <spanx style="verb">.</spanx> (matching any single character), <spanx style="verb">^</spanx> (matching the null string at the beginning of the input string), <spanx style="verb">$</spanx> (matching the null string at the end of the input string), a <spanx style="verb">\</spanx> followed by a single character (matching that character), or a single character with no other significance (matching that character).</t>

<t>A range is a sequence of characters enclosed in <spanx style="verb">[]</spanx>.
It normally matches any single character from the sequence.
If the sequence begins with <spanx style="verb">^</spanx>, it matches any single character not from the rest of the sequence.
If two characters in the sequence are separated by <spanx style="verb">-</spanx>, this is shorthand for the full list of ASCII characters between them (for example, <spanx style="verb">[0-9]</spanx> matches any decimal digit).
To include a literal <spanx style="verb">]</spanx> in the sequence, make it the first character (following a possible <spanx style="verb">^</spanx>).
To include a literal <spanx style="verb">-</spanx>, make it the first or last character.</t>

</section>
<section anchor="constants"><name>Constants</name>

<t>This section describes the constants used in OpenPGP.</t>

<t>Note that these tables are not exhaustive lists; an implementation <bcp14>MAY</bcp14> implement an algorithm not on these lists, so long as the algorithm numbers are chosen from the private or experimental algorithm range.</t>

<t>See <xref target="notes-on-algorithms"/> for more discussion of the algorithms.</t>

<section anchor="pubkey-algos"><name>Public-Key Algorithms</name>

<texttable title="Public Key Algorithms registry" anchor="pubkey-algo-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <ttcol align='left'>Public Key Format</ttcol>
      <ttcol align='left'>Secret Key Format</ttcol>
      <ttcol align='left'>Signature Format</ttcol>
      <ttcol align='left'>PKESK Format</ttcol>
      <c>0</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>1</c>
      <c>RSA (Encrypt or Sign) <xref target="HAC"/></c>
      <c>MPI(n), MPI(e) [<xref target="key-rsa"/>]</c>
      <c>MPI(d), MPI(p), MPI(q), MPI(u)</c>
      <c>MPI(m**d mod n) [<xref target="sig-rsa"/>]</c>
      <c>MPI(m**e mod n) [<xref target="pkesk-rsa"/>]</c>
      <c>2</c>
      <c>RSA Encrypt-Only <xref target="HAC"/></c>
      <c>MPI(n), MPI(e) [<xref target="key-rsa"/>]</c>
      <c>MPI(d), MPI(p), MPI(q), MPI(u)</c>
      <c>N/A</c>
      <c>MPI(m**e mod n) [<xref target="pkesk-rsa"/>]</c>
      <c>3</c>
      <c>RSA Sign-Only <xref target="HAC"/></c>
      <c>MPI(n), MPI(e) [<xref target="key-rsa"/>]</c>
      <c>MPI(d), MPI(p), MPI(q), MPI(u)</c>
      <c>MPI(m**d mod n) [<xref target="sig-rsa"/>]</c>
      <c>N/A</c>
      <c>16</c>
      <c>Elgamal (Encrypt-Only) <xref target="ELGAMAL"/> <xref target="HAC"/></c>
      <c>MPI(p), MPI(g), MPI(y) [<xref target="key-elgamal"/>]</c>
      <c>MPI(x)</c>
      <c>N/A</c>
      <c>MPI(g**k mod p), MPI (m * y**k mod p) [<xref target="pkesk-elgamal"/>]</c>
      <c>17</c>
      <c>DSA (Digital Signature Algorithm) <xref target="FIPS186"/> <xref target="HAC"/></c>
      <c>MPI(p), MPI(q), MPI(g), MPI(y) [<xref target="key-dsa"/>]</c>
      <c>MPI(x)</c>
      <c>MPI(r), MPI(s) [<xref target="sig-dsa"/>]</c>
      <c>N/A</c>
      <c>18</c>
      <c>ECDH public key algorithm</c>
      <c>OID, MPI(point in curve-specific point format), KDFParams [see <xref target="curve-specific-formats"/>, <xref target="key-ecdh"/>]</c>
      <c>MPI(value in curve-specific format) [<xref target="curve-specific-formats"/>]</c>
      <c>N/A</c>
      <c>MPI(point in curve-specific point format), size octet, encoded key [<xref target="curve-specific-formats"/>, <xref target="pkesk-ecdh"/>, <xref target="ecdh"/>]</c>
      <c>19</c>
      <c>ECDSA public key algorithm <xref target="FIPS186"/></c>
      <c>OID, MPI(point in SEC1 format) [<xref target="key-ecdsa"/>]</c>
      <c>MPI(value)</c>
      <c>MPI(r), MPI(s) [<xref target="sig-dsa"/>]</c>
      <c>N/A</c>
      <c>20</c>
      <c>Reserved (formerly Elgamal Encrypt or Sign)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>21</c>
      <c>Reserved for Diffie-Hellman (X9.42, as defined for IETF-S/MIME)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>22</c>
      <c>EdDSALegacy (deprecated)</c>
      <c>OID, MPI(point in prefixed native format) [see <xref target="ec-point-prefixed-native"/>, <xref target="key-eddsa-legacy"/>]</c>
      <c>MPI(value in curve-specific format) [see <xref target="curve-specific-formats"/>]</c>
      <c>MPI, MPI [see <xref target="curve-specific-formats"/>, <xref target="sig-eddsa-legacy"/>]</c>
      <c>N/A</c>
      <c>23</c>
      <c>Reserved (AEDH)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>24</c>
      <c>Reserved (AEDSA)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>25</c>
      <c>X25519</c>
      <c>32 octets [see <xref target="key-x25519"/>]</c>
      <c>32 octets</c>
      <c>N/A</c>
      <c>32 octets, size octet, encoded key [see <xref target="pkesk-x25519"/>]</c>
      <c>26</c>
      <c>X448</c>
      <c>56 octets [see <xref target="key-x448"/>]</c>
      <c>56 octets</c>
      <c>N/A</c>
      <c>56 octets, size octet, encoded key [see <xref target="pkesk-x448"/>]</c>
      <c>27</c>
      <c>Ed25519</c>
      <c>32 octets [see <xref target="key-ed25519"/>]</c>
      <c>32 octets</c>
      <c>64 octets [see <xref target="sig-ed25519"/>]</c>
      <c>&#160;</c>
      <c>28</c>
      <c>Ed448</c>
      <c>57 octets [see <xref target="key-ed448"/>]</c>
      <c>57 octets</c>
      <c>114 octets [see <xref target="sig-ed448"/>]</c>
      <c>&#160;</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement Ed25519 (27) for signatures, and X25519 (25) for encryption.
Implementations <bcp14>SHOULD</bcp14> implement Ed448 (28) and X448 (26).</t>

<t>RSA (1) keys are deprecated and <bcp14>SHOULD NOT</bcp14> be generated, but may be interpreted.
RSA Encrypt-Only (2) and RSA Sign-Only (3) are deprecated and <bcp14>MUST NOT</bcp14> be generated.
See <xref target="rsa-notes"/>.
Elgamal (16) keys are deprecated and <bcp14>MUST NOT</bcp14> be generated (see <xref target="elgamal-notes"/>).
DSA (17) keys are deprecated and <bcp14>MUST NOT</bcp14> be generated (see <xref target="dsa-notes"/>).
See <xref target="reserved-notes"/> for notes on Elgamal Encrypt or Sign (20), and X9.42 (21).
Implementations <bcp14>MAY</bcp14> implement any other algorithm.</t>

<t>Note that an implementation conforming to the previous version of this standard (<xref target="RFC4880"/>) has only DSA (17) and Elgamal (16) as its <bcp14>MUST</bcp14>-implement algorithms.</t>

<t>A compatible specification of ECDSA is given in <xref target="RFC6090"/> as "KT-I Signatures" and in <xref target="SEC1"/>; ECDH is defined in <xref target="ecdh"/> of this document.</t>

</section>
<section anchor="ec-curves"><name>ECC Curves for OpenPGP</name>

<t>The parameter curve OID is an array of octets that defines a named curve.</t>

<t>The table below specifies the exact sequence of octets for each named curve referenced in this document.
It also specifies which public key algorithms the curve can be used with, as well as the size of expected elements in octets:</t>

<texttable title="ECC Curve OID and Usage registry" anchor="ecc-oid-usage-registry">
      <ttcol align='left'>ASN.1 Object Identifier</ttcol>
      <ttcol align='left'>OID len</ttcol>
      <ttcol align='left'>Curve OID octets in hex</ttcol>
      <ttcol align='left'>Curve name</ttcol>
      <ttcol align='left'>Usage</ttcol>
      <ttcol align='left'>Field Size (fsize)</ttcol>
      <c>1.2.840.10045.3.1.7</c>
      <c>8</c>
      <c>2A 86 48 CE 3D 03 01 07</c>
      <c>NIST P-256</c>
      <c>ECDSA, ECDH</c>
      <c>32</c>
      <c>1.3.132.0.34</c>
      <c>5</c>
      <c>2B 81 04 00 22</c>
      <c>NIST P-384</c>
      <c>ECDSA, ECDH</c>
      <c>48</c>
      <c>1.3.132.0.35</c>
      <c>5</c>
      <c>2B 81 04 00 23</c>
      <c>NIST P-521</c>
      <c>ECDSA, ECDH</c>
      <c>66</c>
      <c>1.3.36.3.3.2.8.1.1.7</c>
      <c>9</c>
      <c>2B 24 03 03 02 08 01 01 07</c>
      <c>brainpoolP256r1</c>
      <c>ECDSA, ECDH</c>
      <c>32</c>
      <c>1.3.36.3.3.2.8.1.1.11</c>
      <c>9</c>
      <c>2B 24 03 03 02 08 01 01 0B</c>
      <c>brainpoolP384r1</c>
      <c>ECDSA, ECDH</c>
      <c>48</c>
      <c>1.3.36.3.3.2.8.1.1.13</c>
      <c>9</c>
      <c>2B 24 03 03 02 08 01 01 0D</c>
      <c>brainpoolP512r1</c>
      <c>ECDSA, ECDH</c>
      <c>64</c>
      <c>1.3.6.1.4.1.11591.15.1</c>
      <c>9</c>
      <c>2B 06 01 04 01 DA 47 0F 01</c>
      <c>Ed25519Legacy</c>
      <c>EdDSALegacy</c>
      <c>32</c>
      <c>1.3.6.1.4.1.3029.1.5.1</c>
      <c>10</c>
      <c>2B 06 01 04 01 97 55 01 05 01</c>
      <c>Curve25519Legacy</c>
      <c>ECDH</c>
      <c>32</c>
</texttable>

<t>The "Field Size (fsize)" column represents the field size of the group in number of octets, rounded up, such that x or y coordinates for a point on the curve or native point representations for the curve can be represented in that many octets.
For the curves specified here, also scalars such as the base point order and the private key can be represented in fsize octets.
Note that, however, there exist curves outside this specification where the representation of scalars requires an additional octet.</t>

<t>The sequence of octets in the third column is the result of applying the Distinguished Encoding Rules (DER) to the ASN.1 Object Identifier with subsequent truncation.
The truncation removes the two fields of encoded Object Identifier.
The first omitted field is one octet representing the Object Identifier tag, and the second omitted field is the length of the Object Identifier body.
For example, the complete ASN.1 DER encoding for the NIST P-256 curve OID is "06 08 2A 86 48 CE 3D 03 01 07", from which the first entry in the table above is constructed by omitting the first two octets.
Only the truncated sequence of octets is the valid representation of a curve OID.</t>

<t>The deprecated OIDs for Ed25519Legacy and Curve25519Legacy are used in legacy version 4 keys and signatures.
Implementations <bcp14>MAY</bcp14> implement these variants for compatibility with existing v4 key material and signatures.
Implementations <bcp14>MUST NOT</bcp14> accept or generate v6 key material using the deprecated OIDs.</t>

<section anchor="curve-specific-formats"><name>Curve-Specific Wire Formats</name>

<t>Some Elliptic Curve Public Key Algorithms use different conventions for specific fields depending on the curve in use.
Each field is always formatted as an MPI, but with a curve-specific framing.
This table summarizes those distinctions.</t>

<texttable title="ECC Curve-specific Wire Formats registry" anchor="ecc-wire-formats-registry">
      <ttcol align='left'>Curve</ttcol>
      <ttcol align='left'>ECDH Point Format</ttcol>
      <ttcol align='left'>ECDH Secret Key MPI</ttcol>
      <ttcol align='left'>EdDSA Secret Key MPI</ttcol>
      <ttcol align='left'>EdDSA Signature first MPI</ttcol>
      <ttcol align='left'>EdDSA Signature second MPI</ttcol>
      <c>NIST P-256</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>NIST P-384</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>NIST P-521</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>brainpoolP256r1</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>brainpoolP384r1</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>brainpoolP512r1</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>Ed25519Legacy</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>32 octets of secret</c>
      <c>32 octets of R</c>
      <c>32 octets of S</c>
      <c>Curve25519Legacy</c>
      <c>prefixed native</c>
      <c>integer (see <xref target="curve25519-secrets"/>)</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
</texttable>

<t>For the native octet-string forms of Ed25519Legacy values, see <xref target="RFC8032"/>.
For the native octet-string forms of Curve25519Legacy secret scalars and points, see <xref target="RFC7748"/>.</t>

</section>
</section>
<section anchor="symmetric-algos"><name>Symmetric-Key Algorithms</name>

<texttable title="Symmetric Key Algorithms registry" anchor="symkey-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <c>0</c>
      <c>Plaintext or unencrypted data</c>
      <c>1</c>
      <c>IDEA <xref target="IDEA"/></c>
      <c>2</c>
      <c>TripleDES (DES-EDE, <xref target="SCHNEIER"/>, <xref target="HAC"/> - 168 bit key derived from 192)</c>
      <c>3</c>
      <c>CAST5 (128 bit key, as per <xref target="RFC2144"/>)</c>
      <c>4</c>
      <c>Blowfish (128 bit key, 16 rounds) <xref target="BLOWFISH"/></c>
      <c>5</c>
      <c>Reserved</c>
      <c>6</c>
      <c>Reserved</c>
      <c>7</c>
      <c>AES with 128-bit key <xref target="AES"/></c>
      <c>8</c>
      <c>AES with 192-bit key</c>
      <c>9</c>
      <c>AES with 256-bit key</c>
      <c>10</c>
      <c>Twofish with 256-bit key <xref target="TWOFISH"/></c>
      <c>11</c>
      <c>Camellia with 128-bit key <xref target="RFC3713"/></c>
      <c>12</c>
      <c>Camellia with 192-bit key</c>
      <c>13</c>
      <c>Camellia with 256-bit key</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>253, 254 and 255</c>
      <c>Reserved to avoid collision with Secret Key Encryption (see <xref target="secret-key-protection-registry"/> and <xref target="secret-key-packet-formats"/>)</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement AES-128.
Implementations <bcp14>SHOULD</bcp14> implement AES-256.
Implementations <bcp14>MUST NOT</bcp14> encrypt data with IDEA, TripleDES, or CAST5.
Implementations <bcp14>MAY</bcp14> decrypt data that uses IDEA, TripleDES, or CAST5 for the sake of reading older messages or new messages from legacy clients.
An Implementation that decrypts data using IDEA, TripleDES, or CAST5 <bcp14>SHOULD</bcp14> generate a deprecation warning about the symmetric algorithm, indicating that message confidentiality is suspect.
Implementations <bcp14>MAY</bcp14> implement any other algorithm.</t>

</section>
<section anchor="compression-algos"><name>Compression Algorithms</name>

<texttable title="Compression Algorithms registry" anchor="compression-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <c>0</c>
      <c>Uncompressed</c>
      <c>1</c>
      <c>ZIP <xref target="RFC1951"/></c>
      <c>2</c>
      <c>ZLIB <xref target="RFC1950"/></c>
      <c>3</c>
      <c>BZip2 <xref target="BZ2"/></c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement uncompressed data.
Implementations <bcp14>SHOULD</bcp14> implement ZLIB.
For interoperability reasons implementations <bcp14>SHOULD</bcp14> be able to decompress using ZIP.
Implementations <bcp14>MAY</bcp14> implement any other algorithm.</t>

</section>
<section anchor="hash-algos"><name>Hash Algorithms</name>

<texttable title="Hash Algorithms registry" anchor="hash-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <ttcol align='left'>Text Name</ttcol>
      <ttcol align='left'>V6 signature salt size</ttcol>
      <c>1</c>
      <c>MD5 <xref target="HAC"/></c>
      <c>"MD5"</c>
      <c>N/A</c>
      <c>2</c>
      <c>SHA-1 <xref target="FIPS180"/>, <xref target="sha1cd"/></c>
      <c>"SHA1"</c>
      <c>N/A</c>
      <c>3</c>
      <c>RIPEMD-160 <xref target="HAC"/></c>
      <c>"RIPEMD160"</c>
      <c>N/A</c>
      <c>4</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>5</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>6</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>7</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>8</c>
      <c>SHA2-256 <xref target="FIPS180"/></c>
      <c>"SHA256"</c>
      <c>16</c>
      <c>9</c>
      <c>SHA2-384 <xref target="FIPS180"/></c>
      <c>"SHA384"</c>
      <c>24</c>
      <c>10</c>
      <c>SHA2-512 <xref target="FIPS180"/></c>
      <c>"SHA512"</c>
      <c>32</c>
      <c>11</c>
      <c>SHA2-224 <xref target="FIPS180"/></c>
      <c>"SHA224"</c>
      <c>16</c>
      <c>12</c>
      <c>SHA3-256 <xref target="FIPS202"/></c>
      <c>"SHA3-256"</c>
      <c>16</c>
      <c>13</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>14</c>
      <c>SHA3-512 <xref target="FIPS202"/></c>
      <c>"SHA3-512"</c>
      <c>32</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<texttable title="Hash Algorithm Identifiers for RSA Signatures use of EMSA-PKCS1-v1_5 Padding registry" anchor="emsa-hash-oids-registry">
      <ttcol align='left'>Hash Algorithm</ttcol>
      <ttcol align='left'>OID</ttcol>
      <ttcol align='left'>Full hash prefix</ttcol>
      <c>MD5</c>
      <c>1.2.840.113549.2.5</c>
      <c>0x30, 0x20, 0x30, 0x0C, 0x06, 0x08, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, 0x05, 0x00, 0x04, 0x10</c>
      <c>SHA-1</c>
      <c>1.3.14.3.2.26</c>
      <c>0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2B, 0x0E, 0x03, 0x02, 0x1A, 0x05, 0x00, 0x04, 0x14</c>
      <c>RIPEMD-160</c>
      <c>1.3.36.3.2.1</c>
      <c>0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2B, 0x24, 0x03, 0x02, 0x01, 0x05, 0x00, 0x04, 0x14</c>
      <c>SHA2-256</c>
      <c>2.16.840.1.101.3.4.2.1</c>
      <c>0x30, 0x31, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01, 0x05, 0x00, 0x04, 0x20</c>
      <c>SHA2-384</c>
      <c>2.16.840.1.101.3.4.2.2</c>
      <c>0x30, 0x41, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02, 0x05, 0x00, 0x04, 0x30</c>
      <c>SHA2-512</c>
      <c>2.16.840.1.101.3.4.2.3</c>
      <c>0x30, 0x51, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03, 0x05, 0x00, 0x04, 0x40</c>
      <c>SHA2-224</c>
      <c>2.16.840.1.101.3.4.2.4</c>
      <c>0x30, 0x2D, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x04, 0x05, 0x00, 0x04, 0x1C</c>
      <c>SHA3-256</c>
      <c>2.16.840.1.101.3.4.2.8</c>
      <c>0x30, 0x31, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x08, 0x05, 0x00, 0x04, 0x20</c>
      <c>SHA3-512</c>
      <c>2.16.840.1.101.3.4.2.10</c>
      <c>0x30, 0x51, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x0a, 0x05, 0x00, 0x04, 0x40</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement SHA2-256.
Implementations <bcp14>SHOULD</bcp14> implement SHA2-384 and SHA2-512.
Implementations <bcp14>MAY</bcp14> implement other algorithms.
Implementations <bcp14>SHOULD NOT</bcp14> create messages which require the use of SHA-1 with the exception of computing version 4 key fingerprints and for purposes of the Modification Detection Code (MDC) in version 1 Symmetrically Encrypted Integrity Protected Data packets.
Implementations <bcp14>MUST NOT</bcp14> generate signatures with MD5, SHA-1, or RIPEMD-160.
Implementations <bcp14>MUST NOT</bcp14> use MD5, SHA-1, or RIPEMD-160 as a hash function in an ECDH KDF.
Implementations <bcp14>MUST NOT</bcp14> generate packets using MD5, SHA-1, or RIPEMD-160 as a hash function in an S2K KDF.
Implementations <bcp14>MUST NOT</bcp14> decrypt a secret using MD5, SHA-1, or RIPEMD-160 as a hash function in an S2K KDF in a version 6 (or later) packet.
Implementations <bcp14>MUST NOT</bcp14> validate any recent signature that depends on MD5, SHA-1, or RIPEMD-160.
Implementations <bcp14>SHOULD NOT</bcp14> validate any old signature that depends on MD5, SHA-1, or RIPEMD-160 unless the signature's creation date predates known weakness of the algorithm used, and the implementation is confident that the message has been in the secure custody of the user the whole time.</t>

</section>
<section anchor="aead-algorithms"><name>AEAD Algorithms</name>

<texttable title="AEAD Algorithms registry" anchor="aead-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Nonce length (octets)</ttcol>
      <ttcol align='left'>authentication tag length (octets)</ttcol>
      <c>1</c>
      <c>EAX</c>
      <c><xref target="EAX"/></c>
      <c>16</c>
      <c>16</c>
      <c>2</c>
      <c>OCB</c>
      <c><xref target="RFC7253"/></c>
      <c>15</c>
      <c>16</c>
      <c>3</c>
      <c>GCM</c>
      <c><xref target="SP800-38D"/></c>
      <c>12</c>
      <c>16</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement OCB.
Implementations <bcp14>MAY</bcp14> implement EAX, GCM and other algorithms.</t>

</section>
</section>
<section anchor="packet-composition"><name>Packet Composition</name>

<t>OpenPGP packets are assembled into sequences in order to create messages and to transfer keys.
Not all possible packet sequences are meaningful and correct.
This section describes the rules for how packets should be placed into sequences.</t>

<t>There are three distinct sequences of packets:</t>

<t><list style="symbols">
  <t>Transferable Public Keys (<xref target="transferable-public-keys"/>) and their close counterpart, Transferable Secret Keys (<xref target="transferable-secret-keys"/>)</t>
  <t>OpenPGP Messages (<xref target="openpgp-messages"/>)</t>
  <t>Detached Signatures (<xref target="detached-signatures"/>)</t>
</list></t>

<t>Each sequence has an explicit grammar of what packet types (<xref target="packet-types-registry"/>) can appear in what place.
The presence of an unknown critical packet, or a known but unexpected packet is a critical error, invalidating the entire sequence (see <xref target="packet-criticality"/>).
On the other hand, unknown non-critical packets can appear anywhere within any sequence.
This provides a structured way to introduce new packets into the protocol, while making sure that certain packets will be handled strictly.</t>

<t>An implementation may "recognize" a packet, but not implement it.
The purpose of Packet Criticality is to allow the producer to tell the consumer whether it would prefer a new, unknown packet to generate an error or be ignored.</t>

<t>Note that previous versions of this document did not have a concept of Packet Criticality, and did not give clear guidance on what to do when unknown packets are encountered.
Therefore, a legacy implementation may reject unknown non-critical packets, or accept unknown critical packets.</t>

<t>When generating a sequence of OpenPGP packets according to one of the three grammars, an implementation <bcp14>MUST NOT</bcp14> inject a critical packet of a type that does not adhere to the grammar.</t>

<t>When consuming a sequence of OpenPGP packets according to one of the three grammars, an implementation <bcp14>MUST</bcp14> reject the sequence with an error if it encounters a critical packet of inappropriate type according to the grammar.</t>

<section anchor="transferable-public-keys"><name>Transferable Public Keys</name>

<t>OpenPGP users may transfer public keys.
This section describes the structure of public keys in transit to ensure interoperability.
An OpenPGP Transferable Public Key is also known as an OpenPGP certificate, in order to distinguish it from both its constituent Public-Key packets (<xref target="pubkey"/> and <xref target="pubsubkey"/>) and the underlying cryptographic key material.</t>

<section anchor="v6-certificate-structures"><name>OpenPGP v6 Certificate Structure</name>

<t>The format of an OpenPGP v6 certificate is as follows.
Entries in square brackets are optional and ellipses indicate repetition.</t>

<figure><artwork><![CDATA[
Primary Key
   [Revocation Signature...]
    Direct-Key Signature...
   [User ID or User Attribute
           [Certification Revocation Signature...]
           [Certification Signature...]]...
   [Subkey [Subkey Revocation Signature...]
           Subkey Binding Signature...]...
   [Padding]
]]></artwork></figure>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<t>Note, that a v6 key uses a self-signed Direct-Key Signature to store algorithm preferences.</t>

<t>Every subkey for a v6 primary key <bcp14>MUST</bcp14> be a v6 subkey.
Every subkey <bcp14>MUST</bcp14> have at least one subkey binding signature.
Every subkey binding signature <bcp14>MUST</bcp14> be a self-signature (that is, made by the v6 primary key).
Like all other signatures, every self-signature made by a v6 key <bcp14>MUST</bcp14> be a v6 signature.</t>

</section>
<section anchor="v6-revocation-certificate"><name>OpenPGP v6 Revocation Certificate</name>

<t>When a primary v6 Public Key is revoked, it is sometimes distributed with only the revocation signature:</t>

<figure><artwork><![CDATA[
Primary Key
    Revocation Signature
]]></artwork></figure>

<t>In this case, the direct-key signature is no longer necessary, since the primary key itself has been marked as unusable.</t>

</section>
<section anchor="openpgp-v4-certificate-structure"><name>OpenPGP v4 Certificate Structure</name>

<t>The format of an OpenPGP v4 key is as follows.</t>

<figure><artwork><![CDATA[
Primary Key
   [Revocation Signature]
   [Direct-Key Signature...]
   [User ID or User Attribute [Signature...]]...
   [Subkey [Subkey Revocation Signature...]
           Subkey Binding Signature...]...
]]></artwork></figure>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<t>A subkey always has at least one subkey binding signature after it that is issued using the primary key to tie the two keys together.
These binding signatures may be in either v3 or v4 format, but <bcp14>SHOULD</bcp14> be in v4 format.
Subkeys that can issue signatures <bcp14>MUST</bcp14> have a v4 binding signature due to the <bcp14>REQUIRED</bcp14> embedded primary key binding signature.</t>

<t>Every subkey for a v4 primary key <bcp14>MUST</bcp14> be a v4 subkey.</t>

<t>When a primary v4 Public Key is revoked, the revocation signature is sometimes distributed by itself, without the primary key packet it applies to. This is referred to as a "revocation certificate".
Instead, a v6 revocation certificate <bcp14>MUST</bcp14> include the primary key packet, as described in <xref target="v6-revocation-certificate"/>.</t>

</section>
<section anchor="openpgp-v3-key-structure"><name>OpenPGP v3 Key Structure</name>

<t>The format of an OpenPGP v3 key is as follows.</t>

<figure><artwork><![CDATA[
RSA Public Key
   [Revocation Signature]
    User ID [Signature...]
   [User ID [Signature...]]...
]]></artwork></figure>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<t>Each signature certifies the RSA public key and the preceding User ID.
The RSA public key can have many User IDs and each User ID can have many signatures.
V3 keys are deprecated.
Implementations <bcp14>MUST NOT</bcp14> generate new v3 keys, but <bcp14>MAY</bcp14> continue to use existing ones.</t>

<t>V3 keys <bcp14>MUST NOT</bcp14> have subkeys.</t>

</section>
<section anchor="common-requirements"><name>Common requirements</name>

<t>The Public-Key packet occurs first.</t>

<t>The primary key <bcp14>MUST</bcp14> be an algorithm capable of making signatures (that is, not an encryption-only algorithm).
This is because the primary key needs to be able to create self-signatures (see <xref target="self-sigs"/>).
The subkeys may be keys of any type.
For example, there may be a single-key RSA key, an Ed25519 primary key with an RSA encryption key, or an Ed25519 primary key with an X25519 subkey, etc.</t>

<t>Each of the following User ID packets provides the identity of the owner of this public key.
If there are multiple User ID packets, this corresponds to multiple means of identifying the same unique individual user; for example, a user may have more than one email address, and construct a User ID for each one.
A transferable public key <bcp14>SHOULD</bcp14> include at least one User ID packet unless storage requirements prohibit this.</t>

<t>Immediately following each User ID packet, there are zero or more Signature packets.
Each Signature packet is calculated on the immediately preceding User ID packet and the initial Public-Key packet.
The signature serves to certify the corresponding public key and User ID.
In effect, the signer is testifying to his or her belief that this public key belongs to the user identified by this User ID.</t>

<t>Within the same section as the User ID packets, there are zero or more User Attribute packets.
Like the User ID packets, a User Attribute packet is followed by zero or more Signature packets calculated on the immediately preceding User Attribute packet and the initial Public-Key packet.</t>

<t>User Attribute packets and User ID packets may be freely intermixed in this section, so long as the signatures that follow them are maintained on the proper User Attribute or User ID packet.</t>

<t>After the User ID packet or Attribute packet, there may be zero or more Subkey packets.
In general, subkeys are provided in cases where the top-level public key is a certification-only key.
However, any v4 or v6 key may have subkeys, and the subkeys may be encryption keys, signing keys, authentication keys, etc.
It is good practice to use separate subkeys for every operation (i.e. signature-only, encryption-only, authentication-only keys, etc.).</t>

<t>Each Subkey packet <bcp14>MUST</bcp14> be followed by one Signature packet, which should be a subkey binding signature issued by the top-level key.
For subkeys that can issue signatures, the subkey binding signature <bcp14>MUST</bcp14> contain an Embedded Signature subpacket with a primary key binding signature (0x19) issued by the subkey on the top-level key.</t>

<t>Subkey and Key packets may each be followed by a revocation Signature packet to indicate that the key is revoked.
Revocation signatures are only accepted if they are issued by the key itself, or by a key that is authorized to issue revocations via a Revocation Key subpacket in a self-signature by the top-level key.</t>

<t>The optional trailing Padding packet is a mechanism to defend against traffic analysis (see <xref target="traffic-analysis"/>).
For maximum interoperability, if the Public-Key packet is a v4 key, the optional Padding packet <bcp14>SHOULD NOT</bcp14> be present unless the recipient has indicated that they are capable of ignoring it successfully.
An implementation that is capable of receiving a transferable public key with a v6 Public-Key primary key <bcp14>MUST</bcp14> be able to accept (and ignore) the trailing optional Padding packet.</t>

<t>Transferable public-key packet sequences may be concatenated to allow transferring multiple public keys in one operation (see <xref target="keyrings"/>).</t>

</section>
</section>
<section anchor="transferable-secret-keys"><name>Transferable Secret Keys</name>

<t>OpenPGP users may transfer secret keys.
The format of a transferable secret key is the same as a transferable public key except that secret-key and secret-subkey packets can be used in addition to the public key and public-subkey packets.
If a single secret-key or secret-subkey packet is included in a packet sequence, it is a transferable secret key and should be handled and marked as such (see <xref target="forming-ascii-armor"/>).
Implementations <bcp14>SHOULD</bcp14> include self-signatures on any User IDs and subkeys, as this allows for a complete public key to be automatically extracted from the transferable secret key.
Implementations <bcp14>MAY</bcp14> choose to omit the self-signatures, especially if a transferable public key accompanies the transferable secret key.</t>

</section>
<section anchor="openpgp-messages"><name>OpenPGP Messages</name>

<t>An OpenPGP message is a packet or sequence of packets that corresponds to the following grammatical rules (comma (,) represents sequential composition, and vertical bar (|) separates alternatives):</t>

<dl>
  <dt>OpenPGP Message :-</dt>
  <dd>
    <t>Encrypted Message | Signed Message | Compressed Message | Literal Message.</t>
  </dd>
  <dt>Compressed Message :-</dt>
  <dd>
    <t>Compressed Data Packet.</t>
  </dd>
  <dt>Literal Message :-</dt>
  <dd>
    <t>Literal Data Packet.</t>
  </dd>
  <dt>ESK :-</dt>
  <dd>
    <t>Public-Key Encrypted Session Key Packet | Symmetric-Key Encrypted Session Key Packet.</t>
  </dd>
  <dt>ESK Sequence :-</dt>
  <dd>
    <t>ESK | ESK Sequence, ESK.</t>
  </dd>
  <dt>Encrypted Data :-</dt>
  <dd>
    <t>Symmetrically Encrypted Data Packet | Symmetrically Encrypted Integrity Protected Data Packet</t>
  </dd>
  <dt>Encrypted Message :-</dt>
  <dd>
    <t>Encrypted Data | ESK Sequence, Encrypted Data.</t>
  </dd>
  <dt>One-Pass Signed Message :-</dt>
  <dd>
    <t>One-Pass Signature Packet, OpenPGP Message, Corresponding Signature Packet.</t>
  </dd>
  <dt>Signed Message :-</dt>
  <dd>
    <t>Signature Packet, OpenPGP Message | One-Pass Signed Message.</t>
  </dd>
  <dt>Optionally Padded Message :-</dt>
  <dd>
    <t>OpenPGP Message | OpenPGP Message, Padding Packet.</t>
  </dd>
</dl>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<section anchor="unwrapping"><name>Unwrapping Encrypted and Compressed Messages</name>

<t>In addition to the above grammar, certain messages can be "unwrapped" to yield new messages.
In particular:</t>

<t><list style="symbols">
  <t>Decrypting a version 2 Symmetrically Encrypted and Integrity Protected Data packet <bcp14>MUST</bcp14> yield a valid Optionally Padded Message.</t>
  <t>Decrypting a version 1 Symmetrically Encrypted and Integrity Protected Data packet or --- for historic data --- a Symmetrically Encrypted Data packet <bcp14>MUST</bcp14> yield a valid OpenPGP Message.</t>
  <t>Decompressing a Compressed Data packet <bcp14>MUST</bcp14> also yield a valid OpenPGP Message.</t>
</list></t>

<t>When any unwrapping is performed, the resulting stream of octets is parsed into a series of OpenPGP packets like any other stream of octets.
The packet boundaries found in the series of octets are expected to align with the length of the unwrapped octet stream.
An implementation <bcp14>MUST NOT</bcp14> interpret octets beyond the boundaries of the unwrapped octet stream as part of any OpenPGP packet.
If an implementation encounters a packet whose header length indicates that it would extend beyond the boundaries of the unwrapped octet stream, the implementation <bcp14>MUST</bcp14> reject that packet as malformed and unusable.</t>

</section>
<section anchor="additional-constraints-on-packet-sequences"><name>Additional Constraints on Packet Sequences</name>

<t>Note that some subtle combinations that are formally acceptable by this grammar are nonetheless unacceptable.</t>

<section anchor="encrypted-message-versions"><name>Packet Versions in Encrypted Messages</name>

<t>As noted above, an Encrypted Message is a sequence of zero or more PKESKs (<xref target="pkesk"/>) and SKESKs (<xref target="skesk"/>), followed by an SEIPD (<xref target="seipd"/>) payload.
In some historic data, the payload may be a deprecated SED (<xref target="sed"/>) packet instead of SEIPD, though implementations <bcp14>MUST NOT</bcp14> generate SED packets (see <xref target="ciphertext-malleability"/>).
The versions of the preceding ESK packets within an Encrypted Message <bcp14>MUST</bcp14> align with the version of the payload SEIPD packet, as described in this section.</t>

<t>v3 PKESK and v4 SKESK packets both contain in their cleartext the symmetric cipher algorithm identifier in addition to the session key for the subsequent SEIPD packet.
Since a v1 SEIPD does not contain a symmetric algorithm identifier, all ESK packets preceding a v1 SEIPD payload <bcp14>MUST</bcp14> be either v3 PKESK or v4 SKESK.</t>

<t>On the other hand, the cleartext of the v6 ESK packets (either PKESK or SKESK) do not contain a symmetric cipher algorithm identifier, so they cannot be used in combination with a v1 SEIPD payload.
The payload following any v6 PKESK or v6 SKESK packet <bcp14>MUST</bcp14> be a v2 SEIPD.</t>

<t>Additionally, to avoid potentially conflicting cipher algorithm identifiers, and for simplicity, implementations <bcp14>MUST NOT</bcp14> precede a v2 SEIPD payload with either v3 PKESK or v4 SKESK packets.</t>

<t>The versions of packets found in an Encrypted Message are summarized in the following table.
An implementation <bcp14>MUST</bcp14> only generate an Encrypted Message using packet versions that match a row with "Yes" in the "Generate?" column.
Other rows are provided for the purpose of historic interoperability.
A conforming implementation <bcp14>MUST</bcp14> only generate an Encrypted Message using packets whose versions correspond to a single row.</t>

<texttable title="Encrypted Message Packet Versions registry" anchor="encrypted-packet-versions-registry">
      <ttcol align='left'>Version of Encrypted Data payload</ttcol>
      <ttcol align='left'>Version of preceding Symmetric-Key ESK (if any)</ttcol>
      <ttcol align='left'>Version of preceding Public-Key ESK (if any)</ttcol>
      <ttcol align='left'>Generate?</ttcol>
      <c>SED (<xref target="sed"/>)</c>
      <c>-</c>
      <c>v2 PKESK (<xref target="RFC2440"/>)</c>
      <c>No</c>
      <c>SED (<xref target="sed"/>)</c>
      <c>v4 SKESK (<xref target="v4-skesk"/>)</c>
      <c>v3 PKESK (<xref target="v3-pkesk"/>)</c>
      <c>No</c>
      <c>v1 SEIPD (<xref target="version-one-seipd"/>)</c>
      <c>v4 SKESK (<xref target="v4-skesk"/>)</c>
      <c>v3 PKESK (<xref target="v3-pkesk"/>)</c>
      <c>Yes</c>
      <c>v2 SEIPD (<xref target="version-two-seipd"/>)</c>
      <c>v6 SKESK (<xref target="v6-skesk"/>)</c>
      <c>v6 PKESK (<xref target="v6-pkesk"/>)</c>
      <c>Yes</c>
</texttable>

<t>An implementation processing an Encrypted Message <bcp14>MUST</bcp14> discard any preceding ESK packet with a version that does not align with the version of the payload.</t>

</section>
<section anchor="signed-message-versions"><name>Packet Versions in Signatures</name>

<t>OpenPGP key packets and signature packets are also versioned.
The version of a Signature typically matches the version of the signing key.
When a v6 key produces a signature packet, it <bcp14>MUST</bcp14> produce a version 6 signature packet, regardless of the signature packet type.
When a message is signed or verified using the one-pass construction, the version of the One-Pass Signature packet (<xref target="one-pass-sig"/>) should also be aligned to the other versions.</t>

<t>Some legacy implementations have produced unaligned signature versions for older key material, which are also described in the table below for purpose of historic interoperability.
A conforming implementation <bcp14>MUST</bcp14> only generate signature packets with version numbers matching rows with "Yes" in the "Generate?" column.</t>

<texttable title="Key and Signature Versions registry" anchor="signed-packet-versions-registry">
      <ttcol align='left'>Signing key version</ttcol>
      <ttcol align='left'>Signature packet version</ttcol>
      <ttcol align='left'>OPS packet version</ttcol>
      <ttcol align='left'>Generate?</ttcol>
      <c>3 (<xref target="v3-pubkeys"/>)</c>
      <c>3 (<xref target="version-three-sig"/>)</c>
      <c>3 <xref target="one-pass-sig"/></c>
      <c>No</c>
      <c>4 (<xref target="v4-pubkeys"/>)</c>
      <c>3 (<xref target="version-three-sig"/>)</c>
      <c>3 <xref target="one-pass-sig"/></c>
      <c>No</c>
      <c>4 (<xref target="v4-pubkeys"/>)</c>
      <c>4 (<xref target="version-four-and-six-sig"/>)</c>
      <c>3 <xref target="one-pass-sig"/></c>
      <c>Yes</c>
      <c>6 (<xref target="v6-pubkeys"/>)</c>
      <c>6 (<xref target="version-four-and-six-sig"/>)</c>
      <c>6 <xref target="one-pass-sig"/></c>
      <c>Yes</c>
</texttable>

<t>Note, however, that a version mismatch between these packets does not invalidate the packet sequence as a whole, it merely invalidates the signature, as a signature with an unknown version <bcp14>SHOULD</bcp14> be discarded (see <xref target="malformed-signatures"/>).</t>

</section>
</section>
</section>
<section anchor="detached-signatures"><name>Detached Signatures</name>

<t>Some OpenPGP applications use so-called "detached signatures".
For example, a program bundle may contain a file, and with it a second file that is a detached signature of the first file.
These detached signatures are simply one or more Signature packets stored separately from the data for which they are a signature.</t>

<t>In addition, a marker packet (<xref target="marker-packet"/>) and a padding packet (<xref target="padding-packet"/>) can appear anywhere in the sequence.</t>

</section>
</section>
<section anchor="elliptic-curve-cryptography"><name>Elliptic Curve Cryptography</name>

<t>This section describes algorithms and parameters used with Elliptic Curve Cryptography (ECC) keys.
A thorough introduction to ECC can be found in <xref target="KOBLITZ"/>.</t>

<t>None of the ECC methods described in this document are allowed with deprecated v3 keys.
Refer to <xref target="FIPS186"/>, B.4.1, for the method to generate a uniformly distributed ECC private key.</t>

<section anchor="ecc-curves"><name>ECC Curves</name>

<t>This document references three named prime field curves defined in <xref target="FIPS186"/> as "Curve P-256", "Curve P-384", and "Curve P-521"; and three named prime field curves defined in <xref target="RFC5639"/> as "brainpoolP256r1", "brainpoolP384r1", and "brainpoolP512r1".
The three <xref target="FIPS186"/> curves and the three <xref target="RFC5639"/> curves can be used with ECDSA and ECDH public key algorithms.
They are referenced using a sequence of octets, referred to as the curve OID.
<xref target="ec-curves"/> describes in detail how this sequence of octets is formed.</t>

<t>Separate algorithms are also defined for the use of X25519 and X448, defined in <xref target="RFC7748"/>; and Ed25519 and Ed448, defined in <xref target="RFC8032"/>.
Additionally, legacy OIDs are defined for "Curve25519Legacy" (for encryption using the ECDH algorithm) and "Ed25519Legacy" (for signing using the EdDSALegacy algorithm).</t>

</section>
<section anchor="ec-point-wire-formats"><name>EC Point Wire Formats</name>

<t>A point on an elliptic curve will always be represented on the wire as an MPI.
Each curve uses a specific point format for the data within the MPI itself.
Each format uses a designated prefix octet to ensure that the high octet has at least one bit set to make the MPI a constant size.</t>

<texttable title="Elliptic Curve Point Wire Formats registry" anchor="ec-point-wire-formats-registry">
      <ttcol align='right'>Name</ttcol>
      <ttcol align='left'>Wire Format</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>SEC1</c>
      <c>0x04 || x || y</c>
      <c><xref target="ec-point-sec1"/></c>
      <c>Prefixed native</c>
      <c>0x40 || native</c>
      <c><xref target="ec-point-prefixed-native"/></c>
</texttable>

<section anchor="ec-point-sec1"><name>SEC1 EC Point Wire Format</name>

<t>For a SEC1-encoded (uncompressed) point the content of the MPI is:</t>

<figure><artwork><![CDATA[
B = 04 || x || y
]]></artwork></figure>

<t>where x and y are coordinates of the point P = (x, y), and each is encoded in the big-endian format and zero-padded to the adjusted underlying field size.
The adjusted underlying field size is the underlying field size rounded up to the nearest 8-bit boundary, as noted in the "fsize" column in <xref target="ec-curves"/>.
This encoding is compatible with the definition given in <xref target="SEC1"/>.</t>

</section>
<section anchor="ec-point-prefixed-native"><name>Prefixed Native EC Point Wire Format</name>

<t>For a custom compressed point the content of the MPI is:</t>

<figure><artwork><![CDATA[
B = 40 || p
]]></artwork></figure>

<t>where p is the public key of the point encoded using the rules defined for the specified curve.
This format is used for ECDH keys based on curves expressed in Montgomery form, and for points when using EdDSA.</t>

</section>
<section anchor="notes-on-ec-point-wire-formats"><name>Notes on EC Point Wire Formats</name>

<t>Given the above definitions, the exact size of the MPI payload for an encoded point is 515 bits for both NIST P-256 and brainpoolP256r1, 771 for both NIST P-384 and brainpoolP384r1, 1059 for NIST P-521, 1027 for brainpoolP512r1, and 263 for both Curve25519Legacy and Ed25519Legacy.
For example, the length of a EdDSALegacy public key for the curve Ed25519Legacy is 263 bits: 7 bits to represent the 0x40 prefix octet and 32 octets for the native value of the public key.</t>

<t>Even though the zero point, also called the point at infinity, may occur as a result of arithmetic operations on points of an elliptic curve, it <bcp14>SHALL NOT</bcp14> appear in data structures defined in this document.</t>

<t>Each particular curve uses a designated wire format for the point found in its public key or ECDH data structure.
An implementation <bcp14>MUST NOT</bcp14> use a different wire format for a point than the wire format associated with the curve.</t>

</section>
</section>
<section anchor="ec-scalar-wire-formats"><name>EC Scalar Wire Formats</name>

<t>Some non-curve values in elliptic curve cryptography (for example, secret keys and signature components) are not points on a curve, but are also encoded on the wire in OpenPGP as an MPI.</t>

<t>Because of different patterns of deployment, some curves treat these values as opaque bit strings with the high bit set, while others are treated as actual integers, encoded in the standard OpenPGP big-endian form.
The choice of encoding is specific to the public key algorithm in use.</t>

<texttable title="Elliptic Curve Scalar Encodings registry" anchor="ec-scalar-wire-formats-registry">
      <ttcol align='left'>Type</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>integer</c>
      <c>An integer, big-endian encoded as a standard OpenPGP MPI</c>
      <c><xref target="mpi"/></c>
      <c>octet string</c>
      <c>An octet string of fixed length, that may be shorter on the wire due to leading zeros being stripped by the MPI encoding, and may need to be zero-padded before use</c>
      <c><xref target="ec-octet-string"/></c>
      <c>prefixed N octets</c>
      <c>An octet string of fixed length N, prefixed with octet 0x40 to ensure no leading zero octet</c>
      <c><xref target="ec-prefix"/></c>
</texttable>

<section anchor="ec-octet-string"><name>EC Octet String Wire Format</name>

<t>Some opaque strings of octets are represented on the wire as an MPI by simply stripping the leading zeros and counting the remaining bits.
These strings are of known, fixed length.
They are represented in this document as <spanx style="verb">MPI(N octets of X)</spanx> where <spanx style="verb">N</spanx> is the expected length in octets of the octet string.</t>

<t>For example, a five-octet opaque string (<spanx style="verb">MPI(5 octets of X)</spanx>) where <spanx style="verb">X</spanx> has the value <spanx style="verb">00 02 EE 19 00</spanx> would be represented on the wire as an MPI like so: <spanx style="verb">00 1A 02 EE 19 00</spanx>.</t>

<t>To encode <spanx style="verb">X</spanx> to the wire format, we set the MPI's two-octet bit counter to the value of the highest set bit (bit 26, or 0x001A), and do not transfer the leading all-zero octet to the wire.</t>

<t>To reverse the process, an implementation that knows this value has an expected length of 5 octets can take the following steps:</t>

<t><list style="symbols">
  <t>Ensure that the MPI's two-octet bitcount is less than or equal to 40 (5 octets of 8 bits)</t>
  <t>Allocate 5 octets, setting all to zero initially</t>
  <t>Copy the MPI data octets (without the two count octets) into the lower octets of the allocated space</t>
</list></t>

</section>
<section anchor="ec-prefix"><name>Elliptic Curve Prefixed Octet String Wire Format</name>

<t>Another way to ensure that a fixed-length bytestring is encoded simply to the wire while remaining in MPI format is to prefix the bytestring with a dedicated non-zero octet.
This specification uses 0x40 as the prefix octet.
This is represented in this standard as <spanx style="verb">MPI(prefixed N octets of X)</spanx>, where <spanx style="verb">N</spanx> is the known bytestring length.</t>

<t>For example, a five-octet opaque string using <spanx style="verb">MPI(prefixed 5 octets of X)</spanx> where <spanx style="verb">X</spanx> has the value <spanx style="verb">00 02 EE 19 00</spanx> would be written to the wire form as: <spanx style="verb">00 2F 40 00 02 EE 19 00</spanx>.</t>

<t>To encode the string, we prefix it with the octet 0x40 (whose 7th bit is set), then set the MPI's two-octet bit counter to 47 (0x002F, 7 bits for the prefix octet and 40 bits for the string).</t>

<t>To decode the string from the wire, an implementation that knows that the variable is formed in this way can:</t>

<t><list style="symbols">
  <t>Ensure that the first three octets of the MPI (the two bit-count octets plus the prefix octet)  are <spanx style="verb">00 2F 40</spanx>, and</t>
  <t>Use the remainder of the MPI directly off the wire.</t>
</list></t>

<t>Note that this is a similar approach to that used in the EC point encodings found in <xref target="ec-point-prefixed-native"/>.</t>

</section>
</section>
<section anchor="key-derivation-function"><name>Key Derivation Function</name>

<t>A key derivation function (KDF) is necessary to implement EC encryption.
The Concatenation Key Derivation Function (Approved Alternative 1) <xref target="SP800-56A"/> with the KDF hash function that is SHA2-256 <xref target="FIPS180"/> or stronger is <bcp14>REQUIRED</bcp14>.</t>

<t>For convenience, the synopsis of the encoding method is given below with significant simplifications attributable to the restricted choice of hash functions in this document.
However, <xref target="SP800-56A"/> is the normative source of the definition.</t>

<figure><artwork><![CDATA[
//   Implements KDF( X, oBits, Param );
//   Input: point X = (x,y)
//   oBits - the desired size of output
//   hBits - the size of output of hash function Hash
//   Param - octets representing the parameters
//   Assumes that oBits <= hBits
// Convert the point X to the octet string:
//   ZB' = 04 || x || y
// and extract the x portion from ZB'
ZB = x;
MB = Hash ( 00 || 00 || 00 || 01 || ZB || Param );
return oBits leftmost bits of MB.
]]></artwork></figure>

<t>Note that ZB in the KDF description above is the compact representation of X as defined in <xref section="4.2" sectionFormat="of" target="RFC6090"/>.</t>

</section>
<section anchor="ecdh"><name>EC DH Algorithm (ECDH)</name>

<t>The method is a combination of an ECC Diffie-Hellman method to establish a shared secret, a key derivation method to process the shared secret into a derived key, and a key wrapping method that uses the derived key to protect a session key used to encrypt a message.</t>

<t>The One-Pass Diffie-Hellman method C(1, 1, ECC CDH) <xref target="SP800-56A"/> <bcp14>MUST</bcp14> be implemented with the following restrictions: the ECC CDH primitive employed by this method is modified to always assume the cofactor is 1, the KDF specified in <xref target="key-derivation-function"/> is used, and the KDF parameters specified below are used.</t>

<t>The KDF parameters are encoded as a concatenation of the following 5 variable-length and fixed-length fields, which are compatible with the definition of the OtherInfo bitstring <xref target="SP800-56A"/>:</t>

<t><list style="symbols">
  <t>A variable-length field containing a curve OID, which is formatted as follows:  <list style="symbols">
      <t>A one-octet size of the following field,</t>
      <t>The octets representing a curve OID defined in <xref target="ec-curves"/>;</t>
    </list></t>
  <t>A one-octet public key algorithm ID defined in <xref target="pubkey-algos"/>;</t>
  <t>A variable-length field containing KDF parameters, which are identical to the corresponding field in the ECDH public key, and are formatted as follows:  <list style="symbols">
      <t>A one-octet size of the following fields; values 0 and 0xFF are reserved for future extensions,</t>
      <t>A one-octet value 0x01, reserved for future extensions,</t>
      <t>A one-octet hash function ID used with the KDF,</t>
      <t>A one-octet algorithm ID for the symmetric algorithm used to wrap the symmetric key for message encryption; see <xref target="ecdh"/> for details;</t>
    </list></t>
  <t>20 octets representing the UTF-8 encoding of the string <spanx style="verb">Anonymous Sender    </spanx>, which is the octet sequence 41 6E 6F 6E 79 6D 6F 75 73 20 53 65 6E 64 65 72 20 20 20 20;</t>
  <t>A variable-length field containing the fingerprint of the recipient encryption subkey identifying the key material that is needed for decryption.
For version 4 keys, this field is 20 octets.
For version 6 keys, this field is 32 octets.</t>
</list></t>

<t>The size in octets of the KDF parameters sequence, defined above, for encrypting to a v4 key is either 54 for curve NIST P-256, 51 for curves NIST P-384 and NIST P-521, 55 for curves brainpoolP256r1, brainpoolP384r1 and brainpoolP512r1, or 56 for Curve25519Legacy.
For encrypting to a v6 key, the size of the sequence is either 66 for curve NIST P-256, 63 for curves NIST P-384 and NIST P-521, or 67 for curves brainpoolP256r1, brainpoolP384r1 and brainpoolP512r1.</t>

<t>The key wrapping method is described in <xref target="RFC3394"/>.
The KDF produces a symmetric key that is used as a key-encryption key (KEK) as specified in <xref target="RFC3394"/>.
Refer to <xref target="ecdh-parameters"/> for the details regarding the choice of the KEK algorithm, which <bcp14>SHOULD</bcp14> be one of the three AES algorithms.
Key wrapping and unwrapping is performed with the default initial value of <xref target="RFC3394"/>.</t>

<t>To produce the input to the key wrapping method, first concatenate the following values:</t>

<t><list style="symbols">
  <t>The one-octet algorithm identifier, if it was passed (in the case of a v3 PKESK packet).</t>
  <t>The session key.</t>
  <t>A two-octet checksum of the session key, equal to the sum of the session key octets, modulo 65536.</t>
</list></t>

<t>Then, the above values are padded using the method described in <xref target="PKCS5"/> to an 8-octet granularity.</t>

<t>For example, in a v3 Public-Key Encrypted Session Key packet, an AES-256 session key is encoded as follows, forming a 40 octet sequence:</t>

<figure><artwork><![CDATA[
09 k0 k1 ... k31 s0 s1 05 05 05 05 05
]]></artwork></figure>

<t>The octets k0 to k31 above denote the session key, and the octets s0 and s1 denote the checksum of the session key octets.
This encoding allows the sender to obfuscate the size of the symmetric encryption key used to encrypt the data.
For example, assuming that an AES algorithm is used for the session key, the sender <bcp14>MAY</bcp14> use 21, 13, and 5 octets of padding for AES-128, AES-192, and AES-256, respectively, to provide the same number of octets, 40 total, as an input to the key wrapping method.</t>

<t>In a v6 Public-Key Encrypted Session Key packet, the symmetric algorithm is not included, as described in <xref target="pkesk"/>.
For example, an AES-256 session key would be composed as follows:</t>

<figure><artwork><![CDATA[
k0 k1 ... k31 s0 s1 06 06 06 06 06 06
]]></artwork></figure>

<t>The octets k0 to k31 above again denote the session key, and the octets s0 and s1 denote the checksum.
In this case, assuming that an AES algorithm is used for the session key, the sender <bcp14>MAY</bcp14> use 22, 14, and 6 octets of padding for AES-128, AES-192, and AES-256, respectively, to provide the same number of octets, 40 total, as an input to the key wrapping method.</t>

<t>The output of the method consists of two fields.
The first field is the MPI containing the ephemeral key used to establish the shared secret.
The second field is composed of the following two subfields:</t>

<t><list style="symbols">
  <t>One octet encoding the size in octets of the result of the key wrapping method; the value 255 is reserved for future extensions;</t>
  <t>Up to 254 octets representing the result of the key wrapping method, applied to the 8-octet padded session key, as described above.</t>
</list></t>

<t>Note that for session key sizes 128, 192, and 256 bits, the size of the result of the key wrapping method is, respectively, 32, 40, and 48 octets, unless size obfuscation is used.</t>

<t>For convenience, the synopsis of the encoding method is given below; however, this section, <xref target="SP800-56A"/>, and <xref target="RFC3394"/> are the normative sources of the definition.</t>

<t><list style="symbols">
  <t>Obtain the authenticated recipient public key R</t>
  <t>Generate an ephemeral, single-use key pair {v, V=vG}</t>
  <t>Compute the shared point S = vR;</t>
  <t>m = symm_alg_ID || session key || checksum || pkcs5_padding;</t>
  <t>curve_OID_len = (octet)len(curve_OID);</t>
  <t>Param = curve_OID_len || curve_OID || public_key_alg_ID || 03 || 01 || KDF_hash_ID || KEK_alg_ID for AESKeyWrap || <spanx style="verb">Anonymous Sender    </spanx> || recipient_fingerprint;</t>
  <t>Z_len = the key size for the KEK_alg_ID used with AESKeyWrap</t>
  <t>Compute Z = KDF( S, Z_len, Param );</t>
  <t>Compute C = AESKeyWrap( Z, m ) as per <xref target="RFC3394"/></t>
  <t>Wipe the memory that contained S, v, and Z to avoid leaking ephemeral secrets</t>
  <t>VB = convert point V to the octet string</t>
  <t>Output (MPI(VB) || len(C) || C).</t>
</list></t>

<t>The decryption is the inverse of the method given.
Note that the recipient with key pair (r,R) obtains the shared secret by calculating:</t>

<figure><artwork><![CDATA[
S = rV = rvG
]]></artwork></figure>

<section anchor="ecdh-parameters"><name>ECDH Parameters</name>

<t>ECDH keys have a hash algorithm parameter for key derivation and a symmetric algorithm for key encapsulation.</t>

<t>For v6 keys, the following algorithms <bcp14>MUST</bcp14> be used depending on the curve.
An implementation <bcp14>MUST NOT</bcp14> generate a v6 ECDH key over any listed curve that uses different KDF or KEK parameters.
An implementation <bcp14>MUST NOT</bcp14> encrypt any message to a v6 ECDH key over a listed curve that announces a different KDF or KEK parameter.</t>

<t>For v4 keys, the following algorithms <bcp14>SHOULD</bcp14> be used depending on the curve.
An implementation <bcp14>SHOULD</bcp14> only use an AES algorithm as a KEK algorithm.</t>

<texttable title="ECDH KDF and KEK Parameters registry" anchor="ecdh-kdf-kek-parameters-registry">
      <ttcol align='left'>Curve</ttcol>
      <ttcol align='left'>Hash algorithm</ttcol>
      <ttcol align='left'>Symmetric algorithm</ttcol>
      <c>NIST P-256</c>
      <c>SHA2-256</c>
      <c>AES-128</c>
      <c>NIST P-384</c>
      <c>SHA2-384</c>
      <c>AES-192</c>
      <c>NIST P-521</c>
      <c>SHA2-512</c>
      <c>AES-256</c>
      <c>brainpoolP256r1</c>
      <c>SHA2-256</c>
      <c>AES-128</c>
      <c>brainpoolP384r1</c>
      <c>SHA2-384</c>
      <c>AES-192</c>
      <c>brainpoolP512r1</c>
      <c>SHA2-512</c>
      <c>AES-256</c>
      <c>Curve25519Legacy</c>
      <c>SHA2-256</c>
      <c>AES-128</c>
</texttable>

</section>
</section>
</section>
<section anchor="notes-on-algorithms"><name>Notes on Algorithms</name>

<section anchor="pkcs-encoding"><name>PKCS#1 Encoding in OpenPGP</name>

<t>This standard makes use of the PKCS#1 functions EME-PKCS1-v1_5 and EMSA-PKCS1-v1_5.
However, the calling conventions of these functions has changed in the past.
To avoid potential confusion and interoperability problems, we are including local copies in this document, adapted from those in PKCS#1 v2.1 <xref target="RFC8017"/>.
<xref target="RFC8017"/> should be treated as the ultimate authority on PKCS#1 for OpenPGP.
Nonetheless, we believe that there is value in having a self-contained document that avoids problems in the future with needed changes in the conventions.</t>

<section anchor="eme-pkcs1-v1-5-encode"><name>EME-PKCS1-v1_5-ENCODE</name>

<t>Input:</t>

<dl>
  <dt>k =</dt>
  <dd>
    <t>the length in octets of the key modulus.</t>
  </dd>
  <dt>M =</dt>
  <dd>
    <t>message to be encoded, an octet string of length mLen, where mLen &lt;= k - 11.</t>
  </dd>
</dl>

<t>Output:</t>

<dl>
  <dt>EM =</dt>
  <dd>
    <t>encoded message, an octet string of length k.</t>
  </dd>
</dl>

<t>Error: "message too long".</t>

<t><list style="numbers">
  <t>Length checking: If mLen &gt; k - 11, output "message too long" and stop.</t>
  <t>Generate an octet string PS of length k - mLen - 3 consisting of pseudo-randomly generated nonzero octets.
The length of PS will be at least eight octets.</t>
  <t>Concatenate PS, the message M, and other padding to form an encoded message EM of length k octets as  <vspace blankLines='1'/>
    <figure><artwork><![CDATA[
EM = 0x00 || 0x02 || PS || 0x00 || M.
]]></artwork></figure>
  </t>
  <t>Output EM.</t>
</list></t>

</section>
<section anchor="eme-pkcs1-v1-5-decode"><name>EME-PKCS1-v1_5-DECODE</name>

<t>Input:</t>

<dl>
  <dt>EM =</dt>
  <dd>
    <t>encoded message, an octet string</t>
  </dd>
</dl>

<t>Output:</t>

<dl>
  <dt>M =</dt>
  <dd>
    <t>message, an octet string.</t>
  </dd>
</dl>

<t>Error: "decryption error".</t>

<t>To decode an EME-PKCS1_v1_5 message, separate the encoded message EM into an octet string PS consisting of nonzero octets and a message M as follows</t>

<figure><artwork><![CDATA[
  EM = 0x00 || 0x02 || PS || 0x00 || M.
]]></artwork></figure>

<t>If the first octet of EM does not have hexadecimal value 0x00, if the second octet of EM does not have hexadecimal value 0x02, if there is no octet with hexadecimal value 0x00 to separate PS from M, or if the length of PS is less than 8 octets, output "decryption error" and stop.
See also <xref target="pkcs1-errors"/> regarding differences in reporting between a decryption error and a padding error.</t>

</section>
<section anchor="emsa-pkcs1-v1-5"><name>EMSA-PKCS1-v1_5</name>

<t>This encoding method is deterministic and only has an encoding operation.</t>

<t>Option:</t>

<dl>
  <dt>Hash -</dt>
  <dd>
    <t>a hash function in which hLen denotes the length in octets of the hash function output.</t>
  </dd>
</dl>

<t>Input:</t>

<dl>
  <dt>M =</dt>
  <dd>
    <t>message to be encoded.</t>
  </dd>
  <dt>emLen =</dt>
  <dd>
    <t>intended length in octets of the encoded message, at least tLen + 11, where tLen is the octet length of the DER encoding T of a certain value computed during the encoding operation.</t>
  </dd>
</dl>

<t>Output:</t>

<dl>
  <dt>EM =</dt>
  <dd>
    <t>encoded message, an octet string of length emLen.</t>
  </dd>
</dl>

<t>Errors: "message too long"; "intended encoded message length too short".</t>

<t>Steps:</t>

<t><list style="numbers">
  <t>Apply the hash function to the message M to produce a hash value H:  <vspace blankLines='1'/>
H = Hash(M).  <vspace blankLines='1'/>
If the hash function outputs "message too long," output "message too long" and stop.</t>
  <t>Using the list in <xref target="hash-algos"/>, produce an ASN.1 DER value for the hash function used.
Let T be the full hash prefix from the list, and let tLen be the length in octets of T.</t>
  <t>If emLen &lt; tLen + 11, output "intended encoded message length too short" and stop.</t>
  <t>Generate an octet string PS consisting of emLen - tLen - 3 octets with hexadecimal value 0xFF.
The length of PS will be at least 8 octets.</t>
  <t>Concatenate PS, the hash prefix T, and other padding to form the encoded message EM as  <vspace blankLines='1'/>
    <figure><artwork><![CDATA[
EM = 0x00 || 0x01 || PS || 0x00 || T.
]]></artwork></figure>
  </t>
  <t>Output EM.</t>
</list></t>

</section>
</section>
<section anchor="symmetric-algorithm-preferences"><name>Symmetric Algorithm Preferences</name>

<t>The symmetric algorithm preference is an ordered list of algorithms that the keyholder accepts.
Since it is found on a self-signature, it is possible that a keyholder may have multiple, different preferences.
For example, Alice may have AES-128 only specified for "alice@work.com" but Camellia-256, Twofish, and AES-128 specified for "alice@home.org".
Note that it is also possible for preferences to be in a subkey's binding signature.</t>

<t>Since AES-128 is the <bcp14>MUST</bcp14>-implement algorithm, if it is not explicitly in the list, it is tacitly at the end.
However, it is good form to place it there explicitly.
Note also that if an implementation does not implement the preference, then it is implicitly an AES-128-only implementation.
Note further that implementations conforming to previous versions of this standard <xref target="RFC4880"/> have TripleDES as its only <bcp14>MUST</bcp14>-implement algorithm.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> use a symmetric algorithm that is not in the recipient's preference list.
When encrypting to more than one recipient, the implementation finds a suitable algorithm by taking the intersection of the preferences of the recipients.
Note that the <bcp14>MUST</bcp14>-implement algorithm, AES-128, ensures that the intersection is non-empty.
The implementation may use any mechanism to pick an algorithm in the intersection.</t>

<t>If an implementation can decrypt a message that a keyholder doesn't have in their preferences, the implementation <bcp14>SHOULD</bcp14> decrypt the message anyway, but <bcp14>MUST</bcp14> warn the keyholder that the protocol has been violated.
For example, suppose that Alice, above, has software that implements all algorithms in this specification.
Nonetheless, she prefers subsets for work or home.
If she is sent a message encrypted with IDEA, which is not in her preferences, the software warns her that someone sent her an IDEA-encrypted message, but it would ideally decrypt it anyway.</t>

<section anchor="plaintext"><name>Plaintext</name>

<t>Algorithm 0, "plaintext", may only be used to denote secret keys that are stored in the clear.
Implementations <bcp14>MUST NOT</bcp14> use plaintext in encrypted data packets; they must use Literal Data packets to encode unencrypted literal data.</t>

</section>
</section>
<section anchor="other-algorithm-preferences"><name>Other Algorithm Preferences</name>

<t>Other algorithm preferences work similarly to the symmetric algorithm preference, in that they specify which algorithms the keyholder accepts.
There are two interesting cases that other comments need to be made about, though, the compression preferences and the hash preferences.</t>

<section anchor="compression-preferences"><name>Compression Preferences</name>

<t>Like the algorithm preferences, an implementation <bcp14>MUST NOT</bcp14> use an algorithm that is not in the preference vector.
If Uncompressed (0) is not explicitly in the list, it is tacitly at the end.
That is, uncompressed messages may always be sent.</t>

<t>Note that earlier implementations may assume that the absence of compression preferences means that [ZIP(1), Uncompressed(0)] are preferred, and default to ZIP compression.
Therefore, an implementation that prefers uncompressed data <bcp14>SHOULD</bcp14> explicitly state this in the preferred compression algorithms.</t>

<section anchor="uncompressed"><name>Uncompressed</name>

<t>Algorithm 0, "uncompressed", may only be used to denote a preference for uncompressed data.
Implementations <bcp14>MUST NOT</bcp14> use uncompressed in Compressed Data packets; they must use Literal Data packets to encode uncompressed literal data.</t>

</section>
</section>
<section anchor="hash-algorithm-preferences"><name>Hash Algorithm Preferences</name>

<t>Typically, the choice of a hash algorithm is something the signer does, rather than the verifier, because a signer rarely knows who is going to be verifying the signature.
This preference, though, allows a protocol based upon digital signatures ease in negotiation.</t>

<t>Thus, if Alice is authenticating herself to Bob with a signature, it makes sense for her to use a hash algorithm that Bob's software uses.
This preference allows Bob to state in his key which algorithms Alice may use.</t>

<t>Since SHA2-256 is the <bcp14>MUST</bcp14>-implement hash algorithm, if it is not explicitly in the list, it is tacitly at the end.
However, it is good form to place it there explicitly.</t>

</section>
</section>
<section anchor="rsa-notes"><name>RSA</name>

<t>The PKCS1-v1_5 padding scheme, used by the RSA algorithms defined in this document, is no longer recommended, and its use is deprecated by <xref target="SP800-131A"/>.
Therefore, an implementation <bcp14>SHOULD NOT</bcp14> generate RSA keys.</t>

<t>There are algorithm types for RSA Sign-Only, and RSA Encrypt-Only keys.
These types are deprecated.
The "key flags" subpacket in a signature is a much better way to express the same idea, and generalizes it to all algorithms.
An implementation <bcp14>MUST NOT</bcp14> create such a key, but <bcp14>MAY</bcp14> interpret it.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> generate RSA keys of size less than 3072 bits.
An implementation <bcp14>SHOULD NOT</bcp14> encrypt, sign or verify using RSA keys of size less than 3072 bits.
An implementation <bcp14>MUST NOT</bcp14> encrypt, sign or verify using RSA keys of size less than 2048 bits.
An implementation that decrypts a message using an RSA secret key of size less than 3072 bits <bcp14>SHOULD</bcp14> generate a deprecation warning that the key is too weak for modern use.</t>

</section>
<section anchor="dsa-notes"><name>DSA</name>

<t>DSA is expected to be deprecated in <xref target="FIPS186-5"/>.
Therefore, an implementation <bcp14>MUST NOT</bcp14> generate DSA keys.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> sign or verify using DSA keys.</t>

</section>
<section anchor="elgamal-notes"><name>Elgamal</name>

<t>The PKCS1-v1_5 padding scheme, used by the Elgamal algorithm defined in this document, is no longer recommended, and its use is deprecated by <xref target="SP800-131A"/>.
Therefore, an implementation <bcp14>MUST NOT</bcp14> generate Elgamal keys.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> encrypt using Elgamal keys.
An implementation that decrypts a message using an Elgamal secret key <bcp14>SHOULD</bcp14> generate a deprecation warning that the key is too weak for modern use.</t>

</section>
<section anchor="eddsa-notes"><name>EdDSA</name>

<t>Although the EdDSA algorithm allows arbitrary data as input, its use with OpenPGP requires that a digest of the message is used as input (pre-hashed).
See <xref target="computing-signatures"/> for details.
Truncation of the resulting digest is never applied; the resulting digest value is used verbatim as input to the EdDSA algorithm.</t>

<t>For clarity: while <xref target="RFC8032"/> describes different variants of EdDSA, OpenPGP uses the "pure" variant (PureEdDSA).
The hashing that happens with OpenPGP is done as part of the standard OpenPGP signature process, and that hash itself is fed as the input message to the PureEdDSA algorithm.</t>

<t>As specified in <xref target="RFC8032"/>, Ed448 also expects a "context string".
In OpenPGP, Ed448 is used with the empty string as a context string.</t>

</section>
<section anchor="reserved-notes"><name>Reserved Algorithm Numbers</name>

<t>A number of algorithm IDs have been reserved for algorithms that would be useful to use in an OpenPGP implementation, yet there are issues that prevent an implementer from actually implementing the algorithm.
These are marked in <xref target="pubkey-algos"/> as "reserved for".</t>

<t>The reserved public-key algorithm X9.42 (21) does not have the necessary parameters, parameter order, or semantics defined.
The same is currently true for reserved public-key algorithms AEDH (23) and AEDSA (24).</t>

<t>Previous versions of OpenPGP permitted Elgamal <xref target="ELGAMAL"/> signatures with a public-key identifier of 20.
These are no longer permitted.
An implementation <bcp14>MUST NOT</bcp14> generate such keys.
An implementation <bcp14>MUST NOT</bcp14> generate Elgamal signatures.
See <xref target="BLEICHENBACHER"/>.</t>

</section>
<section anchor="cfb-mode"><name>CFB Mode</name>

<t>The Cipher Feedback (CFB) mode used in this document is defined in Section 6.3 of <xref target="SP800-38A"/>.</t>

<t>The CFB segment size <spanx style="verb">s</spanx> is equal to the block size of the cipher (i.e., n-bit CFB mode where n is the block size is used).</t>

</section>
<section anchor="private-or-experimental-parameters"><name>Private or Experimental Parameters</name>

<t>S2K specifiers, Signature subpacket types, User Attribute types, image format types, and algorithms described in <xref target="constants"/> all reserve the range 100 to 110 for private and experimental use.
Packet types reserve the range 60 to 63 for private and experimental use.
These are intentionally managed with the PRIVATE USE method, as described in <xref target="RFC8126"/>.</t>

<t>However, implementations need to be careful with these and promote them to full IANA-managed parameters when they grow beyond the original, limited system.</t>

</section>
<section anchor="meta-considerations-for-expansion"><name>Meta-Considerations for Expansion</name>

<t>If OpenPGP is extended in a way that is not backwards-compatible, meaning that old implementations will not gracefully handle their absence of a new feature, the extension proposal can be declared in the key holder's self-signature as part of the Features signature subpacket.</t>

<t>We cannot state definitively what extensions will not be upwards-compatible, but typically new algorithms are upwards-compatible, whereas new packets are not.</t>

<t>If an extension proposal does not update the Features system, it <bcp14>SHOULD</bcp14> include an explanation of why this is unnecessary.
If the proposal contains neither an extension to the Features system nor an explanation of why such an extension is unnecessary, the proposal <bcp14>SHOULD</bcp14> be rejected.</t>

</section>
</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t><list style="symbols">
  <t>As with any technology involving cryptography, you should check the current literature to determine if any algorithms used here have been found to be vulnerable to an attack.</t>
  <t>This specification uses Public-Key Cryptography technologies.
It is assumed that the private key portion of a public-private key pair is controlled and secured by the proper party or parties.</t>
  <t>The MD5 and SHA-1 hash algorithms have been found to have weaknesses, with collisions found in a number of cases.
MD5 and SHA-1 are deprecated for use in OpenPGP.</t>
  <t>Many security protocol designers think that it is a bad idea to use a single key for both privacy (encryption) and integrity (signatures).
In fact, this was one of the motivating forces behind the v4 key format with separate signature and encryption keys.
Using a single key for encrypting and signing is discouraged.</t>
  <t>The DSA algorithm will work with any hash, but is sensitive to the quality of the hash algorithm.
Verifiers should be aware that even if the signer used a strong hash, an attacker could have modified the signature to use a weak one.
Only signatures using acceptably strong hash algorithms should be accepted as valid.</t>
  <t>As OpenPGP combines many different asymmetric, symmetric, and hash algorithms, each with different measures of strength, care should be taken that the weakest element of an OpenPGP message is still sufficiently strong for the purpose at hand.
While consensus about the strength of a given algorithm may evolve, NIST Special Publication 800-57 <xref target="SP800-57"/> contains recommendations current at the time of this publication about equivalent security levels of different algorithms.</t>
  <t>There is a somewhat-related potential security problem in signatures.
If an attacker can find a message that hashes to the same hash with a different algorithm, a bogus signature structure can be constructed that evaluates correctly.  <vspace blankLines='1'/>
For example, suppose Alice DSA signs message M using hash algorithm H.
Suppose that Mallet finds a message M' that has the same hash value as M with H'.
Mallet can then construct a signature block that verifies as Alice's signature of M' with H'.
However, this would also constitute a weakness in either H or H' or both.
Should this ever occur, a revision will have to be made to this document to revise the allowed hash algorithms.</t>
  <t>If you are building an authentication system, the recipient may specify a preferred signing algorithm.
However, the signer would be foolish to use a weak algorithm simply because the recipient requests it.</t>
  <t>Some of the encryption algorithms mentioned in this document have been analyzed less than others.
For example, although TWOFISH is presently considered reasonably strong, it has been analyzed much less than AES.
Other algorithms may have other concerns surrounding them.</t>
  <t>In late summer 2002, Jallad, Katz, and Schneier published an interesting attack on older versions of the OpenPGP protocol and some of its implementations <xref target="JKS02"/>.
In this attack, the attacker modifies a message and sends it to a user who then returns the erroneously decrypted message to the attacker.
The attacker is thus using the user as a decryption oracle, and can often decrypt the message.
This attack is a particular form of ciphertext malleability.
See <xref target="ciphertext-malleability"/> for information on how to defend against such an attack using more recent versions of OpenPGP.</t>
</list></t>

<section anchor="sha1cd"><name>SHA-1 Collision Detection</name>

<t>As described in <xref target="SHAMBLES"/>, the SHA-1 digest algorithm is not collision-resistant.
However, an OpenPGP implementation cannot completely discard the SHA-1 algorithm, because it is required for implementing v4 public keys.
In particular, the v4 fingerprint derivation uses SHA-1.
So as long as an OpenPGP implementation supports v4 public keys, it will need to implement SHA-1 in at least some scenarios.</t>

<t>To avoid the risk of uncertain breakage from a maliciously introduced SHA-1 collision, an OpenPGP implementation <bcp14>MAY</bcp14> attempt to detect when a hash input is likely from a known collision attack, and then either deliberately reject the hash input or modify the hash output.
This should convert an uncertain breakage (where it is unclear what the effect of a collision will be) to an explicit breakage, which is more desirable for a robust implementation.</t>

<t><xref target="STEVENS2013"/> describes a method for detecting indicators of well-known SHA-1 collision attacks.
Some example C code implementing this technique can be found at <xref target="SHA1CD"/>.</t>

</section>
<section anchor="signature-salt-rationale"><name>Advantages of Salted Signatures</name>

<t>V6 signatures include a salt that is hashed first, which size depends on the hashing algorithm.
This makes v6 OpenPGP signatures non-deterministic and protects against a broad class of attacks that depend on creating a signature over a predictable message.
By selecting a new random salt for each signature made, the signed hashes and the signatures are not predictable.</t>

<t>While the material to be signed could be attacker-controlled, hashing the salt first means that there is no attacker controlled hashed prefix.
An example of this kind of attack is described in the paper "SHA-1 Is A Shambles" <xref target="SHAMBLES"/>, which leverages a chosen prefix collision attack against SHA-1.
This means that an adversary carrying out a chosen-message attack will not be able to control the hash that is being signed, and will need to break second-preimage resistance instead of the simpler collision resistance to create two messages having the same signature.
The size of the salt is bound to the hash function to match the expected collision resistance level, and at least 16 octets.</t>

<t>In some cases, an attacker may be able to induce a signature to be made, even if they do not control the content of the message.
In some scenarios, a repeated signature over the exact same message may risk leakage of part or all of the signing key, for example see discussion of hardware faults over EdDSA and deterministic ECDSA in <xref target="PSSLR17"/>.
Choosing a new random salt for each signature ensures that no repeated signatures are produced, and mitigates this risk.</t>

</section>
<section anchor="ecc-side-channels"><name>Elliptic Curve Side Channels</name>

<t>Side channel attacks are a concern when a compliant application's use of the OpenPGP format can be modeled by a decryption or signing oracle, for example, when an application is a network service performing decryption to unauthenticated remote users.
ECC scalar multiplication operations used in ECDSA and ECDH are vulnerable to side channel attacks.
Countermeasures can often be taken at the higher protocol level, such as limiting the number of allowed failures or time-blinding of the operations associated with each network interface.
Mitigations at the scalar multiplication level seek to eliminate any measurable distinction between the ECC point addition and doubling operations.</t>

</section>
<section anchor="quick-check-oracle"><name>Risks of a Quick Check Oracle</name>

<t>In winter 2005, Serge Mister and Robert Zuccherato from Entrust released a paper describing a way that the "quick check" in v1 SEIPD and SED packets can be used as an oracle to decrypt two octets of every cipher block <xref target="MZ05"/>.
This check was intended for early detection of session key decryption errors, particularly to detect a wrong passphrase, since v4 SKESK packets do not include an integrity check.</t>

<t>There is a danger to using the quick check if timing or error information about the check can be exposed to an attacker, particularly via an automated service that allows rapidly repeated queries.</t>

<t>Disabling the quick check prevents the attack.</t>

<t>For very large legacy encrypted data whose session key is protected by a passphrase (v4 SKESK), the quick check may be convenient to the user, by informing them early that they typed the wrong passphrase.
But the implementation should use the quick check with care.
The recommended approach for secure and early detection of decryption failure is to encrypt data using v2 SEIPD.
If the session key is public-key encrypted, the quick check is not useful as the public-key encryption of the session key should guarantee that it is the right session key.</t>

<t>The quick check oracle attack is a particular type of attack that exploits ciphertext malleability.
For information about other similar attacks, see <xref target="ciphertext-malleability"/>.</t>

</section>
<section anchor="pkcs1-errors"><name>Avoiding Leaks From PKCS#1 Errors</name>

<t>The PKCS#1 padding (used in RSA-encrypted and ElGamal-encrypted PKESK) has been found to be vulnerable to attacks in which a system that allows distinguishing padding errors from other decryption errors can act as a decryption and/or signing oracle that can leak the session key or allow signing arbitrary data, respectively <xref target="BLEICHENBACHER-PKCS1"/>.
The number of queries required to carry out an attack can range from thousands to millions, depending on how strict and careful an implementation is in processing the padding.</t>

<t>To make the attack more difficult, an implementation <bcp14>SHOULD</bcp14> implement strict, robust, constant time padding checks.</t>

<t>To prevent the attack, in settings where the attacker does not have access to timing information concerning message decryption, the simplest solution is to report a single error code for all variants of PKESK processing errors as well as SEIPD integrity errors (this includes also session key parsing errors, such as on invalid cipher algorithm for v3 PKESK, or session key size mismatch for v6 PKESK).
If the attacker may have access to timing information, then a constant time solution is also needed.
This requires careful design, especially for v3 PKESK, where session key size and cipher information is typically not known in advance, as it is part of the PKESK encrypted payload.</t>

</section>
<section anchor="fingerprint-usability"><name>Fingerprint Usability</name>

<t>This specification uses fingerprints in several places on the wire (e.g., <xref target="revocation-key"/>, <xref target="issuer-fingerprint-subpacket"/>, and <xref target="intended-recipient-fingerprint"/>), and in processing (e.g., in ECDH KDF <xref target="ecdh"/>).
An implementation may also use the fingerprint internally, for example as an index to a keystore.</t>

<t>Additionally, some OpenPGP users have historically used manual fingerprint comparison to verify the public key of a peer.
For a version 4 fingerprint, this has typically been done with the fingerprint represented as 40 hexadecimal digits, often broken into groups of four digits with whitespace between each group.</t>

<t>When a human is actively involved, the result of such a verification is dubious.
There is little evidence that most humans are good at precise comparison of high-entropy data, particularly when that data is represented in compact textual form like a hexadecimal fingerprint.</t>

<t>The version 6 fingerprint makes the challenge for a human verifier even worse.
At 256 bits (compared to v4's 160 bit fingerprint), a v6 fingerprint is even harder for a human to successfully compare.</t>

<t>An OpenPGP implementation should prioritize mechanical fingerprint transfer and comparison where possible, and <bcp14>SHOULD NOT</bcp14> promote manual transfer or comparison of full fingerprints by a human unless there is no other way to achieve the desired result.</t>

<t>While this subsection acknowledges existing practice for human-representable v4 fingerprints, this document does not attempt to standardize any specific human-readable form of v6 fingerprint for this discouraged use case.</t>

<t>NOTE: the topic of interoperable human-in-the-loop key verification needs more work, to be done in a separate document.</t>

</section>
<section anchor="ciphertext-malleability"><name>Avoiding Ciphertext Malleability</name>

<t>If ciphertext can be modified by an attacker but still subsequently decrypted to some new plaintext, it is considered "malleable".
A number of attacks can arise in any cryptosystem that uses malleable encryption, so modern OpenPGP offers mechanisms to defend against it.
However, legacy OpenPGP data may have been created before these mechanisms were available.
Because OpenPGP implementations deal with historic stored data, they may encounter malleable ciphertexts.</t>

<t>When an OpenPGP implementation discovers that it is decrypting data that appears to be malleable, it <bcp14>MUST</bcp14> indicate a clear error message that the integrity of the message is suspect, <bcp14>SHOULD NOT</bcp14> attempt to parse nor release decrypted data to the user, and <bcp14>SHOULD</bcp14> halt with an error.
Parsing or releasing decrypted data before having confirmed its integrity can leak the decrypted data <xref target="EFAIL"/>, <xref target="MRLG15"/>.</t>

<t>In the case of AEAD encrypted data, if the authentication tag fails to verify, the implementation <bcp14>MUST NOT</bcp14> attempt to parse nor release decrypted data to the user, and <bcp14>MUST</bcp14> halt with an error.</t>

<t>An implementation that encounters malleable ciphertext <bcp14>MAY</bcp14> choose to release cleartext to the user if it is not encrypted using AEAD, and it is known to be dealing with historic archived legacy data, and the user is aware of the risks.</t>

<t>In the case of AEAD encrypted messages, if the message is truncated, i.e. the final zero-octet chunk and possibly (part of) some chunks before it are missing, the implementation <bcp14>MAY</bcp14> choose to release cleartext from fully authenticated chunks before it to the user if it is operating in a streaming fashion, but it <bcp14>MUST</bcp14> indicate a clear error message as soon as the truncation is detected.</t>

<t>Any of the following OpenPGP data elements indicate that malleable ciphertext is present:</t>

<t><list style="symbols">
  <t>All Symmetrically Encrypted Data packets (<xref target="sed"/>).</t>
  <t>Within any encrypted container, any Compressed Data packet (<xref target="compressed-data"/>) where there is a decompression failure.</t>
  <t>Any version 1 Symmetrically Encrypted Integrity Protected Data packet (<xref target="version-one-seipd"/>) where the internal Modification Detection Code does not validate.</t>
  <t>Any version 2 Symmetrically Encrypted Integrity Protected Data packet (<xref target="version-two-seipd"/>) where the authentication tag of any chunk fails, or where there is no final zero-octet chunk.</t>
  <t>Any Secret Key packet with encrypted secret key material (<xref target="secret-key-encryption"/>) where there is an integrity failure, based on the value of the secret key protection octet:  <list style="symbols">
      <t>Value 255 (MalleableCFB) or raw cipher algorithm: where the trailing 2-octet checksum does not match.</t>
      <t>Value 254 (CFB): where the SHA1 checksum is mismatched.</t>
      <t>Value 253 (AEAD): where the AEAD authentication tag is invalid.</t>
    </list></t>
</list></t>

<t>To avoid these circumstances, an implementation that generates OpenPGP encrypted data <bcp14>SHOULD</bcp14> select the encrypted container format with the most robust protections that can be handled by the intended recipients.
In particular:</t>

<t><list style="symbols">
  <t>The SED packet is deprecated, and <bcp14>MUST NOT</bcp14> be generated.</t>
  <t>When encrypting to one or more public keys:  <list style="symbols">
      <t>If all recipient keys indicate support for version 2 of the Symmetrically Encrypted Integrity Protected Data packet in their Features subpacket (<xref target="features-subpacket"/>), or are v6 keys without a Features subpacket, or the implementation can otherwise infer that all recipients support v2 SEIPD packets, the implementation <bcp14>SHOULD</bcp14> encrypt using a v2 SEIPD packet.</t>
      <t>If one of the recipients does not support v2 SEIPD packets, then the message generator <bcp14>MAY</bcp14> use a v1 SEIPD packet instead.</t>
    </list></t>
  <t>Passphrase-protected secret key material in a v6 Secret Key or v6 Secret Subkey packet <bcp14>SHOULD</bcp14> be protected with AEAD encryption (S2K usage octet 253) unless it will be transferred to an implementation that is known to not support AEAD.
Implementations should be aware that, in scenarios where an attacker has access to encrypted private keys, CFB-encrypted keys (S2K usage octet 254 or 255) are vulnerable to corruption attacks that can cause leakage of secret data when the secret key is used <xref target="KOPENPGP"/>, <xref target="KR02"/>.</t>
</list></t>

<t>Implementers should implement AEAD (v2 SEIPD and S2K usage octet 253) promptly and encourage its spread.</t>

<t>Users should migrate to AEAD with all due speed.</t>

</section>
<section anchor="secure-sessionkey-reuse"><name>Secure Use of the v2 SEIPD Session-Key-Reuse Feature</name>

<t>The salted key derivation of v2 SEIPD packets (<xref target="version-two-seipd"/>) allows the recipient of an encrypted message to reply to the sender and all other recipients without needing their public keys but by using the same v6 PKESK packets he received and a different random salt value.
This ensures a secure mechanism on the cryptographic level that enables the use of message encryption in cases where a sender does not have a copy of an encryption-capable certificate for one or more participants in the conversation and thus can enhance the overall security of an application.
However, care must be taken when using this mechanism not to create security vulnerabilities, such as the following.</t>

<t><list style="symbols">
  <t>Replying to only a subset of the original recipients and the original sender by use of the session-key-reuse feature would mean that the remaining recipients (including the sender) of the original message could read the encrypted reply message, too.</t>
  <t>Adding a further recipient to the reply that is encrypted using the session-key-reuse feature gives that further recipient also cryptographic access to the original message that is being replied to (and potentially to a longer history of previous messages).</t>
  <t>A modification of the list of recipients addressed in the above points needs also to be safeguarded when a message is initially composed as a reply with session-key reuse but then first stored (e.g. as a draft) and later reopened for further editing and finally sent.</t>
  <t>There is the potential threat that an attacker with network or mailbox access, who is at the same time a recipient of the original message, silently removes themselves from the message before the victim's client receives it.
The victim's client that then uses the mechanism for replying with session-key reuse would unknowingly compose an encrypted message that could be read by the attacker.
Implementations are encouraged to use the Intended Recipient Fingerprint (<xref target="intended-recipient-fingerprint"/>) subpacket when composing messages and to use it to check the consistency of the set of recipients of a message before replying to it with session-key reuse.</t>
  <t>When using the session-key-reuse feature in any higher-layer protocol, care should be taken that there is no other potentially interfering practice of session-key reuse established in that protocol.
Such interfering session-key reuse could for instance be given if an initial message is already composed by reusing the session key of an existing encrypted file the access to which may be shared among a group of users already.
Using the session-key-reuse feature to compose an encrypted reply to such a message would unknowingly give this whole group of users cryptographic access to the encrypted message.</t>
  <t>Generally, the use of the session-key-reuse feature should be under the control of the user.
Specifically, care should be taken that this feature is not silently used when the user assumes that proper public-key encryption is used.
This can be the case for instance when the public key of one of the recipients of the reply is known but has has expired.
Special care should be taken to ensure that users do not get caught in continued use of the session-key reuse unknowingly but instead receive the chance to switch to proper fresh public-key encryption as soon as possible.</t>
  <t>Whenever possible, a client should prefer a fresh public key encryption over the session-key reuse.</t>
</list></t>

<t>Even though this not necessarily being a security aspect, note that initially composing an encrypted reply using the session-key-reuse feature on one client and storing it (e.g. as a draft) and later reopening the stored unfinished reply with another client that does not support the session-key-reuse feature may lead to interoperability problems.</t>

<t>Avoiding the pitfalls described above requires context-specific expertise.
An implementation should only make use of the session-key-reuse feature in any particular application layer when it can follow reasonable documentation about how to deploy the feature safely in the specific application.</t>

</section>
<section anchor="escrowed-revocations"><name>Escrowed Revocation Signatures</name>

<t>A keyholder, Alice, may wish to designate a third party to be able to revoke Alice's own key.</t>

<t>The preferred way for her to do this is to produce a specific Revocation Signature (signature types 0x20, 0x28, or 0x30) and distribute it securely to her preferred revoker who can hold it in escrow.
The preferred revoker can then publish the escrowed Revocation Signature at whatever time is deemed appropriate, rather than generating a revocation signature themselves.</t>

<t>There are multiple advantages of using an escrowed Revocation Signature over the deprecated Revocation Key subpacket (<xref target="revocation-key"/>):</t>

<t><list style="symbols">
  <t>The keyholder can constrain what types of revocation the preferred revoker can issue, by only escrowing those specific signatures.</t>
  <t>There is no public/visible linkage between the keyholder and the preferred revoker.</t>
  <t>Third parties can verify the revocation without needing to find the key of the preferred revoker.</t>
  <t>The preferred revoker doesn't even need to have a public OpenPGP key if some other secure transport is possible between them and the keyholder.</t>
  <t>Implementation support for enforcing a revocation from an authorized Revocation Key subpacket is uneven and unreliable.</t>
  <t>If the fingerprint mechanism suffers a cryptanalytic flaw, the escrowed Revocation Signature is not affected.</t>
</list></t>

<t>A Revocation Signature may also be split up into shares and distributed among multiple parties, requiring some subset of those parties to collaborate before the escrowed Revocation Signature is recreated.</t>

</section>
<section anchor="random-number-generation-and-seeding"><name>Random Number Generation and Seeding</name>

<t>OpenPGP requires a cryptographically secure pseudorandom number generator (CSPRNG).
In most cases, the operating system provides an appropriate facility such as a <spanx style="verb">getrandom()</spanx> syscall, which should be used absent other (for example, performance) concerns.
It is <bcp14>RECOMMENDED</bcp14> to use an existing CSPRNG implementation in preference to crafting a new one.
Many adequate cryptographic libraries are already available under favorable license terms.
Should those prove unsatisfactory, <xref target="RFC4086"/> provides guidance on the generation of random values.</t>

<t>OpenPGP uses random data with three different levels of visibility:</t>

<t><list style="symbols">
  <t>In publicly-visible fields such as nonces, IVs, public padding material, or salts,</t>
  <t>In shared-secret values, such as session keys for encrypted data or padding material within an encrypted packet, and</t>
  <t>In entirely private data, such as asymmetric key generation.</t>
</list></t>

<t>With a properly functioning CSPRNG, this does not present a security problem, as it is not feasible to determine the CSPRNG state from its output.
However, with a broken CSPRNG, it may be possible for an attacker to use visible output to determine the CSPRNG internal state and thereby predict less-visible data like keying material, as documented in <xref target="CHECKOWAY"/>.</t>

<t>An implementation can provide extra security against this form of attack by using separate CSPRNGs to generate random data with different levels of visibility.</t>

</section>
<section anchor="traffic-analysis"><name>Traffic Analysis</name>

<t>When sending OpenPGP data through the network, the size of the data may leak information to an attacker.
There are circumstances where such a leak could be unacceptable from a security perspective.</t>

<t>For example, if possible cleartext messages for a given protocol are known to be either <spanx style="verb">yes</spanx> (three octets) and <spanx style="verb">no</spanx> (two octets) and the messages are sent within a Symmetrically-Encrypted Integrity Protected Data packet, the length of the encrypted message will reveal the contents of the cleartext.</t>

<t>In another example, sending an OpenPGP Transferable Public Key over an encrypted network connection might reveal the length of the certificate.
Since the length of an OpenPGP certificate varies based on the content, an external observer interested in metadata (who is trying to contact whom) may be able to guess the identity of the certificate sent, if its length is unique.</t>

<t>In both cases, an implementation can adjust the size of the compound structure by including a Padding packet (see <xref target="padding-packet"/>).</t>

</section>
<section anchor="surreptitious-forwarding"><name>Surreptitious Forwarding</name>

<t>When an attacker obtains a signature for some text, e.g. by receiving a signed message, they may be able to use that signature maliciously by sending a message purporting to come from the original sender, with the same body and signature, to a different recipient.
To prevent this, implementations <bcp14>SHOULD</bcp14> implement the Intended Recipient Fingerprint signature subpacket (<xref target="intended-recipient-fingerprint"/>).</t>

</section>
<section anchor="subpacket-section-guidance"><name>Hashed vs. Unhashed Subpackets</name>

<t>Each OpenPGP signature can have subpackets in two different sections.
The first set of subpackets (the "hashed section") is covered by the signature itself.
The second set has no cryptographic protections, and is used for advisory material only, including locally-stored annotations about the signature.</t>

<t>For example, consider an implementation working with a specific signature that happens to know that the signature was made by a certain key, even though the signature contains no Issuer Fingerprint subpacket (<xref target="issuer-fingerprint-subpacket"/>) in the hashed section.
That implementation <bcp14>MAY</bcp14> synthesize an Issuer Fingerprint subpacket and store it in the unhashed section so that in the future it will be able to recall which key issued the signature.</t>

<t>Some subpackets are only useful when they are in the hashed section, and implementations <bcp14>SHOULD</bcp14> ignore them when they are found with unknown provenance in the unhashed section.
For example, a Preferred AEAD Ciphersuites subpacket (<xref target="preferred-v2-seipd"/>) in a direct-key self-signature indicates the preferences of the key holder when encrypting SEIPD v2 data to the key.
An implementation that observes such a subpacket found in the unhashed section would open itself to an attack where the recipient's certificate is tampered with to encourage the use of a specific cipher or mode of operation.</t>

</section>
<section anchor="compress-bomb"><name>Malicious Compressed Data</name>

<t>It is possible to form a compression quine that produces itself upon decompression, leading to infinite regress in any implementation willing to parse arbitrary numbers of layers of compression.
This could cause resource exhaustion which itself could lead to it being terminated by the operating system.
If the operating system would create a "crash report", that report could contain confidential information.</t>

<t>An OpenPGP implementation <bcp14>SHOULD</bcp14> limit the number of layers of compression it is willing to decompress in a single message.</t>

</section>
</section>
<section anchor="implementation-considerations"><name>Implementation Considerations</name>

<t>This section is a collection of comments to help an implementer, particularly with an eye to backward compatibility.
Often the differences are small, but small differences are frequently more vexing than large differences.
Thus, this is a non-comprehensive list of potential problems and gotchas for a developer who is trying to be backward-compatible.</t>

<t><list style="symbols">
  <t>There are many ways possible for two keys to have the same key material, but different fingerprints (and thus Key IDs).
For example, since a v4 fingerprint is constructed by hashing the key creation time along with other things, two v4 keys created at different times, yet with the same key material will have different fingerprints.</t>
  <t>OpenPGP does not put limits on the size of public keys.
However, larger keys are not necessarily better keys.
Larger keys take more computation time to use, and this can quickly become impractical.
Different OpenPGP implementations may also use different upper bounds for public key sizes, and so care should be taken when choosing sizes to maintain interoperability.</t>
  <t>ASCII armor is an optional feature of OpenPGP.
The OpenPGP working group strives for a minimal set of mandatory-to-implement features, and since there could be useful implementations that only use binary object formats, this is not a "<bcp14>MUST</bcp14>" feature for an implementation.
For example, an implementation that is using OpenPGP as a mechanism for file signatures may find ASCII armor unnecessary.
OpenPGP permits an implementation to declare what features it does and does not support, but ASCII armor is not one of these.
Since most implementations allow binary and armored objects to be used indiscriminately, an implementation that does not implement ASCII armor may find itself with compatibility issues with general-purpose implementations.
Moreover, implementations of OpenPGP-MIME <xref target="RFC3156"/> already have a requirement for ASCII armor so those implementations will necessarily have support.</t>
  <t>What this document calls Legacy packet format <xref target="legacy-packet-format"/> is what older documents called the "old packet format".
It is the packet format used by legacy implementations.
Older RFCs called the current OpenPGP packet format <xref target="openpgp-packet-format"/> the "new packet format".</t>
</list></t>

<section anchor="constrained-legacy-fingerprint-storage-for-v6-keys"><name>Constrained Legacy Fingerprint Storage for v6 Keys</name>

<t>Some OpenPGP implementations have fixed length constraints for key fingerprint storage that will not fit all 32 octets of a v6 fingerprint.
For example, <xref target="OPENPGPCARD"/> reserves 20 octets for each stored fingerprint.</t>

<t>An OpenPGP implementation <bcp14>MUST NOT</bcp14> attempt to map any part of a v6 fingerprint to such a constrained field unless the relevant spec for the constrained environment has explicit guidance for storing a v6 fingerprint that distinguishes it from a v4 fingerprint.
An implementation interacting with such a constrained field <bcp14>SHOULD</bcp14> directly calculate the v6 fingerprint from public key material and associated metadata instead of relying on the constrained field.</t>

</section>
</section>
<section anchor="iana-considerations"><name>IANA Considerations</name>

<t>This document obsoletes <xref target="RFC4880"/>.
IANA is requested to update all registration information that references <xref target="RFC4880"/> to instead reference this RFC.</t>

<section anchor="rename-pretty-good-privacy-pgp-protocol-group-to-openpgp"><name>Rename "Pretty Good Privacy (PGP)" Protocol Group to "OpenPGP"</name>

<t>IANA bundles a set of registries associated with a particular protocol into a "protocol group".
This document requests IANA to update the name of the "Pretty Good Privacy (PGP)" protocol group (i.e., the group of registries described at <spanx style="verb">https://www.iana.org/assignments/pgp-parameters/</spanx>) to "OpenPGP".
If renaming the protocol group results in new URLs for the registries in this protocol group, please arrange for a permanent redirection (e.g., HTTP 301) from the existing URLs to the new URLs.
All further updates specified below are for registries within this same "OpenPGP" protocol group.</t>

</section>
<section anchor="registries-to-be-renamed-and-updated"><name>Registries to be Renamed and Updated</name>

<t>IANA is requested to rename the "PGP String-to-Key (S2K)" registry to "String-to-Key (S2K) Types" and update its content to <xref target="s2k-types-registry"/>.</t>

<t>IANA is requested to rename the "PGP Packet Types/Tags" registry to "Packet Types/Tags" and update its content to <xref target="packet-types-registry"/>.</t>

<t>IANA is requested to rename the "PGP User Attribute Types" registry to "User Attribute Subpacket Types" and update its content to <xref target="user-attr-subpacket-types-registry"/></t>

<t>IANA is requested to rename the "Image Format Subpacket Types" registry to "Image Attribute Encoding Format" and update its content to <xref target="image-attr-encoding-format-registry"/>.</t>

<t>IANA is requested to rename the "Key Server Preference Extensions" registry to "Key Server Preference Flags" and update its contents to <xref target="key-server-preference-flags-registry"/>.</t>

<t>IANA is requested to rename the "Reason for Revocation Extensions" registry to "Reason for Revocation Code" and update its contents to <xref target="reason-for-revocation-code-registry"/></t>

<t>IANA is requested to rename the "Key Flags Extensions" registry to "Key Flags" and update its contents to <xref target="key-flags-registry"/>.</t>

<t>IANA is requested to rename the "Implementation Features" registry to "Features Flags" and update its contents to <xref target="features-flags-registry"/></t>

</section>
<section anchor="updated-registries"><name>Registries to be Updated</name>

<t>IANA is requested to update the "Public Key Algorithms" registry with the contents of <xref target="pubkey-algo-registry"/>.</t>

<t>IANA is requested to update the "Symmetric Key Algorithms" registry with the contents of <xref target="symkey-algorithms-registry"/>.</t>

<t>IANA is requested to update the "Compression Algorithms" registry with the contents of <xref target="compression-algorithms-registry"/>.</t>

<t>IANA is requested to update the "Hash Algorithms" registry with the contents of <xref target="hash-algorithms-registry"/>.</t>

<t>IANA is requested to update the "Signature Subpacket Types" registry with the contents of <xref target="signature-subpacket-types-registry"/>.</t>

</section>
<section anchor="removed-registries"><name>Registries to be Removed</name>

<t>IANA is requested to remove the empty "New Packet Versions" registry.</t>

<t>A tombstone note should be added to the OpenPGP protocol group with the following content: Those wishing to use the removed "New Packet Versions" registry should instead register new versions of the relevant packets in the "Key and Signature Versions", "Key ID and Fingerprint" and "Encrypted Message Packet Versions" registries.</t>

</section>
<section anchor="added-registries"><name>Registries to be Added</name>

<t>IANA is requested to add the following registries in the OpenPGP protocol group:</t>

<t><list style="symbols">
  <t>Secret Key Encryption (S2K Usage Octet) containing <xref target="secret-key-protection-registry"/>.</t>
  <t>Signature Types containing <xref target="signature-types-registry"/></t>
  <t>Signature Notation Data Subpacket Notation Flags containing <xref target="sig-note-data-note-flags-registry"/>.</t>
  <t>Signature Notation Data Subpacket Types containing <xref target="sig-note-data-subpacket-types"/>.</t>
  <t>Key ID and Fingerprint containing <xref target="key-id-fingerprint-registry"/>.</t>
  <t>Image Attribute Version containing <xref target="image-attribute-version-registry"/>.</t>
  <t>Armor Header Line containing <xref target="armor-header-line-registry"/>.</t>
  <t>Armor Header Key containing <xref target="armor-header-key-registry"/>.</t>
  <t>ECC Curve OID and Usage containing <xref target="ecc-oid-usage-registry"/>.</t>
  <t>ECC Curve-specific Wire Formats containing <xref target="ecc-wire-formats-registry"/>.</t>
  <t>Hash Algorithm Identifiers for RSA Signatures use of EMSA-PKCS1-v1_5 Padding containing <xref target="emsa-hash-oids-registry"/>.</t>
  <t>AEAD Algorithms containing <xref target="aead-algorithms-registry"/>.</t>
  <t>Encrypted Message Packet Versions containing <xref target="encrypted-packet-versions-registry"/>.</t>
  <t>Key and Signature Versions containing <xref target="signed-packet-versions-registry"/>.</t>
  <t>Elliptic Curve Point Wire Formats containing <xref target="ec-point-wire-formats-registry"/>.</t>
  <t>Elliptic Curve Scalar Encodings containing <xref target="ec-scalar-wire-formats-registry"/>.</t>
  <t>ECDH KDF and KEK Parameters containing <xref target="ecdh-kdf-kek-parameters-registry"/>.</t>
</list></t>

</section>
<section anchor="registration-policies"><name>Registration Policies</name>

<t>IANA is requested to set all registries within the OpenPGP protocol group to use the SPECIFICATION <bcp14>REQUIRED</bcp14> registration policy, see <xref section="4.6" sectionFormat="of" target="RFC8126"/> with the exception of the registries listed in <xref target="rfc-required-registries"/>, below.
This policy means that review and approval by a designated expert is required, and that the values and their meanings must be documented in a permanent and readily available public specification, in sufficient detail so that interoperability between independent implementations is possible.</t>

<section anchor="rfc-required-registries"><name>Registries that are RFC REQUIRED</name>

<t>The following registries use the RFC <bcp14>REQUIRED</bcp14> registration policy, as described in <xref section="4.7" sectionFormat="of" target="RFC8126"/>:</t>

<t><list style="symbols">
  <t>Packet Type/Tags registry (<xref target="packet-types-registry"/>)</t>
  <t>Key and Signature Versions registry (<xref target="signed-packet-versions-registry"/>)</t>
  <t>Key ID and Fingerprint registry (<xref target="key-id-fingerprint-registry"/>)</t>
  <t>Encrypted Message Packet Versions registry (<xref target="encrypted-packet-versions-registry"/>)</t>
</list></t>

</section>
</section>
<section anchor="designated-experts"><name>Designated Experts</name>

<t>The designated experts will determine whether the new code points retain the security properties that are expected by the base implementation and that these new code points do not cause interoperability issues with existing implementations other than not producing or consuming these new code points.
Code point proposals that fail to meet these criteria could instead be proposed as new work items for the OpenPGP working group or its successor.</t>

<t>The subsections below describe specific guidance for classes of registry updates that a designated expert will consider.</t>

<t>The designated experts should also consider <xref target="meta-considerations-for-expansion"/> when reviewing proposed additions to the OpenPGP registries.</t>

<section anchor="key-versions"><name>Key Versions</name>

<t>When defining a new version of OpenPGP keys, three registries need to be updated with information about the new version: <xref target="signed-packet-versions-registry"/>, <xref target="key-id-fingerprint-registry"/>, and <xref target="key-id-fingerprint-registry"/>.</t>

</section>
<section anchor="algorithms"><name>Algorithms</name>

<t><xref target="constants"/> lists the cryptographic and compression algorithms that OpenPGP uses.
Adding new algorithms is usually simple, in some cases as little as allocating a codepoint and pointing to a reference.
But some algorithm registries require some subtle additional details when a new algorithm is introduced.</t>

<section anchor="elliptic-curve-algorithms"><name>Elliptic Curve Algorithms</name>

<t>To register a new elliptic curve for use with OpenPGP, its OID needs to be registered in <xref target="ecc-oid-usage-registry"/>, its wire format needs to be documented in <xref target="ecc-wire-formats-registry"/>, and if used for ECDH, its KDF and KEK parameters must be populated in <xref target="ecdh-kdf-kek-parameters-registry"/>.
If the wire format(s) used are not already defined in <xref target="ec-point-wire-formats-registry"/> or <xref target="ec-scalar-wire-formats-registry"/>, they should be defined there as well.</t>

</section>
<section anchor="symmetric-key-algorithms"><name>Symmetric-Key Algorithms</name>

<t>When registering a new symmetric cipher with a block size of 64 or 128 bits and a key size that is a multiple of 64 bits, no new considerations are needed.</t>

<t>If the new cipher has a different block size, there needs to be additional documentation describing how to use the cipher in CFB mode.</t>

<t>If the new cipher has an unusual key size, then padding needs to be considered for X25519 and X448 keywrap, which currently needs no padding.</t>

</section>
<section anchor="hash-algorithms"><name>Hash Algorithms</name>

<t>When registering a new hash algorithm (in <xref target="hash-algorithms-registry"/>), if the algorithm is also to be used with RSA signing schemes, it must also have an entry in <xref target="emsa-hash-oids-registry"/>.</t>

</section>
</section>
</section>
</section>


  </middle>

  <back>


    <references title='Normative References'>

<reference anchor="BLOWFISH" target="http://www.counterpane.com/bfsverlag.html">
  <front>
    <title>Description of a New Variable-Length Key, 64-Bit Block Cipher (Blowfish)</title>
    <author initials="B." surname="Schneier">
      <organization></organization>
    </author>
    <date year="1993" month="December"/>
  </front>
  <seriesInfo name="Fast Software Encryption, Cambridge Security Workshop Proceedings" value="Springer-Verlag, 1994, pp191-204"/>
</reference>
<reference anchor="BZ2" target="http://www.bzip.org/">
  <front>
    <title>The Bzip2 and libbzip2 home page</title>
    <author initials="J." surname="Seward" fullname="Julian Seward, jseward@acm.org">
      <organization></organization>
    </author>
    <date year="2010"/>
  </front>
</reference>
<reference anchor="EAX" >
  <front>
    <title>A Conventional Authenticated-Encryption Mode</title>
    <author initials="M." surname="Bellare">
      <organization></organization>
    </author>
    <author initials="P." surname="Rogaway">
      <organization></organization>
    </author>
    <author initials="D." surname="Wagner">
      <organization></organization>
    </author>
    <date year="2003" month="April"/>
  </front>
</reference>
<reference anchor="ELGAMAL" >
  <front>
    <title>A Public-Key Cryptosystem and a Signature Scheme Based on Discrete Logarithms</title>
    <author initials="T." surname="Elgamal">
      <organization></organization>
    </author>
    <date year="1985"/>
  </front>
  <seriesInfo name="IEEE Transactions on Information Theory" value="v. IT-31, n. 4, 1985, pp. 469-472"/>
</reference>
<reference anchor="HAC" >
  <front>
    <title>Handbook of Applied Cryptography</title>
    <author initials="A. J." surname="Menezes" fullname="Alfred J. Menezes">
      <organization></organization>
    </author>
    <author initials="P." surname="v Oorschot" fullname="Paul van Oorschot">
      <organization></organization>
    </author>
    <author initials="S." surname="Vanstone" fullname="Scott Vanstone">
      <organization></organization>
    </author>
    <date year="1996"/>
  </front>
</reference>
<reference anchor="IDEA" >
  <front>
    <title>On the design and security of block ciphers</title>
    <author initials="X." surname="Lai">
      <organization></organization>
    </author>
    <date year="1992"/>
  </front>
  <seriesInfo name="ETH Series in Information Processing, J.L. Massey (editor)" value="Vol. 1, Hartung-Gorre Verlag Konstanz, Technische Hochschule (Zurich)"/>
</reference>
<reference anchor="ISO10646" target="https://www.iso.org/standard/76835.html">
  <front>
    <title>Information Technology - Universal Multiple-octet coded Character Set (UCS) - Part 1: Architecture and Basic Multilingual Plane</title>
    <author >
      <organization>International Organization for Standardization</organization>
    </author>
    <date year="2020"/>
  </front>
  <seriesInfo name="ISO" value="Standard 10646-1"/>
</reference>
<reference anchor="JFIF" target="https://www.itu.int/rec/T-REC-T.871-201105-I">
  <front>
    <title>Information technology – Digital compression and coding of continuous-tone still images: JPEG File Interchange Format (JFIF)</title>
    <author >
      <organization>International Telecommunication Union</organization>
    </author>
    <date year="2011" month="May" day="14"/>
  </front>
  <seriesInfo name="ISO" value="ISO/IEC 10918-5"/>
</reference>
<reference anchor="PKCS5" >
  <front>
    <title>PKCS #5 v2.0: Password-Based Cryptography Standard</title>
    <author >
      <organization>RSA Laboratories</organization>
    </author>
    <date year="1999" month="March" day="25"/>
  </front>
</reference>




<reference anchor='RFC1950'>
<front>
<title>ZLIB Compressed Data Format Specification version 3.3</title>
<author fullname='P. Deutsch' initials='P.' surname='Deutsch'><organization/></author>
<author fullname='J-L. Gailly' initials='J-L.' surname='Gailly'><organization/></author>
<date month='May' year='1996'/>
<abstract><t>This specification defines a lossless compressed data format.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind.</t></abstract>
</front>
<seriesInfo name='RFC' value='1950'/>
<seriesInfo name='DOI' value='10.17487/RFC1950'/>
</reference>



<reference anchor='RFC1951'>
<front>
<title>DEFLATE Compressed Data Format Specification version 1.3</title>
<author fullname='P. Deutsch' initials='P.' surname='Deutsch'><organization/></author>
<date month='May' year='1996'/>
<abstract><t>This specification defines a lossless compressed data format that compresses data using a combination of the LZ77 algorithm and Huffman coding, with efficiency comparable to the best currently available general-purpose compression methods.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind.</t></abstract>
</front>
<seriesInfo name='RFC' value='1951'/>
<seriesInfo name='DOI' value='10.17487/RFC1951'/>
</reference>



<reference anchor='RFC2144'>
<front>
<title>The CAST-128 Encryption Algorithm</title>
<author fullname='C. Adams' initials='C.' surname='Adams'><organization/></author>
<date month='May' year='1997'/>
<abstract><t>There is a need in the Internet community for an unencumbered encryption algorithm with a range of key sizes that can provide security for a variety of cryptographic applications and protocols.  This document describes an existing algorithm that can be used to satisfy this requirement.  This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t></abstract>
</front>
<seriesInfo name='RFC' value='2144'/>
<seriesInfo name='DOI' value='10.17487/RFC2144'/>
</reference>



<reference anchor='RFC2822'>
<front>
<title>Internet Message Format</title>
<author fullname='P. Resnick' initials='P.' role='editor' surname='Resnick'><organization/></author>
<date month='April' year='2001'/>
<abstract><t>This document specifies a syntax for text messages that are sent between computer users, within the framework of &quot;electronic mail&quot; messages. [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2822'/>
<seriesInfo name='DOI' value='10.17487/RFC2822'/>
</reference>



<reference anchor='RFC3156'>
<front>
<title>MIME Security with OpenPGP</title>
<author fullname='M. Elkins' initials='M.' surname='Elkins'><organization/></author>
<author fullname='D. Del Torto' initials='D.' surname='Del Torto'><organization/></author>
<author fullname='R. Levien' initials='R.' surname='Levien'><organization/></author>
<author fullname='T. Roessler' initials='T.' surname='Roessler'><organization/></author>
<date month='August' year='2001'/>
<abstract><t>This document describes how the OpenPGP Message Format can be used to provide privacy and authentication using the Multipurpose Internet Mail Extensions (MIME) security content types described in RFC 1847. [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='3156'/>
<seriesInfo name='DOI' value='10.17487/RFC3156'/>
</reference>



<reference anchor='RFC3394'>
<front>
<title>Advanced Encryption Standard (AES) Key Wrap Algorithm</title>
<author fullname='J. Schaad' initials='J.' surname='Schaad'><organization/></author>
<author fullname='R. Housley' initials='R.' surname='Housley'><organization/></author>
<date month='September' year='2002'/>
</front>
<seriesInfo name='RFC' value='3394'/>
<seriesInfo name='DOI' value='10.17487/RFC3394'/>
</reference>



<reference anchor='RFC3629'>
<front>
<title>UTF-8, a transformation format of ISO 10646</title>
<author fullname='F. Yergeau' initials='F.' surname='Yergeau'><organization/></author>
<date month='November' year='2003'/>
<abstract><t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t></abstract>
</front>
<seriesInfo name='STD' value='63'/>
<seriesInfo name='RFC' value='3629'/>
<seriesInfo name='DOI' value='10.17487/RFC3629'/>
</reference>



<reference anchor='RFC3713'>
<front>
<title>A Description of the Camellia Encryption Algorithm</title>
<author fullname='M. Matsui' initials='M.' surname='Matsui'><organization/></author>
<author fullname='J. Nakajima' initials='J.' surname='Nakajima'><organization/></author>
<author fullname='S. Moriai' initials='S.' surname='Moriai'><organization/></author>
<date month='April' year='2004'/>
<abstract><t>This document describes the Camellia encryption algorithm.  Camellia is a block cipher with 128-bit block size and 128-, 192-, and 256-bit keys.  The algorithm description is presented together with key scheduling part and data randomizing part.  This memo provides information for the Internet community.</t></abstract>
</front>
<seriesInfo name='RFC' value='3713'/>
<seriesInfo name='DOI' value='10.17487/RFC3713'/>
</reference>



<reference anchor='RFC4086'>
<front>
<title>Randomness Requirements for Security</title>
<author fullname='D. Eastlake 3rd' initials='D.' surname='Eastlake 3rd'><organization/></author>
<author fullname='J. Schiller' initials='J.' surname='Schiller'><organization/></author>
<author fullname='S. Crocker' initials='S.' surname='Crocker'><organization/></author>
<date month='June' year='2005'/>
<abstract><t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts.  However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities.  The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t><t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult.  This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities.  It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='106'/>
<seriesInfo name='RFC' value='4086'/>
<seriesInfo name='DOI' value='10.17487/RFC4086'/>
</reference>



<reference anchor='RFC4648'>
<front>
<title>The Base16, Base32, and Base64 Data Encodings</title>
<author fullname='S. Josefsson' initials='S.' surname='Josefsson'><organization/></author>
<date month='October' year='2006'/>
<abstract><t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes.  It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4648'/>
<seriesInfo name='DOI' value='10.17487/RFC4648'/>
</reference>



<reference anchor='RFC7253'>
<front>
<title>The OCB Authenticated-Encryption Algorithm</title>
<author fullname='T. Krovetz' initials='T.' surname='Krovetz'><organization/></author>
<author fullname='P. Rogaway' initials='P.' surname='Rogaway'><organization/></author>
<date month='May' year='2014'/>
<abstract><t>This document specifies OCB, a shared-key blockcipher-based encryption scheme that provides confidentiality and authenticity for plaintexts and authenticity for associated data.  This document is a product of the Crypto Forum Research Group (CFRG).</t></abstract>
</front>
<seriesInfo name='RFC' value='7253'/>
<seriesInfo name='DOI' value='10.17487/RFC7253'/>
</reference>



<reference anchor='RFC7748'>
<front>
<title>Elliptic Curves for Security</title>
<author fullname='A. Langley' initials='A.' surname='Langley'><organization/></author>
<author fullname='M. Hamburg' initials='M.' surname='Hamburg'><organization/></author>
<author fullname='S. Turner' initials='S.' surname='Turner'><organization/></author>
<date month='January' year='2016'/>
<abstract><t>This memo specifies two elliptic curves over prime fields that offer a high level of practical security in cryptographic applications, including Transport Layer Security (TLS).  These curves are intended to operate at the ~128-bit and ~224-bit security level, respectively, and are generated deterministically based on a list of required properties.</t></abstract>
</front>
<seriesInfo name='RFC' value='7748'/>
<seriesInfo name='DOI' value='10.17487/RFC7748'/>
</reference>



<reference anchor='RFC8017'>
<front>
<title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
<author fullname='K. Moriarty' initials='K.' role='editor' surname='Moriarty'><organization/></author>
<author fullname='B. Kaliski' initials='B.' surname='Kaliski'><organization/></author>
<author fullname='J. Jonsson' initials='J.' surname='Jonsson'><organization/></author>
<author fullname='A. Rusch' initials='A.' surname='Rusch'><organization/></author>
<date month='November' year='2016'/>
<abstract><t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t><t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series.  By publishing this RFC, change control is transferred to the IETF.</t><t>This document also obsoletes RFC 3447.</t></abstract>
</front>
<seriesInfo name='RFC' value='8017'/>
<seriesInfo name='DOI' value='10.17487/RFC8017'/>
</reference>



<reference anchor='RFC8032'>
<front>
<title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
<author fullname='S. Josefsson' initials='S.' surname='Josefsson'><organization/></author>
<author fullname='I. Liusvaara' initials='I.' surname='Liusvaara'><organization/></author>
<date month='January' year='2017'/>
<abstract><t>This document describes elliptic curve signature scheme Edwards-curve Digital Signature Algorithm (EdDSA).  The algorithm is instantiated with recommended parameters for the edwards25519 and edwards448 curves.  An example implementation and test vectors are provided.</t></abstract>
</front>
<seriesInfo name='RFC' value='8032'/>
<seriesInfo name='DOI' value='10.17487/RFC8032'/>
</reference>



<reference anchor='RFC8126'>
<front>
<title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
<author fullname='M. Cotton' initials='M.' surname='Cotton'><organization/></author>
<author fullname='B. Leiba' initials='B.' surname='Leiba'><organization/></author>
<author fullname='T. Narten' initials='T.' surname='Narten'><organization/></author>
<date month='June' year='2017'/>
<abstract><t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t><t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t><t>This is the third edition of this document; it obsoletes RFC 5226.</t></abstract>
</front>
<seriesInfo name='BCP' value='26'/>
<seriesInfo name='RFC' value='8126'/>
<seriesInfo name='DOI' value='10.17487/RFC8126'/>
</reference>



<reference anchor='RFC9106'>
<front>
<title>Argon2 Memory-Hard Function for Password Hashing and Proof-of-Work Applications</title>
<author fullname='A. Biryukov' initials='A.' surname='Biryukov'><organization/></author>
<author fullname='D. Dinu' initials='D.' surname='Dinu'><organization/></author>
<author fullname='D. Khovratovich' initials='D.' surname='Khovratovich'><organization/></author>
<author fullname='S. Josefsson' initials='S.' surname='Josefsson'><organization/></author>
<date month='September' year='2021'/>
<abstract><t>This document describes the Argon2 memory-hard function for password hashing and proof-of-work applications.  We provide an implementer-oriented description with test vectors.  The purpose is to simplify adoption of Argon2 for Internet protocols.  This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t></abstract>
</front>
<seriesInfo name='RFC' value='9106'/>
<seriesInfo name='DOI' value='10.17487/RFC9106'/>
</reference>


<reference anchor="SCHNEIER" >
  <front>
    <title>Applied Cryptography Second Edition: protocols, algorithms, and source code in C</title>
    <author initials="B." surname="Schneier" fullname="Bruce Schneier">
      <organization></organization>
    </author>
    <date year="1996"/>
  </front>
</reference>
<reference anchor="SP800-38A" >
  <front>
    <title>Recommendation for Block Cipher Modes of Operation: Methods and Techniques</title>
    <author initials="M." surname="Dworkin">
      <organization></organization>
    </author>
    <date year="2001" month="December"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-38A"/>
</reference>
<reference anchor="SP800-38D" >
  <front>
    <title>Recommendation for Block Cipher Modes of Operation: Galois/Counter Mode (GCM) and GMAC</title>
    <author initials="M." surname="Dworkin">
      <organization></organization>
    </author>
    <date year="2007" month="November"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-38D"/>
</reference>
<reference anchor="SP800-56A" >
  <front>
    <title>Recommendation for Pair-Wise Key Establishment Schemes Using Discrete Logarithm Cryptography</title>
    <author initials="E." surname="Barker">
      <organization></organization>
    </author>
    <author initials="D." surname="Johnson">
      <organization></organization>
    </author>
    <author initials="M." surname="Smid">
      <organization></organization>
    </author>
    <date year="2007" month="March"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-56A Revision 1"/>
</reference>
<reference anchor="TWOFISH" >
  <front>
    <title>The Twofish Encryption Algorithm</title>
    <author initials="B." surname="Schneier">
      <organization></organization>
    </author>
    <author initials="J." surname="Kelsey">
      <organization></organization>
    </author>
    <author initials="D." surname="Whiting">
      <organization></organization>
    </author>
    <author initials="D." surname="Wagner">
      <organization></organization>
    </author>
    <author initials="C." surname="Hall">
      <organization></organization>
    </author>
    <author initials="N." surname="Ferguson">
      <organization></organization>
    </author>
    <date year="1999"/>
  </front>
</reference>




<reference anchor='RFC2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author fullname='S. Bradner' initials='S.' surname='Bradner'><organization/></author>
<date month='March' year='1997'/>
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference anchor='RFC8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author fullname='B. Leiba' initials='B.' surname='Leiba'><organization/></author>
<date month='May' year='2017'/>
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>

<reference anchor='FIPS186'>
  <front>
    <title>Digital Signature Standard (DSS)</title>
    <author>
      <organization/>
    </author>
    <date month='July' year='2013'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.186-4'/>
</reference>

<reference anchor='AES'>
  <front>
    <title>Advanced encryption standard (AES)</title>
    <author>
      <organization/>
    </author>
    <date month='November' year='2001'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.197'/>
</reference>

<reference anchor='FIPS180'>
  <front>
    <title>Secure Hash Standard</title>
    <author fullname='Quynh H. Dang' initials='Q.' surname='Dang'>
      <organization/>
    </author>
    <date month='July' year='2015'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.180-4'/>
</reference>

<reference anchor='FIPS202'>
  <front>
    <title>SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions</title>
    <author fullname='Morris J. Dworkin' initials='M.' surname='Dworkin'>
      <organization/>
    </author>
    <date month='July' year='2015'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.202'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="BLEICHENBACHER" >
  <front>
    <title>Generating ElGamal Signatures Without Knowing the Secret Key</title>
    <author initials="D." surname="Bleichenbacher">
      <organization></organization>
    </author>
    <date year="1996"/>
  </front>
  <seriesInfo name="Lecture Notes in Computer Science" value="Volume 1070, pp. 10-18"/>
</reference>
<reference anchor="BLEICHENBACHER-PKCS1" target="http://archiv.infsec.ethz.ch/education/fs08/secsem/Bleichenbacher98.pdf">
  <front>
    <title>Chosen Ciphertext Attacks Against Protocols Based on the RSA Encryption Standard PKCS \#1</title>
    <author initials="D." surname="Bleichenbacher">
      <organization></organization>
    </author>
    <date year="1998"/>
  </front>
</reference>
<reference anchor="EFAIL" target="https://www.usenix.org/system/files/conference/usenixsecurity18/sec18-poddebniak.pdf">
  <front>
    <title>Efail: Breaking S/MIME and OpenPGP Email Encryption using Exfiltration Channels</title>
    <author initials="D." surname="Poddebniak" fullname="Damian Poddebniak">
      <organization></organization>
    </author>
    <author initials="C." surname="Dresen" fullname="Christian Dresen">
      <organization></organization>
    </author>
    <author initials="J." surname="Müller" fullname="Jens Müller">
      <organization></organization>
    </author>
    <author initials="F." surname="Ising" fullname="Fabian Ising">
      <organization></organization>
    </author>
    <author initials="S." surname="Schinzel" fullname="Sebastian Schinzel">
      <organization></organization>
    </author>
    <author initials="S." surname="Friedberger" fullname="Simon Friedberger">
      <organization></organization>
    </author>
    <author initials="J." surname="Somorovsky" fullname="Juraj Somorovsky">
      <organization></organization>
    </author>
    <author initials="J." surname="Schwenk" fullname="Jörg Schwenk">
      <organization></organization>
    </author>
    <date year="2018"/>
  </front>
  <seriesInfo name="Proceedings of the 27th USENIX Conference on Security Symposium, August 2018, Pages 549–566" value=""/>
</reference>
<reference anchor="HASTAD" >
  <front>
    <title>Solving Simultaneous Modular Equations of Low Degree</title>
    <author initials="J." surname="Hastad" fullname="Johan Hastad">
      <organization></organization>
    </author>
    <date year="1988"/>
  </front>
  <seriesInfo name="DOI" value="10.1137/0217019"/>
</reference>
<reference anchor="JKS02" target="http://www.counterpane.com/pgp-attack.html">
  <front>
    <title>Implementation of Chosen-Ciphertext Attacks against PGP and GnuPG</title>
    <author initials="K." surname="Jallad" fullname="Kahil Jallad">
      <organization></organization>
    </author>
    <author initials="J." surname="Katz" fullname="Jonathan Katz">
      <organization></organization>
    </author>
    <author initials="B." surname="Schneier" fullname="Bruce Schneier">
      <organization></organization>
    </author>
    <date year="2002"/>
  </front>
</reference>
<reference anchor="KOBLITZ" >
  <front>
    <title>A course in number theory and cryptography, Chapter VI. Elliptic Curves</title>
    <author initials="N." surname="Koblitz">
      <organization></organization>
    </author>
    <date year="1997"/>
  </front>
  <seriesInfo name="ISBN" value="0-387-96576-9"/>
</reference>
<reference anchor="KOPENPGP" target="https://www.kopenpgp.com/">
  <front>
    <title>Victory by KO: Attacking OpenPGP Using Key Overwriting</title>
    <author initials="L." surname="Bruseghini" fullname="Lara Bruseghini">
      <organization></organization>
    </author>
    <author initials="K. G." surname="Paterson" fullname="Kenneth G. Paterson">
      <organization></organization>
    </author>
    <author initials="D." surname="Huigens" fullname="Daniel Huigens">
      <organization></organization>
    </author>
    <date year="2022"/>
  </front>
  <seriesInfo name="Proceedings of the 29th ACM Conference on Computer and Communications Security, November 2022 (to appear)" value=""/>
</reference>
<reference anchor="KR02" target="https://eprint.iacr.org/2002/076">
  <front>
    <title>Attack on Private Signature Keys of the OpenPGP Format, PGP(TM) Programs and Other Applications Compatible with OpenPGP</title>
    <author initials="V." surname="Klíma" fullname="Vlastimil Klíma">
      <organization></organization>
    </author>
    <author initials="T." surname="Rosa" fullname="Tomáš Rosa">
      <organization></organization>
    </author>
    <date year="2002"/>
  </front>
  <seriesInfo name="Cryptology ePrint Archive, Report 2002/076" value=""/>
</reference>
<reference anchor="MRLG15" >
  <front>
    <title>Format Oracles on OpenPGP</title>
    <author initials="F." surname="Maury" fullname="Florian Maury">
      <organization></organization>
    </author>
    <author initials="J.-R." surname="Reinhard" fullname="Jean-René Reinhard">
      <organization></organization>
    </author>
    <author initials="O." surname="Levillain" fullname="Olivier Levillain">
      <organization></organization>
    </author>
    <author initials="H." surname="Gilbert" fullname="Henri Gilbert">
      <organization></organization>
    </author>
    <date year="2015"/>
  </front>
  <seriesInfo name="CT-RSA 2015" value="Topics in Cryptology –- CT-RSA 2015 pp 220–236"/>
  <seriesInfo name="DOI" value="10.1007/978-3-319-16715-2_12"/>
</reference>
<reference anchor="MZ05" target="http://eprint.iacr.org/2005/033">
  <front>
    <title>An Attack on CFB Mode Encryption As Used By OpenPGP</title>
    <author initials="S." surname="Mister" fullname="Serge Mister">
      <organization></organization>
    </author>
    <author initials="R." surname="Zuccherato" fullname="Robert Zuccherato">
      <organization></organization>
    </author>
    <date year="2005" month="February" day="08"/>
  </front>
  <seriesInfo name="IACR ePrint Archive" value="Report 2005/033"/>
</reference>
<reference anchor="OPENPGPCARD" target="https://gnupg.org/ftp/specs/OpenPGP-smart-card-application-3.4.1.pdf">
  <front>
    <title>Functional Specification of the OpenPGP application on ISO Smart Card Operating Systems (version 3.4.1)</title>
    <author initials="A." surname="Pietig" fullname="Achim Pietig">
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="PAX" target="https://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html">
  <front>
    <title>IEEE Standard for Information Technology--Portable Operating System Interface (POSIX(R)) Base Specifications, Issue 7: pax - portable archive interchange</title>
    <author >
      <organization>The Open Group</organization>
    </author>
    <date year="2018"/>
  </front>
  <seriesInfo name="IEEE Standard" value="1003.1-2017"/>
  <seriesInfo name="DOI" value="10.1109/IEEESTD.2018.8277153"/>
</reference>
<reference anchor="PSSLR17" target="https://eprint.iacr.org/2017/1014">
  <front>
    <title>Attacking Deterministic Signature Schemes using Fault Attacks</title>
    <author initials="D." surname="Poddebniak">
      <organization></organization>
    </author>
    <author initials="J." surname="Somorovsky">
      <organization></organization>
    </author>
    <author initials="S." surname="Schinzel">
      <organization></organization>
    </author>
    <author initials="M." surname="Lochter">
      <organization></organization>
    </author>
    <author initials="P." surname="Rösler">
      <organization></organization>
    </author>
    <date year="2017" month="October"/>
  </front>
</reference>
<reference anchor="REGEX" >
  <front>
    <title>Mastering Regular Expressions</title>
    <author initials="J." surname="Friedl" fullname="Jeffrey Friedl">
      <organization>O'Reilly</organization>
    </author>
    <date year="2002" month="August"/>
  </front>
  <seriesInfo name="ISBN" value="0-596-00289-0"/>
</reference>




<reference anchor='RFC1991'>
<front>
<title>PGP Message Exchange Formats</title>
<author fullname='D. Atkins' initials='D.' surname='Atkins'><organization/></author>
<author fullname='W. Stallings' initials='W.' surname='Stallings'><organization/></author>
<author fullname='P. Zimmermann' initials='P.' surname='Zimmermann'><organization/></author>
<date month='August' year='1996'/>
<abstract><t>This document describes the format of &quot;PGP files&quot;, i.e., messages that have been encrypted and/or signed with PGP.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind.</t></abstract>
</front>
<seriesInfo name='RFC' value='1991'/>
<seriesInfo name='DOI' value='10.17487/RFC1991'/>
</reference>



<reference anchor='RFC2440'>
<front>
<title>OpenPGP Message Format</title>
<author fullname='J. Callas' initials='J.' surname='Callas'><organization/></author>
<author fullname='L. Donnerhacke' initials='L.' surname='Donnerhacke'><organization/></author>
<author fullname='H. Finney' initials='H.' surname='Finney'><organization/></author>
<author fullname='R. Thayer' initials='R.' surname='Thayer'><organization/></author>
<date month='November' year='1998'/>
<abstract><t>This document is maintained in order to publish all necessary information needed to develop interoperable applications based on the OpenPGP format.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2440'/>
<seriesInfo name='DOI' value='10.17487/RFC2440'/>
</reference>



<reference anchor='RFC4880'>
<front>
<title>OpenPGP Message Format</title>
<author fullname='J. Callas' initials='J.' surname='Callas'><organization/></author>
<author fullname='L. Donnerhacke' initials='L.' surname='Donnerhacke'><organization/></author>
<author fullname='H. Finney' initials='H.' surname='Finney'><organization/></author>
<author fullname='D. Shaw' initials='D.' surname='Shaw'><organization/></author>
<author fullname='R. Thayer' initials='R.' surname='Thayer'><organization/></author>
<date month='November' year='2007'/>
<abstract><t>This document is maintained in order to publish all necessary information needed to develop interoperable applications based on the OpenPGP format.  It is not a step-by-step cookbook for writing an application.  It describes only the format and methods needed to read, check, generate, and write conforming packets crossing any network.  It does not deal with storage and implementation questions. It does, however, discuss implementation issues necessary to avoid security flaws.</t><t>OpenPGP software uses a combination of strong public-key and symmetric cryptography to provide security services for electronic communications and data storage.  These services include confidentiality, key management, authentication, and digital signatures.  This document specifies the message formats used in OpenPGP.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4880'/>
<seriesInfo name='DOI' value='10.17487/RFC4880'/>
</reference>



<reference anchor='RFC5639'>
<front>
<title>Elliptic Curve Cryptography (ECC) Brainpool Standard Curves and Curve Generation</title>
<author fullname='M. Lochter' initials='M.' surname='Lochter'><organization/></author>
<author fullname='J. Merkle' initials='J.' surname='Merkle'><organization/></author>
<date month='March' year='2010'/>
<abstract><t>This memo proposes several elliptic curve domain parameters over finite prime fields for use in cryptographic applications.  The domain parameters are consistent with the relevant international standards, and can be used in X.509 certificates and certificate revocation lists (CRLs), for Internet Key Exchange (IKE), Transport Layer Security (TLS), XML signatures, and all applications or protocols based on the cryptographic message syntax (CMS).  This document is  not an Internet Standards Track specification; it is published for  informational purposes.</t></abstract>
</front>
<seriesInfo name='RFC' value='5639'/>
<seriesInfo name='DOI' value='10.17487/RFC5639'/>
</reference>



<reference anchor='RFC5869'>
<front>
<title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
<author fullname='H. Krawczyk' initials='H.' surname='Krawczyk'><organization/></author>
<author fullname='P. Eronen' initials='P.' surname='Eronen'><organization/></author>
<date month='May' year='2010'/>
<abstract><t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t></abstract>
</front>
<seriesInfo name='RFC' value='5869'/>
<seriesInfo name='DOI' value='10.17487/RFC5869'/>
</reference>



<reference anchor='RFC6090'>
<front>
<title>Fundamental Elliptic Curve Cryptography Algorithms</title>
<author fullname='D. McGrew' initials='D.' surname='McGrew'><organization/></author>
<author fullname='K. Igoe' initials='K.' surname='Igoe'><organization/></author>
<author fullname='M. Salter' initials='M.' surname='Salter'><organization/></author>
<date month='February' year='2011'/>
<abstract><t>This note describes the fundamental algorithms of Elliptic Curve Cryptography (ECC) as they were defined in some seminal references from 1994 and earlier.  These descriptions may be useful for implementing the fundamental algorithms without using any of the specialized methods that were developed in following years.  Only elliptic curves defined over fields of characteristic greater than three are in scope; these curves are those used in Suite B. This document is not an Internet Standards Track specification; it is published for informational purposes.</t></abstract>
</front>
<seriesInfo name='RFC' value='6090'/>
<seriesInfo name='DOI' value='10.17487/RFC6090'/>
</reference>


<reference anchor="SEC1" target="https://www.secg.org/sec1-v2.pdf">
  <front>
    <title>Standards for Efficient Cryptography 1 (SEC 1)</title>
    <author >
      <organization>Standards for Efficient Cryptography Group</organization>
    </author>
    <date year="2009" month="May"/>
  </front>
</reference>
<reference anchor="SHA1CD" target="https://github.com/cr-marcstevens/sha1collisiondetection">
  <front>
    <title>sha1collisiondetection</title>
    <author initials="M." surname="Stevens" fullname="Marc Stevens">
      <organization></organization>
    </author>
    <author initials="D." surname="Shumow" fullname="Dan Shumow">
      <organization></organization>
    </author>
    <date year="2017"/>
  </front>
</reference>
<reference anchor="SHAMBLES" target="https://sha-mbles.github.io/">
  <front>
    <title>Sha-1 is a shambles: First chosen-prefix collision on sha-1 and application to the PGP web of trust</title>
    <author initials="G." surname="Leurent" fullname="Gaëtan Leurent">
      <organization></organization>
    </author>
    <author initials="T." surname="Peyrin" fullname="Thomas Peyrin">
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="SP800-57" target="https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-57pt1r5.pdf">
  <front>
    <title>Recommendation on Key Management: Part 1 - General</title>
    <author >
      <organization>NIST</organization>
    </author>
    <date year="2020" month="May"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-57 Part 1 Rev. 5"/>
  <seriesInfo name="DOI" value="10.6028/NIST.SP.800-57pt1r5"/>
</reference>
<reference anchor="SP800-131A" target="https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar2.pdf">
  <front>
    <title>Transitioning the Use of Cryptographic Algorithms and Key Lengths</title>
    <author initials="E." surname="Barker">
      <organization></organization>
    </author>
    <author initials="A." surname="Roginsky">
      <organization></organization>
    </author>
    <date year="2019" month="March"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-131A Revision 2"/>
</reference>
<reference anchor="STEVENS2013" target="https://eprint.iacr.org/2013/358">
  <front>
    <title>Counter-cryptanalysis</title>
    <author initials="M." surname="Stevens" fullname="Marc Stevens">
      <organization></organization>
    </author>
    <date year="2013" month="June"/>
  </front>
</reference>
<reference anchor="UNIFIED-DIFF" target="https://www.gnu.org/software/diffutils/manual/html_node/Detailed-Unified.html">
  <front>
    <title>Detailed Description of Unified Format</title>
    <author >
      <organization>Free Software Foundation</organization>
    </author>
    <date year="2021" month="January" day="02"/>
  </front>
</reference>




<reference anchor='RFC2978'>
<front>
<title>IANA Charset Registration Procedures</title>
<author fullname='N. Freed' initials='N.' surname='Freed'><organization/></author>
<author fullname='J. Postel' initials='J.' surname='Postel'><organization/></author>
<date month='October' year='2000'/>
<abstract><t>Multipurpose Internet Mail Extensions (MIME) and various other Internet protocols are capable of using many different charsets.  This in turn means that the ability to label different charsets is essential.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='19'/>
<seriesInfo name='RFC' value='2978'/>
<seriesInfo name='DOI' value='10.17487/RFC2978'/>
</reference>

<reference anchor='FIPS186-5'>
  <front>
    <title>Digital Signature Standard (DSS): Elliptic Curve Domain Parameters</title>
    <author fullname='Andrew Regenscheid' initials='A.' surname='Regenscheid'>
      <organization/>
    </author>
    <date month='October' year='2019'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology (NIST)' value='posted-content'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.186-5-draft'/>
</reference>

<reference anchor='CHECKOWAY'>
  <front>
    <title>A Systematic Analysis of the Juniper Dual EC Incident</title>
    <author fullname='Stephen Checkoway' initials='S.' surname='Checkoway'>
      <organization>University of Illinois at Chicago, Chicago, IL, USA</organization>
    </author>
    <author fullname='Jacob Maskiewicz' initials='J.' surname='Maskiewicz'>
      <organization>UC San Diego, La Jolla, CA, USA</organization>
    </author>
    <author fullname='Christina Garman' initials='C.' surname='Garman'>
      <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
    </author>
    <author fullname='Joshua Fried' initials='J.' surname='Fried'>
      <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
    </author>
    <author fullname='Shaanan Cohney' initials='S.' surname='Cohney'>
      <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
    </author>
    <author fullname='Matthew Green' initials='M.' surname='Green'>
      <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
    </author>
    <author fullname='Nadia Heninger' initials='N.' surname='Heninger'>
      <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
    </author>
    <author fullname='Ralf-Philipp Weinmann' initials='R.' surname='Weinmann'>
      <organization>Comsecuris, Duisburg, Germany</organization>
    </author>
    <author fullname='Eric Rescorla' initials='E.' surname='Rescorla'>
      <organization>UC San Diego, La Jolla, CA, USA</organization>
    </author>
    <author fullname='Hovav Shacham' initials='H.' surname='Shacham'>
      <organization>UC San Diego, La Jolla, CA, USA</organization>
    </author>
    <date month='October' year='2016'/>
  </front>
  <seriesInfo name='Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications' value='Security'/>
  <seriesInfo name='DOI' value='10.1145/2976749.2978395'/>
</reference>



<reference anchor='RFC6637'>
<front>
<title>Elliptic Curve Cryptography (ECC) in OpenPGP</title>
<author fullname='A. Jivsov' initials='A.' surname='Jivsov'><organization/></author>
<date month='June' year='2012'/>
<abstract><t>This document defines an Elliptic Curve Cryptography extension to the OpenPGP public key format and specifies three Elliptic Curves that enjoy broad support by other standards, including standards published by the US National Institute of Standards and Technology.  The document specifies the conventions for interoperability between compliant OpenPGP implementations that make use of this extension and these Elliptic Curves.   [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6637'/>
<seriesInfo name='DOI' value='10.17487/RFC6637'/>
</reference>




    </references>


<section anchor="test-vectors"><name>Test vectors</name>

<t>To help implementing this specification a non-normative example for the EdDSA algorithm is given.</t>

<section anchor="sample-v4-ed25519legacy-key"><name>Sample v4 Ed25519Legacy key</name>

<t>The secret key used for this example is:</t>

<t>D: 1a8b1ff05ded48e18bf50166c664ab023ea70003d78d9e41f5758a91d850f8d2</t>

<t>Note that this is the raw secret key used as input to the EdDSA signing operation.
The key was created on 2014-08-19 14:28:27 and thus the fingerprint of the OpenPGP key is:</t>

<figure><artwork><![CDATA[
   C959 BDBA FA32 A2F8 9A15  3B67 8CFD E121 9796 5A9A
]]></artwork></figure>

<t>The algorithm-specific input parameters without the MPI length headers are:</t>

<t>oid: 2b06010401da470f01</t>

<t>q: 403f098994bdd916ed4053197934e4a87c80733a1280d62f8010992e43ee3b2406</t>

<t>The entire public key packet is thus:</t>

<figure><artwork><![CDATA[
   98 33 04 53 f3 5f 0b 16  09 2b 06 01 04 01 da 47
   0f 01 01 07 40 3f 09 89  94 bd d9 16 ed 40 53 19
   79 34 e4 a8 7c 80 73 3a  12 80 d6 2f 80 10 99 2e
   43 ee 3b 24 06
]]></artwork></figure>

<t>The same packet, represented in ASCII-armored form is:</t>

<figure><sourcecode type="application/pgp-keys" name="v4-ed25519-pubkey-packet.key"><![CDATA[
-----BEGIN PGP PUBLIC KEY BLOCK-----

xjMEU/NfCxYJKwYBBAHaRw8BAQdAPwmJlL3ZFu1AUxl5NOSofIBzOhKA1i+AEJku
Q+47JAY=
-----END PGP PUBLIC KEY BLOCK-----
]]></sourcecode></figure>

</section>
<section anchor="sample-v4-ed25519legacy-signature"><name>Sample v4 Ed25519Legacy signature</name>

<t>The signature is created using the sample key over the input data "OpenPGP" on 2015-09-16 12:24:53 UTC and thus the input to the hash function is:</t>

<t>m: 4f70656e504750040016080006050255f95f9504ff0000000c</t>

<t>Using the SHA2-256 hash algorithm yields the digest:</t>

<t>d: f6220a3f757814f4c2176ffbb68b00249cd4ccdc059c4b34ad871f30b1740280</t>

<t>Which is fed into the EdDSA signature function and yields this signature:</t>

<t>r: 56f90cca98e2102637bd983fdb16c131dfd27ed82bf4dde5606e0d756aed3366</t>

<t>s: d09c4fa11527f038e0f57f2201d82f2ea2c9033265fa6ceb489e854bae61b404</t>

<t>The entire signature packet is thus:</t>

<figure><artwork><![CDATA[
   88 5e 04 00 16 08 00 06  05 02 55 f9 5f 95 00 0a
   09 10 8c fd e1 21 97 96  5a 9a f6 22 00 ff 56 f9
   0c ca 98 e2 10 26 37 bd  98 3f db 16 c1 31 df d2
   7e d8 2b f4 dd e5 60 6e  0d 75 6a ed 33 66 01 00
   d0 9c 4f a1 15 27 f0 38  e0 f5 7f 22 01 d8 2f 2e
   a2 c9 03 32 65 fa 6c eb  48 9e 85 4b ae 61 b4 04
]]></artwork></figure>

<t>The same packet represented in ASCII-armored form is:</t>

<figure><sourcecode type="application/pgp-signature" name="v4-ed25519-signature-over-OpenPGP.sig"><![CDATA[
-----BEGIN PGP SIGNATURE-----

iF4EABYIAAYFAlX5X5UACgkQjP3hIZeWWpr2IgD/VvkMypjiECY3vZg/2xbBMd/S
ftgr9N3lYG4NdWrtM2YBANCcT6EVJ/A44PV/IgHYLy6iyQMyZfps60iehUuuYbQE
-----END PGP SIGNATURE-----
]]></sourcecode></figure>

</section>
<section anchor="v6-cert"><name>Sample v6 Certificate (Transferable Public Key)</name>

<t>Here is a Transferable Public Key consisting of:</t>

<t><list style="symbols">
  <t>A v6 Ed25519 Public-Key packet</t>
  <t>A v6 direct key self-signature</t>
  <t>A v6 X25519 Public-Subkey packet</t>
  <t>A v6 subkey binding signature</t>
</list></t>

<t>The primary key has the fingerprint <spanx style="verb">CB186C4F0609A697E4D52DFA6C722B0C1F1E27C18A56708F6525EC27BAD9ACC9</spanx>.</t>

<t>The subkey has the fingerprint <spanx style="verb">12C83F1E706F6308FE151A417743A1F033790E93E9978488D1DB378DA9930885</spanx>.</t>

<figure><sourcecode type="application/pgp-keys" name="v6-minimal-cert.key"><![CDATA[
-----BEGIN PGP PUBLIC KEY BLOCK-----

xioGY4d/4xsAAAAg+U2nu0jWCmHlZ3BqZYfQMxmZu52JGggkLq2EVD34laPCsQYf
GwoAAABCBYJjh3/jAwsJBwUVCg4IDAIWAAKbAwIeCSIhBssYbE8GCaaX5NUt+mxy
KwwfHifBilZwj2Ul7Ce62azJBScJAgcCAAAAAK0oIBA+LX0ifsDm185Ecds2v8lw
gyU2kCcUmKfvBXbAf6rhRYWzuQOwEn7E/aLwIwRaLsdry0+VcallHhSu4RN6HWaE
QsiPlR4zxP/TP7mhfVEe7XWPxtnMUMtf15OyA51YBM4qBmOHf+MZAAAAIIaTJINn
+eUBXbki+PSAld2nhJh/LVmFsS+60WyvXkQ1wpsGGBsKAAAALAWCY4d/4wKbDCIh
BssYbE8GCaaX5NUt+mxyKwwfHifBilZwj2Ul7Ce62azJAAAAAAQBIKbpGG2dWTX8
j+VjFM21J0hqWlEg+bdiojWnKfA5AQpWUWtnNwDEM0g12vYxoWM8Y81W+bHBw805
I8kWVkXU6vFOi+HWvv/ira7ofJu16NnoUkhclkUrk0mXubZvyl4GBg==
-----END PGP PUBLIC KEY BLOCK-----
]]></sourcecode></figure>

<t>The corresponding Transferable Secret Key can be found in <xref target="v6-key"/>.</t>

<section anchor="sig-hashed-data-example"><name>Hashed Data Stream for Signature Verification</name>

<t>The direct key self signature in the certificate in <xref target="v6-cert"/> is made over the following sequence of data:</t>

<figure><artwork><![CDATA[
0x0000  10 3e 2d 7d 22 7e c0 e6
0x0008  d7 ce 44 71 db 36 bf c9
0x0010  70 83 25 36 90 27 14 98
0x0018  a7 ef 05 76 c0 7f aa e1
0x0020  9b 00 00 00 2a 06 63 87
0x0028  7f e3 1b 00 00 00 20 f9
0x0030  4d a7 bb 48 d6 0a 61 e5
0x0038  67 70 6a 65 87 d0 33 19
0x0040  99 bb 9d 89 1a 08 24 2e
0x0048  ad 84 54 3d f8 95 a3 06
0x0050  1f 1b 0a 00 00 00 42 05
0x0058  82 63 87 7f e3 03 0b 09
0x0060  07 05 15 0a 0e 08 0c 02
0x0068  16 00 02 9b 03 02 1e 09
0x0070  22 21 06 cb 18 6c 4f 06
0x0078  09 a6 97 e4 d5 2d fa 6c
0x0080  72 2b 0c 1f 1e 27 c1 8a
0x0088  56 70 8f 65 25 ec 27 ba
0x0090  d9 ac c9 05 27 09 02 07
0x0098  02 06 ff 00 00 00 4a
]]></artwork></figure>

<t>The same data, broken out by octet and semantics, is:</t>

<figure><artwork><![CDATA[
0x0000  10 3e 2d 7d 22 7e c0 e6  salt
0x0008  d7 ce 44 71 db 36 bf c9
0x0010  70 83 25 36 90 27 14 98
0x0018  a7 ef 05 76 c0 7f aa e1
        [ pubkey begins ]
0x0020  9b                       v6 pubkey
0x0021     00 00 00 2a           pubkey length
0x0025                 06        pubkey version
0x0026                    63 87  creation time
0x0028  7f e3                      (2022-11-30T16:08:03Z)
0x002a        1b                 key algo: Ed25519
0x002b           00 00 00 20     key length
0x002f                       f9  Ed25519 public key
0x0030  4d a7 bb 48 d6 0a 61 e5
0x0038  67 70 6a 65 87 d0 33 19
0x0040  99 bb 9d 89 1a 08 24 2e
0x0048  ad 84 54 3d f8 95 a3
         [ trailer begins ]
0x004f                       06  sig version
0x0050  1f                       sig type: direct key signature
0x0051     1b                    sig algo: Ed25519
0x0052        0a                 hash ago: SHA2-512
0x0053           00 00 00 42     hashed subpackets length
0x0057                       05  subpkt length
0x0058  82                       critical subpkt: Sig Creation Time
0x0059     63 87 7f e3           Signature Creation Time
0x005d                 03        subpkt length
0x005e                    0b     subpkt type: Pref. v1 SEIPD Ciphers
0x005f                       09  Ciphers: [AES256 AES128]
0x0060  07
0x0061     05                    subpkt length
0x0062        15                 subpkt type: Pref. Hash Algorithms
0x0063           0a 0e           Hashes: [SHA2-512 SHA3-512
0x0065                 08 0c              SHA2-256 SHA3-256]
0x0067                       02  subpkt length
0x0068  16                       subpkt type: Pref. Compression
0x0069     00                    Compression: [none]
0x006a        02                 subpkt length
0x006b           9b              critical subpkt: Key Flags
0x006c              03           Key Flags: {certify, sign}
0x006d                 02        subpkt length
0x006e                    1e     subpkt type: Features
0x006f                       09  Features: {SEIPDv1, SEIPDv2}
0x0070  22                       subpkt length
0x0071     21                    subpkt type: Issuer Fingerprint
0x0072        06                 Fingerprint version 6
0x0073           cb 18 6c 4f 06  Issuer Fingerprint
0x0078  09 a6 97 e4 d5 2d fa 6c
0x0080  72 2b 0c 1f 1e 27 c1 8a
0x0088  56 70 8f 65 25 ec 27 ba
0x0090  d9 ac c9
0x0093           05              subpkt length
0x0094              27           subpkt type: Pref. AEAD Ciphersuites
0x0095                 09 02 07  Ciphersuites:
0x0098  02                         [ AES256-OCB, AES128-OCB ]
0x0099     06                    sig version
0x009a        ff                 sentinel octet
0x009b           00 00 00 4a     trailer length
]]></artwork></figure>

<t>The subkey binding signature in <xref target="v6-cert"/> is made over the following sequence of data:</t>

<figure><artwork><![CDATA[
0x0000  a6 e9 18 6d 9d 59 35 fc
0x0008  8f e5 63 14 cd b5 27 48
0x0010  6a 5a 51 20 f9 b7 62 a2
0x0018  35 a7 29 f0 39 01 0a 56
0x0020  9b 00 00 00 2a 06 63 87
0x0028  7f e3 1b 00 00 00 20 f9
0x0030  4d a7 bb 48 d6 0a 61 e5
0x0038  67 70 6a 65 87 d0 33 19
0x0040  99 bb 9d 89 1a 08 24 2e
0x0048  ad 84 54 3d f8 95 a3 9b
0x0050  00 00 00 2a 06 63 87 7f
0x0058  e3 19 00 00 00 20 86 93
0x0060  24 83 67 f9 e5 01 5d b9
0x0068  22 f8 f4 80 95 dd a7 84
0x0070  98 7f 2d 59 85 b1 2f ba
0x0078  d1 6c af 5e 44 35 06 18
0x0080  1b 0a 00 00 00 2c 05 82
0x0088  63 87 7f e3 02 9b 0c 22
0x0090  21 06 cb 18 6c 4f 06 09
0x0098  a6 97 e4 d5 2d fa 6c 72
0x00a0  2b 0c 1f 1e 27 c1 8a 56
0x00a8  70 8f 65 25 ec 27 ba d9
0x00b0  ac c9 06 ff 00 00 00 34
]]></artwork></figure>

<t>The same data, broken out by octet and semantics, is:</t>

<figure><artwork><![CDATA[
0x0000  a6 e9 18 6d 9d 59 35 fc  salt
0x0008  8f e5 63 14 cd b5 27 48
0x0010  6a 5a 51 20 f9 b7 62 a2
0x0018  35 a7 29 f0 39 01 0a 56
      [ primary pubkey begins ]
0x0020  9b                       v6 pubkey
0x0021     00 00 00 2a           pubkey length
0x0025                 06        pubkey version
0x0026                    63 87  creation time
0x0028  7f e3                      (2022-11-30T16:08:03Z)
0x002a        1b                 key algo: Ed25519
0x002b           00 00 00 20     key length
0x002f                       f9  Ed25519 public key
0x0030  4d a7 bb 48 d6 0a 61 e5
0x0038  67 70 6a 65 87 d0 33 19
0x0040  99 bb 9d 89 1a 08 24 2e
0x0048  ad 84 54 3d f8 95 a3
      [ subkey pubkey begins ]
0x004f                       9b  v6 key
0x0050  00 00 00 2a              pubkey length
0x0054              06           pubkey version
0x0055                 63 87 7f  creation time (2022-11-30T16:08:03Z)
0x0058  e3
0x0059     19                    key algo: X25519
0x005a        00 00 00 20        key length
0x005e                    86 93  X25519 public key
0x0060  24 83 67 f9 e5 01 5d b9
0x0068  22 f8 f4 80 95 dd a7 84
0x0070  98 7f 2d 59 85 b1 2f ba
0x0078  d1 6c af 5e 44 35
       [ trailer begins ]
0x007e                    06     sig version
0x007f                       18  sig type: Subkey Binding sig
0x0080  1b                       sig algo Ed25519
0x0081     0a                    hash algo: SHA2-512
0x0082        00 00 00 2c        hashed subpackets length
0x0086                    05     subpkt length
0x0087                       82  critical subpkt: Sig Creation Time
0x0088  63 87 7f e3              Signature Creation Time
0x008c              02           subpkt length
0x008d                 9b        critical subpkt: Key Flags
0x008e                    0c     Key Flags: {EncComms, EncStorage}
0x008f                       22  subpkt length
0x0090  21                       subpkt type: Issuer Fingerprint
0x0091     06                    Fingerprint version 6
0x0092        cb 18 6c 4f 06 09  Fingerprint
0x0098  a6 97 e4 d5 2d fa 6c 72
0x00a0  2b 0c 1f 1e 27 c1 8a 56
0x00a8  70 8f 65 25 ec 27 ba d9
0x00b0  ac c9
0x00b2        06                 sig version
0x00b3           ff              sentinel octet
0x00b4              00 00 00 34  trailer length
]]></artwork></figure>

</section>
</section>
<section anchor="v6-key"><name>Sample v6 Secret Key (Transferable Secret Key)</name>

<t>Here is a Transferable Secret Key consisting of:</t>

<t><list style="symbols">
  <t>A v6 Ed25519 Secret-Key packet</t>
  <t>A v6 direct key self-signature</t>
  <t>A v6 X25519 Secret-Subkey packet</t>
  <t>A v6 subkey binding signature</t>
</list></t>

<figure><sourcecode type="application/pgp-keys" name="v6-minimal-secret.key"><![CDATA[
-----BEGIN PGP PRIVATE KEY BLOCK-----

xUsGY4d/4xsAAAAg+U2nu0jWCmHlZ3BqZYfQMxmZu52JGggkLq2EVD34laMAGXKB
exK+cH6NX1hs5hNhIB00TrJmosgv3mg1ditlsLfCsQYfGwoAAABCBYJjh3/jAwsJ
BwUVCg4IDAIWAAKbAwIeCSIhBssYbE8GCaaX5NUt+mxyKwwfHifBilZwj2Ul7Ce6
2azJBScJAgcCAAAAAK0oIBA+LX0ifsDm185Ecds2v8lwgyU2kCcUmKfvBXbAf6rh
RYWzuQOwEn7E/aLwIwRaLsdry0+VcallHhSu4RN6HWaEQsiPlR4zxP/TP7mhfVEe
7XWPxtnMUMtf15OyA51YBMdLBmOHf+MZAAAAIIaTJINn+eUBXbki+PSAld2nhJh/
LVmFsS+60WyvXkQ1AE1gCk95TUR3XFeibg/u/tVY6a//1q0NWC1X+yui3O24wpsG
GBsKAAAALAWCY4d/4wKbDCIhBssYbE8GCaaX5NUt+mxyKwwfHifBilZwj2Ul7Ce6
2azJAAAAAAQBIKbpGG2dWTX8j+VjFM21J0hqWlEg+bdiojWnKfA5AQpWUWtnNwDE
M0g12vYxoWM8Y81W+bHBw805I8kWVkXU6vFOi+HWvv/ira7ofJu16NnoUkhclkUr
k0mXubZvyl4GBg==
-----END PGP PRIVATE KEY BLOCK-----
]]></sourcecode></figure>

<t>The corresponding Transferable Public Key can be found in <xref target="v6-cert"/>.</t>

</section>
<section anchor="v6-locked-key"><name>Sample locked v6 Secret Key (Transferable Secret Key)</name>

<t>Here is the same secret key as in <xref target="v6-key"/>, but the secret key material is locked with a passphrase using AEAD and Argon2.</t>

<t>The passphrase is the ASCII string:</t>

<figure><artwork><![CDATA[
correct horse battery staple
]]></artwork></figure>

<figure><sourcecode type="application/pgp-keys" name="v6-minimal-secret-locked.key"><![CDATA[
-----BEGIN PGP PRIVATE KEY BLOCK-----

xYIGY4d/4xsAAAAg+U2nu0jWCmHlZ3BqZYfQMxmZu52JGggkLq2EVD34laP9JgkC
FARdb9ccngltHraRe25uHuyuAQQVtKipJ0+r5jL4dacGWSAheCWPpITYiyfyIOPS
3gIDyg8f7strd1OB4+LZsUhcIjOMpVHgmiY/IutJkulneoBYwrEGHxsKAAAAQgWC
Y4d/4wMLCQcFFQoOCAwCFgACmwMCHgkiIQbLGGxPBgmml+TVLfpscisMHx4nwYpW
cI9lJewnutmsyQUnCQIHAgAAAACtKCAQPi19In7A5tfORHHbNr/JcIMlNpAnFJin
7wV2wH+q4UWFs7kDsBJ+xP2i8CMEWi7Ha8tPlXGpZR4UruETeh1mhELIj5UeM8T/
0z+5oX1RHu11j8bZzFDLX9eTsgOdWATHggZjh3/jGQAAACCGkySDZ/nlAV25Ivj0
gJXdp4SYfy1ZhbEvutFsr15ENf0mCQIUBA5hhGgp2oaavg6mFUXcFMwBBBUuE8qf
9Ock+xwusd+GAglBr5LVyr/lup3xxQvHXFSjjA2haXfoN6xUGRdDEHI6+uevKjVR
v5oAxgu7eJpaXNjCmwYYGwoAAAAsBYJjh3/jApsMIiEGyxhsTwYJppfk1S36bHIr
DB8eJ8GKVnCPZSXsJ7rZrMkAAAAABAEgpukYbZ1ZNfyP5WMUzbUnSGpaUSD5t2Ki
Nacp8DkBClZRa2c3AMQzSDXa9jGhYzxjzVb5scHDzTkjyRZWRdTq8U6L4da+/+Kt
ruh8m7Xo2ehSSFyWRSuTSZe5tm/KXgYG
-----END PGP PRIVATE KEY BLOCK-----
]]></sourcecode></figure>

<section anchor="intermediate-data-for-locked-primary-key"><name>Intermediate Data for Locked Primary Key</name>

<t>The S2K-derived material for the primary key is:</t>

<figure><artwork><![CDATA[
832bd2662a5c2b251ee3fc82aec349a766ca539015880133002e5a21960b3bcf
]]></artwork></figure>

<t>After HKDF, the symmetric key used for AEAD encryption of the primary key is:</t>

<figure><artwork><![CDATA[
9e37cb26787f37e18db172795c4c297550d39ac82511d9af4c8706db6a77fd51
]]></artwork></figure>

<t>The additional data for AEAD for the primary key is:</t>

<figure><artwork><![CDATA[
c50663877fe31b00000020f94da7bb48d60a61e567706a6587d0331999bb9d89
1a08242ead84543df895a3
]]></artwork></figure>

</section>
<section anchor="intermediate-data-for-locked-subkey"><name>Intermediate Data for Locked Subkey</name>

<t>The S2K-derived key material for the subkey is:</t>

<figure><artwork><![CDATA[
f74a6ce873a089ef13a3da9ac059777bb22340d15eaa6c9dc0f8ef09035c67cd
]]></artwork></figure>

<t>After HKDF, the symmetric key used for AEAD encryption of the subkey is:</t>

<figure><artwork><![CDATA[
3c60cb63285f62f4c3de49835786f011cf6f4c069f61232cd7013ff5fd31e603
]]></artwork></figure>

<t>The additional data for AEAD for the subkey is:</t>

<figure><artwork><![CDATA[
c70663877fe319000000208693248367f9e5015db922f8f48095dda784987f2d
5985b12fbad16caf5e4435
]]></artwork></figure>

</section>
</section>
<section anchor="sample-csf-message"><name>Sample Cleartext Signed Message</name>

<t>Here is a signed message that uses the cleartext signature framework (<xref target="cleartext-signature"/>).
It can be verified with the certificate from (<xref target="v6-cert"/>).</t>

<t>Note that this message makes use of dash-escaping (<xref target="dash-escaping"/>) due to its contents.</t>

<figure><sourcecode type="text/plain" name="cleartext-signed-message.txt"><![CDATA[
-----BEGIN PGP SIGNED MESSAGE-----

What we need from the grocery store:

- - tofu
- - vegetables
- - noodles

-----BEGIN PGP SIGNATURE-----

wpgGARsKAAAAKQWCY5ijYyIhBssYbE8GCaaX5NUt+mxyKwwfHifBilZwj2Ul7Ce6
2azJAAAAAGk2IHZJX1AhiJD39eLuPBgiUU9wUA9VHYblySHkBONKU/usJ9BvuAqo
/FvLFuGWMbKAdA+epq7V4HOtAPlBWmU8QOd6aud+aSunHQaaEJ+iTFjP2OMW0KBr
NK2ay45cX1IVAQ==
-----END PGP SIGNATURE-----
]]></sourcecode></figure>

<t>The signature packet here is:</t>

<figure><artwork><![CDATA[
0x0000  c2                       packet tag: Signature
0x0001     98                    packet length
0x0002        06                 signature version 6
0x0003           01              signature type: canonical text
0x0004              1b           pubkey algorithm: Ed25519
0x0005                 0a        hash algorithm used: SHA2-512
0x0006                    00 00  hashed subpackets length: 41
0x0008  00 29
0x000a        05                 subpkt length
0x000b           82              critical subpkt: Sig Creation Time
0x000c              63 98 a3 63   (2022-12-13T16:08:03Z)
0x0010  22                       subpkt length
0x0011     21                    subpkt type: issuer fingerprint
0x0012        06                 key version
0x0013           cb 18 6c 4f 06  v6 fingerprint
0x001a  09 a6 97 e4 d5 2d fa 6c
0x0020  72 2b 0c 1f 1e 27 c1 8a
0x0028  56 70 8f 65 25 ec 27 ba
0x0030  d9 ac c9
0x0033           00 00 00 00     unhashed subpackets length: 0
0x0037                       69  left 16 bits of signed hash
0x0038  36
0x0039     20                    salt length
0x003a        76 49 5f 50 21 88  salt
0x0040  90 f7 f5 e2 ee 3c 18 22
0x0048  51 4f 70 50 0f 55 1d 86
0x0050  e5 c9 21 e4 04 e3 4a 53
0x0058  fb ac
0x005a        27 d0 6f b8 0a a8  Ed25519 signature
0x0060  fc 5b cb 16 e1 96 31 b2
0x0068  80 74 0f 9e a6 ae d5 e0
0x0070  73 ad 00 f9 41 5a 65 3c
0x0078  40 e7 7a 6a e7 7e 69 2b
0x0080  a7 1d 06 9a 10 9f a2 4c
0x0088  58 cf d8 e3 16 d0 a0 6b
0x0090  34 ad 9a cb 8e 5c 5f 52
0x0098  15 01
]]></artwork></figure>

<t>The signature is made over the following data:</t>

<figure><artwork><![CDATA[
0x0000  76 49 5f 50 21 88 90 f7
0x0008  f5 e2 ee 3c 18 22 51 4f
0x0010  70 50 0f 55 1d 86 e5 c9
0x0018  21 e4 04 e3 4a 53 fb ac
0x0020  57 68 61 74 20 77 65 20
0x0028  6e 65 65 64 20 66 72 6f
0x0030  6d 20 74 68 65 20 67 72
0x0038  6f 63 65 72 79 20 73 74
0x0040  6f 72 65 3a 0d 0a 0d 0a
0x0048  2d 20 74 6f 66 75 0d 0a
0x0050  2d 20 76 65 67 65 74 61
0x0058  62 6c 65 73 0d 0a 2d 20
0x0060  6e 6f 6f 64 6c 65 73 0d
0x0068  0a 06 01 1b 0a 00 00 00
0x0070  29 05 82 63 98 a3 63 22
0x0078  21 06 cb 18 6c 4f 06 09
0x0080  a6 97 e4 d5 2d fa 6c 72
0x0088  2b 0c 1f 1e 27 c1 8a 56
0x0090  70 8f 65 25 ec 27 ba d9
0x0098  ac c9 06 ff 00 00 00 31
]]></artwork></figure>

<t>The same data, broken out by octet and semantics, is:</t>

<figure><artwork><![CDATA[
0x0000  76 49 5f 50 21 88 90 f7  salt
0x0008  f5 e2 ee 3c 18 22 51 4f
0x0010  70 50 0f 55 1d 86 e5 c9
0x0018  21 e4 04 e3 4a 53 fb ac
      [ message begins ]
0x0020  57 68 61 74 20 77 65 20  canonicalized message
0x0028  6e 65 65 64 20 66 72 6f
0x0030  6d 20 74 68 65 20 67 72
0x0038  6f 63 65 72 79 20 73 74
0x0040  6f 72 65 3a 0d 0a 0d 0a
0x0048  2d 20 74 6f 66 75 0d 0a
0x0050  2d 20 76 65 67 65 74 61
0x0058  62 6c 65 73 0d 0a 2d 20
0x0060  6e 6f 6f 64 6c 65 73 0d
0x0068  0a
      [ trailer begins ]
0x0069     06                    sig version
0x006a        01                 sigtype: canonical text
0x006b           1b              pubkey algorithm: Ed25519
0x006c              0a           hash algorithm: SHA2-512
0x006d                 00 00 00  hashed subpackets length
0x0070  29
0x0071     05                    subpacket length
0x0072        82                 critical subpkt: Sig Creation Time
0x0073           63 98 a3 63       (2022-12-13T16:08:03Z)
0x0077                       22  subpkt length
0x0078  21                       subpkt type: issuer fingerprint
0x0079     06                    key version
0x007a        cb 18 6c 4f 06 09  v6 fingerprint
0x0080  a6 97 e4 d5 2d fa 6c 72
0x0088  2b 0c 1f 1e 27 c1 8a 56
0x0090  70 8f 65 25 ec 27 ba d9
0x0098  ac c9
0x009a        06                 sig version
0x009b           ff              sentinel octet
0x009c              00 00 00 31  trailer length
]]></artwork></figure>

<t>The calculated SHA2-512 hash digest over this data is:</t>

<figure><artwork><![CDATA[
69365bf44a97af1f0844f1f6ab83fdf6b36f26692efaa621a8aac91c4e29ea07
e894cabc6e2f20eedfce6c03b89141a2cc7cbe245e6e7a5654addbec5000b89b
]]></artwork></figure>

</section>
<section anchor="sample-inline-signed-message"><name>Sample inline-signed message</name>

<t>This is the same message and signature as in <xref target="sample-csf-message"/>, but as inline-signed message.
The hashed data is exactly the same, and all intermediate values and annotated hex dumps are also applicable.</t>

<figure><sourcecode type="text/plain" name="inline-signed-message.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

xEYGAQobIHZJX1AhiJD39eLuPBgiUU9wUA9VHYblySHkBONKU/usyxhsTwYJppfk
1S36bHIrDB8eJ8GKVnCPZSXsJ7rZrMkBy0p1AAAAAABXaGF0IHdlIG5lZWQgZnJv
bSB0aGUgZ3JvY2VyeSBzdG9yZToKCi0gdG9mdQotIHZlZ2V0YWJsZXMKLSBub29k
bGVzCsKYBgEbCgAAACkFgmOYo2MiIQbLGGxPBgmml+TVLfpscisMHx4nwYpWcI9l
JewnutmsyQAAAABpNiB2SV9QIYiQ9/Xi7jwYIlFPcFAPVR2G5ckh5ATjSlP7rCfQ
b7gKqPxbyxbhljGygHQPnqau1eBzrQD5QVplPEDnemrnfmkrpx0GmhCfokxYz9jj
FtCgazStmsuOXF9SFQE=
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
<section anchor="sample-x25519-aead-ocb-encryption-and-decryption"><name>Sample X25519-AEAD-OCB encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> for the sample cert (see <xref target="v6-cert"/>), using AES-128 with AEAD-OCB encryption.</t>

<section anchor="sample-public-key-encrypted-session-key-packet-v6"><name>Sample public-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6pkesk-x25519.hexdump"><![CDATA[
0x0000  c1 5d 06 21 06 12 c8 3f
0x0008  1e 70 6f 63 08 fe 15 1a
0x0010  41 77 43 a1 f0 33 79 0e
0x0018  93 e9 97 84 88 d1 db 37
0x0020  8d a9 93 08 85 19 87 cf
0x0028  18 d5 f1 b5 3f 81 7c ce
0x0030  5a 00 4c f3 93 cc 89 58
0x0038  bd dc 06 5f 25 f8 4a f5
0x0040  09 b1 7d d3 67 64 18 de
0x0048  a3 55 43 79 56 61 79 01
0x0050  e0 69 57 fb ca 8a 6a 47
0x0058  a5 b5 15 3e 8d 3a b7
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c1                       packet tag: PKESK
0x0001     5d                    packet length
0x0002        06                 PKESK version 6
0x0003           21              length of fingerprint
0x0004              06           Key version 6
0x0005                 12 c8 3f  Key fingerprint
0x0008  1e 70 6f 63 08 fe 15 1a
0x0010  41 77 43 a1 f0 33 79 0e
0x0018  93 e9 97 84 88 d1 db 37
0x0020  8d a9 93 08 85
0x0025                 19        algorithm: X25519
0x0026                    87 cf  Ephemeral key
0x0028  18 d5 f1 b5 3f 81 7c ce
0x0030  5a 00 4c f3 93 cc 89 58
0x0038  bd dc 06 5f 25 f8 4a f5
0x0040  09 b1 7d d3 67 64
0x0046                    18     ESK length
0x0047                       de  ESK
0x0048  a3 55 43 79 56 61 79 01
0x0050  e0 69 57 fb ca 8a 6a 47
0x0058  a5 b5 15 3e 8d 3a b7
]]></artwork></figure>

</section>
<section anchor="x25519-encryptiondecryption-of-the-session-key"><name>X25519 encryption/decryption of the session key</name>

<t>Ephemeral key:</t>

<figure><artwork><![CDATA[
  87 cf 18 d5 f1 b5 3f 81 7c ce 5a 00 4c f3 93 cc
  89 58 bd dc 06 5f 25 f8 4a f5 09 b1 7d d3 67 64
]]></artwork></figure>

<t>This ephemeral key is derived from the following ephemeral secret key material, which is never placed on the wire:</t>

<figure><artwork><![CDATA[
  af 1e 43 c0 d1 23 ef e8 93 a7 d4 d3 90 f3 a7 61
  e3 fa c3 3d fc 7f 3e da a8 30 c9 01 13 52 c7 79
]]></artwork></figure>

<t>Public key from target certificate (see <xref target="v6-cert"/>):</t>

<figure><artwork><![CDATA[
  86 93 24 83 67 f9 e5 01 5d b9 22 f8 f4 80 95 dd
  a7 84 98 7f 2d 59 85 b1 2f ba d1 6c af 5e 44 35
]]></artwork></figure>

<t>The corresponding long-lived X25519 private key material (see <xref target="v6-key"/>):</t>

<figure><artwork><![CDATA[
  4d 60 0a 4f 79 4d 44 77 5c 57 a2 6e 0f ee fe d5
  58 e9 af ff d6 ad 0d 58 2d 57 fb 2b a2 dc ed b8
]]></artwork></figure>

<t>Shared point:</t>

<figure><artwork><![CDATA[
  67 e3 0e 69 cd c7 ba b2 a2 68 0d 78 ac a4 6a 2f
  8b 6e 2a e4 4d 39 8b dc 6f 92 c5 ad 4a 49 25 14
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  f6 6d ad cf f6 45 92 23 9b 25 45 39 b6 4f f6 07
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  dd 70 8f 6f a1 ed 65 11 4d 68 d2 34 3e 7c 2f 1d
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="x25519-v2seipd-aes128-ocb.hexdump"><![CDATA[
0x0000  d2 69 02 07 02 06 61 64
0x0008  16 53 5b e0 b0 71 6d 60
0x0010  e0 52 a5 6c 4c 40 7f 9e
0x0018  b3 6b 0e fa fe 9a d0 a0
0x0020  df 9b 03 3c 69 a2 1b a9
0x0028  eb d2 c0 ec 95 bf 56 9d
0x0030  25 c9 99 ee 4a 3d e1 70
0x0038  58 f4 0d fa 8b 4c 68 2b
0x0040  e3 fb bb d7 b2 7e b0 f5
0x0048  9b b5 00 5f 80 c7 c6 f4
0x0050  03 88 c3 0a d4 06 ab 05
0x0058  13 dc d6 f9 fd 73 76 56
0x0060  28 6e 11 77 d0 0f 88 8a
0x0068  db 31 c4
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet tag: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              02           AEAD mode: OCB
0x0005                 06        chunk size (2**12 octets)
0x0006                    61 64  salt
0x0008  16 53 5b e0 b0 71 6d 60
0x0010  e0 52 a5 6c 4c 40 7f 9e
0x0018  b3 6b 0e fa fe 9a d0 a0
0x0020  df 9b 03 3c 69 a2
0x0026                    1b a9  chunk #0 encrypted data
0x0028  eb d2 c0 ec 95 bf 56 9d
0x0030  25 c9 99 ee 4a 3d e1 70
0x0038  58 f4 0d fa 8b 4c 68 2b
0x0040  e3 fb bb d7 b2 7e b0 f5
0x0048  9b b5 00
0x004b           5f 80 c7 c6 f4  chunk #0 AEAD tag
0x0050  03 88 c3 0a d4 06 ab 05
0x0058  13 dc d6
0x005b           f9 fd 73 76 56  final AEAD tag (#1)
0x0060  28 6e 11 77 d0 0f 88 8a
0x0068  db 31 c4
]]></artwork></figure>

</section>
<section anchor="decryption-of-data"><name>Decryption of data</name>

<t>Starting AEAD-OCB decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  45 12 f7 14 9d 86 33 41 52 7c 65 67 d5 bf fc 42
  5f af 32 50 21 2f f9
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  45 12 f7 14 9d 86 33 41 52 7c 65 67 d5 bf fc 42
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  5f af 32 50 21 2f f9
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  5f af 32 50 21 2f f9 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>Encrypted data chunk:</t>

<figure><artwork><![CDATA[
  1b a9 eb d2 c0 ec 95 bf 56 9d 25 c9 99 ee 4a 3d
  e1 70 58 f4 0d fa 8b 4c 68 2b e3 fb bb d7 b2 7e
  b0 f5 9b b5 00 5f 80 c7 c6 f4 03 88 c3 0a d4 06
  ab 05 13 dc d6
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e c5 a2 93 07 29 91 62 81 47 d7 2c 8f 86 b7
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  5f af 32 50 21 2f f9 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-x25519-aead-ocb-encrypted-packet-sequence"><name>Complete X25519-AEAD-OCB encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6pkesk-aes128-ocb.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

wV0GIQYSyD8ecG9jCP4VGkF3Q6HwM3kOk+mXhIjR2zeNqZMIhRmHzxjV8bU/gXzO
WgBM85PMiVi93AZfJfhK9QmxfdNnZBjeo1VDeVZheQHgaVf7yopqR6W1FT6NOrfS
aQIHAgZhZBZTW+CwcW1g4FKlbExAf56zaw76/prQoN+bAzxpohup69LA7JW/Vp0l
yZnuSj3hcFj0DfqLTGgr4/u717J+sPWbtQBfgMfG9AOIwwrUBqsFE9zW+f1zdlYo
bhF30A+IitsxxA==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-aead-eax-encryption-and-decryption"><name>Sample AEAD-EAX encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> with the passphrase <spanx style="verb">password</spanx>, using AES-128 with AEAD-EAX encryption.</t>

<section anchor="sample-symmetric-key-encrypted-session-key-packet-v6"><name>Sample symmetric-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6skesk-aes128-eax.hexdump"><![CDATA[
0x0000  c3 40 06 1e 07 01 0b 03
0x0008  08 a5 ae 57 9d 1f c5 d8
0x0010  2b ff 69 22 4f 91 99 93
0x0018  b3 50 6f a3 b5 9a 6a 73
0x0020  cf f8 c5 ef c5 f4 1c 57
0x0028  fb 54 e1 c2 26 81 5d 78
0x0030  28 f5 f9 2c 45 4e b6 5e
0x0038  be 00 ab 59 86 c6 8e 6e
0x0040  7c 55
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c3                       packet tag: SKESK
0x0001     40                    packet length
0x0002        06                 SKESK version 6
0x0003           1e              length through end of AEAD nonce
0x0004              07           cipher: AES128
0x0005                 01        AEAD mode: EAX
0x0006                    0b     length of S2K
0x0007                       03  S2K type: iterated+salted
0x0008  08                       S2K hash: SHA2-256
0x0009     a5 ae 57 9d 1f c5 d8  S2K salt
0x0010  2b
0x0011     ff                    S2K iterations (65011712 octets)
0x0012        69 22 4f 91 99 93  AEAD nonce
0x0018  b3 50 6f a3 b5 9a 6a 73
0x0020  cf f8
0x0022        c5 ef c5 f4 1c 57  encrypted session key
0x0028  fb 54 e1 c2 26 81 5d 78
0x0030  28 f5
0x0032        f9 2c 45 4e b6 5e  AEAD tag
0x0038  be 00 ab 59 86 c6 8e 6e
0x0040  7c 55
]]></artwork></figure>

</section>
<section anchor="starting-aead-eax-decryption-of-the-session-key"><name>Starting AEAD-EAX decryption of the session key</name>

<t>The derived key is:</t>

<figure><artwork><![CDATA[
  15 49 67 e5 90 aa 1f 92 3e 1c 0a c6 4c 88 f2 3d
]]></artwork></figure>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  c3 06 07 01
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  2f ce 33 1f 39 dd 95 5c c4 1e 95 d8 70 c7 21 39
]]></artwork></figure>

<t>Authenticated Data:</t>

<figure><artwork><![CDATA[
  c3 06 07 01
]]></artwork></figure>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  69 22 4f 91 99 93 b3 50 6f a3 b5 9a 6a 73 cf f8
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  38 81 ba fe 98 54 12 45 9b 86 c3 6f 98 cb 9a 5e
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet-1"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v2seipd-aes128-eax.hexdump"><![CDATA[
0x0000  d2 69 02 07 01 06 9f f9
0x0008  0e 3b 32 19 64 f3 a4 29
0x0010  13 c8 dc c6 61 93 25 01
0x0018  52 27 ef b7 ea ea a4 9f
0x0020  04 c2 e6 74 17 5d 4a 3d
0x0028  22 6e d6 af cb 9c a9 ac
0x0030  12 2c 14 70 e1 1c 63 d4
0x0038  c0 ab 24 1c 6a 93 8a d4
0x0040  8b f9 9a 5a 99 b9 0b ba
0x0048  83 25 de 61 04 75 40 25
0x0050  8a b7 95 9a 95 ad 05 1d
0x0058  da 96 eb 15 43 1d fe f5
0x0060  f5 e2 25 5c a7 82 61 54
0x0068  6e 33 9a
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet tag: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              01           AEAD mode: EAX
0x0005                 06        chunk size (2**12 octets)
0x0005                    9f f9  salt
0x0008  0e 3b 32 19 64 f3 a4 29
0x0010  13 c8 dc c6 61 93 25 01
0x0018  52 27 ef b7 ea ea a4 9f
0x0020  04 c2 e6 74 17 5d
0x0026                    4a 3d  chunk #0 encrypted data
0x0028  22 6e d6 af cb 9c a9 ac
0x0030  12 2c 14 70 e1 1c 63 d4
0x0038  c0 ab 24 1c 6a 93 8a d4
0x0040  8b f9 9a 5a 99 b9 0b ba
0x0048  83 25 de
0x004b           61 04 75 40 25  chunk #0 AEAD tag
0x0050  8a b7 95 9a 95 ad 05 1d
0x0058  da 96 eb
0x005b           15 43 1d fe f5  final AEAD tag (#1)
0x0060  f5 e2 25 5c a7 82 61 54
0x0068  6e 33 9a
]]></artwork></figure>

</section>
<section anchor="decryption-of-data-1"><name>Decryption of data</name>

<t>Starting AEAD-EAX decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 01 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  b5 04 22 ac 1c 26 be 9d dd 83 1d 5b bb 36 b6 4f
  78 b8 33 f2 e9 4a 60 c0
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  b5 04 22 ac 1c 26 be 9d dd 83 1d 5b bb 36 b6 4f
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  78 b8 33 f2 e9 4a 60 c0
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  78 b8 33 f2 e9 4a 60 c0 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 01 06
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e ae 5b f0 cd 67 05 50 03 55 81 6c b0 c8 ff
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  78 b8 33 f2 e9 4a 60 c0 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 01 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-aead-eax-encrypted-packet-sequence"><name>Complete AEAD-EAX encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6skesk-aes128-eax.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

w0AGHgcBCwMIpa5XnR/F2Cv/aSJPkZmTs1Bvo7WaanPP+MXvxfQcV/tU4cImgV14
KPX5LEVOtl6+AKtZhsaObnxV0mkCBwEGn/kOOzIZZPOkKRPI3MZhkyUBUifvt+rq
pJ8EwuZ0F11KPSJu1q/LnKmsEiwUcOEcY9TAqyQcapOK1Iv5mlqZuQu6gyXeYQR1
QCWKt5Wala0FHdqW6xVDHf719eIlXKeCYVRuM5o=
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-aead-ocb-encryption-and-decryption"><name>Sample AEAD-OCB encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> with the passphrase <spanx style="verb">password</spanx>, using AES-128 with AEAD-OCB encryption.</t>

<section anchor="sample-symmetric-key-encrypted-session-key-packet-v6-1"><name>Sample symmetric-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6skesk-aes128-ocb.hexdump"><![CDATA[
0x0000  c3 3f 06 1d 07 02 0b 03
0x0008  08 56 a2 98 d2 f5 e3 64
0x0010  53 ff cf cc 5c 11 66 4e
0x0018  db 9d b4 25 90 d7 dc 46
0x0020  b0 72 41 b6 12 c3 81 2c
0x0028  ff fb ea 00 f2 34 7b 25
0x0030  64 11 23 f8 87 ae 60 d4
0x0038  fd 61 4e 08 37 d8 19 d3
0x0040  6c
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c3                       packet tag: SKESK
0x0001     3f                    packet length
0x0002        06                 SKESK version 6
0x0003           1d              length through end of AEAD nonce
0x0004              07           cipher: AES128
0x0005                 02        AEAD mode: OCB
0x0006                    0b     length of S2K
0x0007                       03  S2K type: iterated+salted
0x0008  08                       S2K hash: SHA2-256
0x0009     56 a2 98 d2 f5 e3 64  S2K salt
0x0010  53
0x0011    ff                     S2K iterations (65011712 octets)
0x0012        cf cc 5c 11 66 4e  AEAD nonce
0x0018  db 9d b4 25 90 d7 dc 46
0x0020  b0
0x0021     72 41 b6 12 c3 81 2c  encrypted session key
0x0028  ff fb ea 00 f2 34 7b 25
0x0030  64
0x0031     11 23 f8 87 ae 60 d4  AEAD tag
0x0038  fd 61 4e 08 37 d8 19 d3
0x0040  6c
]]></artwork></figure>

</section>
<section anchor="starting-aead-ocb-decryption-of-the-session-key"><name>Starting AEAD-OCB decryption of the session key</name>

<t>The derived key is:</t>

<figure><artwork><![CDATA[
  e8 0d e2 43 a3 62 d9 3b 9d c6 07 ed e9 6a 73 56
]]></artwork></figure>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  c3 06 07 02
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  38 a9 b3 45 b5 68 0b b6 1b b6 5d 73 ee c7 ec d9
]]></artwork></figure>

<t>Authenticated Data:</t>

<figure><artwork><![CDATA[
  c3 06 07 02
]]></artwork></figure>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  cf cc 5c 11 66 4e db 9d b4 25 90 d7 dc 46 b0
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  28 e7 9a b8 23 97 d3 c6 3d e2 4a c2 17 d7 b7 91
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet-2"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v2seipd-aes128-ocb.hexdump"><![CDATA[
0x0000  d2 69 02 07 02 06 20 a6
0x0008  61 f7 31 fc 9a 30 32 b5
0x0010  62 33 26 02 7e 3a 5d 8d
0x0018  b5 74 8e be ff 0b 0c 59
0x0020  10 d0 9e cd d6 41 ff 9f
0x0028  d3 85 62 75 80 35 bc 49
0x0030  75 4c e1 bf 3f ff a7 da
0x0038  d0 a3 b8 10 4f 51 33 cf
0x0040  42 a4 10 0a 83 ee f4 ca
0x0048  1b 48 01 a8 84 6b f4 2b
0x0050  cd a7 c8 ce 9d 65 e2 12
0x0058  f3 01 cb cd 98 fd ca de
0x0060  69 4a 87 7a d4 24 73 23
0x0068  f6 e8 57
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet tag: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              02           AEAD mode: OCB
0x0005                 06        chunk size (2**21 octets)
0x0006                    20 a6  salt
0x0008  61 f7 31 fc 9a 30 32 b5
0x0010  62 33 26 02 7e 3a 5d 8d
0x0018  b5 74 8e be ff 0b 0c 59
0x0020  10 d0 9e cd d6 41
0x0026                    ff 9f  chunk #0 encrypted data
0x0028  d3 85 62 75 80 35 bc 49
0x0030  75 4c e1 bf 3f ff a7 da
0x0038  d0 a3 b8 10 4f 51 33 cf
0x0040  42 a4 10 0a 83 ee f4 ca
0x0048  1b 48 01
0x004b           a8 84 6b f4 2b  chunk #0 authentication tag
0x0050  cd a7 c8 ce 9d 65 e2 12
0x0058  f3 01 cb
0x005b           cd 98 fd ca de  final AEAD tag (#1)
0x0060  69 4a 87 7a d4 24 73 23
0x0068  f6 e8 57
]]></artwork></figure>

</section>
<section anchor="decryption-of-data-2"><name>Decryption of data</name>

<t>Starting AEAD-OCB decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  71 66 2a 11 ee 5b 4e 08 14 4e 6d e8 83 a0 09 99
  eb de 12 bb 57 0d cf
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  71 66 2a 11 ee 5b 4e 08 14 4e 6d e8 83 a0 09 99
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  eb de 12 bb 57 0d cf
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  eb de 12 bb 57 0d cf 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e ae 6a a1 64 9b 56 aa 83 5b 26 13 90 2b d2
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  eb de 12 bb 57 0d cf 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-aead-ocb-encrypted-packet-sequence"><name>Complete AEAD-OCB encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6skesk-aes128-ocb.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

wz8GHQcCCwMIVqKY0vXjZFP/z8xcEWZO2520JZDX3EawckG2EsOBLP/76gDyNHsl
ZBEj+IeuYNT9YU4IN9gZ02zSaQIHAgYgpmH3MfyaMDK1YjMmAn46XY21dI6+/wsM
WRDQns3WQf+f04VidYA1vEl1TOG/P/+n2tCjuBBPUTPPQqQQCoPu9MobSAGohGv0
K82nyM6dZeIS8wHLzZj9yt5pSod61CRzI/boVw==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-aead-gcm-encryption-and-decryption"><name>Sample AEAD-GCM encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> with the passphrase <spanx style="verb">password</spanx>, using AES-128 with AEAD-GCM encryption.</t>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> with the passphrase <spanx style="verb">password</spanx>, using AES-128 with AEAD-OCB encryption.</t>

<section anchor="sample-symmetric-key-encrypted-session-key-packet-v6-2"><name>Sample symmetric-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6skesk-aes128-gcm.hexdump"><![CDATA[
0x0000  c3 3c 06 1a 07 03 0b 03
0x0008  08 e9 d3 97 85 b2 07 00
0x0010  08 ff b4 2e 7c 48 3e f4
0x0018  88 44 57 cb 37 26 b9 b3
0x0020  db 9f f7 76 e5 f4 d9 a4
0x0028  09 52 e2 44 72 98 85 1a
0x0030  bf ff 75 26 df 2d d5 54
0x0038  41 75 79 a7 79 9f
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c3                       packet tag: SKESK
0x0001     3c                    packet length
0x0002        06                 SKESK version 6
0x0003           1a              length through end of AEAD nonce
0x0004              07           cipher: AES128
0x0005                 03        AEAD mode: GCM
0x0006                    0b     length of S2K
0x0007                       03  S2K type: iterated+salted
0x0008  08                       S2K hash: SHA2-256
0x0009     e9 d3 97 85 b2 07 00  S2K salt
0x0010  08
0x0011     ff                    S2K iterations (65011712 octets)
0x0012        b4 2e 7c 48 3e f4  AEAD nonce
0x0018  88 44 57 cb 37 26
0x001e                    b9 b3  encrypted session key
0x0020  db 9f f7 76 e5 f4 d9 a4
0x0028  09 52 e2 44 72 98
0x002e                     85 1a  AEAD tag
0x0030  bf ff 75 26 df 2d d5 54
0x0038  41 75 79 a7 79 9f
]]></artwork></figure>

</section>
<section anchor="starting-aead-gcm-decryption-of-the-session-key"><name>Starting AEAD-GCM decryption of the session key</name>

<t>The derived key is:</t>

<figure><artwork><![CDATA[
  25 02 81 71 5b ba 78 28 ef 71 ef 64 c4 78 47 53
]]></artwork></figure>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  c3 06 07 03
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  7a 6f 9a b7 f9 9f 7e f8 db ef 84 1c 65 08 00 f5
]]></artwork></figure>

<t>Authenticated Data:</t>

<figure><artwork><![CDATA[
  c3 06 07 03
]]></artwork></figure>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  b4 2e 7c 48 3e f4 88 44 57 cb 37 26
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  19 36 fc 85 68 98 02 74 bb 90 0d 83 19 36 0c 77
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet-3"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v2seipd-aes128-ocb.hexdump"><![CDATA[
0x0000  d2 69 02 07 03 06 fc b9
0x0008  44 90 bc b9 8b bd c9 d1
0x0010  06 c6 09 02 66 94 0f 72
0x0018  e8 9e dc 21 b5 59 6b 15
0x0020  76 b1 01 ed 0f 9f fc 6f
0x0028  c6 d6 5b bf d2 4d cd 07
0x0030  90 96 6e 6d 1e 85 a3 00
0x0038  53 78 4c b1 d8 b6 a0 69
0x0040  9e f1 21 55 a7 b2 ad 62
0x0048  58 53 1b 57 65 1f d7 77
0x0050  79 12 fa 95 e3 5d 9b 40
0x0058  21 6f 69 a4 c2 48 db 28
0x0060  ff 43 31 f1 63 29 07 39
0x0068  9e 6f f9
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet tag: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              03           AEAD mode: GCM
0x0005                 06        chunk size (2**21 octets)
0x0006                    fc b9  salt
0x0008  44 90 bc b9 8b bd c9 d1
0x0010  06 c6 09 02 66 94 0f 72
0x0018  e8 9e dc 21 b5 59 6b 15
0x0020  76 b1 01 ed 0f 9f
0x0026                    fc 6f  chunk #0 encrypted data
0x0028  c6 d6 5b bf d2 4d cd 07
0x0030  90 96 6e 6d 1e 85 a3 00
0x0038  53 78 4c b1 d8 b6 a0 69
0x0040  9e f1 21 55 a7 b2 ad 62
0x0048  58 53 1b
0x004b           57 65 1f d7 77  chunk #0 authentication tag
0x0050  79 12 fa 95 e3 5d 9b 40
0x0058  21 6f 69
0x005b           a4 c2 48 db 28  final AEAD tag (#1)
0x0060  ff 43 31 f1 63 29 07 39
0x0068  9e 6f f9
]]></artwork></figure>

</section>
<section anchor="decryption-of-data-3"><name>Decryption of data</name>

<t>Starting AEAD-GCM decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 03 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  ea 14 38 80 3c b8 a4 77 40 ce 9b 54 c3 38 77 8d
  4d 2b dc 2b
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  ea 14 38 80 3c b8 a4 77 40 ce 9b 54 c3 38 77 8d
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  4d 2b dc 2b
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  4d 2b dc 2b 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 03 06
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e 1c e2 26 9a 9e dd ef 81 03 21 72 b7 ed 7c
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  4d 2b dc 2b 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 03 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-aead-gcm-encrypted-packet-sequence"><name>Complete AEAD-GCM encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6skesk-aes128-gcm.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

wzwGGgcDCwMI6dOXhbIHAAj/tC58SD70iERXyzcmubPbn/d25fTZpAlS4kRymIUa
v/91Jt8t1VRBdXmneZ/SaQIHAwb8uUSQvLmLvcnRBsYJAmaUD3LontwhtVlrFXax
Ae0Pn/xvxtZbv9JNzQeQlm5tHoWjAFN4TLHYtqBpnvEhVaeyrWJYUxtXZR/Xd3kS
+pXjXZtAIW9ppMJI2yj/QzHxYykHOZ5v+Q==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-messages-encrypted-using-argon2"><name>Sample messages encrypted using Argon2</name>

<t>These messages are the literal data "Hello, world!" encrypted using v1 SEIPD, with Argon2 and the passphrase "password", using different session key sizes.
In each example, the choice of symmetric cipher is the same in both the v4 SKESK packet and v1 SEIPD packet.
In all cases, the Argon2 parameters are t = 1, p = 4, and m = 21.</t>

<section anchor="version-4-skesk-using-argon2-with-aes-128"><name>Version 4 SKESK using Argon2 with AES-128</name>

<figure><sourcecode type="application/pgp-encrypted" name="v4skesk-argon2-aes128.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----
Comment: Encrypted using AES with 128-bit key
Comment: Session key: 01FE16BBACFD1E7B78EF3B865187374F

wycEBwScUvg8J/leUNU1RA7N/zE2AQQVnlL8rSLPP5VlQsunlO+ECxHSPgGYGKY+
YJz4u6F+DDlDBOr5NRQXt/KJIf4m4mOlKyC/uqLbpnLJZMnTq3o79GxBTdIdOzhH
XfA3pqV4mTzF
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
<section anchor="version-4-skesk-using-argon2-with-aes-192"><name>Version 4 SKESK using Argon2 with AES-192</name>

<figure><sourcecode type="application/pgp-encrypted" name="v4skesk-argon2-aes192.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----
Comment: Encrypted using AES with 192-bit key
Comment: Session key: 27006DAE68E509022CE45A14E569E91001C2955...
Comment: Session key: ...AF8DFE194

wy8ECAThTKxHFTRZGKli3KNH4UP4AQQVhzLJ2va3FG8/pmpIPd/H/mdoVS5VBLLw
F9I+AdJ1Sw56PRYiKZjCvHg+2bnq02s33AJJoyBexBI4QKATFRkyez2gldJldRys
LVg77Mwwfgl2n/d572WciAM=
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
<section anchor="version-4-skesk-using-argon2-with-aes-256"><name>Version 4 SKESK using Argon2 with AES-256</name>

<figure><sourcecode type="application/pgp-encrypted" name="v4skesk-argon2-aes256.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----
Comment: Encrypted using AES with 256-bit key
Comment: Session key: BBEDA55B9AAE63DAC45D4F49D89DACF4AF37FEF...
Comment: Session key: ...C13BAB2F1F8E18FB74580D8B0

wzcECQS4eJUgIG/3mcaILEJFpmJ8AQQVnZ9l7KtagdClm9UaQ/Z6M/5roklSGpGu
623YmaXezGj80j4B+Ku1sgTdJo87X1Wrup7l0wJypZls21Uwd67m9koF60eefH/K
95D1usliXOEm8ayQJQmZrjf6K6v9PWwqMQ==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
</section>
<section anchor="upgrade-guidance"><name>Upgrade Guidance (Adapting Implementations from RFC 4880 and RFC 6637)</name>

<t>This subsection offers a concise, non-normative summary of the substantial additions to and departures from <xref target="RFC4880"/> and <xref target="RFC6637"/>.
It is intended to help implementers who are augmenting an existing implementation from those standards to this standard.
Cryptographic algorithms marked with an asterisk (*) are mandatory to implement.</t>

<t><list style="symbols">
  <t>Public Key signing algorithms:
  <list style="symbols">
      <t>* Ed25519 (<xref target="key-ed25519"/> and <xref target="sig-ed25519"/>)</t>
      <t>Ed448 (<xref target="key-ed448"/> and <xref target="sig-ed448"/>)</t>
      <t>EdDSALegacy with Ed25519Legacy (<xref target="key-eddsa-legacy"/> and <xref target="sig-eddsa-legacy"/>)</t>
      <t>ECDSA with Brainpool curves (<xref target="ec-curves"/>)</t>
    </list></t>
  <t>Public Key encryption algorithms:
  <list style="symbols">
      <t>* X25519 (<xref target="key-x25519"/> and <xref target="pkesk-x25519"/>)</t>
      <t>X448 (<xref target="key-x448"/> and <xref target="pkesk-x448"/>)</t>
      <t>ECDH with Curve25519Legacy (<xref target="ec-curves"/>)</t>
      <t>ECDH with Brainpool curves (<xref target="ec-curves"/>)</t>
    </list></t>
  <t>AEAD Encryption:
  <list style="symbols">
      <t>Version 2 SEIPD (<xref target="version-two-seipd"/>)</t>
      <t>AEAD modes:
      <list style="symbols">
          <t>* OCB mode (<xref target="aead-mode-ocb"/>)</t>
          <t>EAX mode (<xref target="aead-mode-eax"/>)</t>
          <t>GCM mode (<xref target="aead-mode-gcm"/>)</t>
        </list></t>
      <t>Version 6 PKESK (<xref target="v6-pkesk"/>)</t>
      <t>Version 6 SKESK (<xref target="v6-skesk"/>)</t>
      <t>Features subpacket: add flag for SEIPDv2 (<xref target="features-subpacket"/>)</t>
      <t>Subpacket: Preferred AEAD Ciphersuites (<xref target="preferred-v2-seipd"/>)</t>
      <t>Secret key encryption: AEAD "S2K usage octet" (<xref target="s2k-usage-octet"/> and <xref target="secret-key-packet-formats"/>)</t>
    </list></t>
  <t>Version 6 Keys and Signatures:
  <list style="symbols">
      <t>Version 6 Public keys (<xref target="v6-pubkeys"/>)</t>
      <t>Version 6 Fingerprint and Key ID (<xref target="v6-key-id-fingerprint"/>)</t>
      <t>Version 6 Secret keys (<xref target="secret-key-packet-formats"/>)</t>
      <t>Version 6 Signatures (<xref target="version-four-and-six-sig"/>)</t>
      <t>Version 6 One-Pass Signatures (<xref target="one-pass-sig"/>)</t>
    </list></t>
  <t>Certificate (Transferable Public Key) Structure:
  <list style="symbols">
      <t>Preferences subpackets in Direct-Key Signatures (<xref target="self-sigs"/>)</t>
      <t>Self-verifying revocation certificate (<xref target="v6-revocation-certificate"/>)</t>
      <t>User ID is explicitly optional (<xref target="v6-certificate-structures"/>)</t>
    </list></t>
  <t>S2K: Argon2 (<xref target="s2k-argon2"/>)</t>
  <t>Subpacket: Intended Recipient Fingerprint (<xref target="intended-recipient-fingerprint"/>)</t>
  <t>Digest algorithms: SHA3-256 and SHA3-512 (<xref target="hash-algos"/>)</t>
  <t>Packet: Padding (<xref target="padding-packet"/>)</t>
  <t>Message structure: Packet Criticality (<xref target="packet-criticality"/>)</t>
  <t>Deprecations:
  <list style="symbols">
      <t>Public Key Algorithms:
      <list style="symbols">
          <t>Avoid RSA weak keys (<xref target="rsa-notes"/>)</t>
          <t>Avoid DSA (<xref target="dsa-notes"/>)</t>
          <t>Avoid ElGamal (<xref target="elgamal-notes"/>, <xref target="pkesk-elgamal"/>)</t>
          <t>For Version 6 Keys: Avoid EdDSA25519Legacy, Curve25519Legacy (<xref target="ec-curves"/>)</t>
        </list></t>
      <t>Digest Algorithms:
      <list style="symbols">
          <t>Avoid MD5, SHA1, RIPEMD160 (<xref target="hash-algos"/>)</t>
        </list></t>
      <t>Symmetric Key Algorithms:
      <list style="symbols">
          <t>Avoid IDEA, TripleDES, CAST5 (<xref target="symmetric-algos"/>)</t>
        </list></t>
      <t>S2K Specifier:
      <list style="symbols">
          <t>Avoid Simple S2K (<xref target="s2k-simple"/>)</t>
        </list></t>
      <t>Secret Key protections (a.k.a. S2K Usage):
      <list style="symbols">
          <t>Avoid MalleableCFB (<xref target="secret-key-encryption"/>)</t>
        </list></t>
      <t>Packet Types:
      <list style="symbols">
          <t>Avoid Symmetrically-Encrypted Data (<xref target="sed"/>, <xref target="ciphertext-malleability"/>)</t>
        </list></t>
      <t>Literal Data packet metadata:
      <list style="symbols">
          <t>Avoid Filename and Date fields (<xref target="lit"/>)</t>
          <t>Avoid Special <spanx style="verb">_CONSOLE</spanx> "filename" (<xref target="for-eyes-only"/>)</t>
        </list></t>
      <t>Packet Versions:
      <list style="symbols">
          <t>Avoid Version 3 Public Keys (<xref target="v3-pubkeys"/>)</t>
          <t>Avoid Version 3 Signatures (<xref target="signature-packet"/>)</t>
        </list></t>
      <t>Signature Types:
      <list style="symbols">
          <t>Avoid Reserved Signature Type 0xFF (<xref target="sigtype-reserved"/>, <xref target="sig-computation-notes"/>)</t>
        </list></t>
      <t>Signature Subpackets:
      <list style="symbols">
          <t>For Version 6 Signatures: Avoid Issuer Key ID (<xref target="issuer-keyid-subpacket"/>)</t>
          <t>Avoid Revocation Key (<xref target="revocation-key"/>)</t>
        </list></t>
      <t>ASCII Armor:
      <list style="symbols">
          <t>Ignore, do not emit CRC (<xref target="optional-crc24"/>)</t>
          <t>Do not emit "Version" armor header (<xref target="armor-header-key-version"/>)</t>
        </list></t>
      <t>Cleartext Signature Framework:
      <list style="symbols">
          <t>Ignore, avoid emitting unnecessary Hash: headers (<xref target="armor-header-key-hash"/>)</t>
        </list></t>
    </list></t>
</list></t>

<section anchor="terminology-changes"><name>Terminology Changes</name>

<t>Note that some of the words used in previous revisions of the OpenPGP standard have been improved in this document.</t>

<t>In previous revisions, the following terms were used:</t>

<t><list style="symbols">
  <t>"Radix-64" was used to refer to OpenPGP's ASCII Armor base64 encoding (<xref target="base64"/>).</t>
  <t>"Old packet format" was used to refer to the Legacy packet format (<xref target="legacy-packet-format"/>).</t>
  <t>"New packet format" was used to refer to the OpenPGP packet format (<xref target="openpgp-packet-format"/>).</t>
  <t>"Certificate" was used ambiguously to mean multiple things.
In this document, it is used to mean "Transferable Public Key" exclusively.</t>
  <t>"Preferred Symmetric Algorithms" was the old name for the "Preferred Symmetric Ciphers for v1 SEIPD" subpacket (<xref target="preferred-v1-seipd"/>)</t>
  <t>"Modification Detection Code" or "MDC" was originally described as a distinct packet (packet tag 19), and its corresponding flag in the Features subpacket (<xref target="features-subpacket"/>) was known as "Modification Detection".
It is now described as an intrinsic part of v1 SEIPD (<xref target="version-one-seipd"/>), and the same corresponding flag is known as "Symmetrically Encrypted Integrity Protected Data packet version 1".</t>
</list></t>

</section>
</section>
<section anchor="acknowledgements"><name>Acknowledgements</name>

<t>Thanks to the openpgp design team for working on this document to prepare it for working group consumption: Stephen Farrell, Daniel Kahn Gillmor, Daniel Huigens, Jeffrey Lau, Yutaka Niibe, Justus Winter and Paul Wouters.</t>

<t>Thanks to Werner Koch for the early work on rfc4880bis and Andrey Jivsov for <xref target="RFC6637"/>.</t>

<t>This document also draws on much previous work from a number of other authors, including: Derek Atkins, Charles Breed, Dave Del Torto, Marc Dyksterhouse, Gail Haspert, Gene Hoffman, Paul Hoffman, Ben Laurie, Raph Levien, Colin Plumb, Will Price, David Shaw, William Stallings, Mark Weaver, and Philip R. Zimmermann.</t>

</section>


  </back>

<!-- ##markdown-source:
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
uVbDZtKPTuTCgJPA86p+PXHLjdgFPp7AZIGP+4kfB37YdMtlv1ZNgloY9yqN
ZtyoVnpBXPN6FbeSYSVmHqs4SaPhVGNiFS6efbeBv7jISaqO6zvVqpM0kb80
q/RFoDlJEw97I3QSUGA9h7ivA+zXqQZOM4DtcXwf30gSWBhoQ78H8l+A/Cv2
sQG/5pTryHqIpSVORGws9JwycC7409ccCAiggbwtqTgRdFl1aq5Ti6HByKnD
HwGyLeCJNWZ9rnovAo4UAnE6gefAlQHXUAJ8r+E4MYyt6tQTGqdHjScW5wp8
J2w6bhlDVmuwCIFTC524BywNLp/YaVSdSs8JYqfmOT1YvMoSb/uLWJtxpOFZ
Lql0A/h4BY8zvCLH6LqH+yeti8vzjnC4wV6l09q5OWy1bvZaw6/Vr9XLVrt/
f/bttHx3eBtfX09n/mF/d/vq4f74efpt0GnflB9u+9v+U2/nONruriXz/qx5
Uh7e7FdOouvZ/Ni/2WmdtMOLWufq03arUjm92j7sH9x8fq4Nns+On2+TaVpz
B/Hd5WJx0zvrZDljbnh5llhz2lYa4voKsIUN5+X9Q62EGYt/rK0d6ApJq7AZ
BOeXZJqEizxhV8J95cmSKeyjHuBgP2c5DVQ98DXTQKb6hXok5Q97A87Kz/F4
kIxGmE1AWaPBssz0W3vHa9TalT3gr81WrVnvVHar/u5eq9au+/6O2/b2vI5f
b3uNVrVWdxt7tapf7bT9+k5rt9lqt5u/GRPYyj48v90oQzvA2fdqZWik41W9
VsWr1yvllrcHbKjedDvNcqfZrDcqjcaut7tTrjd2W80mPN2oYh+F9F0rSRIM
bdVfdGMPJvs3lWi78pS24Kf/4dIfL9xv1+3RwfC2vPP77U1ydvw0ul1U/U/7
/f7959/9ztVuuTIMTtvp2U2ytv84gfd22js3n77dlbe/tR7TTzuPl1ftfuVw
t3V43Wod9VqPh3G7e3i3k6Y3vU5jvx0EX6snl/MPo6fntaPHx+RgkOwMhreP
3/zLYb0d1/zg+6edbvip1Q/bOKzWkTs53Gl9+PzVHSTp7shrVDthlPoPjeHj
Wv/50r9vh5ejo+Rh52uvldRmd+c3198XZ18eO+N6Zzv4/Hj4eB58TqPZs/vh
CvMJDu66i8r5Se3gOuisnaWD0+F55fvT6fbFaX10l1x14vrX69On+fj48nie
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
AdUjH1vx8Vk+NvIWHZ5VF9HyQVCCZo/A2NQxsKQZdaiAtj5jeRsV0ygcXcfr
iYFKFw3NWar0WqA/oIzOrtzSV8grh44tktT8kH1/ShJk51tIzj0PZHGpK8Cj
MLtSRd6IIp5Pmi1lnDc97A4UHlDrYLGgZZDDgARB1VprmR3G5vh048W2trZH
v4//LCV5qoXgT9BTcZt+lbkGwuoM4/lKGyPK0bw7ChrjdUubJfYZW3U+10K3
/brp+vHK3T88u+k+7zbicL/5rX1audq/3yuf1Q4ej8v3X+4/jL7eHX4797/H
J7/fHh/enY8Ovj99u2r0Lrf7X79/Wbvu7xw3qqfHg6tBs9y6TT4ld0fNs9FT
Ep2Mb3e+xRPvaje+ur2Lzw76wVVSf55Mfz+vXXt7F7WTL7OkuxZQUsPt3e3O
7cX1h/ZjeO31K3tHw17nqZVUa9+Dx3ptezo7m5x86LW+P00nd4tprfm5Vf90
vX01dYdrz7fjRfdb+S7c++buJr9/vtjvzyrbi7pX//QhPb3uzc92kv5xst9s
fTl8fJxd7vye7nWa368/JN73aHgzWevd7ZXd1ofDwTx9emrlQxVfMxrTTnZa
X/+LrMX6sFopPL/h7/BA9NtqM3F2RFkzsY65/ldYilObfuPgaZW1uIySFNqJ
YzpiHkFRlrVUBv8PIlcQo24KDNlLkIVEBtwC4bsTilXyUeMDhtJsKogTkcqq
ZKoLysh2m2TmqZe1VIY6ZAPbjKll4MMeas9axAJGXq0gvw99RBZvkFmg3jAi
VgN5OrAa4F1wlVZiVD2rsbGIxcgegIejgeD/a+9Kl1NHlvR/PwXh+2O6r41B
G0gnYmKCfbMNBi+YmIi5QgvI1oIRi/GJfpd5lnmyyczSBghv7Xv6nBu3o6Pb
SKVasjKzMr/KqiygqpfBZzYiEwvWWEn6Gvj2wFUW2z7BLnwrpgbSfRC+HbwF
33I7h7wD+HYxnXvLyRRYU0eOItONtHq6l5B0LNK8ihQvIYKNE14FiMwrrkEQ
ohoDzAM+INjB29tgpJj8ONiix4UYpOwEnQtDTzJy+j/4KW6OfouujWPfMGct
jfnZN5HzwsSA/cnGm3IpVNAQ6x0lMfqtIEH54o6/FAet7slUZneC3i1f7Fd8
/H1X2jLpyuljQsh+RY3siWRm2/f4oHCSWt0y/1HzvgH6sqx88dmbRAoaTkKU
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
gDqZ/8xwp5kZ/E9kFz468CfPBajYbWBFhU0mqR0iagSvHRAKMRAK+iCQjT8t
F5hzFGj8LVPb5YLagHUKJXBs0R1JcelBwqcCXVKvcYVyuVSpV7lasVyUa3Wh
LBckTi4KRbEOwrfRauX1QLtZTeR2zjZuLm+4fql4mXup8ZjFzLXP5fngvNeT
bu0rf+na3ZNa5bk56E0a943O/cnRfftFXBbqJ9WqXS1359Jl/2q4yHXaLVN0
RKdrdzaV3PLpfDxzz9ujC/f6SfCKSuO5fK239O7LtHk0NEvC7OlWdK5f6m/L
yLsnS+HfPVkK/yMmS+HfmCy+CJZPtVQryDUpr+R5vlITpRIn1qSCUlM4sG4r
vCJJZ2dnByqAN6W6XIUpV0ScWblWKV1PrzvPzfp1f9To2JbQuWyKNz0RZ3b6
ct7mV6pQb8i5mTNr9fRcM+fo3u1Aui2fn6+P6krrpKS3ucFaKvT691Zn9FBZ
NScn/Nh9yvO+IJTabW9TNp7LLfGqU7qu9x83xgs/sfW2rfc3/tH57aRYvFiv
zYnNg+KWivydZpUu3qEJ3zvLCJO9c5ah6A+YZWjljVkul2vVkiSVlRLMtFAt
VUSpKtZFpSor8KMulupCsV6rvzrLFU4ol8p8navLNU6ul4uiJOercjmPi6lW
q1wNRKN9M2k1coKjqa3zWrs+c9oyyfNIsYsdME/0iu0oN+pVblS4yEng99qD
xqyxPCrwwr2jDo2XxoOcfxDLJ50l50+u9bYnF4fc3Xw5K9r5dXszG9k+z92s
9ULRUR69eiFvGGYz1zlSpCq39G1r2K05srq5al85o/mDWegUVkrvbv108Z61
MHMzm8wx+0JjaekqmCOZ30q6OiMLq4XrChImgDDp4rV+vQL2H5jOqNzxR6Eg
FDFX5pJVlJ0EFf0RoEL+cuyDxcz8BJMWCrQ8NcuHNQtMtqzrzR1oYYWZuRxK
tBbnCPMXCAckTDQfE0axjSdYevDe4qBf379DZ7Bjf/xB7+k39g1zgLYWuPzh
vcOuDrwEVUwNe5axwgFir9ZTj902vJw4dLH0BOqB1TVIJGxtESO8Us/z0ZqG
9tS5Tl2ja6LDJ8BZyL0eEGY2hZU4usURM17M4+SfsLj6eBWc/5j57e+/Uy8c
rAHcjA0lyArbPsOMVInEp3jZMXU0qvgbGKvZzH//PUo08tv378DNWYP9jIgD
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
f6rTXTet2wQA

-->

</rfc>

