<?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="pre5378Trust200902" docName="draft-ietf-openpgp-crypto-refresh-12" 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="October" day="17"/>

    <area>sec</area>
    <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: <xref target="RFC4880"/> (OpenPGP), <xref target="RFC5581"/> (Camellia in OpenPGP) and <xref target="RFC6637"/> (Elliptic Curves in OpenPGP).
This document incorporates all - at the time of writing - outstanding verified errata which are listed in <xref target="errata-listing"/>.</t>

<t>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 implementation generates a hash digest of the message.</t>
  <t>The sending implementation 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 implementation obtains a copy of the message and the message signature.</t>
  <t>The receiving implementation 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 <bcp14>SHOULD NOT</bcp14> 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 <xref target="C99"/>, 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 encoded_m, specifying the exponent of the memory size
]]></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.
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 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>Implementations predating <xref target="RFC2440"/> 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>Later 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>Implementations predating <xref target="RFC2440"/> 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 type ID 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 denotes the format of the rest of the header, and encodes the Packet Type ID, indicating the type of the packet (see <xref target="packet-types"/>).
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 <xref target="RFC4880"/> and <xref target="RFC2440"/>, and the Legacy packet format as used by implementations predating any IETF specification of the protocol.</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[
                          ┌───────────────┐
  Encoded Packet Type ID: │7 6 5 4 3 2 1 0│
                          └───────────────┘
  OpenPGP format:
    Bit 7 -- always one
    Bit 6 -- always one
    Bits 5 to 0 -- packet type ID

  Legacy format:
    Bit 7 -- always one
    Bit 6 -- always zero
    Bits 5 to 2 -- packet type ID
    Bits 1 to 0 -- length-type
]]></artwork></figure>

<t>Bit 6 of the first octet of the packet header indicates whether the packet is encoded in the OpenPGP or Legacy packet format.
The Legacy packet format <bcp14>MAY</bcp14> be used when consuming packets to facilitate interoperability 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.
This latter case is extremely unlikely, as the Legacy packet format was obsoleted by <xref target="RFC2440"/> in 1998.</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>Note that Legacy format headers only have 4 bits for the packet type ID, and hence can only encode packet type IDs less than 16, whereas the OpenPGP format headers can encode IDs as great as 63.</t>

<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 that predates support for <xref target="RFC2440"/>.</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-criticality"><name>Packet Criticality</name>

<t>The Packet Type ID 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-sequence-composition"/>).
On the other hand, an unknown non-critical packet <bcp14>MUST</bcp14> be ignored.</t>

<t>Packets with Type IDs from 0 to 39 are critical.
Packets with Type IDs from 40 to 63 are non-critical.</t>

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

<t>The defined packet types are as follows:</t>

<texttable title="Packet Types registry" anchor="packet-types-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Critical</ttcol>
      <ttcol align='left'>Packet Type Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Shorthand</ttcol>
      <c>0</c>
      <c>yes</c>
      <c>Reserved - a packet <bcp14>MUST NOT</bcp14> have this packet type ID</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</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="pkesk"><name>Public-Key Encrypted Session Key Packet (Type ID 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 the following fields:</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.
This size may be zero, if the key version number field and the fingerprint field are 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 "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 "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 (<xref target="RFC5869"/>) is then used with SHA256 <xref target="RFC6234"/> 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 ID 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 (<xref target="RFC5869"/>) is then used with SHA512 (<xref target="RFC6234"/>) 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 ID 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 (Type ID 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 by the signature type ID 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'>ID</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 (type ID 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 (type ID 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 (type ID 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 (type ID 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 (type ID 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 (type ID 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 (type ID 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 (type ID 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 (type ID 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 (type ID 0x19)</name>

<t>This signature is a statement by a signing subkey, indicating that it is owned by the primary key.
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>Direct Key Signature (type ID 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 (type ID 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 (type ID 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 (type ID 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 (type ID 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 (type ID 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 (type ID 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 ID.</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 ID.</t>
  <t>One-octet public-key algorithm.</t>
  <t>One-octet hash algorithm.</t>
  <t>A scalar octet count for the hashed subpacket data that follows this field.
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; an implementation's 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 unhashed subpacket data that follows this field.
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; an implementation's 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 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>A DSA signature <bcp14>MUST</bcp14> use a hash algorithm with a digest size of at least 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>

<t>An ECDSA signature <bcp14>MUST</bcp14> use a hash algorithm with a digest size of at least the curve's "fsize" value (see <xref target="ec-curves"/>), except in the case of NIST P-521, for which at least a 512-bit hash algorithm <bcp14>MUST</bcp14> be used.</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>

<t>An EdDSALegacy signature <bcp14>MUST</bcp14> use a hash algorithm with a digest size of at least the curve's "fsize" value (see <xref target="ec-curves"/>).
A verifying implementation <bcp14>MUST</bcp14> reject any EdDSALegacy signature that uses a hash algorithm with a smaller digest size.</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>

<t>An Ed25519 signature <bcp14>MUST</bcp14> use a hash algorithm with a digest size of at least 256 bits.
A verifying implementation <bcp14>MUST</bcp14> reject any Ed25519 signature that uses a hash algorithm with a smaller digest size.</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>

<t>An Ed448 signature <bcp14>MUST</bcp14> use a hash algorithm with a digest size of at least 512 bits.
A verifying implementation <bcp14>MUST</bcp14> reject any Ed448 signature that uses a hash algorithm with a smaller digest size.</t>

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

<t>The concatenation of the data being signed, the signature data from the version number through the hashed subpacket data (inclusive), and (for signature versions later than 3) a six-octet trailer (see <xref target="computing-signatures"/>) 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 not hashed into the signature.
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 encoded subpacket type ID (1 octet),</t>
</list></t>

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

<t>The length includes the encoded subpacket type ID 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>Bit 7 of the encoded subpacket type ID 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 implementation, the evaluator <bcp14>SHOULD</bcp14> consider the signature to be in error.</t>

<t>An implementation <bcp14>SHOULD</bcp14> ignore any non-critical subpacket of a type that it does not recognize.</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>The other bits of the encoded subpacket type ID (i.e. bits 6-0) contain the subpacket type ID.</t>

<t>The following signature subpackets are defined:</t>

<texttable title="Signature Subpacket Types registry" anchor="signature-subpacket-types-registry">
      <ttcol align='right'>ID</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</c>
      <c><xref target="issuer-keyid-subpacket"/></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>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 (type IDs 0x10-0x13), the direct key signature (type ID 0x1F), and the subkey binding signature (type ID 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>An implementation 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 implementation locates this key via Alice's name, then the preferred AEAD ciphersuite is AES-256 with OCB; if the implementation 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 ID 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 IDs 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 implementation.
Algorithm IDs are defined 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 IDs 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 algorithm ID precedes the AEAD algorithm ID 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 implementation, 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 IDs are listed in <xref target="aead-algorithms"/>.
Symmetric cipher algorithm IDs 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 IDs that indicate which algorithms the key holder prefers to receive.
Like the preferred AEAD ciphersuites, the list is ordered.
Algorithm IDs are defined 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 IDs that indicate which algorithms the key holder prefers to use.
Like the preferred AEAD ciphersuites, the list is ordered.
Algorithm IDs are defined in <xref target="compression-algos"/>.
A zero, or the absence of this subpacket, denotes that uncompressed data is preferred; the key holder's implementation might have no compression support available.
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 UTF-8 encoded 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 Henry Spencer's "almost public domain" regular expression <xref target="REGEX"/> package.
A description of the syntax is found in <xref target="regular-expressions"/>.
The regular expression matches (or does not match) a sequence of UTF-8-encoded Unicode characters from User IDs.
The expression itself is also written with UTF-8 characters.</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 can 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 ID 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 type IDs 0x10-0x13) or direct key signatures (signature type ID 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 ID 0x1F) or a subkey signature (type ID 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 fed into the hash context before any other data.</t>

<t>For binary document signatures (type ID 0x00), the document data is hashed directly.
For text document signatures (type ID 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 ID 0x18) or primary key binding signature (type ID 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 ID 0x20) hash only the key being revoked.
Subkey revocation signature (type ID 0x28) hash first the primary key and then the subkey being revoked.</t>

<t>A certification signature (type ID 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 ID 0x50, "Third-Party Confirmation signature"), the hash data starts with 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 ID.
This <bcp14>MUST NOT</bcp14> be signature type ID <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 (Type ID 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 for the 5 fields following this octet.</t>
  <t>A one-octet symmetric cipher algorithm ID from <xref target="symkey-algorithms-registry"/>.</t>
  <t>A one-octet AEAD algorithm identifier from <xref target="aead-algorithms-registry"/>.</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 (<xref target="RFC5869"/>) with SHA256 (<xref target="RFC6234"/>) 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 Type ID in OpenPGP format encoding (bits 7 and 6 set, bits 5-0 carry the packet type ID), 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 Type ID encoded in OpenPGP format (bits 7 and 6 set, bits 5-0 carry the packet type ID), the packet version number, the cipher algorithm ID, and the AEAD algorithm ID 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 (Type ID 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 ID.
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 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 (Type ID 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 (Type ID 14)</name>

<t>A Public-Subkey packet (type ID 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 offers certification capability, but does not provide encryption services, while a dedicated subkey provides encryption (see <xref target="common-requirements"/>).</t>

</section>
<section anchor="seckey"><name>Secret-Key Packet (Type ID 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 (Type ID 7)</name>

<t>A Secret-Subkey packet (type ID 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.
The V2 and V3 versions have been deprecated since 1998.
The V4 version has been deprecated by this document in 2023.</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 must be registered in the registry established in <xref target="signed-message-versions"/>.</t>

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

<t>V2 keys are identical to v3 keys except for the version number.
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>

</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 254, or 253, a one-octet count of the size of the one field following this octet.</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 ID (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.
An implementation producing a passphrase-protected secret key packet <bcp14>MUST</bcp14> use a string-to-key specifier; the simple hash is for read-only backward compatibility, 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 (<xref target="RFC5869"/>) to provide key separation.
SHA256 (<xref target="RFC6234"/>) 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 Type ID encoded in OpenPGP format (bits 7 and 6 set, bits 5-0 carry the packet type ID), 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 Type ID in OpenPGP format encoding (bits 7 and 6 set, bits 5-0 carry the packet type ID), 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 must 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 type 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 (Type ID 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-sequence-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 predating support for <xref target="RFC2440"/> <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 (Type ID 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>SHOULD</bcp14> reject such a packet and stop processing the message.
If an implementation chooses to process the packet anyway, it <bcp14>MUST</bcp14> return a clear warning that a non-integrity protected packet has been processed.</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, 16 octets for a 128-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 ID 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 achieving randomized encryption through an IV, a string of length equal to the block size of the cipher plus two is encrypted for this purpose.
The first block-size octets (for example, 16 octets for a 128-bit block length) are random, and the following two octets are copies of the last two octets of the first block-size random octets.
For example, for a 16-octet block length, octet 17 is a copy of octet 15 and octet 18 is a copy of octet 16.
For a cipher of block length 8, octet 9 is a copy of octet 7, and octet 10 is a copy of octet 8.
(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 (Type ID 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 (Type ID 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 implementations predating <xref target="RFC2440"/> 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 implementation.</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>MUST</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 an implementation that predates support for <xref target="RFC2440"/> <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 (Type ID 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 implementation 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 (Type ID 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 (Type ID 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 ID (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'>ID</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 IDs 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'>ID</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 (Type ID 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 mechanism was introduced in <xref target="RFC4880"/> and 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.
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 ID 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 achieving randomized encryption through an IV, OpenPGP prefixes an octet string to the data before it is encrypted for this purpose.
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 ID.</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 <bcp14>MUST</bcp14> be securely generated (See <xref target="CSPRNG"/>).</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 (<xref target="RFC6234"/>) as hash algorithm, the session key as Initial Keying Material (IKM), the salt as salt, and the Packet Type ID in OpenPGP format encoding (bits 7 and 6 set, bits 5-0 carry the packet type ID), version number, cipher algorithm ID, AEAD algorithm ID, 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 Type ID encoded in OpenPGP format (bits 7 and 6 set, bits 5-0 carry the packet type ID), version number, cipher algorithm ID, AEAD algorithm ID, 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 <xref target="C99"/>), 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 (Type ID 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, <xref target="forming-ascii-armor"/>.</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 <bcp14>MUST</bcp14> 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>

<t>The following code is written in <xref target="C99"/>.</t>

<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> 0x3A) 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 OpenPGP implementation that requires this header.</t>
</list></t>

<t>A verifying application <bcp14>MUST</bcp14> decline to validate any signature in a message with a non-conformant <spanx style="verb">Hash</spanx> header (that is, a <spanx style="verb">Hash</spanx> header that contains anything other than a comma-separated list of hash algorithms).
When a conformant <spanx style="verb">Hash</spanx> header is present, a verifying application <bcp14>MUST</bcp14> ignore its contents, deferring to the hash algorithm indicated in the embedded signature.</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 with any tool capable of rendering text.
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>

<section anchor="cleartext-structure"><name>Cleartext Signed Message Structure</name>

<t>An OpenPGP 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 <spanx style="verb">Hash</spanx> Armor Headers, which <bcp14>MUST</bcp14> be ignored when well-formed (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>

<t>Between the <spanx style="verb">-----BEGIN PGP SIGNED MESSAGE-----</spanx> line and the first empty line, the only Armor Header permitted is a well-formed <spanx style="verb">Hash</spanx> Armor Header (see <xref target="armor-header-key-hash"/>).
To reduce the risk of confusion about what has been signed, a verifying implementation <bcp14>MUST</bcp14> decline to validate any signature in a cleartext message if that message has any other Armor Header present in this location.</t>

</section>
<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="csf-issues"><name>Issues with the 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>

<t>Finally, when a Cleartext Signature Framework message is presented to the user as-is, an attacker can include additional text in the <spanx style="verb">Hash</spanx> header, which may mislead the user into thinking it is part of the signed text.
The signature validation constraints described in <xref target="armor-header-key-hash"/> and <xref target="cleartext-structure"/> help to mitigate the risk of arbitrary or misleading text in the Armor Headers.</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 Unicode 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 Unicode character (matching that character), or a single Unicode 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 Unicode 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 Unicode characters between them in codepoint order (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 IDs 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="FIPS186"/></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="FIPS186"/></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="FIPS186"/></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"/></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"/></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 only in 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="SP800-67"/> - 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 implementations predating support for <xref target="RFC2440"/>.
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="RFC1321"/></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="RIPEMD-160"/></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-sequence-composition"><name>Packet Sequence 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, implementations of older versions of this document 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 sequence of User ID packets and Attribute packets and their associated signatures, zero or more Subkey packets follow, each with their own signatures.
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"/>).
An implementation <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.
An implementation <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 ID in addition to the session key for the subsequent SEIPD packet.
Since a v1 SEIPD does not contain a symmetric algorithm ID, 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 ID, 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 IDs, 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="RFC2898"/> 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 an implementation 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 implementation 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.
An implementation <bcp14>MUST NOT</bcp14> use algorithm 0 as the indicated symmetric cipher for an encrypted data packet (<xref target="sed"/> or <xref target="seipd"/>); it can use a Literal Data packet (<xref target="lit"/>) 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.
An implementation <bcp14>MUST NOT</bcp14> use algorithm 0 as the indicated compression algorithm in a Compressed Data packet (<xref target="compressed-data"/>); it can use a Literal Data packet (<xref target="lit"/>) 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 implementation 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 no longer recommended.
It has also been deprecated in <xref target="FIPS186"/>.
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 IDs</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 as reserved in <xref target="pubkey-algos"/>.</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 algorithm ID 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 type IDs, User Attribute subpacket type IDs, image format IDs, and the various algorithm IDs described in <xref target="constants"/> all reserve the range 100 to 110 for private and experimental use.
Packet type IDs 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, implementors should check the current literature to determine if any algorithms used here have been found to be vulnerable to an attack.
If so, implementors should consider disallowing such algorithms for new data and warn or prevent the enduser when they are trying to consume data protected by such now vulnerable algorithms.</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 (See <xref target="hash-algos"/>).</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 encrypted data whose session key is protected by a passphrase using a version 4 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 <xref target="RFC4880"/> and later versions of OpenPGP offer mechanisms to defend against it.
However, OpenPGP data may have been created before these defense 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.
An implementation should be aware that, in scenarios where an attacker has write 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 are <bcp14>RECOMMENDED</bcp14> to migrate to AEAD.</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 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.
At the time of this writing, there is no known documentation about safe reuse of OpenPGP session keys for any specific context. An implementer that intends to make use of this feature should publish their own proposed guidance for others to review.</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 type IDs 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="CSPRNG"><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 on Linux or BSD, 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 range of visibility 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, an implementation <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 an implementation <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 implementations predating <xref target="RFC2440"/>.
Older RFCs called the current OpenPGP packet format <xref target="openpgp-packet-format"/> the "new packet format".
This is the format introduced in <xref target="RFC2440"/> and maintained through <xref target="RFC4880"/> to this document.</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" 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 IDs 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 Types 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 registrations retain the security properties that are expected by the base implementation and that these new registrations do not cause interoperability issues with existing implementations other than not producing or consuming the IDs associated with these new registrations.
Registration 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-and-signature-versions"><name>Key and Signature Versions</name>

<t>When defining a new version of OpenPGP keys or signatures, <xref target="signed-packet-versions-registry"/> should be updated,
When a new version of OpenPGP key is defined, <xref target="key-id-fingerprint-registry"/> should also be updated.</t>

</section>
<section anchor="encryption-versions"><name>Encryption Versions</name>

<t>When defining a new version of the Symmetrically Encrypted Integrity Protected Data Packet (<xref target="seipd"/>), Public Key Encrypted Session Key Packet (<xref target="pkesk"/>), and/or Symmetric Key Encrypted Session Key Packet (<xref target="skesk"/>), the registry from <xref target="encrypted-packet-versions-registry"/> needs to be updated.
When the SEIPD is updated, consider also adding a corresponding flag to <xref target="features-flags-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 an ID 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" target="https://seclab.cs.ucdavis.edu/papers/eax.pdf">
  <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="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='RFC1321'>
  <front>
    <title>The MD5 Message-Digest Algorithm</title>
    <author fullname='R. Rivest' initials='R.' surname='Rivest'/>
    <date month='April' year='1992'/>
    <abstract>
      <t>This document describes the MD5 message-digest algorithm. The algorithm takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input. This memo provides information for the Internet community. It does not specify an Internet standard.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='1321'/>
  <seriesInfo name='DOI' value='10.17487/RFC1321'/>
</reference>

<reference anchor='RFC1950'>
  <front>
    <title>ZLIB Compressed Data Format Specification version 3.3</title>
    <author fullname='P. Deutsch' initials='P.' surname='Deutsch'/>
    <author fullname='J-L. Gailly' surname='J-L. Gailly'/>
    <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'/>
    <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'/>
    <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'/>
    <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 "electronic mail" messages. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='2822'/>
  <seriesInfo name='DOI' value='10.17487/RFC2822'/>
</reference>

<reference anchor='RFC2898'>
  <front>
    <title>PKCS #5: Password-Based Cryptography Specification Version 2.0</title>
    <author fullname='B. Kaliski' initials='B.' surname='Kaliski'/>
    <date month='September' year='2000'/>
    <abstract>
      <t>This document provides recommendations for the implementation of password-based cryptography, covering key derivation functions, encryption schemes, message-authentication schemes, and ASN.1 syntax identifying the techniques. This memo provides information for the Internet community.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='2898'/>
  <seriesInfo name='DOI' value='10.17487/RFC2898'/>
</reference>

<reference anchor='RFC3156'>
  <front>
    <title>MIME Security with OpenPGP</title>
    <author fullname='M. Elkins' initials='M.' surname='Elkins'/>
    <author fullname='D. Del Torto' initials='D.' surname='Del Torto'/>
    <author fullname='R. Levien' initials='R.' surname='Levien'/>
    <author fullname='T. Roessler' initials='T.' surname='Roessler'/>
    <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'/>
    <author fullname='R. Housley' initials='R.' surname='Housley'/>
    <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'/>
    <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'/>
    <author fullname='J. Nakajima' initials='J.' surname='Nakajima'/>
    <author fullname='S. Moriai' initials='S.' surname='Moriai'/>
    <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'/>
    <author fullname='J. Schiller' initials='J.' surname='Schiller'/>
    <author fullname='S. Crocker' initials='S.' surname='Crocker'/>
    <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'/>
    <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='RFC6234'>
  <front>
    <title>US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF)</title>
    <author fullname='D. Eastlake 3rd' initials='D.' surname='Eastlake 3rd'/>
    <author fullname='T. Hansen' initials='T.' surname='Hansen'/>
    <date month='May' year='2011'/>
    <abstract>
      <t>Federal Information Processing Standard, FIPS</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='6234'/>
  <seriesInfo name='DOI' value='10.17487/RFC6234'/>
</reference>

<reference anchor='RFC7253'>
  <front>
    <title>The OCB Authenticated-Encryption Algorithm</title>
    <author fullname='T. Krovetz' initials='T.' surname='Krovetz'/>
    <author fullname='P. Rogaway' initials='P.' surname='Rogaway'/>
    <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'/>
    <author fullname='M. Hamburg' initials='M.' surname='Hamburg'/>
    <author fullname='S. Turner' initials='S.' surname='Turner'/>
    <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'/>
    <author fullname='B. Kaliski' initials='B.' surname='Kaliski'/>
    <author fullname='J. Jonsson' initials='J.' surname='Jonsson'/>
    <author fullname='A. Rusch' initials='A.' surname='Rusch'/>
    <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'/>
    <author fullname='I. Liusvaara' initials='I.' surname='Liusvaara'/>
    <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'/>
    <author fullname='B. Leiba' initials='B.' surname='Leiba'/>
    <author fullname='T. Narten' initials='T.' surname='Narten'/>
    <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'/>
    <author fullname='D. Dinu' initials='D.' surname='Dinu'/>
    <author fullname='D. Khovratovich' initials='D.' surname='Khovratovich'/>
    <author fullname='S. Josefsson' initials='S.' surname='Josefsson'/>
    <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="RIPEMD-160" >
  <front>
    <title>Information technology - Security techniques - Hash-functions - Part 3: Dedicated hash-functions,</title>
    <author >
      <organization>International Organization for Standardization, Geneva, Switzerland</organization>
    </author>
    <date year="1998"/>
  </front>
  <seriesInfo name="ISO" value="ISO/IEC 10118-3"/>
</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="SP800-67" target="https://doi.org/10.6028/NIST.SP.800-67r2">
  <front>
    <title>Recommendation for the Triple Data Encryption Algorithm (TDEA) Block Cipher</title>
    <author >
      <organization>NIST</organization>
    </author>
    <date year="2017" month="November"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-67 Rev. 2"/>
  <seriesInfo name="DOI" value="10.6028/NIST.SP.800-67r2"/>
</reference>
<reference anchor="TWOFISH" target="https://www.schneier.com/wp-content/uploads/2016/02/paper-twofish-paper.pdf">
  <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'/>
    <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'/>
    <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 fullname='Dustin Moody' initials='D.' surname='Moody'>
      <organization>National Institute of Standards and Technology</organization>
    </author>
    <date year='2023'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.186-5'/>
</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="C99" target="https://www.iso.org/standard/50510.html">
  <front>
    <title>Programming languages - C: C99, correction 3:2007,  ISO/IEC 9899:1999/Cor 3:2007</title>
    <author initials="I. O. for" surname="Standardization" fullname="International Organization for Standardization">
      <organization></organization>
    </author>
    <date year="2007" month="November"/>
  </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="Errata-2199" target="https://www.rfc-editor.org/errata/eid2199">
  <front>
    <title>Errata Report 2199 - S2K hash/cipher octet correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2200" target="https://www.rfc-editor.org/errata/eid2200">
  <front>
    <title>Errata Report 2200 - No implicit use of IDEA correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2206" target="https://www.rfc-editor.org/errata/eid2206">
  <front>
    <title>Errata Report 2206 - PKESK acronym expansion</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2208" target="https://www.rfc-editor.org/errata/eid2208">
  <front>
    <title>Errata Report 2208 - Signature key owner clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2214" target="https://www.rfc-editor.org/errata/eid2214">
  <front>
    <title>Errata Report 2214 - Signature hashing clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2216" target="https://www.rfc-editor.org/errata/eid2216">
  <front>
    <title>Errata Report 2216 - Self signature applies to user ID correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2219" target="https://www.rfc-editor.org/errata/eid2219">
  <front>
    <title>Errata Report 2219 - Session key encryption storage clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2222" target="https://www.rfc-editor.org/errata/eid2222">
  <front>
    <title>Errata Report 2222 - Simple hash MUST/MAY clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2226" target="https://www.rfc-editor.org/errata/eid2226">
  <front>
    <title>Errata Report 2226 - Native line endings SHOULD clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2234" target="https://www.rfc-editor.org/errata/eid2234">
  <front>
    <title>Errata Report 2234 - Radix-64 / base64 clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2235" target="https://www.rfc-editor.org/errata/eid2235">
  <front>
    <title>Errata Report 2235 - ASCII / UTF-8 collation sequence clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2236" target="https://www.rfc-editor.org/errata/eid2236">
  <front>
    <title>Errata Report 2236 - Packet Composition is a sequence clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2238" target="https://www.rfc-editor.org/errata/eid2238">
  <front>
    <title>Errata Report 2238 - Subkey packets come after all User ID packets clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2240" target="https://www.rfc-editor.org/errata/eid2240">
  <front>
    <title>Errata Report 2240 - Subkey removal clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2242" target="https://www.rfc-editor.org/errata/eid2242">
  <front>
    <title>Errata Report 2242 - mL / emLen variable correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2243" target="https://www.rfc-editor.org/errata/eid2243">
  <front>
    <title>Errata Report 2243 - CFB mode initialization vector (IV) clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2270" target="https://www.rfc-editor.org/errata/eid2270">
  <front>
    <title>Errata Report 2270 - SHA-224 octet sequence correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2271" target="https://www.rfc-editor.org/errata/eid2271">
  <front>
    <title>Errata Report 2271 - Radix-64 correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-3298" target="https://www.rfc-editor.org/errata/eid3298">
  <front>
    <title>Errata Report 3298 - Key revocation signatures correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-5491" target="https://www.rfc-editor.org/errata/eid5491">
  <front>
    <title>Errata Report 5491 - C code fix for CRC24_POLY define</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-7545" target="https://www.rfc-editor.org/errata/eid7545">
  <front>
    <title>Errata Report 7545 - Armor Header colon hex fix</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</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'/>
    <author fullname='W. Stallings' initials='W.' surname='Stallings'/>
    <author fullname='P. Zimmermann' initials='P.' surname='Zimmermann'/>
    <date month='August' year='1996'/>
    <abstract>
      <t>This document describes the format of "PGP files", 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'/>
    <author fullname='L. Donnerhacke' initials='L.' surname='Donnerhacke'/>
    <author fullname='H. Finney' initials='H.' surname='Finney'/>
    <author fullname='R. Thayer' initials='R.' surname='Thayer'/>
    <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'/>
    <author fullname='L. Donnerhacke' initials='L.' surname='Donnerhacke'/>
    <author fullname='H. Finney' initials='H.' surname='Finney'/>
    <author fullname='D. Shaw' initials='D.' surname='Shaw'/>
    <author fullname='R. Thayer' initials='R.' surname='Thayer'/>
    <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='RFC5581'>
  <front>
    <title>The Camellia Cipher in OpenPGP</title>
    <author fullname='D. Shaw' initials='D.' surname='Shaw'/>
    <date month='June' year='2009'/>
    <abstract>
      <t>This document presents the necessary information to use the Camellia symmetric block cipher in the OpenPGP protocol. This memo provides information for the Internet community.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='5581'/>
  <seriesInfo name='DOI' value='10.17487/RFC5581'/>
</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'/>
    <author fullname='J. Merkle' initials='J.' surname='Merkle'/>
    <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'/>
    <author fullname='P. Eronen' initials='P.' surname='Eronen'/>
    <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'/>
    <author fullname='K. Igoe' initials='K.' surname='Igoe'/>
    <author fullname='M. Salter' initials='M.' surname='Salter'/>
    <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='RFC6637'>
  <front>
    <title>Elliptic Curve Cryptography (ECC) in OpenPGP</title>
    <author fullname='A. Jivsov' initials='A.' surname='Jivsov'/>
    <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>


<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'/>
    <author fullname='J. Postel' initials='J.' surname='Postel'/>
    <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='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>




    </references>


<section anchor="test-vectors"><name>Test vectors</name>

<t>To help implementing this specification a set of non-normative examples follow here.</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>

<figure><artwork><![CDATA[
oid: 2b06010401da470f01

q: 403f098994bdd916ed4053197934e4a87c80733a1280d62f8010992e43ee3b2406
]]></artwork></figure>

<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>

<figure><artwork><![CDATA[
m: 4f70656e504750040016080006050255f95f9504ff0000000c
]]></artwork></figure>

<t>Using the SHA2-256 hash algorithm yields the digest:</t>

<figure><artwork><![CDATA[
d: f6220a3f757814f4c2176ffbb68b00249cd4ccdc059c4b34ad871f30b1740280
]]></artwork></figure>

<t>Which is fed into the EdDSA signature function and yields this signature:</t>

<figure><artwork><![CDATA[
r: 56f90cca98e2102637bd983fdb16c131dfd27ed82bf4dde5606e0d756aed3366

s: d09c4fa11527f038e0f57f2201d82f2ea2c9033265fa6ceb489e854bae61b404
]]></artwork></figure>

<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 type: 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 type: 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 type: 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 type: 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 type: 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 type: 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 type: 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>

<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 type: 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 type: 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 "MTI" 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"/>), MTI</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"/>), MTI</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"/>), MTI</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 ID 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>
          <t>Reject CSF signatures with invalid Hash: headers (<xref target="armor-header-key-hash"/>) or any other Armor Header (<xref target="cleartext-structure"/>)</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"/>) predating <xref target="RFC2440"/>.</t>
  <t>"New packet format" was used to refer to the OpenPGP packet format (<xref target="openpgp-packet-format"/>) introduced in <xref target="RFC2440"/>.</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 type ID 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>
  <t>"Packet Tag" was used to refer to the Packet Type ID (<xref target="packet-types"/>), or sometimes to the encoded Packet Type ID (<xref target="packet-headers"/>).</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>
<section anchor="errata-listing"><name>Errata addressed by this document</name>

<t>The following verified errata have been incorporated or are otherwise resolved by this document:</t>

<t><list style="symbols">
  <t><xref target="Errata-2199"/> - S2K hash/cipher octet correction</t>
  <t><xref target="Errata-2200"/> - No implicit use of IDEA correction</t>
  <t><xref target="Errata-2206"/> - PKESK acronym expansion</t>
  <t><xref target="Errata-2208"/> - Signature key owner clarification</t>
  <t><xref target="Errata-2214"/> - Signature hashing clarification</t>
  <t><xref target="Errata-2216"/> - Self signature applies to user ID correction</t>
  <t><xref target="Errata-2219"/> - Session key encryption storage clarification</t>
  <t><xref target="Errata-2222"/> - Simple hash <bcp14>MUST</bcp14>/<bcp14>MAY</bcp14> clarification</t>
  <t><xref target="Errata-2226"/> - Native line endings <bcp14>SHOULD</bcp14> clarification</t>
  <t><xref target="Errata-2234"/> - Radix-64 / base64 clarification</t>
  <t><xref target="Errata-2235"/> - ASCII / UTF-8 collation sequence clarification</t>
  <t><xref target="Errata-2236"/> - Packet Composition is a sequence clarification</t>
  <t><xref target="Errata-2238"/> - Subkey packets come after all User ID packets clarification</t>
  <t><xref target="Errata-2240"/> - Subkey removal clarification</t>
  <t><xref target="Errata-2242"/> - mL / emLen variable correction</t>
  <t><xref target="Errata-2243"/> - CFB mode initialization vector (IV) clarification</t>
  <t><xref target="Errata-2270"/> - SHA-224 octet sequence correction</t>
  <t><xref target="Errata-2271"/> - Radix-64 correction</t>
  <t><xref target="Errata-3298"/> - Key revocation signatures correction</t>
  <t><xref target="Errata-5491"/> - C code fix for CRC24_POLY define</t>
  <t><xref target="Errata-7545"/> - Armor Header colon hex fix</t>
</list></t>

</section>


  </back>

<!-- ##markdown-source:
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
Xk/demSmiRoaYtRQLXYUXTz2HROfoPXfwmASc7+kSVTeYZchTmv16SZ9Z9Mh
qYgNdmJAnVTHlpBh+wVjvfaGDkXZRuIByNjVWvHmaQ0sCZ0SbUIKQ405JCpD
hFBjKLKr2u60AjFRDVtKc2T76UgKsHnPqUvWlfbtZgIu6LlrgsKoO8UC20sj
Cmg5ECRexXKiCzDqrpSoY8bllj8LJ1gOi66gLkMaiKiHHwg5FpqgXACzGm6V
iSvaMaEb1cPlZu5Gv7ORGrUn1ZPxtDANDv5rjtFoUaGdNCynmqhZFvcmxuJJ
2m2x4m1prfHZMPD2IwfeFnpQiQSslg61kSIW47/jOByHbjU9Zco8tsGrLtow
dlROaZrlMNoiwx6iWD9C7itVhqVL6szIXUbM/k2nbUMd6v22vfKGmjIjmZqF
EDWnTCJ736gvhKmdJslQzp0W0oR5GYCE3LPGQfhaSgzbOa+XUWo7fhXOMkyP
m6skvOOymPA5MvSGeRqmx/XXnks5BhOTSf3OA05WDpflTUbuaNwZEWv8Y7nI
UocZMDS8fcemNT0tmGxfeLD5t8RL0HyJMamcizWJ+FzzGBhltpT8d6KmLDuY
ZXyLqeOYY4LWmWmpOMPCLYbv2tMVhGFcoctoyUqW2or7+CZX04N9IBFySDXW
hUGjmTQucuquV3DGra/uI0+1K/obEIDdFI41m5Dh5WVgBhs89zymhpd2Psl8
wLF7E/rx82d8GCOcLzF/rPlRZCb8IAa2j0ukzAmeSvPjhXmAXqL4e6oBDQzh
yOM77lvX/EQPORO/h6u6gIuZpeGK9xb8hPMeLvKI0aT9NcYj5y2Mor5Q9Fgx
nTzivIkB8BJ5/1wYfQtg6KGeSAP88gGHbVPM0asHR5DoJH+IU3jkmHqT0wjN
b3Lz8h5lAsBLFO6OT7+LbrOGbeI6c/MTv+Lss+Ut2WDlxRHO5UO05X1PKqkO
s43DXGIIXhnOF22oqr/TKzv0Cnad7mEW4n1wlKVXsV5k7z16CFPt7ntT5yEa
5vTUTTtwX8vly8+fNc/XkFG9/hVKXevcwF6YiYZKmQCCb3z2QjSS76wt2thR
4o8XXkRT93JLORbboYLJaJDdYSMULJAoHcdjroUh8I9EuopL6fxdcnPMOaVZ
OL2i/dXZirLUAKFxlQN3lURX/mZrvPTYJKkhyXSZ0FjZrRT545ViTBKnp2OO
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
ajppC/7zq4qN0c8AcPNl1L2jdliG0pa5W+WRAFAo02aoODd3qI5kWg9DP6qk
jVqjGVTT6iAMGvU07ffrzb7vh9XWIK4OBvHAr7UG1X6lGsXNRpBW/H7QqPrq
LGJZxwGmp6dIf2sMj6PmZbawKno8cEHIIzymxVuvVk9b/mAQtZpJGPhhvdLo
x61mJY37QX0QVII4jcNGEjfDflqN46RW9+uJHzdq9SiJK5V6nRrK3nqxrwad
RkFQCxupX2kmvuLpqZqw4ulhGiZROGj5lUpYr6VRfZD0q81W0qxV+1FSD/pV
v+qwFDOXTRyl2fRqCbIMH3iA34RffOAoNc8PvVrNS1vAZ1o1/CLSHKUFh745
8NLYSwIPObGnWLFXi7xWpLbIC0N4I03V0qg29HtK/IuAjyUhNBDWvUoDWBCy
ttSLkZ0NAq+iOJj6M9ScSJFBE3hcWvVi1WXNq/tePVENxl5D/REB+1K8sU4s
0Jf3YsWZBopEvSjw1PWhrqRU8b+m5yVqbDWvkeI4A2w8tThYFHqDludXINy4
rhYh8uoDL+kr1qYuosRr1rxq34sSrx54fbV41TUe9xexOOMGhTNdluwU9fEG
Xmd4Ro7h9Y4Pz9qXVxdd5nSjg2q3vXd93G5fH7THX2pfalftzvD247fzys3x
1+Tz5/kiPB7uv/l0d3v6OP826nauK3dfh2/Ch/7eafymt5Uuh4vWWWV8fVg9
iz8vlqfh9V77rDO4rHc/vXvTrlbPP705Hh5dv3+sjx4/nj5+TedZ3R8lN1er
1XX/Y9flkLnh5Vlj3etYWavbG/A5drzvP93Vy5Dg+sfW1pGuPbYJzoMBtFG+
Sal8GnTFXJiftEpmyQMbs4blgS9OA05dGXkkow/7IzJW5Hi9kpImkHyCScbR
uvz0a2cvaNY71QPFZVvteqvRre7Xwv2Ddr3TCMM9vxMcBN2w0Qma7Vq94TcP
6rWw1u2Ejb32fqvd6bR+NWbKjX0EYadZUe0o/n5Qr6hGukEtaFeDRqNaaQcH
ig01Wn63Vem2Wo1mtdncD/b3Ko3mfrvVUk83a9BHIX3Xy5wzhVv1F93co9nh
dTV+U33I2upn+PoqnK78b587k6Px18reb1+v04+nD5Ovq1r47nA4vH3/W9j9
tF+pjqPzTvbxOt06vJ+p9/Y6e9fvvt1U3nxr32fv9u6vPnWG1eP99vHndvuk
374/Tjq945u9LLvud5uHnSj6Uju7Wr6ePDxundzfp0ejdG80/nr/LbwaNzpJ
PYx+f7fXG7xrDwcdGFb7xJ8d77Vfv//ij9JsfxI0a91BnIV3zfH91vDxKrzt
DK4mJ+nd3pd+O60vbi6uP/+++vjhvjttdN9E7++P7y+i91m8ePRffwL74NFN
b1W9OKsffY66Wx+z0fn4ovr7w/mby/PG5Cb91E0aXz6fPyynp1enyzSofXhs
14LrvdPqb3uTD0fp69OvMKjj4+jy3fHZdOt1cqU6vh29Pu+1x3E4vXl38+b9
p8lB1ntd9z8/3n25/Rjcz7PDw73sBF583/7cwUW/P+nvd45vtooWZtO64Hq0
P+4dn/Tnh4dh/PnyS3Pr2+tP3w5Ow+Cdf/Pb53F3+Lofj2bfPk9P0nat/XH+
+erzcnp2v9899YdBeHf9MPt82rxuBp9f94/27pt+beu4efv50+2Xq/rdwYfR
66PPd3dvRouoMUvfrYL62XR2dXszGN9eLW79yZdV/+vd47h6uDf8+8sFtkuM
yLINjQ57seJlGOdbp/B//64oHxFD2e7IqCUUU4K1J1EZdAzlRhP9/hOElhAC
AAWXsMLIPr+nsAzIEmEn/vNwkFdiIhWia2jJ0TgQqWIyAe9Dr4pPwjr4DyDL
eXCLVxIvVNdwDHepuqgHvpfU6Xt10cYN1a9XrXqNAK73St3rp+puxe/Vu15D
iREVL6zBNy0fbuigqqQB+l69HzW8JAVxpFGHltWNHanLPsDvQ/V+q4+SCf4X
RiC71Ctes0Hfq/fVC4nSaeynfBBI4PuKer8aQxf9PtzsSqHxI7jTkxp9r95X
6qYaohIwlBjQbIBAUUEVCb6vQv8teLkVgz4VRCBBKaVHCRL4PYxffaMUtqpX
Udd+EwSpqAJKEXxfg/VLcXCRGV9VSSTUf0293wxpQjwRJZIonc+n/pUMBCqd
Whwl20ATCUpwAyW60ffqfZDqfJDlYKEq8EuQyPtqYrBnSnpTyzZQslcTxBwl
LfH4Gk2U9KI6SHdKDYxrsNEoDOH3Tdi/EFXPAU4kgf1T4lszou/V+0r8gy1O
Yf3ULicDeKRP36v9BuUzGqCwheKZ6k4N0af9a0H/IQxOyZFmfSJzEFHiInhB
xuCbUTkpKuSFqbbJJILii2BJyl5GvB7iKP6nkzDLmt4/vDkLA8kQ0Gr+3Sbu
4h8lQNA79GhAwrV1DswPt01mDnq8ttYeiPzO4+yloefra8+rH6JKN8U+d+oK
f7ZDPwzLQVCu+JdB/a3ffOtXvu7Qm3rcwfrEYVSgH74V+YxesR+0j7i8Ys87
3bCaSsfRQp8xw/y3sghNHIo6sJgp5Mvb5FHdNBnYSsX6nR1kRlP8Aw9DhMZb
5wbR8ii+H2zaFX5/fWNqoR5QtPYKKfvwCur/tYD4Vc0mGZsfyjsAfWMgi6yt
rTU2rYaidXjlduk8Toy1+AdiBMD3yu+9hfvY6wiZXwqZ11r4tM2czY+5wgte
jNdHqd8tGGtSOK++/ThtH+Sm7JpSmQyIRI1spBY1C37wrfePdrcHthj1f0HY
/HfrjqFfA72k6z/rA6/rBQ7W3ygYeN7/gG04FIE3nPlB8QmGLUQE1FTR1FQv
YHN4Ozo/2gCF76pfeNobCSosnCvdtMU/BXO1ch3ofSIm3y9633pYTXY6myY8
Rn2w/HVaLhijfXrzN8sa0evcHHo3t2q+vS/60bfed5IxIbJQnYA/6N0Cetfj
LRhmIb0HyfpSSuIOvfYUhcuTaoB4Nu6CEh2Su/APWxIq/lkfY4NOAt+7xY/T
GNeR36gBwx3XqcaOYZPQEBbI7GV3BTZvY1f/hUIcfeCc2dwhXF/LVtV9Imys
P24fnTWwN2ql4LCzKOk5T7+1JctNP//wiBOWP3T2SswO4Xe+e1utTVvnrd+9
LX1K03USzdDxmIxJXqXnCyWaKrUiogCvn5GDN1iT/jo9T9FP0kKCi0GUUbdf
pealAy0kK+IAq2wFZN9B7PVRmq82tZCsmFVN/ReQ+uX1G566H6JQC8mqNSVk
hS000LbQiqser///W89r9bX4VTR4NWgtjsDgW87gm+rEVvQdrHpTSoYapVo8
tdBqfZQc0W/p20dxL9VtWgV/nOo8xuk2q5q7KYoHazfuXLPm9QMwePMRBhYR
B8BKohT8AUrVUduhRhk0NYvIKanhAI52M9QswlFSSdtUXCLULKJIyRQ9FE5j
EX9SfAm/j+D9Av4k9BE1vUL+pPgSft8H+iUl01UlK9W/TJXccD5yquR/1ikR
tiV24/9RKP9HoSxUKP8hV0URhWzUKYFsFIXIHPL8zPlZJ49a7oZ37s0C8qit
k5PmLjlIvyf2npiqraoFraK5GTL4YmmvRrTOkcA6FRQraMi9PfEE5Yjgv4Wh
i0lhg0GhUaxn0l7lhZrGJkoBJmUMCuz52jNiiX2fFP+IOcE5lU1mSOumBM8z
oQM5c4LR8O1ry3ppozmhWcigWJZdF2Gbm5RFGMELzQn5O9T5ecqc0MyrZrZY
WzDWdW3MXArPaIHNYhKhAdhaYHc6UErrRN2T6jfGDCNFq7mJcMJCvZolh+Kf
lyhaLSacwg3drGi19CKuSSzeeh//VeIL/fWU6pg/p32bkPL6R4Hy0c+zaiMp
FSsfjo/e8n1tb3CKsYsevGAbPfS2C+1pDz09+S946LmBH/TQP+PUpsjKH3Vr
Xxx/al921/3aV9mf9Guftg+/nOxtJQ8nrwdH9bMvwU1Wuzm7Od7z/cvFu8ks
G95VJsMgHi3H2fsUneBFPvCtH3GCF/l6t37ECV7kA9/6ESd4kQ98q9gJHr8v
coIX+cC38k7wdjcYdm5btcuri8qXg2TUH75ZvVl+uq5Hb94Ev/lnnzvBl9eP
q1HlQ1gFh/nWJo/5Dy1ikcf8pQ7zrU0e85c6zLee8ZgX0+9LXOZ2RE6Ry5xs
F050NQTpQ72PH+E59E6O9WgkZyscGiOhLW89Qcou3dBtjU6oGuHRaAS9LJvf
LCDPkqIz0WIF+mN7MZxNQykYax7jcRC2aoZ4Zxyih6s2gJrBgErfB7BJgDFZ
RmoRXsiHeN5/FTu6Pv6zYTatd8PbztZB+yLutwaD6XC8PFpEF0lYWx2tHlft
jx8/LU9G83f+60Xt2/tqHA0OP/faN0nn8/n8+PJ69Jg+Hn84721Vhsf7j8Nm
2lALFQcf9qqv33/Nrm4Gx98+nM4/HQ0no+s3x6vlu9vVeJrM9q7vF93Dowc6
fR+HnztbdPxO33c+Dg4OPs4+dNr3nYNhuzO5P+0cDW9Hxx/77w8PH873hpPJ
+PXlp/fpPBuMstOjh+r0/nr+eWtw3Bq/S+6nq+Uke/x4Ne18PD5qD6H9zvKk
0/54Pgpax9NGu7ZMP1wcHfXPFm/eDY5Px2fz9vTg3Wi61bj/FN4fvf6tevX5
IGvc7md7714/nIejZue0+3nUOIqay/Pxl8P514vq1WLVvUxugslN9/3xt9pV
ctq8fLPl//66NvsSXBytguBbs//194P9919ayWU2/BB/bl8eDYdfkX8ffoRB
dQ5vH3v7X99Mx+1PYe347pu/NXz3JZ5Xe9fpY/D1pt+9Wy0PskVQ656l/kRN
52qvXbu5ORzOw1kU3Q3rk4OrL4OD0/u9vb2rVbf5W7rV+jC4ff1wv8ri14ft
4XhvUXv/6XHxZryaVx4ePt4dfTnoffvWDm+iL+nsrP5wdXgR73ePjuuvV8nd
ybdPF1t3tVn7YbhqJO/m0Zezb2r1r6/p+mln+vqZZ6fHo+7h48NNdnl//W4+
T2+DXqXePzpebO3vNZN3zcOTT9PO+dfel+xdY/F1cXqLLHKv3R3OV7fX/a/B
17P08bz2+fTq9/7VtHc4j656+7VleDLaOosG8+b+7V5n/PUiCgeV9unH33v7
X6LWt8Ob698fvv3+qV/LBkf7v1/efnu8+Pr5Ir78rXlVB9J8/eb1yXJrsbpp
ThpfZmFy0+sdPH6+6K0ue1+T2nLy5uTL8Prw5QwSgoEgu3MxSWIs/okhQRAL
9J5YyznbdU4kiaQXnpTjBGDIY8OKJFHZjh7UhqpmJezHYb0eRrVB2A9rQZJU
0kEzjJJBpdqKGvX6IKpVWn5Qazb9oFLx/TCpRWHQqispsj9IaaTtFBL5jk72
D7gmnlPLUeezIMtLTP6rrvtbMLBWUmkM+mG90WyklUYSNON+0AgbrdqgOghb
jVrNjyutSI20FgRxK0qrg2bDr8f9etRopHEtMHeMnZ0lC4gjeXJhBjW/Xq80
VWNJJehTjHropy21z41+v9qM635UD5JavaG6jeq1ZiP2K5Wg1Wr1+6242doK
IqVqVsMkipvVWrUSp81WLaq8cGdJ9FzfVOeOkfGzSKqHnjaqEAXebFTUEFpJ
GlSiShypxfJrrUZDjT4MK1U/DmpJpJ5rxQM/bSap0qoqtUG9MYj/ij3Nj6ky
qPuDfr0SNmtpPVS7VYmTaqtZqTWa9dQPgkFaVx/69VZaD8JKOIgbitrStJbG
lSCp+5Uf2M5814OGtZMt2clmvVUJq81KvZG2kpqib3X/hGHaTKtNv1WL1S43
1fgaaRhv1VrNWj8I034UB+o4pLWkWq3U8ppOR5dW7FExN0GM+P4TJWGUB1la
5lImjprjFn+jvCysHovhebpZKwcB0pYQimD7+3f9gFFnsADa8VLkJizKPbJA
E5yYP8zI3rZEKiielksQk6FNolsDbRRDcl2SDaI5iDOqBecDKKYUrxIqZWPw
EjcE/7qTUPKYlHxZPixZPoFv38zHkbopC4LYu/veabfXax9KJDtiyd9TnqYB
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
gJZgSCycCb3k/g9RhKu2CgcFAA==

-->

</rfc>

