<?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-10" category="std" consensus="true" submissionType="IETF" obsoletes="4880, 5581, 6637" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title>OpenPGP</title>

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

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

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

    <abstract>


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

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

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



    </abstract>

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


  </front>

  <middle>


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>Examples:</t>

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

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

<t>Additional rules:</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>It is assumed that only the combinations of algorithms listed are supported by the recipient's software, with the exception of the mandatory-to-implement combination of AES-128 and OCB.
If AES-128 and OCB are not found in the subpacket, it is implicitly listed at the end.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>Signer asserts that the key is not only valid but also trustworthy at the specified level.
Level 0 has the same meaning as an ordinary validity signature.
Level 1 means that the signed key is asserted to be a valid trusted introducer, with the 2nd octet of the body specifying the degree of trust.
Level 2 means that the signed key is asserted to be trusted to issue level 1 trust signatures; that is, the signed key is a "meta introducer".
Generally, a level n trust signature asserts that a key is trusted to issue level n-1 trust signatures.
The trust amount is in a range from 0-255, interpreted such that values less than 120 indicate partial trust and values of 120 or greater indicate complete trust.
Implementations <bcp14>SHOULD</bcp14> emit values of 60 for partial trust and 120 for complete trust.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>(String)</t>

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

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

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

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

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

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

<t>(String)</t>

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

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

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

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

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

<t>Usage notes:</t>

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

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

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

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

<t>(String)</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>First octet:</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>The packet contains:</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>The format of an Armor Header is that of a key-value pair.
A colon (<spanx style="verb">:</spanx> 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 client.</t>
</list></t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>Since creating a cleartext signed message involves trimming trailing whitespace on every line, the Cleartext Signature Framework will fail to safely round-trip any textual stream that may include semantically meaningful whitespace.</t>

<t>For example, the Unified Diff format <xref target="UNIFIED-DIFF"/> contains semantically meaningful whitespace: an empty line of context will consist of a line with a single <u> </u> character, and any line that has trailing whitespace added or removed will represent such a change with semantically meaningful whitespace.</t>

<t>Furthermore, a Cleartext Signature Framework message that is very large is unlikely to work well.
In particular, it will be difficult for any human reading the message to know which part of the message is covered by the signature because they can't understand the whole message at once, in case an Armor Header line is placed somewhere in the body.
And, very large Cleartext Signature Framework messages cannot be processed in a single pass, since the signature salt and digest algorithms are only discovered at the end.</t>

<t>An implementation that knows it is working with a textual stream with any of the above characteristics <bcp14>SHOULD NOT</bcp14> use the Cleartext Signature Framework.
Safe alternatives for a semantically meaningful OpenPGP signature over such a file format are:</t>

<t><list style="symbols">
  <t>A Signed Message, as described in <xref target="openpgp-messages"/>.</t>
  <t>A Detached Signature as described in <xref target="detached-signatures"/>.</t>
</list></t>

<t>Either of these alternatives may be ASCII-armored (see <xref target="forming-ascii-armor"/>) if they need to be transmitted across a text-only (or 7-bit clean) channel.</t>

</section>
</section>
<section anchor="regular-expressions"><name>Regular Expressions</name>

<t>A regular expression is zero or more branches, separated by <spanx style="verb">|</spanx>.
It matches anything that matches one of the branches.</t>

<t>A branch is zero or more pieces, concatenated.
It matches a match for the first, followed by a match for the second, etc.</t>

<t>A piece is an atom possibly followed by <spanx style="verb">*</spanx>, <spanx style="verb">+</spanx>, or <spanx style="verb">?</spanx>.
An atom followed by <spanx style="verb">*</spanx> matches a sequence of 0 or more matches of the atom.
An atom followed by <spanx style="verb">+</spanx> matches a sequence of 1 or more matches of the atom.
An atom followed by <spanx style="verb">?</spanx> matches a match of the atom, or the null string.</t>

<t>An atom is a regular expression in parentheses (matching a match for the regular expression), a range (see below), <spanx style="verb">.</spanx> (matching any single character), <spanx style="verb">^</spanx> (matching the null string at the beginning of the input string), <spanx style="verb">$</spanx> (matching the null string at the end of the input string), a <spanx style="verb">\</spanx> followed by a single character (matching that character), or a single character with no other significance (matching that character).</t>

<t>A range is a sequence of characters enclosed in <spanx style="verb">[]</spanx>.
It normally matches any single character from the sequence.
If the sequence begins with <spanx style="verb">^</spanx>, it matches any single character not from the rest of the sequence.
If two characters in the sequence are separated by <spanx style="verb">-</spanx>, this is shorthand for the full list of ASCII characters between them (for example, <spanx style="verb">[0-9]</spanx> matches any decimal digit).
To include a literal <spanx style="verb">]</spanx> in the sequence, make it the first character (following a possible <spanx style="verb">^</spanx>).
To include a literal <spanx style="verb">-</spanx>, make it the first or last character.</t>

</section>
<section anchor="constants"><name>Constants</name>

<t>This section describes the constants used in OpenPGP.</t>

<t>Note that these tables are not exhaustive lists; an implementation <bcp14>MAY</bcp14> implement an algorithm not on these lists, so long as the algorithm numbers are chosen from the private or experimental algorithm range.</t>

<t>See <xref target="notes-on-algorithms"/> for more discussion of the algorithms.</t>

<section anchor="pubkey-algos"><name>Public-Key Algorithms</name>

<texttable title="Public Key Algorithms registry" anchor="pubkey-algo-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <ttcol align='left'>Public Key Format</ttcol>
      <ttcol align='left'>Secret Key Format</ttcol>
      <ttcol align='left'>Signature Format</ttcol>
      <ttcol align='left'>PKESK Format</ttcol>
      <c>0</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>1</c>
      <c>RSA (Encrypt or Sign) <xref target="HAC"/></c>
      <c>MPI(n), MPI(e) [<xref target="key-rsa"/>]</c>
      <c>MPI(d), MPI(p), MPI(q), MPI(u)</c>
      <c>MPI(m**d mod n) [<xref target="sig-rsa"/>]</c>
      <c>MPI(m**e mod n) [<xref target="pkesk-rsa"/>]</c>
      <c>2</c>
      <c>RSA Encrypt-Only <xref target="HAC"/></c>
      <c>MPI(n), MPI(e) [<xref target="key-rsa"/>]</c>
      <c>MPI(d), MPI(p), MPI(q), MPI(u)</c>
      <c>N/A</c>
      <c>MPI(m**e mod n) [<xref target="pkesk-rsa"/>]</c>
      <c>3</c>
      <c>RSA Sign-Only <xref target="HAC"/></c>
      <c>MPI(n), MPI(e) [<xref target="key-rsa"/>]</c>
      <c>MPI(d), MPI(p), MPI(q), MPI(u)</c>
      <c>MPI(m**d mod n) [<xref target="sig-rsa"/>]</c>
      <c>N/A</c>
      <c>16</c>
      <c>Elgamal (Encrypt-Only) <xref target="ELGAMAL"/> <xref target="HAC"/></c>
      <c>MPI(p), MPI(g), MPI(y) [<xref target="key-elgamal"/>]</c>
      <c>MPI(x)</c>
      <c>N/A</c>
      <c>MPI(g**k mod p), MPI (m * y**k mod p) [<xref target="pkesk-elgamal"/>]</c>
      <c>17</c>
      <c>DSA (Digital Signature Algorithm) <xref target="FIPS186"/> <xref target="HAC"/></c>
      <c>MPI(p), MPI(q), MPI(g), MPI(y) [<xref target="key-dsa"/>]</c>
      <c>MPI(x)</c>
      <c>MPI(r), MPI(s) [<xref target="sig-dsa"/>]</c>
      <c>N/A</c>
      <c>18</c>
      <c>ECDH public key algorithm</c>
      <c>OID, MPI(point in curve-specific point format), KDFParams [see <xref target="curve-specific-formats"/>, <xref target="key-ecdh"/>]</c>
      <c>MPI(value in curve-specific format) [<xref target="curve-specific-formats"/>]</c>
      <c>N/A</c>
      <c>MPI(point in curve-specific point format), size octet, encoded key [<xref target="curve-specific-formats"/>, <xref target="pkesk-ecdh"/>, <xref target="ecdh"/>]</c>
      <c>19</c>
      <c>ECDSA public key algorithm <xref target="FIPS186"/></c>
      <c>OID, MPI(point in SEC1 format) [<xref target="key-ecdsa"/>]</c>
      <c>MPI(value)</c>
      <c>MPI(r), MPI(s) [<xref target="sig-dsa"/>]</c>
      <c>N/A</c>
      <c>20</c>
      <c>Reserved (formerly Elgamal Encrypt or Sign)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>21</c>
      <c>Reserved for Diffie-Hellman (X9.42, as defined for IETF-S/MIME)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>22</c>
      <c>EdDSALegacy (deprecated)</c>
      <c>OID, MPI(point in prefixed native format) [see <xref target="ec-point-prefixed-native"/>, <xref target="key-eddsa-legacy"/>]</c>
      <c>MPI(value in curve-specific format) [see <xref target="curve-specific-formats"/>]</c>
      <c>MPI, MPI [see <xref target="curve-specific-formats"/>, <xref target="sig-eddsa-legacy"/>]</c>
      <c>N/A</c>
      <c>23</c>
      <c>Reserved (AEDH)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>24</c>
      <c>Reserved (AEDSA)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>25</c>
      <c>X25519</c>
      <c>32 octets [see <xref target="key-x25519"/>]</c>
      <c>32 octets</c>
      <c>N/A</c>
      <c>32 octets, size octet, encoded key [see <xref target="pkesk-x25519"/>]</c>
      <c>26</c>
      <c>X448</c>
      <c>56 octets [see <xref target="key-x448"/>]</c>
      <c>56 octets</c>
      <c>N/A</c>
      <c>56 octets, size octet, encoded key [see <xref target="pkesk-x448"/>]</c>
      <c>27</c>
      <c>Ed25519</c>
      <c>32 octets [see <xref target="key-ed25519"/>]</c>
      <c>32 octets</c>
      <c>64 octets [see <xref target="sig-ed25519"/>]</c>
      <c>&#160;</c>
      <c>28</c>
      <c>Ed448</c>
      <c>57 octets [see <xref target="key-ed448"/>]</c>
      <c>57 octets</c>
      <c>114 octets [see <xref target="sig-ed448"/>]</c>
      <c>&#160;</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement Ed25519 (27) for signatures, and X25519 (25) for encryption.
Implementations <bcp14>SHOULD</bcp14> implement Ed448 (28) and X448 (26).</t>

<t>RSA (1) keys are deprecated and <bcp14>SHOULD NOT</bcp14> be generated, but may be interpreted.
RSA Encrypt-Only (2) and RSA Sign-Only (3) are deprecated and <bcp14>MUST NOT</bcp14> be generated.
See <xref target="rsa-notes"/>.
Elgamal (16) keys are deprecated and <bcp14>MUST NOT</bcp14> be generated (see <xref target="elgamal-notes"/>).
DSA (17) keys are deprecated and <bcp14>MUST NOT</bcp14> be generated (see <xref target="dsa-notes"/>).
See <xref target="reserved-notes"/> for notes on Elgamal Encrypt or Sign (20), and X9.42 (21).
Implementations <bcp14>MAY</bcp14> implement any other algorithm.</t>

<t>Note that an implementation conforming to the previous version of this standard (<xref target="RFC4880"/>) has only DSA (17) and Elgamal (16) as its <bcp14>MUST</bcp14>-implement algorithms.</t>

<t>A compatible specification of ECDSA is given in <xref target="RFC6090"/> as "KT-I Signatures" and in <xref target="SEC1"/>; ECDH is defined in <xref target="ecdh"/> of this document.</t>

</section>
<section anchor="ec-curves"><name>ECC Curves for OpenPGP</name>

<t>The parameter curve OID is an array of octets that defines a named curve.</t>

<t>The table below specifies the exact sequence of octets for each named curve referenced in this document.
It also specifies which public key algorithms the curve can be used with, as well as the size of expected elements in octets:</t>

<texttable title="ECC Curve OID and Usage registry" anchor="ecc-oid-usage-registry">
      <ttcol align='left'>ASN.1 Object Identifier</ttcol>
      <ttcol align='left'>OID len</ttcol>
      <ttcol align='left'>Curve OID octets in hex</ttcol>
      <ttcol align='left'>Curve name</ttcol>
      <ttcol align='left'>Usage</ttcol>
      <ttcol align='left'>Field Size (fsize)</ttcol>
      <c>1.2.840.10045.3.1.7</c>
      <c>8</c>
      <c>2A 86 48 CE 3D 03 01 07</c>
      <c>NIST P-256</c>
      <c>ECDSA, ECDH</c>
      <c>32</c>
      <c>1.3.132.0.34</c>
      <c>5</c>
      <c>2B 81 04 00 22</c>
      <c>NIST P-384</c>
      <c>ECDSA, ECDH</c>
      <c>48</c>
      <c>1.3.132.0.35</c>
      <c>5</c>
      <c>2B 81 04 00 23</c>
      <c>NIST P-521</c>
      <c>ECDSA, ECDH</c>
      <c>66</c>
      <c>1.3.36.3.3.2.8.1.1.7</c>
      <c>9</c>
      <c>2B 24 03 03 02 08 01 01 07</c>
      <c>brainpoolP256r1</c>
      <c>ECDSA, ECDH</c>
      <c>32</c>
      <c>1.3.36.3.3.2.8.1.1.11</c>
      <c>9</c>
      <c>2B 24 03 03 02 08 01 01 0B</c>
      <c>brainpoolP384r1</c>
      <c>ECDSA, ECDH</c>
      <c>48</c>
      <c>1.3.36.3.3.2.8.1.1.13</c>
      <c>9</c>
      <c>2B 24 03 03 02 08 01 01 0D</c>
      <c>brainpoolP512r1</c>
      <c>ECDSA, ECDH</c>
      <c>64</c>
      <c>1.3.6.1.4.1.11591.15.1</c>
      <c>9</c>
      <c>2B 06 01 04 01 DA 47 0F 01</c>
      <c>Ed25519Legacy</c>
      <c>EdDSALegacy</c>
      <c>32</c>
      <c>1.3.6.1.4.1.3029.1.5.1</c>
      <c>10</c>
      <c>2B 06 01 04 01 97 55 01 05 01</c>
      <c>Curve25519Legacy</c>
      <c>ECDH</c>
      <c>32</c>
</texttable>

<t>The "Field Size (fsize)" column represents the field size of the group in number of octets, rounded up, such that x or y coordinates for a point on the curve or native point representations for the curve can be represented in that many octets.
For the curves specified here, also scalars such as the base point order and the private key can be represented in fsize octets.
Note that, however, there exist curves outside this specification where the representation of scalars requires an additional octet.</t>

<t>The sequence of octets in the third column is the result of applying the Distinguished Encoding Rules (DER) to the ASN.1 Object Identifier with subsequent truncation.
The truncation removes the two fields of encoded Object Identifier.
The first omitted field is one octet representing the Object Identifier tag, and the second omitted field is the length of the Object Identifier body.
For example, the complete ASN.1 DER encoding for the NIST P-256 curve OID is "06 08 2A 86 48 CE 3D 03 01 07", from which the first entry in the table above is constructed by omitting the first two octets.
Only the truncated sequence of octets is the valid representation of a curve OID.</t>

<t>The deprecated OIDs for Ed25519Legacy and Curve25519Legacy are used in legacy version 4 keys and signatures.
Implementations <bcp14>MAY</bcp14> implement these variants for compatibility with existing v4 key material and signatures.
Implementations <bcp14>MUST NOT</bcp14> accept or generate v6 key material using the deprecated OIDs.</t>

<section anchor="curve-specific-formats"><name>Curve-Specific Wire Formats</name>

<t>Some Elliptic Curve Public Key Algorithms use different conventions for specific fields depending on the curve in use.
Each field is always formatted as an MPI, but with a curve-specific framing.
This table summarizes those distinctions.</t>

<texttable title="ECC Curve-specific Wire Formats registry" anchor="ecc-wire-formats-registry">
      <ttcol align='left'>Curve</ttcol>
      <ttcol align='left'>ECDH Point Format</ttcol>
      <ttcol align='left'>ECDH Secret Key MPI</ttcol>
      <ttcol align='left'>EdDSA Secret Key MPI</ttcol>
      <ttcol align='left'>EdDSA Signature first MPI</ttcol>
      <ttcol align='left'>EdDSA Signature second MPI</ttcol>
      <c>NIST P-256</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>NIST P-384</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>NIST P-521</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>brainpoolP256r1</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>brainpoolP384r1</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>brainpoolP512r1</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>Ed25519Legacy</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>32 octets of secret</c>
      <c>32 octets of R</c>
      <c>32 octets of S</c>
      <c>Curve25519Legacy</c>
      <c>prefixed native</c>
      <c>integer (see <xref target="curve25519-secrets"/>)</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
</texttable>

<t>For the native octet-string forms of Ed25519Legacy values, see <xref target="RFC8032"/>.
For the native octet-string forms of Curve25519Legacy secret scalars and points, see <xref target="RFC7748"/>.</t>

</section>
</section>
<section anchor="symmetric-algos"><name>Symmetric-Key Algorithms</name>

<texttable title="Symmetric Key Algorithms registry" anchor="symkey-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <c>0</c>
      <c>Plaintext or unencrypted data</c>
      <c>1</c>
      <c>IDEA <xref target="IDEA"/></c>
      <c>2</c>
      <c>TripleDES (DES-EDE, <xref target="SCHNEIER"/>, <xref target="HAC"/> - 168 bit key derived from 192)</c>
      <c>3</c>
      <c>CAST5 (128 bit key, as per <xref target="RFC2144"/>)</c>
      <c>4</c>
      <c>Blowfish (128 bit key, 16 rounds) <xref target="BLOWFISH"/></c>
      <c>5</c>
      <c>Reserved</c>
      <c>6</c>
      <c>Reserved</c>
      <c>7</c>
      <c>AES with 128-bit key <xref target="AES"/></c>
      <c>8</c>
      <c>AES with 192-bit key</c>
      <c>9</c>
      <c>AES with 256-bit key</c>
      <c>10</c>
      <c>Twofish with 256-bit key <xref target="TWOFISH"/></c>
      <c>11</c>
      <c>Camellia with 128-bit key <xref target="RFC3713"/></c>
      <c>12</c>
      <c>Camellia with 192-bit key</c>
      <c>13</c>
      <c>Camellia with 256-bit key</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>253, 254 and 255</c>
      <c>Reserved to avoid collision with Secret Key Encryption (see <xref target="secret-key-protection-registry"/> and <xref target="secret-key-packet-formats"/>)</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement AES-128.
Implementations <bcp14>SHOULD</bcp14> implement AES-256.
Implementations <bcp14>MUST NOT</bcp14> encrypt data with IDEA, TripleDES, or CAST5.
Implementations <bcp14>MAY</bcp14> decrypt data that uses IDEA, TripleDES, or CAST5 for the sake of reading older messages or new messages from legacy clients.
An Implementation that decrypts data using IDEA, TripleDES, or CAST5 <bcp14>SHOULD</bcp14> generate a deprecation warning about the symmetric algorithm, indicating that message confidentiality is suspect.
Implementations <bcp14>MAY</bcp14> implement any other algorithm.</t>

</section>
<section anchor="compression-algos"><name>Compression Algorithms</name>

<texttable title="Compression Algorithms registry" anchor="compression-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <c>0</c>
      <c>Uncompressed</c>
      <c>1</c>
      <c>ZIP <xref target="RFC1951"/></c>
      <c>2</c>
      <c>ZLIB <xref target="RFC1950"/></c>
      <c>3</c>
      <c>BZip2 <xref target="BZ2"/></c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement uncompressed data.
Implementations <bcp14>SHOULD</bcp14> implement ZLIB.
For interoperability reasons implementations <bcp14>SHOULD</bcp14> be able to decompress using ZIP.
Implementations <bcp14>MAY</bcp14> implement any other algorithm.</t>

</section>
<section anchor="hash-algos"><name>Hash Algorithms</name>

<texttable title="Hash Algorithms registry" anchor="hash-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <ttcol align='left'>Text Name</ttcol>
      <ttcol align='left'>V6 signature salt size</ttcol>
      <c>1</c>
      <c>MD5 <xref target="HAC"/></c>
      <c>"MD5"</c>
      <c>N/A</c>
      <c>2</c>
      <c>SHA-1 <xref target="FIPS180"/>, <xref target="sha1cd"/></c>
      <c>"SHA1"</c>
      <c>N/A</c>
      <c>3</c>
      <c>RIPEMD-160 <xref target="HAC"/></c>
      <c>"RIPEMD160"</c>
      <c>N/A</c>
      <c>4</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>5</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>6</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>7</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>8</c>
      <c>SHA2-256 <xref target="FIPS180"/></c>
      <c>"SHA256"</c>
      <c>16</c>
      <c>9</c>
      <c>SHA2-384 <xref target="FIPS180"/></c>
      <c>"SHA384"</c>
      <c>24</c>
      <c>10</c>
      <c>SHA2-512 <xref target="FIPS180"/></c>
      <c>"SHA512"</c>
      <c>32</c>
      <c>11</c>
      <c>SHA2-224 <xref target="FIPS180"/></c>
      <c>"SHA224"</c>
      <c>16</c>
      <c>12</c>
      <c>SHA3-256 <xref target="FIPS202"/></c>
      <c>"SHA3-256"</c>
      <c>16</c>
      <c>13</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>14</c>
      <c>SHA3-512 <xref target="FIPS202"/></c>
      <c>"SHA3-512"</c>
      <c>32</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<texttable title="Hash Algorithm Identifiers for RSA Signatures use of EMSA-PKCS1-v1_5 Padding registry" anchor="emsa-hash-oids-registry">
      <ttcol align='left'>Hash Algorithm</ttcol>
      <ttcol align='left'>OID</ttcol>
      <ttcol align='left'>Full hash prefix</ttcol>
      <c>MD5</c>
      <c>1.2.840.113549.2.5</c>
      <c>0x30, 0x20, 0x30, 0x0C, 0x06, 0x08, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, 0x05, 0x00, 0x04, 0x10</c>
      <c>SHA-1</c>
      <c>1.3.14.3.2.26</c>
      <c>0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2B, 0x0E, 0x03, 0x02, 0x1A, 0x05, 0x00, 0x04, 0x14</c>
      <c>RIPEMD-160</c>
      <c>1.3.36.3.2.1</c>
      <c>0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2B, 0x24, 0x03, 0x02, 0x01, 0x05, 0x00, 0x04, 0x14</c>
      <c>SHA2-256</c>
      <c>2.16.840.1.101.3.4.2.1</c>
      <c>0x30, 0x31, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01, 0x05, 0x00, 0x04, 0x20</c>
      <c>SHA2-384</c>
      <c>2.16.840.1.101.3.4.2.2</c>
      <c>0x30, 0x41, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02, 0x05, 0x00, 0x04, 0x30</c>
      <c>SHA2-512</c>
      <c>2.16.840.1.101.3.4.2.3</c>
      <c>0x30, 0x51, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03, 0x05, 0x00, 0x04, 0x40</c>
      <c>SHA2-224</c>
      <c>2.16.840.1.101.3.4.2.4</c>
      <c>0x30, 0x2D, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x04, 0x05, 0x00, 0x04, 0x1C</c>
      <c>SHA3-256</c>
      <c>2.16.840.1.101.3.4.2.8</c>
      <c>0x30, 0x31, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x08, 0x05, 0x00, 0x04, 0x20</c>
      <c>SHA3-512</c>
      <c>2.16.840.1.101.3.4.2.10</c>
      <c>0x30, 0x51, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x0a, 0x05, 0x00, 0x04, 0x40</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement SHA2-256.
Implementations <bcp14>SHOULD</bcp14> implement SHA2-384 and SHA2-512.
Implementations <bcp14>MAY</bcp14> implement other algorithms.
Implementations <bcp14>SHOULD NOT</bcp14> create messages which require the use of SHA-1 with the exception of computing version 4 key fingerprints and for purposes of the Modification Detection Code (MDC) in version 1 Symmetrically Encrypted Integrity Protected Data packets.
Implementations <bcp14>MUST NOT</bcp14> generate signatures with MD5, SHA-1, or RIPEMD-160.
Implementations <bcp14>MUST NOT</bcp14> use MD5, SHA-1, or RIPEMD-160 as a hash function in an ECDH KDF.
Implementations <bcp14>MUST NOT</bcp14> generate packets using MD5, SHA-1, or RIPEMD-160 as a hash function in an S2K KDF.
Implementations <bcp14>MUST NOT</bcp14> decrypt a secret using MD5, SHA-1, or RIPEMD-160 as a hash function in an S2K KDF in a version 6 (or later) packet.
Implementations <bcp14>MUST NOT</bcp14> validate any recent signature that depends on MD5, SHA-1, or RIPEMD-160.
Implementations <bcp14>SHOULD NOT</bcp14> validate any old signature that depends on MD5, SHA-1, or RIPEMD-160 unless the signature's creation date predates known weakness of the algorithm used, and the implementation is confident that the message has been in the secure custody of the user the whole time.</t>

</section>
<section anchor="aead-algorithms"><name>AEAD Algorithms</name>

<texttable title="AEAD Algorithms registry" anchor="aead-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Nonce length (octets)</ttcol>
      <ttcol align='left'>authentication tag length (octets)</ttcol>
      <c>1</c>
      <c>EAX</c>
      <c><xref target="EAX"/></c>
      <c>16</c>
      <c>16</c>
      <c>2</c>
      <c>OCB</c>
      <c><xref target="RFC7253"/></c>
      <c>15</c>
      <c>16</c>
      <c>3</c>
      <c>GCM</c>
      <c><xref target="SP800-38D"/></c>
      <c>12</c>
      <c>16</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement OCB.
Implementations <bcp14>MAY</bcp14> implement EAX, GCM and other algorithms.</t>

</section>
</section>
<section anchor="packet-composition"><name>Packet Composition</name>

<t>OpenPGP packets are assembled into sequences in order to create messages and to transfer keys.
Not all possible packet sequences are meaningful and correct.
This section describes the rules for how packets should be placed into sequences.</t>

<t>There are three distinct sequences of packets:</t>

<t><list style="symbols">
  <t>Transferable Public Keys (<xref target="transferable-public-keys"/>) and their close counterpart, Transferable Secret Keys (<xref target="transferable-secret-keys"/>)</t>
  <t>OpenPGP Messages (<xref target="openpgp-messages"/>)</t>
  <t>Detached Signatures (<xref target="detached-signatures"/>)</t>
</list></t>

<t>Each sequence has an explicit grammar of what packet types (<xref target="packet-types-registry"/>) can appear in what place.
The presence of an unknown critical packet, or a known but unexpected packet is a critical error, invalidating the entire sequence (see <xref target="packet-criticality"/>).
On the other hand, unknown non-critical packets can appear anywhere within any sequence.
This provides a structured way to introduce new packets into the protocol, while making sure that certain packets will be handled strictly.</t>

<t>An implementation may "recognize" a packet, but not implement it.
The purpose of Packet Criticality is to allow the producer to tell the consumer whether it would prefer a new, unknown packet to generate an error or be ignored.</t>

<t>Note that previous versions of this document did not have a concept of Packet Criticality, and did not give clear guidance on what to do when unknown packets are encountered.
Therefore, a legacy implementation may reject unknown non-critical packets, or accept unknown critical packets.</t>

<t>When generating a sequence of OpenPGP packets according to one of the three grammars, an implementation <bcp14>MUST NOT</bcp14> inject a critical packet of a type that does not adhere to the grammar.</t>

<t>When consuming a sequence of OpenPGP packets according to one of the three grammars, an implementation <bcp14>MUST</bcp14> reject the sequence with an error if it encounters a critical packet of inappropriate type according to the grammar.</t>

<section anchor="transferable-public-keys"><name>Transferable Public Keys</name>

<t>OpenPGP users may transfer public keys.
This section describes the structure of public keys in transit to ensure interoperability.
An OpenPGP Transferable Public Key is also known as an OpenPGP certificate, in order to distinguish it from both its constituent Public-Key packets (<xref target="pubkey"/> and <xref target="pubsubkey"/>) and the underlying cryptographic key material.</t>

<section anchor="v6-certificate-structures"><name>OpenPGP v6 Certificate Structure</name>

<t>The format of an OpenPGP v6 certificate is as follows.
Entries in square brackets are optional and ellipses indicate repetition.</t>

<figure><artwork><![CDATA[
Primary Key
   [Revocation Signature...]
    Direct-Key Signature...
   [User ID or User Attribute
           [Certification Revocation Signature...]
           [Certification Signature...]]...
   [Subkey [Subkey Revocation Signature...]
           Subkey Binding Signature...]...
   [Padding]
]]></artwork></figure>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<t>Note, that a v6 key uses a self-signed Direct-Key Signature to store algorithm preferences.</t>

<t>Every subkey for a v6 primary key <bcp14>MUST</bcp14> be a v6 subkey.
Every subkey <bcp14>MUST</bcp14> have at least one subkey binding signature.
Every subkey binding signature <bcp14>MUST</bcp14> be a self-signature (that is, made by the v6 primary key).
Like all other signatures, every self-signature made by a v6 key <bcp14>MUST</bcp14> be a v6 signature.</t>

</section>
<section anchor="v6-revocation-certificate"><name>OpenPGP v6 Revocation Certificate</name>

<t>When a primary v6 Public Key is revoked, it is sometimes distributed with only the revocation signature:</t>

<figure><artwork><![CDATA[
Primary Key
    Revocation Signature
]]></artwork></figure>

<t>In this case, the direct-key signature is no longer necessary, since the primary key itself has been marked as unusable.</t>

</section>
<section anchor="openpgp-v4-certificate-structure"><name>OpenPGP v4 Certificate Structure</name>

<t>The format of an OpenPGP v4 key is as follows.</t>

<figure><artwork><![CDATA[
Primary Key
   [Revocation Signature]
   [Direct-Key Signature...]
   [User ID or User Attribute [Signature...]]...
   [Subkey [Subkey Revocation Signature...]
           Subkey Binding Signature...]...
]]></artwork></figure>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<t>A subkey always has at least one subkey binding signature after it that is issued using the primary key to tie the two keys together.
These binding signatures may be in either v3 or v4 format, but <bcp14>SHOULD</bcp14> be in v4 format.
Subkeys that can issue signatures <bcp14>MUST</bcp14> have a v4 binding signature due to the <bcp14>REQUIRED</bcp14> embedded primary key binding signature.</t>

<t>Every subkey for a v4 primary key <bcp14>MUST</bcp14> be a v4 subkey.</t>

<t>When a primary v4 Public Key is revoked, the revocation signature is sometimes distributed by itself, without the primary key packet it applies to. This is referred to as a "revocation certificate".
Instead, a v6 revocation certificate <bcp14>MUST</bcp14> include the primary key packet, as described in <xref target="v6-revocation-certificate"/>.</t>

</section>
<section anchor="openpgp-v3-key-structure"><name>OpenPGP v3 Key Structure</name>

<t>The format of an OpenPGP v3 key is as follows.</t>

<figure><artwork><![CDATA[
RSA Public Key
   [Revocation Signature]
    User ID [Signature...]
   [User ID [Signature...]]...
]]></artwork></figure>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<t>Each signature certifies the RSA public key and the preceding User ID.
The RSA public key can have many User IDs and each User ID can have many signatures.
V3 keys are deprecated.
Implementations <bcp14>MUST NOT</bcp14> generate new v3 keys, but <bcp14>MAY</bcp14> continue to use existing ones.</t>

<t>V3 keys <bcp14>MUST NOT</bcp14> have subkeys.</t>

</section>
<section anchor="common-requirements"><name>Common requirements</name>

<t>The Public-Key packet occurs first.</t>

<t>The primary key <bcp14>MUST</bcp14> be an algorithm capable of making signatures (that is, not an encryption-only algorithm).
This is because the primary key needs to be able to create self-signatures (see <xref target="self-sigs"/>).
The subkeys may be keys of any type.
For example, there may be a single-key RSA key, an Ed25519 primary key with an RSA encryption key, or an Ed25519 primary key with an X25519 subkey, etc.</t>

<t>Each of the following User ID packets provides the identity of the owner of this public key.
If there are multiple User ID packets, this corresponds to multiple means of identifying the same unique individual user; for example, a user may have more than one email address, and construct a User ID for each one.
A transferable public key <bcp14>SHOULD</bcp14> include at least one User ID packet unless storage requirements prohibit this.</t>

<t>Immediately following each User ID packet, there are zero or more Signature packets.
Each Signature packet is calculated on the immediately preceding User ID packet and the initial Public-Key packet.
The signature serves to certify the corresponding public key and User ID.
In effect, the signer is testifying to his or her belief that this public key belongs to the user identified by this User ID.</t>

<t>Within the same section as the User ID packets, there are zero or more User Attribute packets.
Like the User ID packets, a User Attribute packet is followed by zero or more Signature packets calculated on the immediately preceding User Attribute packet and the initial Public-Key packet.</t>

<t>User Attribute packets and User ID packets may be freely intermixed in this section, so long as the signatures that follow them are maintained on the proper User Attribute or User ID packet.</t>

<t>After the User ID packet or Attribute packet, there may be zero or more Subkey packets.
In general, subkeys are provided in cases where the top-level public key is a certification-only key.
However, any v4 or v6 key may have subkeys, and the subkeys may be encryption keys, signing keys, authentication keys, etc.
It is good practice to use separate subkeys for every operation (i.e. signature-only, encryption-only, authentication-only keys, etc.).</t>

<t>Each Subkey packet <bcp14>MUST</bcp14> be followed by one Signature packet, which should be a subkey binding signature issued by the top-level key.
For subkeys that can issue signatures, the subkey binding signature <bcp14>MUST</bcp14> contain an Embedded Signature subpacket with a primary key binding signature (0x19) issued by the subkey on the top-level key.</t>

<t>Subkey and Key packets may each be followed by a revocation Signature packet to indicate that the key is revoked.
Revocation signatures are only accepted if they are issued by the key itself, or by a key that is authorized to issue revocations via a Revocation Key subpacket in a self-signature by the top-level key.</t>

<t>The optional trailing Padding packet is a mechanism to defend against traffic analysis (see <xref target="traffic-analysis"/>).
For maximum interoperability, if the Public-Key packet is a v4 key, the optional Padding packet <bcp14>SHOULD NOT</bcp14> be present unless the recipient has indicated that they are capable of ignoring it successfully.
An implementation that is capable of receiving a transferable public key with a v6 Public-Key primary key <bcp14>MUST</bcp14> be able to accept (and ignore) the trailing optional Padding packet.</t>

<t>Transferable public-key packet sequences may be concatenated to allow transferring multiple public keys in one operation (see <xref target="keyrings"/>).</t>

</section>
</section>
<section anchor="transferable-secret-keys"><name>Transferable Secret Keys</name>

<t>OpenPGP users may transfer secret keys.
The format of a transferable secret key is the same as a transferable public key except that secret-key and secret-subkey packets can be used in addition to the public key and public-subkey packets.
If a single secret-key or secret-subkey packet is included in a packet sequence, it is a transferable secret key and should be handled and marked as such (see <xref target="forming-ascii-armor"/>).
Implementations <bcp14>SHOULD</bcp14> include self-signatures on any User IDs and subkeys, as this allows for a complete public key to be automatically extracted from the transferable secret key.
Implementations <bcp14>MAY</bcp14> choose to omit the self-signatures, especially if a transferable public key accompanies the transferable secret key.</t>

</section>
<section anchor="openpgp-messages"><name>OpenPGP Messages</name>

<t>An OpenPGP message is a packet or sequence of packets that corresponds to the following grammatical rules (comma (,) represents sequential composition, and vertical bar (|) separates alternatives):</t>

<dl>
  <dt>OpenPGP Message :-</dt>
  <dd>
    <t>Encrypted Message | Signed Message | Compressed Message | Literal Message.</t>
  </dd>
  <dt>Compressed Message :-</dt>
  <dd>
    <t>Compressed Data Packet.</t>
  </dd>
  <dt>Literal Message :-</dt>
  <dd>
    <t>Literal Data Packet.</t>
  </dd>
  <dt>ESK :-</dt>
  <dd>
    <t>Public-Key Encrypted Session Key Packet | Symmetric-Key Encrypted Session Key Packet.</t>
  </dd>
  <dt>ESK Sequence :-</dt>
  <dd>
    <t>ESK | ESK Sequence, ESK.</t>
  </dd>
  <dt>Encrypted Data :-</dt>
  <dd>
    <t>Symmetrically Encrypted Data Packet | Symmetrically Encrypted Integrity Protected Data Packet</t>
  </dd>
  <dt>Encrypted Message :-</dt>
  <dd>
    <t>Encrypted Data | ESK Sequence, Encrypted Data.</t>
  </dd>
  <dt>One-Pass Signed Message :-</dt>
  <dd>
    <t>One-Pass Signature Packet, OpenPGP Message, Corresponding Signature Packet.</t>
  </dd>
  <dt>Signed Message :-</dt>
  <dd>
    <t>Signature Packet, OpenPGP Message | One-Pass Signed Message.</t>
  </dd>
  <dt>Optionally Padded Message :-</dt>
  <dd>
    <t>OpenPGP Message | OpenPGP Message, Padding Packet.</t>
  </dd>
</dl>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<section anchor="unwrapping"><name>Unwrapping Encrypted and Compressed Messages</name>

<t>In addition to the above grammar, certain messages can be "unwrapped" to yield new messages.
In particular:</t>

<t><list style="symbols">
  <t>Decrypting a version 2 Symmetrically Encrypted and Integrity Protected Data packet <bcp14>MUST</bcp14> yield a valid Optionally Padded Message.</t>
  <t>Decrypting a version 1 Symmetrically Encrypted and Integrity Protected Data packet or --- for historic data --- a Symmetrically Encrypted Data packet <bcp14>MUST</bcp14> yield a valid OpenPGP Message.</t>
  <t>Decompressing a Compressed Data packet <bcp14>MUST</bcp14> also yield a valid OpenPGP Message.</t>
</list></t>

<t>When any unwrapping is performed, the resulting stream of octets is parsed into a series of OpenPGP packets like any other stream of octets.
The packet boundaries found in the series of octets are expected to align with the length of the unwrapped octet stream.
An implementation <bcp14>MUST NOT</bcp14> interpret octets beyond the boundaries of the unwrapped octet stream as part of any OpenPGP packet.
If an implementation encounters a packet whose header length indicates that it would extend beyond the boundaries of the unwrapped octet stream, the implementation <bcp14>MUST</bcp14> reject that packet as malformed and unusable.</t>

</section>
<section anchor="additional-constraints-on-packet-sequences"><name>Additional Constraints on Packet Sequences</name>

<t>Note that some subtle combinations that are formally acceptable by this grammar are nonetheless unacceptable.</t>

<section anchor="encrypted-message-versions"><name>Packet Versions in Encrypted Messages</name>

<t>As noted above, an Encrypted Message is a sequence of zero or more PKESKs (<xref target="pkesk"/>) and SKESKs (<xref target="skesk"/>), followed by an SEIPD (<xref target="seipd"/>) payload.
In some historic data, the payload may be a deprecated SED (<xref target="sed"/>) packet instead of SEIPD, though implementations <bcp14>MUST NOT</bcp14> generate SED packets (see <xref target="ciphertext-malleability"/>).
The versions of the preceding ESK packets within an Encrypted Message <bcp14>MUST</bcp14> align with the version of the payload SEIPD packet, as described in this section.</t>

<t>v3 PKESK and v4 SKESK packets both contain in their cleartext the symmetric cipher algorithm identifier in addition to the session key for the subsequent SEIPD packet.
Since a v1 SEIPD does not contain a symmetric algorithm identifier, all ESK packets preceding a v1 SEIPD payload <bcp14>MUST</bcp14> be either v3 PKESK or v4 SKESK.</t>

<t>On the other hand, the cleartext of the v6 ESK packets (either PKESK or SKESK) do not contain a symmetric cipher algorithm identifier, so they cannot be used in combination with a v1 SEIPD payload.
The payload following any v6 PKESK or v6 SKESK packet <bcp14>MUST</bcp14> be a v2 SEIPD.</t>

<t>Additionally, to avoid potentially conflicting cipher algorithm identifiers, and for simplicity, implementations <bcp14>MUST NOT</bcp14> precede a v2 SEIPD payload with either v3 PKESK or v4 SKESK packets.</t>

<t>The versions of packets found in an Encrypted Message are summarized in the following table.
An implementation <bcp14>MUST</bcp14> only generate an Encrypted Message using packet versions that match a row with "Yes" in the "Generate?" column.
Other rows are provided for the purpose of historic interoperability.
A conforming implementation <bcp14>MUST</bcp14> only generate an Encrypted Message using packets whose versions correspond to a single row.</t>

<texttable title="Encrypted Message Packet Versions registry" anchor="encrypted-packet-versions-registry">
      <ttcol align='left'>Version of Encrypted Data payload</ttcol>
      <ttcol align='left'>Version of preceding Symmetric-Key ESK (if any)</ttcol>
      <ttcol align='left'>Version of preceding Public-Key ESK (if any)</ttcol>
      <ttcol align='left'>Generate?</ttcol>
      <c>SED (<xref target="sed"/>)</c>
      <c>-</c>
      <c>v2 PKESK (<xref target="RFC2440"/>)</c>
      <c>No</c>
      <c>SED (<xref target="sed"/>)</c>
      <c>v4 SKESK (<xref target="v4-skesk"/>)</c>
      <c>v3 PKESK (<xref target="v3-pkesk"/>)</c>
      <c>No</c>
      <c>v1 SEIPD (<xref target="version-one-seipd"/>)</c>
      <c>v4 SKESK (<xref target="v4-skesk"/>)</c>
      <c>v3 PKESK (<xref target="v3-pkesk"/>)</c>
      <c>Yes</c>
      <c>v2 SEIPD (<xref target="version-two-seipd"/>)</c>
      <c>v6 SKESK (<xref target="v6-skesk"/>)</c>
      <c>v6 PKESK (<xref target="v6-pkesk"/>)</c>
      <c>Yes</c>
</texttable>

<t>An implementation processing an Encrypted Message <bcp14>MUST</bcp14> discard any preceding ESK packet with a version that does not align with the version of the payload.</t>

</section>
<section anchor="signed-message-versions"><name>Packet Versions in Signatures</name>

<t>OpenPGP key packets and signature packets are also versioned.
The version of a Signature typically matches the version of the signing key.
When a v6 key produces a signature packet, it <bcp14>MUST</bcp14> produce a version 6 signature packet, regardless of the signature packet type.
When a message is signed or verified using the one-pass construction, the version of the One-Pass Signature packet (<xref target="one-pass-sig"/>) should also be aligned to the other versions.</t>

<t>Some legacy implementations have produced unaligned signature versions for older key material, which are also described in the table below for purpose of historic interoperability.
A conforming implementation <bcp14>MUST</bcp14> only generate signature packets with version numbers matching rows with "Yes" in the "Generate?" column.</t>

<texttable title="Key and Signature Versions registry" anchor="signed-packet-versions-registry">
      <ttcol align='left'>Signing key version</ttcol>
      <ttcol align='left'>Signature packet version</ttcol>
      <ttcol align='left'>OPS packet version</ttcol>
      <ttcol align='left'>Generate?</ttcol>
      <c>3 (<xref target="v3-pubkeys"/>)</c>
      <c>3 (<xref target="version-three-sig"/>)</c>
      <c>3 <xref target="one-pass-sig"/></c>
      <c>No</c>
      <c>4 (<xref target="v4-pubkeys"/>)</c>
      <c>3 (<xref target="version-three-sig"/>)</c>
      <c>3 <xref target="one-pass-sig"/></c>
      <c>No</c>
      <c>4 (<xref target="v4-pubkeys"/>)</c>
      <c>4 (<xref target="version-four-and-six-sig"/>)</c>
      <c>3 <xref target="one-pass-sig"/></c>
      <c>Yes</c>
      <c>6 (<xref target="v6-pubkeys"/>)</c>
      <c>6 (<xref target="version-four-and-six-sig"/>)</c>
      <c>6 <xref target="one-pass-sig"/></c>
      <c>Yes</c>
</texttable>

<t>Note, however, that a version mismatch between these packets does not invalidate the packet sequence as a whole, it merely invalidates the signature, as a signature with an unknown version <bcp14>SHOULD</bcp14> be discarded (see <xref target="malformed-signatures"/>).</t>

</section>
</section>
</section>
<section anchor="detached-signatures"><name>Detached Signatures</name>

<t>Some OpenPGP applications use so-called "detached signatures".
For example, a program bundle may contain a file, and with it a second file that is a detached signature of the first file.
These detached signatures are simply one or more Signature packets stored separately from the data for which they are a signature.</t>

<t>In addition, a marker packet (<xref target="marker-packet"/>) and a padding packet (<xref target="padding-packet"/>) can appear anywhere in the sequence.</t>

</section>
</section>
<section anchor="elliptic-curve-cryptography"><name>Elliptic Curve Cryptography</name>

<t>This section describes algorithms and parameters used with Elliptic Curve Cryptography (ECC) keys.
A thorough introduction to ECC can be found in <xref target="KOBLITZ"/>.</t>

<t>None of the ECC methods described in this document are allowed with deprecated v3 keys.
Refer to <xref target="FIPS186"/>, B.4.1, for the method to generate a uniformly distributed ECC private key.</t>

<section anchor="ecc-curves"><name>ECC Curves</name>

<t>This document references three named prime field curves defined in <xref target="FIPS186"/> as "Curve P-256", "Curve P-384", and "Curve P-521"; and three named prime field curves defined in <xref target="RFC5639"/> as "brainpoolP256r1", "brainpoolP384r1", and "brainpoolP512r1".
The three <xref target="FIPS186"/> curves and the three <xref target="RFC5639"/> curves can be used with ECDSA and ECDH public key algorithms.
They are referenced using a sequence of octets, referred to as the curve OID.
<xref target="ec-curves"/> describes in detail how this sequence of octets is formed.</t>

<t>Separate algorithms are also defined for the use of X25519 and X448, defined in <xref target="RFC7748"/>; and Ed25519 and Ed448, defined in <xref target="RFC8032"/>.
Additionally, legacy OIDs are defined for "Curve25519Legacy" (for encryption using the ECDH algorithm) and "Ed25519Legacy" (for signing using the EdDSALegacy algorithm).</t>

</section>
<section anchor="ec-point-wire-formats"><name>EC Point Wire Formats</name>

<t>A point on an elliptic curve will always be represented on the wire as an MPI.
Each curve uses a specific point format for the data within the MPI itself.
Each format uses a designated prefix octet to ensure that the high octet has at least one bit set to make the MPI a constant size.</t>

<texttable title="Elliptic Curve Point Wire Formats registry" anchor="ec-point-wire-formats-registry">
      <ttcol align='right'>Name</ttcol>
      <ttcol align='left'>Wire Format</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>SEC1</c>
      <c>0x04 || x || y</c>
      <c><xref target="ec-point-sec1"/></c>
      <c>Prefixed native</c>
      <c>0x40 || native</c>
      <c><xref target="ec-point-prefixed-native"/></c>
</texttable>

<section anchor="ec-point-sec1"><name>SEC1 EC Point Wire Format</name>

<t>For a SEC1-encoded (uncompressed) point the content of the MPI is:</t>

<figure><artwork><![CDATA[
B = 04 || x || y
]]></artwork></figure>

<t>where x and y are coordinates of the point P = (x, y), and each is encoded in the big-endian format and zero-padded to the adjusted underlying field size.
The adjusted underlying field size is the underlying field size rounded up to the nearest 8-bit boundary, as noted in the "fsize" column in <xref target="ec-curves"/>.
This encoding is compatible with the definition given in <xref target="SEC1"/>.</t>

</section>
<section anchor="ec-point-prefixed-native"><name>Prefixed Native EC Point Wire Format</name>

<t>For a custom compressed point the content of the MPI is:</t>

<figure><artwork><![CDATA[
B = 40 || p
]]></artwork></figure>

<t>where p is the public key of the point encoded using the rules defined for the specified curve.
This format is used for ECDH keys based on curves expressed in Montgomery form, and for points when using EdDSA.</t>

</section>
<section anchor="notes-on-ec-point-wire-formats"><name>Notes on EC Point Wire Formats</name>

<t>Given the above definitions, the exact size of the MPI payload for an encoded point is 515 bits for both NIST P-256 and brainpoolP256r1, 771 for both NIST P-384 and brainpoolP384r1, 1059 for NIST P-521, 1027 for brainpoolP512r1, and 263 for both Curve25519Legacy and Ed25519Legacy.
For example, the length of a EdDSALegacy public key for the curve Ed25519Legacy is 263 bits: 7 bits to represent the 0x40 prefix octet and 32 octets for the native value of the public key.</t>

<t>Even though the zero point, also called the point at infinity, may occur as a result of arithmetic operations on points of an elliptic curve, it <bcp14>SHALL NOT</bcp14> appear in data structures defined in this document.</t>

<t>Each particular curve uses a designated wire format for the point found in its public key or ECDH data structure.
An implementation <bcp14>MUST NOT</bcp14> use a different wire format for a point than the wire format associated with the curve.</t>

</section>
</section>
<section anchor="ec-scalar-wire-formats"><name>EC Scalar Wire Formats</name>

<t>Some non-curve values in elliptic curve cryptography (for example, secret keys and signature components) are not points on a curve, but are also encoded on the wire in OpenPGP as an MPI.</t>

<t>Because of different patterns of deployment, some curves treat these values as opaque bit strings with the high bit set, while others are treated as actual integers, encoded in the standard OpenPGP big-endian form.
The choice of encoding is specific to the public key algorithm in use.</t>

<texttable title="Elliptic Curve Scalar Encodings registry" anchor="ec-scalar-wire-formats-registry">
      <ttcol align='left'>Type</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>integer</c>
      <c>An integer, big-endian encoded as a standard OpenPGP MPI</c>
      <c><xref target="mpi"/></c>
      <c>octet string</c>
      <c>An octet string of fixed length, that may be shorter on the wire due to leading zeros being stripped by the MPI encoding, and may need to be zero-padded before use</c>
      <c><xref target="ec-octet-string"/></c>
      <c>prefixed N octets</c>
      <c>An octet string of fixed length N, prefixed with octet 0x40 to ensure no leading zero octet</c>
      <c><xref target="ec-prefix"/></c>
</texttable>

<section anchor="ec-octet-string"><name>EC Octet String Wire Format</name>

<t>Some opaque strings of octets are represented on the wire as an MPI by simply stripping the leading zeros and counting the remaining bits.
These strings are of known, fixed length.
They are represented in this document as <spanx style="verb">MPI(N octets of X)</spanx> where <spanx style="verb">N</spanx> is the expected length in octets of the octet string.</t>

<t>For example, a five-octet opaque string (<spanx style="verb">MPI(5 octets of X)</spanx>) where <spanx style="verb">X</spanx> has the value <spanx style="verb">00 02 EE 19 00</spanx> would be represented on the wire as an MPI like so: <spanx style="verb">00 1A 02 EE 19 00</spanx>.</t>

<t>To encode <spanx style="verb">X</spanx> to the wire format, we set the MPI's two-octet bit counter to the value of the highest set bit (bit 26, or 0x001A), and do not transfer the leading all-zero octet to the wire.</t>

<t>To reverse the process, an implementation that knows this value has an expected length of 5 octets can take the following steps:</t>

<t><list style="symbols">
  <t>Ensure that the MPI's two-octet bitcount is less than or equal to 40 (5 octets of 8 bits)</t>
  <t>Allocate 5 octets, setting all to zero initially</t>
  <t>Copy the MPI data octets (without the two count octets) into the lower octets of the allocated space</t>
</list></t>

</section>
<section anchor="ec-prefix"><name>Elliptic Curve Prefixed Octet String Wire Format</name>

<t>Another way to ensure that a fixed-length bytestring is encoded simply to the wire while remaining in MPI format is to prefix the bytestring with a dedicated non-zero octet.
This specification uses 0x40 as the prefix octet.
This is represented in this standard as <spanx style="verb">MPI(prefixed N octets of X)</spanx>, where <spanx style="verb">N</spanx> is the known bytestring length.</t>

<t>For example, a five-octet opaque string using <spanx style="verb">MPI(prefixed 5 octets of X)</spanx> where <spanx style="verb">X</spanx> has the value <spanx style="verb">00 02 EE 19 00</spanx> would be written to the wire form as: <spanx style="verb">00 2F 40 00 02 EE 19 00</spanx>.</t>

<t>To encode the string, we prefix it with the octet 0x40 (whose 7th bit is set), then set the MPI's two-octet bit counter to 47 (0x002F, 7 bits for the prefix octet and 40 bits for the string).</t>

<t>To decode the string from the wire, an implementation that knows that the variable is formed in this way can:</t>

<t><list style="symbols">
  <t>Ensure that the first three octets of the MPI (the two bit-count octets plus the prefix octet)  are <spanx style="verb">00 2F 40</spanx>, and</t>
  <t>Use the remainder of the MPI directly off the wire.</t>
</list></t>

<t>Note that this is a similar approach to that used in the EC point encodings found in <xref target="ec-point-prefixed-native"/>.</t>

</section>
</section>
<section anchor="key-derivation-function"><name>Key Derivation Function</name>

<t>A key derivation function (KDF) is necessary to implement EC encryption.
The Concatenation Key Derivation Function (Approved Alternative 1) <xref target="SP800-56A"/> with the KDF hash function that is SHA2-256 <xref target="FIPS180"/> or stronger is <bcp14>REQUIRED</bcp14>.</t>

<t>For convenience, the synopsis of the encoding method is given below with significant simplifications attributable to the restricted choice of hash functions in this document.
However, <xref target="SP800-56A"/> is the normative source of the definition.</t>

<figure><artwork><![CDATA[
//   Implements KDF( X, oBits, Param );
//   Input: point X = (x,y)
//   oBits - the desired size of output
//   hBits - the size of output of hash function Hash
//   Param - octets representing the parameters
//   Assumes that oBits <= hBits
// Convert the point X to the octet string:
//   ZB' = 04 || x || y
// and extract the x portion from ZB'
ZB = x;
MB = Hash ( 00 || 00 || 00 || 01 || ZB || Param );
return oBits leftmost bits of MB.
]]></artwork></figure>

<t>Note that ZB in the KDF description above is the compact representation of X as defined in <xref section="4.2" sectionFormat="of" target="RFC6090"/>.</t>

</section>
<section anchor="ecdh"><name>EC DH Algorithm (ECDH)</name>

<t>The method is a combination of an ECC Diffie-Hellman method to establish a shared secret, a key derivation method to process the shared secret into a derived key, and a key wrapping method that uses the derived key to protect a session key used to encrypt a message.</t>

<t>The One-Pass Diffie-Hellman method C(1, 1, ECC CDH) <xref target="SP800-56A"/> <bcp14>MUST</bcp14> be implemented with the following restrictions: the ECC CDH primitive employed by this method is modified to always assume the cofactor is 1, the KDF specified in <xref target="key-derivation-function"/> is used, and the KDF parameters specified below are used.</t>

<t>The KDF parameters are encoded as a concatenation of the following 5 variable-length and fixed-length fields, which are compatible with the definition of the OtherInfo bitstring <xref target="SP800-56A"/>:</t>

<t><list style="symbols">
  <t>A variable-length field containing a curve OID, which is formatted as follows:  <list style="symbols">
      <t>A one-octet size of the following field,</t>
      <t>The octets representing a curve OID defined in <xref target="ec-curves"/>;</t>
    </list></t>
  <t>A one-octet public key algorithm ID defined in <xref target="pubkey-algos"/>;</t>
  <t>A variable-length field containing KDF parameters, which are identical to the corresponding field in the ECDH public key, and are formatted as follows:  <list style="symbols">
      <t>A one-octet size of the following fields; values 0 and 0xFF are reserved for future extensions,</t>
      <t>A one-octet value 0x01, reserved for future extensions,</t>
      <t>A one-octet hash function ID used with the KDF,</t>
      <t>A one-octet algorithm ID for the symmetric algorithm used to wrap the symmetric key for message encryption; see <xref target="ecdh"/> for details;</t>
    </list></t>
  <t>20 octets representing the UTF-8 encoding of the string <spanx style="verb">Anonymous Sender    </spanx>, which is the octet sequence 41 6E 6F 6E 79 6D 6F 75 73 20 53 65 6E 64 65 72 20 20 20 20;</t>
  <t>A variable-length field containing the fingerprint of the recipient encryption subkey identifying the key material that is needed for decryption.
For version 4 keys, this field is 20 octets.
For version 6 keys, this field is 32 octets.</t>
</list></t>

<t>The size in octets of the KDF parameters sequence, defined above, for encrypting to a v4 key is either 54 for curve NIST P-256, 51 for curves NIST P-384 and NIST P-521, 55 for curves brainpoolP256r1, brainpoolP384r1 and brainpoolP512r1, or 56 for Curve25519Legacy.
For encrypting to a v6 key, the size of the sequence is either 66 for curve NIST P-256, 63 for curves NIST P-384 and NIST P-521, or 67 for curves brainpoolP256r1, brainpoolP384r1 and brainpoolP512r1.</t>

<t>The key wrapping method is described in <xref target="RFC3394"/>.
The KDF produces a symmetric key that is used as a key-encryption key (KEK) as specified in <xref target="RFC3394"/>.
Refer to <xref target="ecdh-parameters"/> for the details regarding the choice of the KEK algorithm, which <bcp14>SHOULD</bcp14> be one of the three AES algorithms.
Key wrapping and unwrapping is performed with the default initial value of <xref target="RFC3394"/>.</t>

<t>To produce the input to the key wrapping method, first concatenate the following values:</t>

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

<t>Then, the above values are padded using the method described in <xref target="PKCS5"/> to an 8-octet granularity.</t>

<t>For example, in a v3 Public-Key Encrypted Session Key packet, an AES-256 session key is encoded as follows, forming a 40 octet sequence:</t>

<figure><artwork><![CDATA[
09 k0 k1 ... k31 s0 s1 05 05 05 05 05
]]></artwork></figure>

<t>The octets k0 to k31 above denote the session key, and the octets s0 and s1 denote the checksum of the session key octets.
This encoding allows the sender to obfuscate the size of the symmetric encryption key used to encrypt the data.
For example, assuming that an AES algorithm is used for the session key, the sender <bcp14>MAY</bcp14> use 21, 13, and 5 octets of padding for AES-128, AES-192, and AES-256, respectively, to provide the same number of octets, 40 total, as an input to the key wrapping method.</t>

<t>In a v6 Public-Key Encrypted Session Key packet, the symmetric algorithm is not included, as described in <xref target="pkesk"/>.
For example, an AES-256 session key would be composed as follows:</t>

<figure><artwork><![CDATA[
k0 k1 ... k31 s0 s1 06 06 06 06 06 06
]]></artwork></figure>

<t>The octets k0 to k31 above again denote the session key, and the octets s0 and s1 denote the checksum.
In this case, assuming that an AES algorithm is used for the session key, the sender <bcp14>MAY</bcp14> use 22, 14, and 6 octets of padding for AES-128, AES-192, and AES-256, respectively, to provide the same number of octets, 40 total, as an input to the key wrapping method.</t>

<t>The output of the method consists of two fields.
The first field is the MPI containing the ephemeral key used to establish the shared secret.
The second field is composed of the following two subfields:</t>

<t><list style="symbols">
  <t>One octet encoding the size in octets of the result of the key wrapping method; the value 255 is reserved for future extensions;</t>
  <t>Up to 254 octets representing the result of the key wrapping method, applied to the 8-octet padded session key, as described above.</t>
</list></t>

<t>Note that for session key sizes 128, 192, and 256 bits, the size of the result of the key wrapping method is, respectively, 32, 40, and 48 octets, unless size obfuscation is used.</t>

<t>For convenience, the synopsis of the encoding method is given below; however, this section, <xref target="SP800-56A"/>, and <xref target="RFC3394"/> are the normative sources of the definition.</t>

<t><list style="symbols">
  <t>Obtain the authenticated recipient public key R</t>
  <t>Generate an ephemeral, single-use key pair {v, V=vG}</t>
  <t>Compute the shared point S = vR;</t>
  <t>m = symm_alg_ID || session key || checksum || pkcs5_padding;</t>
  <t>curve_OID_len = (octet)len(curve_OID);</t>
  <t>Param = curve_OID_len || curve_OID || public_key_alg_ID || 03 || 01 || KDF_hash_ID || KEK_alg_ID for AESKeyWrap || <spanx style="verb">Anonymous Sender    </spanx> || recipient_fingerprint;</t>
  <t>Z_len = the key size for the KEK_alg_ID used with AESKeyWrap</t>
  <t>Compute Z = KDF( S, Z_len, Param );</t>
  <t>Compute C = AESKeyWrap( Z, m ) as per <xref target="RFC3394"/></t>
  <t>Wipe the memory that contained S, v, and Z to avoid leaking ephemeral secrets</t>
  <t>VB = convert point V to the octet string</t>
  <t>Output (MPI(VB) || len(C) || C).</t>
</list></t>

<t>The decryption is the inverse of the method given.
Note that the recipient with key pair (r,R) obtains the shared secret by calculating:</t>

<figure><artwork><![CDATA[
S = rV = rvG
]]></artwork></figure>

<section anchor="ecdh-parameters"><name>ECDH Parameters</name>

<t>ECDH keys have a hash algorithm parameter for key derivation and a symmetric algorithm for key encapsulation.</t>

<t>For v6 keys, the following algorithms <bcp14>MUST</bcp14> be used depending on the curve.
An implementation <bcp14>MUST NOT</bcp14> generate a v6 ECDH key over any listed curve that uses different KDF or KEK parameters.
An implementation <bcp14>MUST NOT</bcp14> encrypt any message to a v6 ECDH key over a listed curve that announces a different KDF or KEK parameter.</t>

<t>For v4 keys, the following algorithms <bcp14>SHOULD</bcp14> be used depending on the curve.
An implementation <bcp14>SHOULD</bcp14> only use an AES algorithm as a KEK algorithm.</t>

<texttable title="ECDH KDF and KEK Parameters registry" anchor="ecdh-kdf-kek-parameters-registry">
      <ttcol align='left'>Curve</ttcol>
      <ttcol align='left'>Hash algorithm</ttcol>
      <ttcol align='left'>Symmetric algorithm</ttcol>
      <c>NIST P-256</c>
      <c>SHA2-256</c>
      <c>AES-128</c>
      <c>NIST P-384</c>
      <c>SHA2-384</c>
      <c>AES-192</c>
      <c>NIST P-521</c>
      <c>SHA2-512</c>
      <c>AES-256</c>
      <c>brainpoolP256r1</c>
      <c>SHA2-256</c>
      <c>AES-128</c>
      <c>brainpoolP384r1</c>
      <c>SHA2-384</c>
      <c>AES-192</c>
      <c>brainpoolP512r1</c>
      <c>SHA2-512</c>
      <c>AES-256</c>
      <c>Curve25519Legacy</c>
      <c>SHA2-256</c>
      <c>AES-128</c>
</texttable>

</section>
</section>
</section>
<section anchor="notes-on-algorithms"><name>Notes on Algorithms</name>

<section anchor="pkcs-encoding"><name>PKCS#1 Encoding in OpenPGP</name>

<t>This standard makes use of the PKCS#1 functions EME-PKCS1-v1_5 and EMSA-PKCS1-v1_5.
However, the calling conventions of these functions has changed in the past.
To avoid potential confusion and interoperability problems, we are including local copies in this document, adapted from those in PKCS#1 v2.1 <xref target="RFC8017"/>.
<xref target="RFC8017"/> should be treated as the ultimate authority on PKCS#1 for OpenPGP.
Nonetheless, we believe that there is value in having a self-contained document that avoids problems in the future with needed changes in the conventions.</t>

<section anchor="eme-pkcs1-v1-5-encode"><name>EME-PKCS1-v1_5-ENCODE</name>

<t>Input:</t>

<dl>
  <dt>k =</dt>
  <dd>
    <t>the length in octets of the key modulus.</t>
  </dd>
  <dt>M =</dt>
  <dd>
    <t>message to be encoded, an octet string of length mLen, where mLen &lt;= k - 11.</t>
  </dd>
</dl>

<t>Output:</t>

<dl>
  <dt>EM =</dt>
  <dd>
    <t>encoded message, an octet string of length k.</t>
  </dd>
</dl>

<t>Error: "message too long".</t>

<t><list style="numbers">
  <t>Length checking: If mLen &gt; k - 11, output "message too long" and stop.</t>
  <t>Generate an octet string PS of length k - mLen - 3 consisting of pseudo-randomly generated nonzero octets.
The length of PS will be at least eight octets.</t>
  <t>Concatenate PS, the message M, and other padding to form an encoded message EM of length k octets as  <vspace blankLines='1'/>
    <figure><artwork><![CDATA[
EM = 0x00 || 0x02 || PS || 0x00 || M.
]]></artwork></figure>
  </t>
  <t>Output EM.</t>
</list></t>

</section>
<section anchor="eme-pkcs1-v1-5-decode"><name>EME-PKCS1-v1_5-DECODE</name>

<t>Input:</t>

<dl>
  <dt>EM =</dt>
  <dd>
    <t>encoded message, an octet string</t>
  </dd>
</dl>

<t>Output:</t>

<dl>
  <dt>M =</dt>
  <dd>
    <t>message, an octet string.</t>
  </dd>
</dl>

<t>Error: "decryption error".</t>

<t>To decode an EME-PKCS1_v1_5 message, separate the encoded message EM into an octet string PS consisting of nonzero octets and a message M as follows</t>

<figure><artwork><![CDATA[
  EM = 0x00 || 0x02 || PS || 0x00 || M.
]]></artwork></figure>

<t>If the first octet of EM does not have hexadecimal value 0x00, if the second octet of EM does not have hexadecimal value 0x02, if there is no octet with hexadecimal value 0x00 to separate PS from M, or if the length of PS is less than 8 octets, output "decryption error" and stop.
See also <xref target="pkcs1-errors"/> regarding differences in reporting between a decryption error and a padding error.</t>

</section>
<section anchor="emsa-pkcs1-v1-5"><name>EMSA-PKCS1-v1_5</name>

<t>This encoding method is deterministic and only has an encoding operation.</t>

<t>Option:</t>

<dl>
  <dt>Hash -</dt>
  <dd>
    <t>a hash function in which hLen denotes the length in octets of the hash function output.</t>
  </dd>
</dl>

<t>Input:</t>

<dl>
  <dt>M =</dt>
  <dd>
    <t>message to be encoded.</t>
  </dd>
  <dt>emLen =</dt>
  <dd>
    <t>intended length in octets of the encoded message, at least tLen + 11, where tLen is the octet length of the DER encoding T of a certain value computed during the encoding operation.</t>
  </dd>
</dl>

<t>Output:</t>

<dl>
  <dt>EM =</dt>
  <dd>
    <t>encoded message, an octet string of length emLen.</t>
  </dd>
</dl>

<t>Errors: "message too long"; "intended encoded message length too short".</t>

<t>Steps:</t>

<t><list style="numbers">
  <t>Apply the hash function to the message M to produce a hash value H:  <vspace blankLines='1'/>
H = Hash(M).  <vspace blankLines='1'/>
If the hash function outputs "message too long," output "message too long" and stop.</t>
  <t>Using the list in <xref target="hash-algos"/>, produce an ASN.1 DER value for the hash function used.
Let T be the full hash prefix from the list, and let tLen be the length in octets of T.</t>
  <t>If emLen &lt; tLen + 11, output "intended encoded message length too short" and stop.</t>
  <t>Generate an octet string PS consisting of emLen - tLen - 3 octets with hexadecimal value 0xFF.
The length of PS will be at least 8 octets.</t>
  <t>Concatenate PS, the hash prefix T, and other padding to form the encoded message EM as  <vspace blankLines='1'/>
    <figure><artwork><![CDATA[
EM = 0x00 || 0x01 || PS || 0x00 || T.
]]></artwork></figure>
  </t>
  <t>Output EM.</t>
</list></t>

</section>
</section>
<section anchor="symmetric-algorithm-preferences"><name>Symmetric Algorithm Preferences</name>

<t>The symmetric algorithm preference is an ordered list of algorithms that the keyholder accepts.
Since it is found on a self-signature, it is possible that a keyholder may have multiple, different preferences.
For example, Alice may have AES-128 only specified for "alice@work.com" but Camellia-256, Twofish, and AES-128 specified for "alice@home.org".
Note that it is also possible for preferences to be in a subkey's binding signature.</t>

<t>Since AES-128 is the <bcp14>MUST</bcp14>-implement algorithm, if it is not explicitly in the list, it is tacitly at the end.
However, it is good form to place it there explicitly.
Note also that if an implementation does not implement the preference, then it is implicitly an AES-128-only implementation.
Note further that implementations conforming to previous versions of this standard <xref target="RFC4880"/> have TripleDES as its only <bcp14>MUST</bcp14>-implement algorithm.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> use a symmetric algorithm that is not in the recipient's preference list.
When encrypting to more than one recipient, the implementation finds a suitable algorithm by taking the intersection of the preferences of the recipients.
Note that the <bcp14>MUST</bcp14>-implement algorithm, AES-128, ensures that the intersection is non-empty.
The implementation may use any mechanism to pick an algorithm in the intersection.</t>

<t>If an implementation can decrypt a message that a keyholder doesn't have in their preferences, the implementation <bcp14>SHOULD</bcp14> decrypt the message anyway, but <bcp14>MUST</bcp14> warn the keyholder that the protocol has been violated.
For example, suppose that Alice, above, has software that implements all algorithms in this specification.
Nonetheless, she prefers subsets for work or home.
If she is sent a message encrypted with IDEA, which is not in her preferences, the software warns her that someone sent her an IDEA-encrypted message, but it would ideally decrypt it anyway.</t>

<section anchor="plaintext"><name>Plaintext</name>

<t>Algorithm 0, "plaintext", may only be used to denote secret keys that are stored in the clear.
Implementations <bcp14>MUST NOT</bcp14> use plaintext in encrypted data packets; they must use Literal Data packets to encode unencrypted literal data.</t>

</section>
</section>
<section anchor="other-algorithm-preferences"><name>Other Algorithm Preferences</name>

<t>Other algorithm preferences work similarly to the symmetric algorithm preference, in that they specify which algorithms the keyholder accepts.
There are two interesting cases that other comments need to be made about, though, the compression preferences and the hash preferences.</t>

<section anchor="compression-preferences"><name>Compression Preferences</name>

<t>Like the algorithm preferences, an implementation <bcp14>MUST NOT</bcp14> use an algorithm that is not in the preference vector.
If Uncompressed (0) is not explicitly in the list, it is tacitly at the end.
That is, uncompressed messages may always be sent.</t>

<t>Note that earlier implementations may assume that the absence of compression preferences means that [ZIP(1), Uncompressed(0)] are preferred, and default to ZIP compression.
Therefore, an implementation that prefers uncompressed data <bcp14>SHOULD</bcp14> explicitly state this in the preferred compression algorithms.</t>

<section anchor="uncompressed"><name>Uncompressed</name>

<t>Algorithm 0, "uncompressed", may only be used to denote a preference for uncompressed data.
Implementations <bcp14>MUST NOT</bcp14> use uncompressed in Compressed Data packets; they must use Literal Data packets to encode uncompressed literal data.</t>

</section>
</section>
<section anchor="hash-algorithm-preferences"><name>Hash Algorithm Preferences</name>

<t>Typically, the choice of a hash algorithm is something the signer does, rather than the verifier, because a signer rarely knows who is going to be verifying the signature.
This preference, though, allows a protocol based upon digital signatures ease in negotiation.</t>

<t>Thus, if Alice is authenticating herself to Bob with a signature, it makes sense for her to use a hash algorithm that Bob's software uses.
This preference allows Bob to state in his key which algorithms Alice may use.</t>

<t>Since SHA2-256 is the <bcp14>MUST</bcp14>-implement hash algorithm, if it is not explicitly in the list, it is tacitly at the end.
However, it is good form to place it there explicitly.</t>

</section>
</section>
<section anchor="rsa-notes"><name>RSA</name>

<t>The PKCS1-v1_5 padding scheme, used by the RSA algorithms defined in this document, is no longer recommended, and its use is deprecated by <xref target="SP800-131A"/>.
Therefore, an implementation <bcp14>SHOULD NOT</bcp14> generate RSA keys.</t>

<t>There are algorithm types for RSA Sign-Only, and RSA Encrypt-Only keys.
These types are deprecated.
The "key flags" subpacket in a signature is a much better way to express the same idea, and generalizes it to all algorithms.
An implementation <bcp14>MUST NOT</bcp14> create such a key, but <bcp14>MAY</bcp14> interpret it.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> generate RSA keys of size less than 3072 bits.
An implementation <bcp14>SHOULD NOT</bcp14> encrypt, sign or verify using RSA keys of size less than 3072 bits.
An implementation <bcp14>MUST NOT</bcp14> encrypt, sign or verify using RSA keys of size less than 2048 bits.
An implementation that decrypts a message using an RSA secret key of size less than 3072 bits <bcp14>SHOULD</bcp14> generate a deprecation warning that the key is too weak for modern use.</t>

</section>
<section anchor="dsa-notes"><name>DSA</name>

<t>DSA is expected to be deprecated in <xref target="FIPS186-5"/>.
Therefore, an implementation <bcp14>MUST NOT</bcp14> generate DSA keys.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> sign or verify using DSA keys.</t>

</section>
<section anchor="elgamal-notes"><name>Elgamal</name>

<t>The PKCS1-v1_5 padding scheme, used by the Elgamal algorithm defined in this document, is no longer recommended, and its use is deprecated by <xref target="SP800-131A"/>.
Therefore, an implementation <bcp14>MUST NOT</bcp14> generate Elgamal keys.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> encrypt using Elgamal keys.
An implementation that decrypts a message using an Elgamal secret key <bcp14>SHOULD</bcp14> generate a deprecation warning that the key is too weak for modern use.</t>

</section>
<section anchor="eddsa-notes"><name>EdDSA</name>

<t>Although the EdDSA algorithm allows arbitrary data as input, its use with OpenPGP requires that a digest of the message is used as input (pre-hashed).
See <xref target="computing-signatures"/> for details.
Truncation of the resulting digest is never applied; the resulting digest value is used verbatim as input to the EdDSA algorithm.</t>

<t>For clarity: while <xref target="RFC8032"/> describes different variants of EdDSA, OpenPGP uses the "pure" variant (PureEdDSA).
The hashing that happens with OpenPGP is done as part of the standard OpenPGP signature process, and that hash itself is fed as the input message to the PureEdDSA algorithm.</t>

<t>As specified in <xref target="RFC8032"/>, Ed448 also expects a "context string".
In OpenPGP, Ed448 is used with the empty string as a context string.</t>

</section>
<section anchor="reserved-notes"><name>Reserved Algorithm Numbers</name>

<t>A number of algorithm IDs have been reserved for algorithms that would be useful to use in an OpenPGP implementation, yet there are issues that prevent an implementer from actually implementing the algorithm.
These are marked in <xref target="pubkey-algos"/> as "reserved for".</t>

<t>The reserved public-key algorithm X9.42 (21) does not have the necessary parameters, parameter order, or semantics defined.
The same is currently true for reserved public-key algorithms AEDH (23) and AEDSA (24).</t>

<t>Previous versions of OpenPGP permitted Elgamal <xref target="ELGAMAL"/> signatures with a public-key identifier of 20.
These are no longer permitted.
An implementation <bcp14>MUST NOT</bcp14> generate such keys.
An implementation <bcp14>MUST NOT</bcp14> generate Elgamal signatures.
See <xref target="BLEICHENBACHER"/>.</t>

</section>
<section anchor="cfb-mode"><name>CFB Mode</name>

<t>The Cipher Feedback (CFB) mode used in this document is defined in Section 6.3 of <xref target="SP800-38A"/>.</t>

<t>The CFB segment size <spanx style="verb">s</spanx> is equal to the block size of the cipher (i.e., n-bit CFB mode where n is the block size is used).</t>

</section>
<section anchor="private-or-experimental-parameters"><name>Private or Experimental Parameters</name>

<t>S2K specifiers, Signature subpacket types, User Attribute types, image format types, and algorithms described in <xref target="constants"/> all reserve the range 100 to 110 for private and experimental use.
Packet types reserve the range 60 to 63 for private and experimental use.
These are intentionally managed with the PRIVATE USE method, as described in <xref target="RFC8126"/>.</t>

<t>However, implementations need to be careful with these and promote them to full IANA-managed parameters when they grow beyond the original, limited system.</t>

</section>
<section anchor="meta-considerations-for-expansion"><name>Meta-Considerations for Expansion</name>

<t>If OpenPGP is extended in a way that is not backwards-compatible, meaning that old implementations will not gracefully handle their absence of a new feature, the extension proposal can be declared in the key holder's self-signature as part of the Features signature subpacket.</t>

<t>We cannot state definitively what extensions will not be upwards-compatible, but typically new algorithms are upwards-compatible, whereas new packets are not.</t>

<t>If an extension proposal does not update the Features system, it <bcp14>SHOULD</bcp14> include an explanation of why this is unnecessary.
If the proposal contains neither an extension to the Features system nor an explanation of why such an extension is unnecessary, the proposal <bcp14>SHOULD</bcp14> be rejected.</t>

</section>
</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t><list style="symbols">
  <t>As with any technology involving cryptography, you should check the current literature to determine if any algorithms used here have been found to be vulnerable to an attack.</t>
  <t>This specification uses Public-Key Cryptography technologies.
It is assumed that the private key portion of a public-private key pair is controlled and secured by the proper party or parties.</t>
  <t>The MD5 and SHA-1 hash algorithms have been found to have weaknesses, with collisions found in a number of cases.
MD5 and SHA-1 are deprecated for use in OpenPGP.</t>
  <t>Many security protocol designers think that it is a bad idea to use a single key for both privacy (encryption) and integrity (signatures).
In fact, this was one of the motivating forces behind the v4 key format with separate signature and encryption keys.
Using a single key for encrypting and signing is discouraged.</t>
  <t>The DSA algorithm will work with any hash, but is sensitive to the quality of the hash algorithm.
Verifiers should be aware that even if the signer used a strong hash, an attacker could have modified the signature to use a weak one.
Only signatures using acceptably strong hash algorithms should be accepted as valid.</t>
  <t>As OpenPGP combines many different asymmetric, symmetric, and hash algorithms, each with different measures of strength, care should be taken that the weakest element of an OpenPGP message is still sufficiently strong for the purpose at hand.
While consensus about the strength of a given algorithm may evolve, NIST Special Publication 800-57 <xref target="SP800-57"/> contains recommendations current at the time of this publication about equivalent security levels of different algorithms.</t>
  <t>There is a somewhat-related potential security problem in signatures.
If an attacker can find a message that hashes to the same hash with a different algorithm, a bogus signature structure can be constructed that evaluates correctly.  <vspace blankLines='1'/>
For example, suppose Alice DSA signs message M using hash algorithm H.
Suppose that Mallet finds a message M' that has the same hash value as M with H'.
Mallet can then construct a signature block that verifies as Alice's signature of M' with H'.
However, this would also constitute a weakness in either H or H' or both.
Should this ever occur, a revision will have to be made to this document to revise the allowed hash algorithms.</t>
  <t>If you are building an authentication system, the recipient may specify a preferred signing algorithm.
However, the signer would be foolish to use a weak algorithm simply because the recipient requests it.</t>
  <t>Some of the encryption algorithms mentioned in this document have been analyzed less than others.
For example, although TWOFISH is presently considered reasonably strong, it has been analyzed much less than AES.
Other algorithms may have other concerns surrounding them.</t>
  <t>In late summer 2002, Jallad, Katz, and Schneier published an interesting attack on older versions of the OpenPGP protocol and some of its implementations <xref target="JKS02"/>.
In this attack, the attacker modifies a message and sends it to a user who then returns the erroneously decrypted message to the attacker.
The attacker is thus using the user as a decryption oracle, and can often decrypt the message.
This attack is a particular form of ciphertext malleability.
See <xref target="ciphertext-malleability"/> for information on how to defend against such an attack using more recent versions of OpenPGP.</t>
</list></t>

<section anchor="sha1cd"><name>SHA-1 Collision Detection</name>

<t>As described in <xref target="SHAMBLES"/>, the SHA-1 digest algorithm is not collision-resistant.
However, an OpenPGP implementation cannot completely discard the SHA-1 algorithm, because it is required for implementing v4 public keys.
In particular, the v4 fingerprint derivation uses SHA-1.
So as long as an OpenPGP implementation supports v4 public keys, it will need to implement SHA-1 in at least some scenarios.</t>

<t>To avoid the risk of uncertain breakage from a maliciously introduced SHA-1 collision, an OpenPGP implementation <bcp14>MAY</bcp14> attempt to detect when a hash input is likely from a known collision attack, and then either deliberately reject the hash input or modify the hash output.
This should convert an uncertain breakage (where it is unclear what the effect of a collision will be) to an explicit breakage, which is more desirable for a robust implementation.</t>

<t><xref target="STEVENS2013"/> describes a method for detecting indicators of well-known SHA-1 collision attacks.
Some example C code implementing this technique can be found at <xref target="SHA1CD"/>.</t>

</section>
<section anchor="signature-salt-rationale"><name>Advantages of Salted Signatures</name>

<t>V6 signatures include a salt that is hashed first, which size depends on the hashing algorithm.
This makes v6 OpenPGP signatures non-deterministic and protects against a broad class of attacks that depend on creating a signature over a predictable message.
By selecting a new random salt for each signature made, the signed hashes and the signatures are not predictable.</t>

<t>While the material to be signed could be attacker-controlled, hashing the salt first means that there is no attacker controlled hashed prefix.
An example of this kind of attack is described in the paper "SHA-1 Is A Shambles" <xref target="SHAMBLES"/>, which leverages a chosen prefix collision attack against SHA-1.
This means that an adversary carrying out a chosen-message attack will not be able to control the hash that is being signed, and will need to break second-preimage resistance instead of the simpler collision resistance to create two messages having the same signature.
The size of the salt is bound to the hash function to match the expected collision resistance level, and at least 16 octets.</t>

<t>In some cases, an attacker may be able to induce a signature to be made, even if they do not control the content of the message.
In some scenarios, a repeated signature over the exact same message may risk leakage of part or all of the signing key, for example see discussion of hardware faults over EdDSA and deterministic ECDSA in <xref target="PSSLR17"/>.
Choosing a new random salt for each signature ensures that no repeated signatures are produced, and mitigates this risk.</t>

</section>
<section anchor="ecc-side-channels"><name>Elliptic Curve Side Channels</name>

<t>Side channel attacks are a concern when a compliant application's use of the OpenPGP format can be modeled by a decryption or signing oracle, for example, when an application is a network service performing decryption to unauthenticated remote users.
ECC scalar multiplication operations used in ECDSA and ECDH are vulnerable to side channel attacks.
Countermeasures can often be taken at the higher protocol level, such as limiting the number of allowed failures or time-blinding of the operations associated with each network interface.
Mitigations at the scalar multiplication level seek to eliminate any measurable distinction between the ECC point addition and doubling operations.</t>

</section>
<section anchor="quick-check-oracle"><name>Risks of a Quick Check Oracle</name>

<t>In winter 2005, Serge Mister and Robert Zuccherato from Entrust released a paper describing a way that the "quick check" in v1 SEIPD and SED packets can be used as an oracle to decrypt two octets of every cipher block <xref target="MZ05"/>.
This check was intended for early detection of session key decryption errors, particularly to detect a wrong passphrase, since v4 SKESK packets do not include an integrity check.</t>

<t>There is a danger to using the quick check if timing or error information about the check can be exposed to an attacker, particularly via an automated service that allows rapidly repeated queries.</t>

<t>Disabling the quick check prevents the attack.</t>

<t>For very large legacy encrypted data whose session key is protected by a passphrase (v4 SKESK), the quick check may be convenient to the user, by informing them early that they typed the wrong passphrase.
But the implementation should use the quick check with care.
The recommended approach for secure and early detection of decryption failure is to encrypt data using v2 SEIPD.
If the session key is public-key encrypted, the quick check is not useful as the public-key encryption of the session key should guarantee that it is the right session key.</t>

<t>The quick check oracle attack is a particular type of attack that exploits ciphertext malleability.
For information about other similar attacks, see <xref target="ciphertext-malleability"/>.</t>

</section>
<section anchor="pkcs1-errors"><name>Avoiding Leaks From PKCS#1 Errors</name>

<t>The PKCS#1 padding (used in RSA-encrypted and ElGamal-encrypted PKESK) has been found to be vulnerable to attacks in which a system that allows distinguishing padding errors from other decryption errors can act as a decryption and/or signing oracle that can leak the session key or allow signing arbitrary data, respectively <xref target="BLEICHENBACHER-PKCS1"/>.
The number of queries required to carry out an attack can range from thousands to millions, depending on how strict and careful an implementation is in processing the padding.</t>

<t>To make the attack more difficult, an implementation <bcp14>SHOULD</bcp14> implement strict, robust, constant time padding checks.</t>

<t>To prevent the attack, in settings where the attacker does not have access to timing information concerning message decryption, the simplest solution is to report a single error code for all variants of PKESK processing errors as well as SEIPD integrity errors (this includes also session key parsing errors, such as on invalid cipher algorithm for v3 PKESK, or session key size mismatch for v6 PKESK).
If the attacker may have access to timing information, then a constant time solution is also needed.
This requires careful design, especially for v3 PKESK, where session key size and cipher information is typically not known in advance, as it is part of the PKESK encrypted payload.</t>

</section>
<section anchor="fingerprint-usability"><name>Fingerprint Usability</name>

<t>This specification uses fingerprints in several places on the wire (e.g., <xref target="revocation-key"/>, <xref target="issuer-fingerprint-subpacket"/>, and <xref target="intended-recipient-fingerprint"/>), and in processing (e.g., in ECDH KDF <xref target="ecdh"/>).
An implementation may also use the fingerprint internally, for example as an index to a keystore.</t>

<t>Additionally, some OpenPGP users have historically used manual fingerprint comparison to verify the public key of a peer.
For a version 4 fingerprint, this has typically been done with the fingerprint represented as 40 hexadecimal digits, often broken into groups of four digits with whitespace between each group.</t>

<t>When a human is actively involved, the result of such a verification is dubious.
There is little evidence that most humans are good at precise comparison of high-entropy data, particularly when that data is represented in compact textual form like a hexadecimal fingerprint.</t>

<t>The version 6 fingerprint makes the challenge for a human verifier even worse.
At 256 bits (compared to v4's 160 bit fingerprint), a v6 fingerprint is even harder for a human to successfully compare.</t>

<t>An OpenPGP implementation should prioritize mechanical fingerprint transfer and comparison where possible, and <bcp14>SHOULD NOT</bcp14> promote manual transfer or comparison of full fingerprints by a human unless there is no other way to achieve the desired result.</t>

<t>While this subsection acknowledges existing practice for human-representable v4 fingerprints, this document does not attempt to standardize any specific human-readable form of v6 fingerprint for this discouraged use case.</t>

<t>NOTE: the topic of interoperable human-in-the-loop key verification needs more work, to be done in a separate document.</t>

</section>
<section anchor="ciphertext-malleability"><name>Avoiding Ciphertext Malleability</name>

<t>If ciphertext can be modified by an attacker but still subsequently decrypted to some new plaintext, it is considered "malleable".
A number of attacks can arise in any cryptosystem that uses malleable encryption, so modern OpenPGP offers mechanisms to defend against it.
However, legacy OpenPGP data may have been created before these mechanisms were available.
Because OpenPGP implementations deal with historic stored data, they may encounter malleable ciphertexts.</t>

<t>When an OpenPGP implementation discovers that it is decrypting data that appears to be malleable, it <bcp14>MUST</bcp14> indicate a clear error message that the integrity of the message is suspect, <bcp14>SHOULD NOT</bcp14> attempt to parse nor release decrypted data to the user, and <bcp14>SHOULD</bcp14> halt with an error.
Parsing or releasing decrypted data before having confirmed its integrity can leak the decrypted data <xref target="EFAIL"/>, <xref target="MRLG15"/>.</t>

<t>In the case of AEAD encrypted data, if the authentication tag fails to verify, the implementation <bcp14>MUST NOT</bcp14> attempt to parse nor release decrypted data to the user, and <bcp14>MUST</bcp14> halt with an error.</t>

<t>An implementation that encounters malleable ciphertext <bcp14>MAY</bcp14> choose to release cleartext to the user if it is not encrypted using AEAD, and it is known to be dealing with historic archived legacy data, and the user is aware of the risks.</t>

<t>In the case of AEAD encrypted messages, if the message is truncated, i.e. the final zero-octet chunk and possibly (part of) some chunks before it are missing, the implementation <bcp14>MAY</bcp14> choose to release cleartext from fully authenticated chunks before it to the user if it is operating in a streaming fashion, but it <bcp14>MUST</bcp14> indicate a clear error message as soon as the truncation is detected.</t>

<t>Any of the following OpenPGP data elements indicate that malleable ciphertext is present:</t>

<t><list style="symbols">
  <t>All Symmetrically Encrypted Data packets (<xref target="sed"/>).</t>
  <t>Within any encrypted container, any Compressed Data packet (<xref target="compressed-data"/>) where there is a decompression failure.</t>
  <t>Any version 1 Symmetrically Encrypted Integrity Protected Data packet (<xref target="version-one-seipd"/>) where the internal Modification Detection Code does not validate.</t>
  <t>Any version 2 Symmetrically Encrypted Integrity Protected Data packet (<xref target="version-two-seipd"/>) where the authentication tag of any chunk fails, or where there is no final zero-octet chunk.</t>
  <t>Any Secret Key packet with encrypted secret key material (<xref target="secret-key-encryption"/>) where there is an integrity failure, based on the value of the secret key protection octet:  <list style="symbols">
      <t>Value 255 (MalleableCFB) or raw cipher algorithm: where the trailing 2-octet checksum does not match.</t>
      <t>Value 254 (CFB): where the SHA1 checksum is mismatched.</t>
      <t>Value 253 (AEAD): where the AEAD authentication tag is invalid.</t>
    </list></t>
</list></t>

<t>To avoid these circumstances, an implementation that generates OpenPGP encrypted data <bcp14>SHOULD</bcp14> select the encrypted container format with the most robust protections that can be handled by the intended recipients.
In particular:</t>

<t><list style="symbols">
  <t>The SED packet is deprecated, and <bcp14>MUST NOT</bcp14> be generated.</t>
  <t>When encrypting to one or more public keys:  <list style="symbols">
      <t>If all recipient keys indicate support for version 2 of the Symmetrically Encrypted Integrity Protected Data packet in their Features subpacket (<xref target="features-subpacket"/>), or are v6 keys without a Features subpacket, or the implementation can otherwise infer that all recipients support v2 SEIPD packets, the implementation <bcp14>SHOULD</bcp14> encrypt using a v2 SEIPD packet.</t>
      <t>If one of the recipients does not support v2 SEIPD packets, then the message generator <bcp14>MAY</bcp14> use a v1 SEIPD packet instead.</t>
    </list></t>
  <t>Passphrase-protected secret key material in a v6 Secret Key or v6 Secret Subkey packet <bcp14>SHOULD</bcp14> be protected with AEAD encryption (S2K usage octet 253) unless it will be transferred to an implementation that is known to not support AEAD.
Implementations should be aware that, in scenarios where an attacker has access to encrypted private keys, CFB-encrypted keys (S2K usage octet 254 or 255) are vulnerable to corruption attacks that can cause leakage of secret data when the secret key is used <xref target="KOPENPGP"/>, <xref target="KR02"/>.</t>
</list></t>

<t>Implementers should implement AEAD (v2 SEIPD and S2K usage octet 253) promptly and encourage its spread.</t>

<t>Users should migrate to AEAD with all due speed.</t>

</section>
<section anchor="secure-sessionkey-reuse"><name>Secure Use of the v2 SEIPD Session-Key-Reuse Feature</name>

<t>The salted key derivation of v2 SEIPD packets (<xref target="version-two-seipd"/>) allows the recipient of an encrypted message to reply to the sender and all other recipients without needing their public keys but by using the same v6 PKESK packets he received and a different random salt value.
This ensures a secure mechanism on the cryptographic level that enables the use of message encryption in cases where a sender does not have a copy of an encryption-capable certificate for one or more participants in the conversation and thus can enhance the overall security of an application.
However, care must be taken when using this mechanism not to create security vulnerabilities, such as the following.</t>

<t><list style="symbols">
  <t>Replying to only a subset of the original recipients and the original sender by use of the session-key-reuse feature would mean that the remaining recipients (including the sender) of the original message could read the encrypted reply message, too.</t>
  <t>Adding a further recipient to the reply that is encrypted using the session-key-reuse feature gives that further recipient also cryptographic access to the original message that is being replied to (and potentially to a longer history of previous messages).</t>
  <t>A modification of the list of recipients addressed in the above points needs also to be safeguarded when a message is initially composed as a reply with session-key reuse but then first stored (e.g. as a draft) and later reopened for further editing and finally sent.</t>
  <t>There is the potential threat that an attacker with network or mailbox access, who is at the same time a recipient of the original message, silently removes themselves from the message before the victim's client receives it.
The victim's client that then uses the mechanism for replying with session-key reuse would unknowingly compose an encrypted message that could be read by the attacker.
Implementations are encouraged to use the Intended Recipient Fingerprint (<xref target="intended-recipient-fingerprint"/>) subpacket when composing messages and to use it to check the consistency of the set of recipients of a message before replying to it with session-key reuse.</t>
  <t>When using the session-key-reuse feature in any higher-layer protocol, care should be taken that there is no other potentially interfering practice of session-key reuse established in that protocol.
Such interfering session-key reuse could for instance be given if an initial message is already composed by reusing the session key of an existing encrypted file the access to which may be shared among a group of users already.
Using the session-key-reuse feature to compose an encrypted reply to such a message would unknowingly give this whole group of users cryptographic access to the encrypted message.</t>
  <t>Generally, the use of the session-key-reuse feature should be under the control of the user.
Specifically, care should be taken that this feature is not silently used when the user assumes that proper public-key encryption is used.
This can be the case for instance when the public key of one of the recipients of the reply is known but has has expired.
Special care should be taken to ensure that users do not get caught in continued use of the session-key reuse unknowingly but instead receive the chance to switch to proper fresh public-key encryption as soon as possible.</t>
  <t>Whenever possible, a client should prefer a fresh public key encryption over the session-key reuse.</t>
</list></t>

<t>Even though this not necessarily being a security aspect, note that initially composing an encrypted reply using the session-key-reuse feature on one client and storing it (e.g. as a draft) and later reopening the stored unfinished reply with another client that does not support the session-key-reuse feature may lead to interoperability problems.</t>

<t>Avoiding the pitfalls described above requires context-specific expertise.
An implementation should only make use of the session-key-reuse feature in any particular application layer when it can follow reasonable documentation about how to deploy the feature safely in the specific application.</t>

</section>
<section anchor="escrowed-revocations"><name>Escrowed Revocation Signatures</name>

<t>A keyholder, Alice, may wish to designate a third party to be able to revoke Alice's own key.</t>

<t>The preferred way for her to do this is to produce a specific Revocation Signature (signature types 0x20, 0x28, or 0x30) and distribute it securely to her preferred revoker who can hold it in escrow.
The preferred revoker can then publish the escrowed Revocation Signature at whatever time is deemed appropriate, rather than generating a revocation signature themselves.</t>

<t>There are multiple advantages of using an escrowed Revocation Signature over the deprecated Revocation Key subpacket (<xref target="revocation-key"/>):</t>

<t><list style="symbols">
  <t>The keyholder can constrain what types of revocation the preferred revoker can issue, by only escrowing those specific signatures.</t>
  <t>There is no public/visible linkage between the keyholder and the preferred revoker.</t>
  <t>Third parties can verify the revocation without needing to find the key of the preferred revoker.</t>
  <t>The preferred revoker doesn't even need to have a public OpenPGP key if some other secure transport is possible between them and the keyholder.</t>
  <t>Implementation support for enforcing a revocation from an authorized Revocation Key subpacket is uneven and unreliable.</t>
  <t>If the fingerprint mechanism suffers a cryptanalytic flaw, the escrowed Revocation Signature is not affected.</t>
</list></t>

<t>A Revocation Signature may also be split up into shares and distributed among multiple parties, requiring some subset of those parties to collaborate before the escrowed Revocation Signature is recreated.</t>

</section>
<section anchor="random-number-generation-and-seeding"><name>Random Number Generation and Seeding</name>

<t>OpenPGP requires a cryptographically secure pseudorandom number generator (CSPRNG).
In most cases, the operating system provides an appropriate facility such as a <spanx style="verb">getrandom()</spanx> syscall, which should be used absent other (for example, performance) concerns.
It is <bcp14>RECOMMENDED</bcp14> to use an existing CSPRNG implementation in preference to crafting a new one.
Many adequate cryptographic libraries are already available under favorable license terms.
Should those prove unsatisfactory, <xref target="RFC4086"/> provides guidance on the generation of random values.</t>

<t>OpenPGP uses random data with three different levels of visibility:</t>

<t><list style="symbols">
  <t>In publicly-visible fields such as nonces, IVs, public padding material, or salts,</t>
  <t>In shared-secret values, such as session keys for encrypted data or padding material within an encrypted packet, and</t>
  <t>In entirely private data, such as asymmetric key generation.</t>
</list></t>

<t>With a properly functioning CSPRNG, this does not present a security problem, as it is not feasible to determine the CSPRNG state from its output.
However, with a broken CSPRNG, it may be possible for an attacker to use visible output to determine the CSPRNG internal state and thereby predict less-visible data like keying material, as documented in <xref target="CHECKOWAY"/>.</t>

<t>An implementation can provide extra security against this form of attack by using separate CSPRNGs to generate random data with different levels of visibility.</t>

</section>
<section anchor="traffic-analysis"><name>Traffic Analysis</name>

<t>When sending OpenPGP data through the network, the size of the data may leak information to an attacker.
There are circumstances where such a leak could be unacceptable from a security perspective.</t>

<t>For example, if possible cleartext messages for a given protocol are known to be either <spanx style="verb">yes</spanx> (three octets) and <spanx style="verb">no</spanx> (two octets) and the messages are sent within a Symmetrically-Encrypted Integrity Protected Data packet, the length of the encrypted message will reveal the contents of the cleartext.</t>

<t>In another example, sending an OpenPGP Transferable Public Key over an encrypted network connection might reveal the length of the certificate.
Since the length of an OpenPGP certificate varies based on the content, an external observer interested in metadata (who is trying to contact whom) may be able to guess the identity of the certificate sent, if its length is unique.</t>

<t>In both cases, an implementation can adjust the size of the compound structure by including a Padding packet (see <xref target="padding-packet"/>).</t>

</section>
<section anchor="surreptitious-forwarding"><name>Surreptitious Forwarding</name>

<t>When an attacker obtains a signature for some text, e.g. by receiving a signed message, they may be able to use that signature maliciously by sending a message purporting to come from the original sender, with the same body and signature, to a different recipient.
To prevent this, implementations <bcp14>SHOULD</bcp14> implement the Intended Recipient Fingerprint signature subpacket (<xref target="intended-recipient-fingerprint"/>).</t>

</section>
<section anchor="subpacket-section-guidance"><name>Hashed vs. Unhashed Subpackets</name>

<t>Each OpenPGP signature can have subpackets in two different sections.
The first set of subpackets (the "hashed section") is covered by the signature itself.
The second set has no cryptographic protections, and is used for advisory material only, including locally-stored annotations about the signature.</t>

<t>For example, consider an implementation working with a specific signature that happens to know that the signature was made by a certain key, even though the signature contains no Issuer Fingerprint subpacket (<xref target="issuer-fingerprint-subpacket"/>) in the hashed section.
That implementation <bcp14>MAY</bcp14> synthesize an Issuer Fingerprint subpacket and store it in the unhashed section so that in the future it will be able to recall which key issued the signature.</t>

<t>Some subpackets are only useful when they are in the hashed section, and implementations <bcp14>SHOULD</bcp14> ignore them when they are found with unknown provenance in the unhashed section.
For example, a Preferred AEAD Ciphersuites subpacket (<xref target="preferred-v2-seipd"/>) in a direct-key self-signature indicates the preferences of the key holder when encrypting SEIPD v2 data to the key.
An implementation that observes such a subpacket found in the unhashed section would open itself to an attack where the recipient's certificate is tampered with to encourage the use of a specific cipher or mode of operation.</t>

</section>
<section anchor="compress-bomb"><name>Malicious Compressed Data</name>

<t>It is possible to form a compression quine that produces itself upon decompression, leading to infinite regress in any implementation willing to parse arbitrary numbers of layers of compression.
This could cause resource exhaustion which itself could lead to it being terminated by the operating system.
If the operating system would create a "crash report", that report could contain confidential information.</t>

<t>An OpenPGP implementation <bcp14>SHOULD</bcp14> limit the number of layers of compression it is willing to decompress in a single message.</t>

</section>
</section>
<section anchor="implementation-considerations"><name>Implementation Considerations</name>

<t>This section is a collection of comments to help an implementer, particularly with an eye to backward compatibility.
Often the differences are small, but small differences are frequently more vexing than large differences.
Thus, this is a non-comprehensive list of potential problems and gotchas for a developer who is trying to be backward-compatible.</t>

<t><list style="symbols">
  <t>There are many ways possible for two keys to have the same key material, but different fingerprints (and thus Key IDs).
For example, since a v4 fingerprint is constructed by hashing the key creation time along with other things, two v4 keys created at different times, yet with the same key material will have different fingerprints.</t>
  <t>OpenPGP does not put limits on the size of public keys.
However, larger keys are not necessarily better keys.
Larger keys take more computation time to use, and this can quickly become impractical.
Different OpenPGP implementations may also use different upper bounds for public key sizes, and so care should be taken when choosing sizes to maintain interoperability.</t>
  <t>ASCII armor is an optional feature of OpenPGP.
The OpenPGP working group strives for a minimal set of mandatory-to-implement features, and since there could be useful implementations that only use binary object formats, this is not a "<bcp14>MUST</bcp14>" feature for an implementation.
For example, an implementation that is using OpenPGP as a mechanism for file signatures may find ASCII armor unnecessary.
OpenPGP permits an implementation to declare what features it does and does not support, but ASCII armor is not one of these.
Since most implementations allow binary and armored objects to be used indiscriminately, an implementation that does not implement ASCII armor may find itself with compatibility issues with general-purpose implementations.
Moreover, implementations of OpenPGP-MIME <xref target="RFC3156"/> already have a requirement for ASCII armor so those implementations will necessarily have support.</t>
  <t>What this document calls Legacy packet format <xref target="legacy-packet-format"/> is what older documents called the "old packet format".
It is the packet format used by legacy implementations.
Older RFCs called the current OpenPGP packet format <xref target="openpgp-packet-format"/> the "new packet format".</t>
</list></t>

<section anchor="constrained-legacy-fingerprint-storage-for-v6-keys"><name>Constrained Legacy Fingerprint Storage for v6 Keys</name>

<t>Some OpenPGP implementations have fixed length constraints for key fingerprint storage that will not fit all 32 octets of a v6 fingerprint.
For example, <xref target="OPENPGPCARD"/> reserves 20 octets for each stored fingerprint.</t>

<t>An OpenPGP implementation <bcp14>MUST NOT</bcp14> attempt to map any part of a v6 fingerprint to such a constrained field unless the relevant spec for the constrained environment has explicit guidance for storing a v6 fingerprint that distinguishes it from a v4 fingerprint.
An implementation interacting with such a constrained field <bcp14>SHOULD</bcp14> directly calculate the v6 fingerprint from public key material and associated metadata instead of relying on the constrained field.</t>

</section>
</section>
<section anchor="iana-considerations"><name>IANA Considerations</name>

<t>This document obsoletes <xref target="RFC4880"/>.
IANA is requested to update all registration information that references <xref target="RFC4880"/> to instead reference this RFC.</t>

<section anchor="rename-pretty-good-privacy-pgp-protocol-group-to-openpgp"><name>Rename "Pretty Good Privacy (PGP)" Protocol Group to "OpenPGP"</name>

<t>IANA bundles a set of registries associated with a particular protocol into a "protocol group".
This document requests IANA to update the name of the "Pretty Good Privacy (PGP)" protocol group (i.e., the group of registries described at <spanx style="verb">https://www.iana.org/assignments/pgp-parameters/</spanx>) to "OpenPGP".
If renaming the protocol group results in new URLs for the registries in this protocol group, please arrange for a permanent redirection (e.g., HTTP 301) from the existing URLs to the new URLs.
All further updates specified below are for registries within this same "OpenPGP" protocol group.</t>

</section>
<section anchor="registries-to-be-renamed-and-updated"><name>Registries to be Renamed and Updated</name>

<t>IANA is requested to rename the "PGP String-to-Key (S2K)" registry to "String-to-Key (S2K) Types" and update its content to <xref target="s2k-types-registry"/>.</t>

<t>IANA is requested to rename the "PGP Packet Types/Tags" registry to "Packet Types/Tags" and update its content to <xref target="packet-types-registry"/>.</t>

<t>IANA is requested to rename the "PGP User Attribute Types" registry to "User Attribute Subpacket Types" and update its content to <xref target="user-attr-subpacket-types-registry"/></t>

<t>IANA is requested to rename the "Image Format Subpacket Types" registry to "Image Attribute Encoding Format" and update its content to <xref target="image-attr-encoding-format-registry"/>.</t>

<t>IANA is requested to rename the "Key Server Preference Extensions" registry to "Key Server Preference Flags" and update its contents to <xref target="key-server-preference-flags-registry"/>.</t>

<t>IANA is requested to rename the "Reason for Revocation Extensions" registry to "Reason for Revocation Code" and update its contents to <xref target="reason-for-revocation-code-registry"/></t>

<t>IANA is requested to rename the "Key Flags Extensions" registry to "Key Flags" and update its contents to <xref target="key-flags-registry"/>.</t>

<t>IANA is requested to rename the "Implementation Features" registry to "Features Flags" and update its contents to <xref target="features-flags-registry"/></t>

</section>
<section anchor="updated-registries"><name>Registries to be Updated</name>

<t>IANA is requested to update the "Public Key Algorithms" registry with the contents of <xref target="pubkey-algo-registry"/>.</t>

<t>IANA is requested to update the "Symmetric Key Algorithms" registry with the contents of <xref target="symkey-algorithms-registry"/>.</t>

<t>IANA is requested to update the "Compression Algorithms" registry with the contents of <xref target="compression-algorithms-registry"/>.</t>

<t>IANA is requested to update the "Hash Algorithms" registry with the contents of <xref target="hash-algorithms-registry"/>.</t>

<t>IANA is requested to update the "Signature Subpacket Types" registry with the contents of <xref target="signature-subpacket-types-registry"/>.</t>

</section>
<section anchor="removed-registries"><name>Registries to be Removed</name>

<t>IANA is requested to remove the empty "New Packet Versions" registry.</t>

<t>A tombstone note should be added to the OpenPGP protocol group with the following content: Those wishing to use the removed "New Packet Versions" registry should instead register new versions of the relevant packets in the "Key and Signature Versions", "Key ID and Fingerprint" and "Encrypted Message Packet Versions" registries.</t>

</section>
<section anchor="added-registries"><name>Registries to be Added</name>

<t>IANA is requested to add the following registries in the OpenPGP protocol group:</t>

<t><list style="symbols">
  <t>Secret Key Encryption (S2K Usage Octet) containing <xref target="secret-key-protection-registry"/>.</t>
  <t>Signature Types containing <xref target="signature-types-registry"/></t>
  <t>Signature Notation Data Subpacket Notation Flags containing <xref target="sig-note-data-note-flags-registry"/>.</t>
  <t>Signature Notation Data Subpacket Types containing <xref target="sig-note-data-subpacket-types"/>.</t>
  <t>Key ID and Fingerprint containing <xref target="key-id-fingerprint-registry"/>.</t>
  <t>Image Attribute Version containing <xref target="image-attribute-version-registry"/>.</t>
  <t>Armor Header Line containing <xref target="armor-header-line-registry"/>.</t>
  <t>Armor Header Key containing <xref target="armor-header-key-registry"/>.</t>
  <t>ECC Curve OID and Usage containing <xref target="ecc-oid-usage-registry"/>.</t>
  <t>ECC Curve-specific Wire Formats containing <xref target="ecc-wire-formats-registry"/>.</t>
  <t>Hash Algorithm Identifiers for RSA Signatures use of EMSA-PKCS1-v1_5 Padding containing <xref target="emsa-hash-oids-registry"/>.</t>
  <t>AEAD Algorithms containing <xref target="aead-algorithms-registry"/>.</t>
  <t>Encrypted Message Packet Versions containing <xref target="encrypted-packet-versions-registry"/>.</t>
  <t>Key and Signature Versions containing <xref target="signed-packet-versions-registry"/>.</t>
  <t>Elliptic Curve Point Wire Formats containing <xref target="ec-point-wire-formats-registry"/>.</t>
  <t>Elliptic Curve Scalar Encodings containing <xref target="ec-scalar-wire-formats-registry"/>.</t>
  <t>ECDH KDF and KEK Parameters containing <xref target="ecdh-kdf-kek-parameters-registry"/>.</t>
</list></t>

</section>
<section anchor="registration-policies"><name>Registration Policies</name>

<t>IANA is requested to set all registries within the OpenPGP protocol group to use the SPECIFICATION <bcp14>REQUIRED</bcp14> registration policy, see <xref section="4.6" sectionFormat="of" target="RFC8126"/> with the exception of the registries listed in <xref target="rfc-required-registries"/>, below.
This policy means that review and approval by a designated expert is required, and that the values and their meanings must be documented in a permanent and readily available public specification, in sufficient detail so that interoperability between independent implementations is possible.</t>

<section anchor="rfc-required-registries"><name>Registries that are RFC REQUIRED</name>

<t>The following registries use the RFC <bcp14>REQUIRED</bcp14> registration policy, as described in <xref section="4.7" sectionFormat="of" target="RFC8126"/>:</t>

<t><list style="symbols">
  <t>Packet Type/Tags registry (<xref target="packet-types-registry"/>)</t>
  <t>Key and Signature Versions registry (<xref target="signed-packet-versions-registry"/>)</t>
  <t>Key ID and Fingerprint registry (<xref target="key-id-fingerprint-registry"/>)</t>
  <t>Encrypted Message Packet Versions registry (<xref target="encrypted-packet-versions-registry"/>)</t>
</list></t>

</section>
</section>
<section anchor="designated-experts"><name>Designated Experts</name>

<t>The designated experts will determine whether the new code points retain the security properties that are expected by the base implementation and that these new code points do not cause interoperability issues with existing implementations other than not producing or consuming these new code points.
Code point proposals that fail to meet these criteria could instead be proposed as new work items for the OpenPGP working group or its successor.</t>

<t>The subsections below describe specific guidance for classes of registry updates that a designated expert will consider.</t>

<t>The designated experts should also consider <xref target="meta-considerations-for-expansion"/> when reviewing proposed additions to the OpenPGP registries.</t>

<section anchor="key-versions"><name>Key Versions</name>

<t>When defining a new version of OpenPGP keys, three registries need to be updated with information about the new version: <xref target="signed-packet-versions-registry"/>, <xref target="key-id-fingerprint-registry"/>, and <xref target="key-id-fingerprint-registry"/>.</t>

</section>
<section anchor="algorithms"><name>Algorithms</name>

<t><xref target="constants"/> lists the cryptographic and compression algorithms that OpenPGP uses.
Adding new algorithms is usually simple, in some cases as little as allocating a codepoint and pointing to a reference.
But some algorithm registries require some subtle additional details when a new algorithm is introduced.</t>

<section anchor="elliptic-curve-algorithms"><name>Elliptic Curve Algorithms</name>

<t>To register a new elliptic curve for use with OpenPGP, its OID needs to be registered in <xref target="ecc-oid-usage-registry"/>, its wire format needs to be documented in <xref target="ecc-wire-formats-registry"/>, and if used for ECDH, its KDF and KEK parameters must be populated in <xref target="ecdh-kdf-kek-parameters-registry"/>.
If the wire format(s) used are not already defined in <xref target="ec-point-wire-formats-registry"/> or <xref target="ec-scalar-wire-formats-registry"/>, they should be defined there as well.</t>

</section>
<section anchor="symmetric-key-algorithms"><name>Symmetric-Key Algorithms</name>

<t>When registering a new symmetric cipher with a block size of 64 or 128 bits and a key size that is a multiple of 64 bits, no new considerations are needed.</t>

<t>If the new cipher has a different block size, there needs to be additional documentation describing how to use the cipher in CFB mode.</t>

<t>If the new cipher has an unusual key size, then padding needs to be considered for X25519 and X448 keywrap, which currently needs no padding.</t>

</section>
<section anchor="hash-algorithms"><name>Hash Algorithms</name>

<t>When registering a new hash algorithm (in <xref target="hash-algorithms-registry"/>), if the algorithm is also to be used with RSA signing schemes, it must also have an entry in <xref target="emsa-hash-oids-registry"/>.</t>

</section>
</section>
</section>
</section>


  </middle>

  <back>


    <references title='Normative References'>

<reference anchor="BLOWFISH" target="http://www.counterpane.com/bfsverlag.html">
  <front>
    <title>Description of a New Variable-Length Key, 64-Bit Block Cipher (Blowfish)</title>
    <author initials="B." surname="Schneier">
      <organization></organization>
    </author>
    <date year="1993" month="December"/>
  </front>
  <seriesInfo name="Fast Software Encryption, Cambridge Security Workshop Proceedings" value="Springer-Verlag, 1994, pp191-204"/>
</reference>
<reference anchor="BZ2" target="http://www.bzip.org/">
  <front>
    <title>The Bzip2 and libbzip2 home page</title>
    <author initials="J." surname="Seward" fullname="Julian Seward, jseward@acm.org">
      <organization></organization>
    </author>
    <date year="2010"/>
  </front>
</reference>
<reference anchor="EAX" >
  <front>
    <title>A Conventional Authenticated-Encryption Mode</title>
    <author initials="M." surname="Bellare">
      <organization></organization>
    </author>
    <author initials="P." surname="Rogaway">
      <organization></organization>
    </author>
    <author initials="D." surname="Wagner">
      <organization></organization>
    </author>
    <date year="2003" month="April"/>
  </front>
</reference>
<reference anchor="ELGAMAL" >
  <front>
    <title>A Public-Key Cryptosystem and a Signature Scheme Based on Discrete Logarithms</title>
    <author initials="T." surname="Elgamal">
      <organization></organization>
    </author>
    <date year="1985"/>
  </front>
  <seriesInfo name="IEEE Transactions on Information Theory" value="v. IT-31, n. 4, 1985, pp. 469-472"/>
</reference>
<reference anchor="HAC" >
  <front>
    <title>Handbook of Applied Cryptography</title>
    <author initials="A. J." surname="Menezes" fullname="Alfred J. Menezes">
      <organization></organization>
    </author>
    <author initials="P." surname="v Oorschot" fullname="Paul van Oorschot">
      <organization></organization>
    </author>
    <author initials="S." surname="Vanstone" fullname="Scott Vanstone">
      <organization></organization>
    </author>
    <date year="1996"/>
  </front>
</reference>
<reference anchor="IDEA" >
  <front>
    <title>On the design and security of block ciphers</title>
    <author initials="X." surname="Lai">
      <organization></organization>
    </author>
    <date year="1992"/>
  </front>
  <seriesInfo name="ETH Series in Information Processing, J.L. Massey (editor)" value="Vol. 1, Hartung-Gorre Verlag Konstanz, Technische Hochschule (Zurich)"/>
</reference>
<reference anchor="ISO10646" target="https://www.iso.org/standard/76835.html">
  <front>
    <title>Information Technology - Universal Multiple-octet coded Character Set (UCS) - Part 1: Architecture and Basic Multilingual Plane</title>
    <author >
      <organization>International Organization for Standardization</organization>
    </author>
    <date year="2020"/>
  </front>
  <seriesInfo name="ISO" value="Standard 10646-1"/>
</reference>
<reference anchor="JFIF" target="https://www.itu.int/rec/T-REC-T.871-201105-I">
  <front>
    <title>Information technology – Digital compression and coding of continuous-tone still images: JPEG File Interchange Format (JFIF)</title>
    <author >
      <organization>International Telecommunication Union</organization>
    </author>
    <date year="2011" month="May" day="14"/>
  </front>
  <seriesInfo name="ISO" value="ISO/IEC 10918-5"/>
</reference>
<reference anchor="PKCS5" >
  <front>
    <title>PKCS #5 v2.0: Password-Based Cryptography Standard</title>
    <author >
      <organization>RSA Laboratories</organization>
    </author>
    <date year="1999" month="March" day="25"/>
  </front>
</reference>




<reference anchor='RFC1950'>
<front>
<title>ZLIB Compressed Data Format Specification version 3.3</title>
<author fullname='P. Deutsch' initials='P.' surname='Deutsch'><organization/></author>
<author fullname='J-L. Gailly' initials='J-L.' surname='Gailly'><organization/></author>
<date month='May' year='1996'/>
<abstract><t>This specification defines a lossless compressed data format.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind.</t></abstract>
</front>
<seriesInfo name='RFC' value='1950'/>
<seriesInfo name='DOI' value='10.17487/RFC1950'/>
</reference>



<reference anchor='RFC1951'>
<front>
<title>DEFLATE Compressed Data Format Specification version 1.3</title>
<author fullname='P. Deutsch' initials='P.' surname='Deutsch'><organization/></author>
<date month='May' year='1996'/>
<abstract><t>This specification defines a lossless compressed data format that compresses data using a combination of the LZ77 algorithm and Huffman coding, with efficiency comparable to the best currently available general-purpose compression methods.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind.</t></abstract>
</front>
<seriesInfo name='RFC' value='1951'/>
<seriesInfo name='DOI' value='10.17487/RFC1951'/>
</reference>



<reference anchor='RFC2144'>
<front>
<title>The CAST-128 Encryption Algorithm</title>
<author fullname='C. Adams' initials='C.' surname='Adams'><organization/></author>
<date month='May' year='1997'/>
<abstract><t>There is a need in the Internet community for an unencumbered encryption algorithm with a range of key sizes that can provide security for a variety of cryptographic applications and protocols.  This document describes an existing algorithm that can be used to satisfy this requirement.  This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t></abstract>
</front>
<seriesInfo name='RFC' value='2144'/>
<seriesInfo name='DOI' value='10.17487/RFC2144'/>
</reference>



<reference anchor='RFC2822'>
<front>
<title>Internet Message Format</title>
<author fullname='P. Resnick' initials='P.' role='editor' surname='Resnick'><organization/></author>
<date month='April' year='2001'/>
<abstract><t>This document specifies a syntax for text messages that are sent between computer users, within the framework of &quot;electronic mail&quot; messages. [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2822'/>
<seriesInfo name='DOI' value='10.17487/RFC2822'/>
</reference>



<reference anchor='RFC3156'>
<front>
<title>MIME Security with OpenPGP</title>
<author fullname='M. Elkins' initials='M.' surname='Elkins'><organization/></author>
<author fullname='D. Del Torto' initials='D.' surname='Del Torto'><organization/></author>
<author fullname='R. Levien' initials='R.' surname='Levien'><organization/></author>
<author fullname='T. Roessler' initials='T.' surname='Roessler'><organization/></author>
<date month='August' year='2001'/>
<abstract><t>This document describes how the OpenPGP Message Format can be used to provide privacy and authentication using the Multipurpose Internet Mail Extensions (MIME) security content types described in RFC 1847. [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='3156'/>
<seriesInfo name='DOI' value='10.17487/RFC3156'/>
</reference>



<reference anchor='RFC3394'>
<front>
<title>Advanced Encryption Standard (AES) Key Wrap Algorithm</title>
<author fullname='J. Schaad' initials='J.' surname='Schaad'><organization/></author>
<author fullname='R. Housley' initials='R.' surname='Housley'><organization/></author>
<date month='September' year='2002'/>
</front>
<seriesInfo name='RFC' value='3394'/>
<seriesInfo name='DOI' value='10.17487/RFC3394'/>
</reference>



<reference anchor='RFC3629'>
<front>
<title>UTF-8, a transformation format of ISO 10646</title>
<author fullname='F. Yergeau' initials='F.' surname='Yergeau'><organization/></author>
<date month='November' year='2003'/>
<abstract><t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t></abstract>
</front>
<seriesInfo name='STD' value='63'/>
<seriesInfo name='RFC' value='3629'/>
<seriesInfo name='DOI' value='10.17487/RFC3629'/>
</reference>



<reference anchor='RFC3713'>
<front>
<title>A Description of the Camellia Encryption Algorithm</title>
<author fullname='M. Matsui' initials='M.' surname='Matsui'><organization/></author>
<author fullname='J. Nakajima' initials='J.' surname='Nakajima'><organization/></author>
<author fullname='S. Moriai' initials='S.' surname='Moriai'><organization/></author>
<date month='April' year='2004'/>
<abstract><t>This document describes the Camellia encryption algorithm.  Camellia is a block cipher with 128-bit block size and 128-, 192-, and 256-bit keys.  The algorithm description is presented together with key scheduling part and data randomizing part.  This memo provides information for the Internet community.</t></abstract>
</front>
<seriesInfo name='RFC' value='3713'/>
<seriesInfo name='DOI' value='10.17487/RFC3713'/>
</reference>



<reference anchor='RFC4086'>
<front>
<title>Randomness Requirements for Security</title>
<author fullname='D. Eastlake 3rd' initials='D.' surname='Eastlake 3rd'><organization/></author>
<author fullname='J. Schiller' initials='J.' surname='Schiller'><organization/></author>
<author fullname='S. Crocker' initials='S.' surname='Crocker'><organization/></author>
<date month='June' year='2005'/>
<abstract><t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts.  However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities.  The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t><t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult.  This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities.  It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='106'/>
<seriesInfo name='RFC' value='4086'/>
<seriesInfo name='DOI' value='10.17487/RFC4086'/>
</reference>



<reference anchor='RFC4648'>
<front>
<title>The Base16, Base32, and Base64 Data Encodings</title>
<author fullname='S. Josefsson' initials='S.' surname='Josefsson'><organization/></author>
<date month='October' year='2006'/>
<abstract><t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes.  It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4648'/>
<seriesInfo name='DOI' value='10.17487/RFC4648'/>
</reference>



<reference anchor='RFC7253'>
<front>
<title>The OCB Authenticated-Encryption Algorithm</title>
<author fullname='T. Krovetz' initials='T.' surname='Krovetz'><organization/></author>
<author fullname='P. Rogaway' initials='P.' surname='Rogaway'><organization/></author>
<date month='May' year='2014'/>
<abstract><t>This document specifies OCB, a shared-key blockcipher-based encryption scheme that provides confidentiality and authenticity for plaintexts and authenticity for associated data.  This document is a product of the Crypto Forum Research Group (CFRG).</t></abstract>
</front>
<seriesInfo name='RFC' value='7253'/>
<seriesInfo name='DOI' value='10.17487/RFC7253'/>
</reference>



<reference anchor='RFC7748'>
<front>
<title>Elliptic Curves for Security</title>
<author fullname='A. Langley' initials='A.' surname='Langley'><organization/></author>
<author fullname='M. Hamburg' initials='M.' surname='Hamburg'><organization/></author>
<author fullname='S. Turner' initials='S.' surname='Turner'><organization/></author>
<date month='January' year='2016'/>
<abstract><t>This memo specifies two elliptic curves over prime fields that offer a high level of practical security in cryptographic applications, including Transport Layer Security (TLS).  These curves are intended to operate at the ~128-bit and ~224-bit security level, respectively, and are generated deterministically based on a list of required properties.</t></abstract>
</front>
<seriesInfo name='RFC' value='7748'/>
<seriesInfo name='DOI' value='10.17487/RFC7748'/>
</reference>



<reference anchor='RFC8017'>
<front>
<title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
<author fullname='K. Moriarty' initials='K.' role='editor' surname='Moriarty'><organization/></author>
<author fullname='B. Kaliski' initials='B.' surname='Kaliski'><organization/></author>
<author fullname='J. Jonsson' initials='J.' surname='Jonsson'><organization/></author>
<author fullname='A. Rusch' initials='A.' surname='Rusch'><organization/></author>
<date month='November' year='2016'/>
<abstract><t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t><t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series.  By publishing this RFC, change control is transferred to the IETF.</t><t>This document also obsoletes RFC 3447.</t></abstract>
</front>
<seriesInfo name='RFC' value='8017'/>
<seriesInfo name='DOI' value='10.17487/RFC8017'/>
</reference>



<reference anchor='RFC8032'>
<front>
<title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
<author fullname='S. Josefsson' initials='S.' surname='Josefsson'><organization/></author>
<author fullname='I. Liusvaara' initials='I.' surname='Liusvaara'><organization/></author>
<date month='January' year='2017'/>
<abstract><t>This document describes elliptic curve signature scheme Edwards-curve Digital Signature Algorithm (EdDSA).  The algorithm is instantiated with recommended parameters for the edwards25519 and edwards448 curves.  An example implementation and test vectors are provided.</t></abstract>
</front>
<seriesInfo name='RFC' value='8032'/>
<seriesInfo name='DOI' value='10.17487/RFC8032'/>
</reference>



<reference anchor='RFC8126'>
<front>
<title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
<author fullname='M. Cotton' initials='M.' surname='Cotton'><organization/></author>
<author fullname='B. Leiba' initials='B.' surname='Leiba'><organization/></author>
<author fullname='T. Narten' initials='T.' surname='Narten'><organization/></author>
<date month='June' year='2017'/>
<abstract><t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t><t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t><t>This is the third edition of this document; it obsoletes RFC 5226.</t></abstract>
</front>
<seriesInfo name='BCP' value='26'/>
<seriesInfo name='RFC' value='8126'/>
<seriesInfo name='DOI' value='10.17487/RFC8126'/>
</reference>



<reference anchor='RFC9106'>
<front>
<title>Argon2 Memory-Hard Function for Password Hashing and Proof-of-Work Applications</title>
<author fullname='A. Biryukov' initials='A.' surname='Biryukov'><organization/></author>
<author fullname='D. Dinu' initials='D.' surname='Dinu'><organization/></author>
<author fullname='D. Khovratovich' initials='D.' surname='Khovratovich'><organization/></author>
<author fullname='S. Josefsson' initials='S.' surname='Josefsson'><organization/></author>
<date month='September' year='2021'/>
<abstract><t>This document describes the Argon2 memory-hard function for password hashing and proof-of-work applications.  We provide an implementer-oriented description with test vectors.  The purpose is to simplify adoption of Argon2 for Internet protocols.  This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t></abstract>
</front>
<seriesInfo name='RFC' value='9106'/>
<seriesInfo name='DOI' value='10.17487/RFC9106'/>
</reference>


<reference anchor="SCHNEIER" >
  <front>
    <title>Applied Cryptography Second Edition: protocols, algorithms, and source code in C</title>
    <author initials="B." surname="Schneier" fullname="Bruce Schneier">
      <organization></organization>
    </author>
    <date year="1996"/>
  </front>
</reference>
<reference anchor="SP800-38A" >
  <front>
    <title>Recommendation for Block Cipher Modes of Operation: Methods and Techniques</title>
    <author initials="M." surname="Dworkin">
      <organization></organization>
    </author>
    <date year="2001" month="December"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-38A"/>
</reference>
<reference anchor="SP800-38D" >
  <front>
    <title>Recommendation for Block Cipher Modes of Operation: Galois/Counter Mode (GCM) and GMAC</title>
    <author initials="M." surname="Dworkin">
      <organization></organization>
    </author>
    <date year="2007" month="November"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-38D"/>
</reference>
<reference anchor="SP800-56A" >
  <front>
    <title>Recommendation for Pair-Wise Key Establishment Schemes Using Discrete Logarithm Cryptography</title>
    <author initials="E." surname="Barker">
      <organization></organization>
    </author>
    <author initials="D." surname="Johnson">
      <organization></organization>
    </author>
    <author initials="M." surname="Smid">
      <organization></organization>
    </author>
    <date year="2007" month="March"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-56A Revision 1"/>
</reference>
<reference anchor="TWOFISH" >
  <front>
    <title>The Twofish Encryption Algorithm</title>
    <author initials="B." surname="Schneier">
      <organization></organization>
    </author>
    <author initials="J." surname="Kelsey">
      <organization></organization>
    </author>
    <author initials="D." surname="Whiting">
      <organization></organization>
    </author>
    <author initials="D." surname="Wagner">
      <organization></organization>
    </author>
    <author initials="C." surname="Hall">
      <organization></organization>
    </author>
    <author initials="N." surname="Ferguson">
      <organization></organization>
    </author>
    <date year="1999"/>
  </front>
</reference>




<reference anchor='RFC2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author fullname='S. Bradner' initials='S.' surname='Bradner'><organization/></author>
<date month='March' year='1997'/>
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference anchor='RFC8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author fullname='B. Leiba' initials='B.' surname='Leiba'><organization/></author>
<date month='May' year='2017'/>
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>

<reference anchor='FIPS186'>
  <front>
    <title>Digital Signature Standard (DSS)</title>
    <author>
      <organization/>
    </author>
    <date month='July' year='2013'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.186-4'/>
</reference>

<reference anchor='AES'>
  <front>
    <title>Advanced encryption standard (AES)</title>
    <author>
      <organization/>
    </author>
    <date month='November' year='2001'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.197'/>
</reference>

<reference anchor='FIPS180'>
  <front>
    <title>Secure Hash Standard</title>
    <author fullname='Quynh H. Dang' initials='Q.' surname='Dang'>
      <organization/>
    </author>
    <date month='July' year='2015'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.180-4'/>
</reference>

<reference anchor='FIPS202'>
  <front>
    <title>SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions</title>
    <author fullname='Morris J. Dworkin' initials='M.' surname='Dworkin'>
      <organization/>
    </author>
    <date month='July' year='2015'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.202'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="BLEICHENBACHER" >
  <front>
    <title>Generating ElGamal Signatures Without Knowing the Secret Key</title>
    <author initials="D." surname="Bleichenbacher">
      <organization></organization>
    </author>
    <date year="1996"/>
  </front>
  <seriesInfo name="Lecture Notes in Computer Science" value="Volume 1070, pp. 10-18"/>
</reference>
<reference anchor="BLEICHENBACHER-PKCS1" target="http://archiv.infsec.ethz.ch/education/fs08/secsem/Bleichenbacher98.pdf">
  <front>
    <title>Chosen Ciphertext Attacks Against Protocols Based on the RSA Encryption Standard PKCS \#1</title>
    <author initials="D." surname="Bleichenbacher">
      <organization></organization>
    </author>
    <date year="1998"/>
  </front>
</reference>
<reference anchor="EFAIL" target="https://www.usenix.org/system/files/conference/usenixsecurity18/sec18-poddebniak.pdf">
  <front>
    <title>Efail: Breaking S/MIME and OpenPGP Email Encryption using Exfiltration Channels</title>
    <author initials="D." surname="Poddebniak" fullname="Damian Poddebniak">
      <organization></organization>
    </author>
    <author initials="C." surname="Dresen" fullname="Christian Dresen">
      <organization></organization>
    </author>
    <author initials="J." surname="Müller" fullname="Jens Müller">
      <organization></organization>
    </author>
    <author initials="F." surname="Ising" fullname="Fabian Ising">
      <organization></organization>
    </author>
    <author initials="S." surname="Schinzel" fullname="Sebastian Schinzel">
      <organization></organization>
    </author>
    <author initials="S." surname="Friedberger" fullname="Simon Friedberger">
      <organization></organization>
    </author>
    <author initials="J." surname="Somorovsky" fullname="Juraj Somorovsky">
      <organization></organization>
    </author>
    <author initials="J." surname="Schwenk" fullname="Jörg Schwenk">
      <organization></organization>
    </author>
    <date year="2018"/>
  </front>
  <seriesInfo name="Proceedings of the 27th USENIX Conference on Security Symposium, August 2018, Pages 549–566" value=""/>
</reference>
<reference anchor="HASTAD" >
  <front>
    <title>Solving Simultaneous Modular Equations of Low Degree</title>
    <author initials="J." surname="Hastad" fullname="Johan Hastad">
      <organization></organization>
    </author>
    <date year="1988"/>
  </front>
  <seriesInfo name="DOI" value="10.1137/0217019"/>
</reference>
<reference anchor="JKS02" target="http://www.counterpane.com/pgp-attack.html">
  <front>
    <title>Implementation of Chosen-Ciphertext Attacks against PGP and GnuPG</title>
    <author initials="K." surname="Jallad" fullname="Kahil Jallad">
      <organization></organization>
    </author>
    <author initials="J." surname="Katz" fullname="Jonathan Katz">
      <organization></organization>
    </author>
    <author initials="B." surname="Schneier" fullname="Bruce Schneier">
      <organization></organization>
    </author>
    <date year="2002"/>
  </front>
</reference>
<reference anchor="KOBLITZ" >
  <front>
    <title>A course in number theory and cryptography, Chapter VI. Elliptic Curves</title>
    <author initials="N." surname="Koblitz">
      <organization></organization>
    </author>
    <date year="1997"/>
  </front>
  <seriesInfo name="ISBN" value="0-387-96576-9"/>
</reference>
<reference anchor="KOPENPGP" target="https://www.kopenpgp.com/">
  <front>
    <title>Victory by KO: Attacking OpenPGP Using Key Overwriting</title>
    <author initials="L." surname="Bruseghini" fullname="Lara Bruseghini">
      <organization></organization>
    </author>
    <author initials="K. G." surname="Paterson" fullname="Kenneth G. Paterson">
      <organization></organization>
    </author>
    <author initials="D." surname="Huigens" fullname="Daniel Huigens">
      <organization></organization>
    </author>
    <date year="2022"/>
  </front>
  <seriesInfo name="Proceedings of the 29th ACM Conference on Computer and Communications Security, November 2022 (to appear)" value=""/>
</reference>
<reference anchor="KR02" target="https://eprint.iacr.org/2002/076">
  <front>
    <title>Attack on Private Signature Keys of the OpenPGP Format, PGP(TM) Programs and Other Applications Compatible with OpenPGP</title>
    <author initials="V." surname="Klíma" fullname="Vlastimil Klíma">
      <organization></organization>
    </author>
    <author initials="T." surname="Rosa" fullname="Tomáš Rosa">
      <organization></organization>
    </author>
    <date year="2002"/>
  </front>
  <seriesInfo name="Cryptology ePrint Archive, Report 2002/076" value=""/>
</reference>
<reference anchor="MRLG15" >
  <front>
    <title>Format Oracles on OpenPGP</title>
    <author initials="F." surname="Maury" fullname="Florian Maury">
      <organization></organization>
    </author>
    <author initials="J.-R." surname="Reinhard" fullname="Jean-René Reinhard">
      <organization></organization>
    </author>
    <author initials="O." surname="Levillain" fullname="Olivier Levillain">
      <organization></organization>
    </author>
    <author initials="H." surname="Gilbert" fullname="Henri Gilbert">
      <organization></organization>
    </author>
    <date year="2015"/>
  </front>
  <seriesInfo name="CT-RSA 2015" value="Topics in Cryptology –- CT-RSA 2015 pp 220–236"/>
  <seriesInfo name="DOI" value="10.1007/978-3-319-16715-2_12"/>
</reference>
<reference anchor="MZ05" target="http://eprint.iacr.org/2005/033">
  <front>
    <title>An Attack on CFB Mode Encryption As Used By OpenPGP</title>
    <author initials="S." surname="Mister" fullname="Serge Mister">
      <organization></organization>
    </author>
    <author initials="R." surname="Zuccherato" fullname="Robert Zuccherato">
      <organization></organization>
    </author>
    <date year="2005" month="February" day="08"/>
  </front>
  <seriesInfo name="IACR ePrint Archive" value="Report 2005/033"/>
</reference>
<reference anchor="OPENPGPCARD" target="https://gnupg.org/ftp/specs/OpenPGP-smart-card-application-3.4.1.pdf">
  <front>
    <title>Functional Specification of the OpenPGP application on ISO Smart Card Operating Systems (version 3.4.1)</title>
    <author initials="A." surname="Pietig" fullname="Achim Pietig">
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="PAX" target="https://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html">
  <front>
    <title>IEEE Standard for Information Technology--Portable Operating System Interface (POSIX(R)) Base Specifications, Issue 7: pax - portable archive interchange</title>
    <author >
      <organization>The Open Group</organization>
    </author>
    <date year="2018"/>
  </front>
  <seriesInfo name="IEEE Standard" value="1003.1-2017"/>
  <seriesInfo name="DOI" value="10.1109/IEEESTD.2018.8277153"/>
</reference>
<reference anchor="PSSLR17" target="https://eprint.iacr.org/2017/1014">
  <front>
    <title>Attacking Deterministic Signature Schemes using Fault Attacks</title>
    <author initials="D." surname="Poddebniak">
      <organization></organization>
    </author>
    <author initials="J." surname="Somorovsky">
      <organization></organization>
    </author>
    <author initials="S." surname="Schinzel">
      <organization></organization>
    </author>
    <author initials="M." surname="Lochter">
      <organization></organization>
    </author>
    <author initials="P." surname="Rösler">
      <organization></organization>
    </author>
    <date year="2017" month="October"/>
  </front>
</reference>
<reference anchor="REGEX" >
  <front>
    <title>Mastering Regular Expressions</title>
    <author initials="J." surname="Friedl" fullname="Jeffrey Friedl">
      <organization>O'Reilly</organization>
    </author>
    <date year="2002" month="August"/>
  </front>
  <seriesInfo name="ISBN" value="0-596-00289-0"/>
</reference>




<reference anchor='RFC1991'>
<front>
<title>PGP Message Exchange Formats</title>
<author fullname='D. Atkins' initials='D.' surname='Atkins'><organization/></author>
<author fullname='W. Stallings' initials='W.' surname='Stallings'><organization/></author>
<author fullname='P. Zimmermann' initials='P.' surname='Zimmermann'><organization/></author>
<date month='August' year='1996'/>
<abstract><t>This document describes the format of &quot;PGP files&quot;, i.e., messages that have been encrypted and/or signed with PGP.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind.</t></abstract>
</front>
<seriesInfo name='RFC' value='1991'/>
<seriesInfo name='DOI' value='10.17487/RFC1991'/>
</reference>



<reference anchor='RFC2440'>
<front>
<title>OpenPGP Message Format</title>
<author fullname='J. Callas' initials='J.' surname='Callas'><organization/></author>
<author fullname='L. Donnerhacke' initials='L.' surname='Donnerhacke'><organization/></author>
<author fullname='H. Finney' initials='H.' surname='Finney'><organization/></author>
<author fullname='R. Thayer' initials='R.' surname='Thayer'><organization/></author>
<date month='November' year='1998'/>
<abstract><t>This document is maintained in order to publish all necessary information needed to develop interoperable applications based on the OpenPGP format.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2440'/>
<seriesInfo name='DOI' value='10.17487/RFC2440'/>
</reference>



<reference anchor='RFC4880'>
<front>
<title>OpenPGP Message Format</title>
<author fullname='J. Callas' initials='J.' surname='Callas'><organization/></author>
<author fullname='L. Donnerhacke' initials='L.' surname='Donnerhacke'><organization/></author>
<author fullname='H. Finney' initials='H.' surname='Finney'><organization/></author>
<author fullname='D. Shaw' initials='D.' surname='Shaw'><organization/></author>
<author fullname='R. Thayer' initials='R.' surname='Thayer'><organization/></author>
<date month='November' year='2007'/>
<abstract><t>This document is maintained in order to publish all necessary information needed to develop interoperable applications based on the OpenPGP format.  It is not a step-by-step cookbook for writing an application.  It describes only the format and methods needed to read, check, generate, and write conforming packets crossing any network.  It does not deal with storage and implementation questions. It does, however, discuss implementation issues necessary to avoid security flaws.</t><t>OpenPGP software uses a combination of strong public-key and symmetric cryptography to provide security services for electronic communications and data storage.  These services include confidentiality, key management, authentication, and digital signatures.  This document specifies the message formats used in OpenPGP.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4880'/>
<seriesInfo name='DOI' value='10.17487/RFC4880'/>
</reference>



<reference anchor='RFC5639'>
<front>
<title>Elliptic Curve Cryptography (ECC) Brainpool Standard Curves and Curve Generation</title>
<author fullname='M. Lochter' initials='M.' surname='Lochter'><organization/></author>
<author fullname='J. Merkle' initials='J.' surname='Merkle'><organization/></author>
<date month='March' year='2010'/>
<abstract><t>This memo proposes several elliptic curve domain parameters over finite prime fields for use in cryptographic applications.  The domain parameters are consistent with the relevant international standards, and can be used in X.509 certificates and certificate revocation lists (CRLs), for Internet Key Exchange (IKE), Transport Layer Security (TLS), XML signatures, and all applications or protocols based on the cryptographic message syntax (CMS).  This document is  not an Internet Standards Track specification; it is published for  informational purposes.</t></abstract>
</front>
<seriesInfo name='RFC' value='5639'/>
<seriesInfo name='DOI' value='10.17487/RFC5639'/>
</reference>



<reference anchor='RFC5869'>
<front>
<title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
<author fullname='H. Krawczyk' initials='H.' surname='Krawczyk'><organization/></author>
<author fullname='P. Eronen' initials='P.' surname='Eronen'><organization/></author>
<date month='May' year='2010'/>
<abstract><t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t></abstract>
</front>
<seriesInfo name='RFC' value='5869'/>
<seriesInfo name='DOI' value='10.17487/RFC5869'/>
</reference>



<reference anchor='RFC6090'>
<front>
<title>Fundamental Elliptic Curve Cryptography Algorithms</title>
<author fullname='D. McGrew' initials='D.' surname='McGrew'><organization/></author>
<author fullname='K. Igoe' initials='K.' surname='Igoe'><organization/></author>
<author fullname='M. Salter' initials='M.' surname='Salter'><organization/></author>
<date month='February' year='2011'/>
<abstract><t>This note describes the fundamental algorithms of Elliptic Curve Cryptography (ECC) as they were defined in some seminal references from 1994 and earlier.  These descriptions may be useful for implementing the fundamental algorithms without using any of the specialized methods that were developed in following years.  Only elliptic curves defined over fields of characteristic greater than three are in scope; these curves are those used in Suite B. This document is not an Internet Standards Track specification; it is published for informational purposes.</t></abstract>
</front>
<seriesInfo name='RFC' value='6090'/>
<seriesInfo name='DOI' value='10.17487/RFC6090'/>
</reference>


<reference anchor="SEC1" target="https://www.secg.org/sec1-v2.pdf">
  <front>
    <title>Standards for Efficient Cryptography 1 (SEC 1)</title>
    <author >
      <organization>Standards for Efficient Cryptography Group</organization>
    </author>
    <date year="2009" month="May"/>
  </front>
</reference>
<reference anchor="SHA1CD" target="https://github.com/cr-marcstevens/sha1collisiondetection">
  <front>
    <title>sha1collisiondetection</title>
    <author initials="M." surname="Stevens" fullname="Marc Stevens">
      <organization></organization>
    </author>
    <author initials="D." surname="Shumow" fullname="Dan Shumow">
      <organization></organization>
    </author>
    <date year="2017"/>
  </front>
</reference>
<reference anchor="SHAMBLES" target="https://sha-mbles.github.io/">
  <front>
    <title>Sha-1 is a shambles: First chosen-prefix collision on sha-1 and application to the PGP web of trust</title>
    <author initials="G." surname="Leurent" fullname="Gaëtan Leurent">
      <organization></organization>
    </author>
    <author initials="T." surname="Peyrin" fullname="Thomas Peyrin">
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="SP800-57" target="https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-57pt1r5.pdf">
  <front>
    <title>Recommendation on Key Management: Part 1 - General</title>
    <author >
      <organization>NIST</organization>
    </author>
    <date year="2020" month="May"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-57 Part 1 Rev. 5"/>
  <seriesInfo name="DOI" value="10.6028/NIST.SP.800-57pt1r5"/>
</reference>
<reference anchor="SP800-131A" target="https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar2.pdf">
  <front>
    <title>Transitioning the Use of Cryptographic Algorithms and Key Lengths</title>
    <author initials="E." surname="Barker">
      <organization></organization>
    </author>
    <author initials="A." surname="Roginsky">
      <organization></organization>
    </author>
    <date year="2019" month="March"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-131A Revision 2"/>
</reference>
<reference anchor="STEVENS2013" target="https://eprint.iacr.org/2013/358">
  <front>
    <title>Counter-cryptanalysis</title>
    <author initials="M." surname="Stevens" fullname="Marc Stevens">
      <organization></organization>
    </author>
    <date year="2013" month="June"/>
  </front>
</reference>
<reference anchor="UNIFIED-DIFF" target="https://www.gnu.org/software/diffutils/manual/html_node/Detailed-Unified.html">
  <front>
    <title>Detailed Description of Unified Format</title>
    <author >
      <organization>Free Software Foundation</organization>
    </author>
    <date year="2021" month="January" day="02"/>
  </front>
</reference>




<reference anchor='RFC2978'>
<front>
<title>IANA Charset Registration Procedures</title>
<author fullname='N. Freed' initials='N.' surname='Freed'><organization/></author>
<author fullname='J. Postel' initials='J.' surname='Postel'><organization/></author>
<date month='October' year='2000'/>
<abstract><t>Multipurpose Internet Mail Extensions (MIME) and various other Internet protocols are capable of using many different charsets.  This in turn means that the ability to label different charsets is essential.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='19'/>
<seriesInfo name='RFC' value='2978'/>
<seriesInfo name='DOI' value='10.17487/RFC2978'/>
</reference>

<reference anchor='FIPS186-5'>
  <front>
    <title>Digital Signature Standard (DSS): Elliptic Curve Domain Parameters</title>
    <author fullname='Andrew Regenscheid' initials='A.' surname='Regenscheid'>
      <organization/>
    </author>
    <date month='October' year='2019'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology (NIST)' value='posted-content'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.186-5-draft'/>
</reference>

<reference anchor='CHECKOWAY'>
  <front>
    <title>A Systematic Analysis of the Juniper Dual EC Incident</title>
    <author fullname='Stephen Checkoway' initials='S.' surname='Checkoway'>
      <organization>University of Illinois at Chicago, Chicago, IL, USA</organization>
    </author>
    <author fullname='Jacob Maskiewicz' initials='J.' surname='Maskiewicz'>
      <organization>UC San Diego, La Jolla, CA, USA</organization>
    </author>
    <author fullname='Christina Garman' initials='C.' surname='Garman'>
      <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
    </author>
    <author fullname='Joshua Fried' initials='J.' surname='Fried'>
      <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
    </author>
    <author fullname='Shaanan Cohney' initials='S.' surname='Cohney'>
      <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
    </author>
    <author fullname='Matthew Green' initials='M.' surname='Green'>
      <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
    </author>
    <author fullname='Nadia Heninger' initials='N.' surname='Heninger'>
      <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
    </author>
    <author fullname='Ralf-Philipp Weinmann' initials='R.' surname='Weinmann'>
      <organization>Comsecuris, Duisburg, Germany</organization>
    </author>
    <author fullname='Eric Rescorla' initials='E.' surname='Rescorla'>
      <organization>UC San Diego, La Jolla, CA, USA</organization>
    </author>
    <author fullname='Hovav Shacham' initials='H.' surname='Shacham'>
      <organization>UC San Diego, La Jolla, CA, USA</organization>
    </author>
    <date month='October' year='2016'/>
  </front>
  <seriesInfo name='Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications' value='Security'/>
  <seriesInfo name='DOI' value='10.1145/2976749.2978395'/>
</reference>



<reference anchor='RFC6637'>
<front>
<title>Elliptic Curve Cryptography (ECC) in OpenPGP</title>
<author fullname='A. Jivsov' initials='A.' surname='Jivsov'><organization/></author>
<date month='June' year='2012'/>
<abstract><t>This document defines an Elliptic Curve Cryptography extension to the OpenPGP public key format and specifies three Elliptic Curves that enjoy broad support by other standards, including standards published by the US National Institute of Standards and Technology.  The document specifies the conventions for interoperability between compliant OpenPGP implementations that make use of this extension and these Elliptic Curves.   [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6637'/>
<seriesInfo name='DOI' value='10.17487/RFC6637'/>
</reference>




    </references>


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

<t>To help implementing this specification a non-normative example for the EdDSA algorithm is given.</t>

<section anchor="sample-v4-ed25519legacy-key"><name>Sample v4 Ed25519Legacy key</name>

<t>The secret key used for this example is:</t>

<t>D: 1a8b1ff05ded48e18bf50166c664ab023ea70003d78d9e41f5758a91d850f8d2</t>

<t>Note that this is the raw secret key used as input to the EdDSA signing operation.
The key was created on 2014-08-19 14:28:27 and thus the fingerprint of the OpenPGP key is:</t>

<figure><artwork><![CDATA[
   C959 BDBA FA32 A2F8 9A15  3B67 8CFD E121 9796 5A9A
]]></artwork></figure>

<t>The algorithm-specific input parameters without the MPI length headers are:</t>

<t>oid: 2b06010401da470f01</t>

<t>q: 403f098994bdd916ed4053197934e4a87c80733a1280d62f8010992e43ee3b2406</t>

<t>The entire public key packet is thus:</t>

<figure><artwork><![CDATA[
   98 33 04 53 f3 5f 0b 16  09 2b 06 01 04 01 da 47
   0f 01 01 07 40 3f 09 89  94 bd d9 16 ed 40 53 19
   79 34 e4 a8 7c 80 73 3a  12 80 d6 2f 80 10 99 2e
   43 ee 3b 24 06
]]></artwork></figure>

<t>The same packet, represented in ASCII-armored form is:</t>

<figure><sourcecode type="application/pgp-keys" name="v4-ed25519-pubkey-packet.key"><![CDATA[
-----BEGIN PGP PUBLIC KEY BLOCK-----

xjMEU/NfCxYJKwYBBAHaRw8BAQdAPwmJlL3ZFu1AUxl5NOSofIBzOhKA1i+AEJku
Q+47JAY=
-----END PGP PUBLIC KEY BLOCK-----
]]></sourcecode></figure>

</section>
<section anchor="sample-v4-ed25519legacy-signature"><name>Sample v4 Ed25519Legacy signature</name>

<t>The signature is created using the sample key over the input data "OpenPGP" on 2015-09-16 12:24:53 UTC and thus the input to the hash function is:</t>

<t>m: 4f70656e504750040016080006050255f95f9504ff0000000c</t>

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

<t>d: f6220a3f757814f4c2176ffbb68b00249cd4ccdc059c4b34ad871f30b1740280</t>

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

<t>r: 56f90cca98e2102637bd983fdb16c131dfd27ed82bf4dde5606e0d756aed3366</t>

<t>s: d09c4fa11527f038e0f57f2201d82f2ea2c9033265fa6ceb489e854bae61b404</t>

<t>The entire signature packet is thus:</t>

<figure><artwork><![CDATA[
   88 5e 04 00 16 08 00 06  05 02 55 f9 5f 95 00 0a
   09 10 8c fd e1 21 97 96  5a 9a f6 22 00 ff 56 f9
   0c ca 98 e2 10 26 37 bd  98 3f db 16 c1 31 df d2
   7e d8 2b f4 dd e5 60 6e  0d 75 6a ed 33 66 01 00
   d0 9c 4f a1 15 27 f0 38  e0 f5 7f 22 01 d8 2f 2e
   a2 c9 03 32 65 fa 6c eb  48 9e 85 4b ae 61 b4 04
]]></artwork></figure>

<t>The same packet represented in ASCII-armored form is:</t>

<figure><sourcecode type="application/pgp-signature" name="v4-ed25519-signature-over-OpenPGP.sig"><![CDATA[
-----BEGIN PGP SIGNATURE-----

iF4EABYIAAYFAlX5X5UACgkQjP3hIZeWWpr2IgD/VvkMypjiECY3vZg/2xbBMd/S
ftgr9N3lYG4NdWrtM2YBANCcT6EVJ/A44PV/IgHYLy6iyQMyZfps60iehUuuYbQE
-----END PGP SIGNATURE-----
]]></sourcecode></figure>

</section>
<section anchor="v6-cert"><name>Sample v6 Certificate (Transferable Public Key)</name>

<t>Here is a Transferable Public Key consisting of:</t>

<t><list style="symbols">
  <t>A v6 Ed25519 Public-Key packet</t>
  <t>A v6 direct key self-signature</t>
  <t>A v6 X25519 Public-Subkey packet</t>
  <t>A v6 subkey binding signature</t>
</list></t>

<t>The primary key has the fingerprint <spanx style="verb">CB186C4F0609A697E4D52DFA6C722B0C1F1E27C18A56708F6525EC27BAD9ACC9</spanx>.</t>

<t>The subkey has the fingerprint <spanx style="verb">12C83F1E706F6308FE151A417743A1F033790E93E9978488D1DB378DA9930885</spanx>.</t>

<figure><sourcecode type="application/pgp-keys" name="v6-minimal-cert.key"><![CDATA[
-----BEGIN PGP PUBLIC KEY BLOCK-----

xioGY4d/4xsAAAAg+U2nu0jWCmHlZ3BqZYfQMxmZu52JGggkLq2EVD34laPCsQYf
GwoAAABCBYJjh3/jAwsJBwUVCg4IDAIWAAKbAwIeCSIhBssYbE8GCaaX5NUt+mxy
KwwfHifBilZwj2Ul7Ce62azJBScJAgcCAAAAAK0oIBA+LX0ifsDm185Ecds2v8lw
gyU2kCcUmKfvBXbAf6rhRYWzuQOwEn7E/aLwIwRaLsdry0+VcallHhSu4RN6HWaE
QsiPlR4zxP/TP7mhfVEe7XWPxtnMUMtf15OyA51YBM4qBmOHf+MZAAAAIIaTJINn
+eUBXbki+PSAld2nhJh/LVmFsS+60WyvXkQ1wpsGGBsKAAAALAWCY4d/4wKbDCIh
BssYbE8GCaaX5NUt+mxyKwwfHifBilZwj2Ul7Ce62azJAAAAAAQBIKbpGG2dWTX8
j+VjFM21J0hqWlEg+bdiojWnKfA5AQpWUWtnNwDEM0g12vYxoWM8Y81W+bHBw805
I8kWVkXU6vFOi+HWvv/ira7ofJu16NnoUkhclkUrk0mXubZvyl4GBg==
-----END PGP PUBLIC KEY BLOCK-----
]]></sourcecode></figure>

<t>The corresponding Transferable Secret Key can be found in <xref target="v6-key"/>.</t>

<section anchor="sig-hashed-data-example"><name>Hashed Data Stream for Signature Verification</name>

<t>The direct key self signature in the certificate in <xref target="v6-cert"/> is made over the following sequence of data:</t>

<figure><artwork><![CDATA[
0x0000  10 3e 2d 7d 22 7e c0 e6
0x0008  d7 ce 44 71 db 36 bf c9
0x0010  70 83 25 36 90 27 14 98
0x0018  a7 ef 05 76 c0 7f aa e1
0x0020  9b 00 00 00 2a 06 63 87
0x0028  7f e3 1b 00 00 00 20 f9
0x0030  4d a7 bb 48 d6 0a 61 e5
0x0038  67 70 6a 65 87 d0 33 19
0x0040  99 bb 9d 89 1a 08 24 2e
0x0048  ad 84 54 3d f8 95 a3 06
0x0050  1f 1b 0a 00 00 00 42 05
0x0058  82 63 87 7f e3 03 0b 09
0x0060  07 05 15 0a 0e 08 0c 02
0x0068  16 00 02 9b 03 02 1e 09
0x0070  22 21 06 cb 18 6c 4f 06
0x0078  09 a6 97 e4 d5 2d fa 6c
0x0080  72 2b 0c 1f 1e 27 c1 8a
0x0088  56 70 8f 65 25 ec 27 ba
0x0090  d9 ac c9 05 27 09 02 07
0x0098  02 06 ff 00 00 00 4a
]]></artwork></figure>

<t>The same data, broken out by octet and semantics, is:</t>

<figure><artwork><![CDATA[
0x0000  10 3e 2d 7d 22 7e c0 e6  salt
0x0008  d7 ce 44 71 db 36 bf c9
0x0010  70 83 25 36 90 27 14 98
0x0018  a7 ef 05 76 c0 7f aa e1
        [ pubkey begins ]
0x0020  9b                       v6 pubkey
0x0021     00 00 00 2a           pubkey length
0x0025                 06        pubkey version
0x0026                    63 87  creation time
0x0028  7f e3                      (2022-11-30T16:08:03Z)
0x002a        1b                 key algo: Ed25519
0x002b           00 00 00 20     key length
0x002f                       f9  Ed25519 public key
0x0030  4d a7 bb 48 d6 0a 61 e5
0x0038  67 70 6a 65 87 d0 33 19
0x0040  99 bb 9d 89 1a 08 24 2e
0x0048  ad 84 54 3d f8 95 a3
         [ trailer begins ]
0x004f                       06  sig version
0x0050  1f                       sig type: direct key signature
0x0051     1b                    sig algo: Ed25519
0x0052        0a                 hash ago: SHA2-512
0x0053           00 00 00 42     hashed subpackets length
0x0057                       05  subpkt length
0x0058  82                       critical subpkt: Sig Creation Time
0x0059     63 87 7f e3           Signature Creation Time
0x005d                 03        subpkt length
0x005e                    0b     subpkt type: Pref. v1 SEIPD Ciphers
0x005f                       09  Ciphers: [AES256 AES128]
0x0060  07
0x0061     05                    subpkt length
0x0062        15                 subpkt type: Pref. Hash Algorithms
0x0063           0a 0e           Hashes: [SHA2-512 SHA3-512
0x0065                 08 0c              SHA2-256 SHA3-256]
0x0067                       02  subpkt length
0x0068  16                       subpkt type: Pref. Compression
0x0069     00                    Compression: [none]
0x006a        02                 subpkt length
0x006b           9b              critical subpkt: Key Flags
0x006c              03           Key Flags: {certify, sign}
0x006d                 02        subpkt length
0x006e                    1e     subpkt type: Features
0x006f                       09  Features: {SEIPDv1, SEIPDv2}
0x0070  22                       subpkt length
0x0071     21                    subpkt type: Issuer Fingerprint
0x0072        06                 Fingerprint version 6
0x0073           cb 18 6c 4f 06  Issuer Fingerprint
0x0078  09 a6 97 e4 d5 2d fa 6c
0x0080  72 2b 0c 1f 1e 27 c1 8a
0x0088  56 70 8f 65 25 ec 27 ba
0x0090  d9 ac c9
0x0093           05              subpkt length
0x0094              27           subpkt type: Pref. AEAD Ciphersuites
0x0095                 09 02 07  Ciphersuites:
0x0098  02                         [ AES256-OCB, AES128-OCB ]
0x0099     06                    sig version
0x009a        ff                 sentinel octet
0x009b           00 00 00 4a     trailer length
]]></artwork></figure>

<t>The subkey binding signature in <xref target="v6-cert"/> is made over the following sequence of data:</t>

<figure><artwork><![CDATA[
0x0000  a6 e9 18 6d 9d 59 35 fc
0x0008  8f e5 63 14 cd b5 27 48
0x0010  6a 5a 51 20 f9 b7 62 a2
0x0018  35 a7 29 f0 39 01 0a 56
0x0020  9b 00 00 00 2a 06 63 87
0x0028  7f e3 1b 00 00 00 20 f9
0x0030  4d a7 bb 48 d6 0a 61 e5
0x0038  67 70 6a 65 87 d0 33 19
0x0040  99 bb 9d 89 1a 08 24 2e
0x0048  ad 84 54 3d f8 95 a3 9b
0x0050  00 00 00 2a 06 63 87 7f
0x0058  e3 19 00 00 00 20 86 93
0x0060  24 83 67 f9 e5 01 5d b9
0x0068  22 f8 f4 80 95 dd a7 84
0x0070  98 7f 2d 59 85 b1 2f ba
0x0078  d1 6c af 5e 44 35 06 18
0x0080  1b 0a 00 00 00 2c 05 82
0x0088  63 87 7f e3 02 9b 0c 22
0x0090  21 06 cb 18 6c 4f 06 09
0x0098  a6 97 e4 d5 2d fa 6c 72
0x00a0  2b 0c 1f 1e 27 c1 8a 56
0x00a8  70 8f 65 25 ec 27 ba d9
0x00b0  ac c9 06 ff 00 00 00 34
]]></artwork></figure>

<t>The same data, broken out by octet and semantics, is:</t>

<figure><artwork><![CDATA[
0x0000  a6 e9 18 6d 9d 59 35 fc  salt
0x0008  8f e5 63 14 cd b5 27 48
0x0010  6a 5a 51 20 f9 b7 62 a2
0x0018  35 a7 29 f0 39 01 0a 56
      [ primary pubkey begins ]
0x0020  9b                       v6 pubkey
0x0021     00 00 00 2a           pubkey length
0x0025                 06        pubkey version
0x0026                    63 87  creation time
0x0028  7f e3                      (2022-11-30T16:08:03Z)
0x002a        1b                 key algo: Ed25519
0x002b           00 00 00 20     key length
0x002f                       f9  Ed25519 public key
0x0030  4d a7 bb 48 d6 0a 61 e5
0x0038  67 70 6a 65 87 d0 33 19
0x0040  99 bb 9d 89 1a 08 24 2e
0x0048  ad 84 54 3d f8 95 a3
      [ subkey pubkey begins ]
0x004f                       9b  v6 key
0x0050  00 00 00 2a              pubkey length
0x0054              06           pubkey version
0x0055                 63 87 7f  creation time (2022-11-30T16:08:03Z)
0x0058  e3
0x0059     19                    key algo: X25519
0x005a        00 00 00 20        key length
0x005e                    86 93  X25519 public key
0x0060  24 83 67 f9 e5 01 5d b9
0x0068  22 f8 f4 80 95 dd a7 84
0x0070  98 7f 2d 59 85 b1 2f ba
0x0078  d1 6c af 5e 44 35
       [ trailer begins ]
0x007e                    06     sig version
0x007f                       18  sig type: Subkey Binding sig
0x0080  1b                       sig algo Ed25519
0x0081     0a                    hash algo: SHA2-512
0x0082        00 00 00 2c        hashed subpackets length
0x0086                    05     subpkt length
0x0087                       82  critical subpkt: Sig Creation Time
0x0088  63 87 7f e3              Signature Creation Time
0x008c              02           subpkt length
0x008d                 9b        critical subpkt: Key Flags
0x008e                    0c     Key Flags: {EncComms, EncStorage}
0x008f                       22  subpkt length
0x0090  21                       subpkt type: Issuer Fingerprint
0x0091     06                    Fingerprint version 6
0x0092        cb 18 6c 4f 06 09  Fingerprint
0x0098  a6 97 e4 d5 2d fa 6c 72
0x00a0  2b 0c 1f 1e 27 c1 8a 56
0x00a8  70 8f 65 25 ec 27 ba d9
0x00b0  ac c9
0x00b2        06                 sig version
0x00b3           ff              sentinel octet
0x00b4              00 00 00 34  trailer length
]]></artwork></figure>

</section>
</section>
<section anchor="v6-key"><name>Sample v6 Secret Key (Transferable Secret Key)</name>

<t>Here is a Transferable Secret Key consisting of:</t>

<t><list style="symbols">
  <t>A v6 Ed25519 Secret-Key packet</t>
  <t>A v6 direct key self-signature</t>
  <t>A v6 X25519 Secret-Subkey packet</t>
  <t>A v6 subkey binding signature</t>
</list></t>

<figure><sourcecode type="application/pgp-keys" name="v6-minimal-secret.key"><![CDATA[
-----BEGIN PGP PRIVATE KEY BLOCK-----

xUsGY4d/4xsAAAAg+U2nu0jWCmHlZ3BqZYfQMxmZu52JGggkLq2EVD34laMAGXKB
exK+cH6NX1hs5hNhIB00TrJmosgv3mg1ditlsLfCsQYfGwoAAABCBYJjh3/jAwsJ
BwUVCg4IDAIWAAKbAwIeCSIhBssYbE8GCaaX5NUt+mxyKwwfHifBilZwj2Ul7Ce6
2azJBScJAgcCAAAAAK0oIBA+LX0ifsDm185Ecds2v8lwgyU2kCcUmKfvBXbAf6rh
RYWzuQOwEn7E/aLwIwRaLsdry0+VcallHhSu4RN6HWaEQsiPlR4zxP/TP7mhfVEe
7XWPxtnMUMtf15OyA51YBMdLBmOHf+MZAAAAIIaTJINn+eUBXbki+PSAld2nhJh/
LVmFsS+60WyvXkQ1AE1gCk95TUR3XFeibg/u/tVY6a//1q0NWC1X+yui3O24wpsG
GBsKAAAALAWCY4d/4wKbDCIhBssYbE8GCaaX5NUt+mxyKwwfHifBilZwj2Ul7Ce6
2azJAAAAAAQBIKbpGG2dWTX8j+VjFM21J0hqWlEg+bdiojWnKfA5AQpWUWtnNwDE
M0g12vYxoWM8Y81W+bHBw805I8kWVkXU6vFOi+HWvv/ira7ofJu16NnoUkhclkUr
k0mXubZvyl4GBg==
-----END PGP PRIVATE KEY BLOCK-----
]]></sourcecode></figure>

<t>The corresponding Transferable Public Key can be found in <xref target="v6-cert"/>.</t>

</section>
<section anchor="v6-locked-key"><name>Sample locked v6 Secret Key (Transferable Secret Key)</name>

<t>Here is the same secret key as in <xref target="v6-key"/>, but the secret key material is locked with a passphrase using AEAD and Argon2.</t>

<t>The passphrase is the ASCII string:</t>

<figure><artwork><![CDATA[
correct horse battery staple
]]></artwork></figure>

<figure><sourcecode type="application/pgp-keys" name="v6-minimal-secret-locked.key"><![CDATA[
-----BEGIN PGP PRIVATE KEY BLOCK-----

xYIGY4d/4xsAAAAg+U2nu0jWCmHlZ3BqZYfQMxmZu52JGggkLq2EVD34laP9JgkC
FARdb9ccngltHraRe25uHuyuAQQVtKipJ0+r5jL4dacGWSAheCWPpITYiyfyIOPS
3gIDyg8f7strd1OB4+LZsUhcIjOMpVHgmiY/IutJkulneoBYwrEGHxsKAAAAQgWC
Y4d/4wMLCQcFFQoOCAwCFgACmwMCHgkiIQbLGGxPBgmml+TVLfpscisMHx4nwYpW
cI9lJewnutmsyQUnCQIHAgAAAACtKCAQPi19In7A5tfORHHbNr/JcIMlNpAnFJin
7wV2wH+q4UWFs7kDsBJ+xP2i8CMEWi7Ha8tPlXGpZR4UruETeh1mhELIj5UeM8T/
0z+5oX1RHu11j8bZzFDLX9eTsgOdWATHggZjh3/jGQAAACCGkySDZ/nlAV25Ivj0
gJXdp4SYfy1ZhbEvutFsr15ENf0mCQIUBA5hhGgp2oaavg6mFUXcFMwBBBUuE8qf
9Ock+xwusd+GAglBr5LVyr/lup3xxQvHXFSjjA2haXfoN6xUGRdDEHI6+uevKjVR
v5oAxgu7eJpaXNjCmwYYGwoAAAAsBYJjh3/jApsMIiEGyxhsTwYJppfk1S36bHIr
DB8eJ8GKVnCPZSXsJ7rZrMkAAAAABAEgpukYbZ1ZNfyP5WMUzbUnSGpaUSD5t2Ki
Nacp8DkBClZRa2c3AMQzSDXa9jGhYzxjzVb5scHDzTkjyRZWRdTq8U6L4da+/+Kt
ruh8m7Xo2ehSSFyWRSuTSZe5tm/KXgYG
-----END PGP PRIVATE KEY BLOCK-----
]]></sourcecode></figure>

<section anchor="intermediate-data-for-locked-primary-key"><name>Intermediate Data for Locked Primary Key</name>

<t>The S2K-derived material for the primary key is:</t>

<figure><artwork><![CDATA[
832bd2662a5c2b251ee3fc82aec349a766ca539015880133002e5a21960b3bcf
]]></artwork></figure>

<t>After HKDF, the symmetric key used for AEAD encryption of the primary key is:</t>

<figure><artwork><![CDATA[
9e37cb26787f37e18db172795c4c297550d39ac82511d9af4c8706db6a77fd51
]]></artwork></figure>

<t>The additional data for AEAD for the primary key is:</t>

<figure><artwork><![CDATA[
c50663877fe31b00000020f94da7bb48d60a61e567706a6587d0331999bb9d89
1a08242ead84543df895a3
]]></artwork></figure>

</section>
<section anchor="intermediate-data-for-locked-subkey"><name>Intermediate Data for Locked Subkey</name>

<t>The S2K-derived key material for the subkey is:</t>

<figure><artwork><![CDATA[
f74a6ce873a089ef13a3da9ac059777bb22340d15eaa6c9dc0f8ef09035c67cd
]]></artwork></figure>

<t>After HKDF, the symmetric key used for AEAD encryption of the subkey is:</t>

<figure><artwork><![CDATA[
3c60cb63285f62f4c3de49835786f011cf6f4c069f61232cd7013ff5fd31e603
]]></artwork></figure>

<t>The additional data for AEAD for the subkey is:</t>

<figure><artwork><![CDATA[
c70663877fe319000000208693248367f9e5015db922f8f48095dda784987f2d
5985b12fbad16caf5e4435
]]></artwork></figure>

</section>
</section>
<section anchor="sample-csf-message"><name>Sample Cleartext Signed Message</name>

<t>Here is a signed message that uses the cleartext signature framework (<xref target="cleartext-signature"/>).
It can be verified with the certificate from (<xref target="v6-cert"/>).</t>

<t>Note that this message makes use of dash-escaping (<xref target="dash-escaping"/>) due to its contents.</t>

<figure><sourcecode type="text/plain" name="cleartext-signed-message.txt"><![CDATA[
-----BEGIN PGP SIGNED MESSAGE-----

What we need from the grocery store:

- - tofu
- - vegetables
- - noodles

-----BEGIN PGP SIGNATURE-----

wpgGARsKAAAAKQWCY5ijYyIhBssYbE8GCaaX5NUt+mxyKwwfHifBilZwj2Ul7Ce6
2azJAAAAAGk2IHZJX1AhiJD39eLuPBgiUU9wUA9VHYblySHkBONKU/usJ9BvuAqo
/FvLFuGWMbKAdA+epq7V4HOtAPlBWmU8QOd6aud+aSunHQaaEJ+iTFjP2OMW0KBr
NK2ay45cX1IVAQ==
-----END PGP SIGNATURE-----
]]></sourcecode></figure>

<t>The signature packet here is:</t>

<figure><artwork><![CDATA[
0x0000  c2                       packet tag: Signature
0x0001     98                    packet length
0x0002        06                 signature version 6
0x0003           01              signature type: canonical text
0x0004              1b           pubkey algorithm: Ed25519
0x0005                 0a        hash algorithm used: SHA2-512
0x0006                    00 00  hashed subpackets length: 41
0x0008  00 29
0x000a        05                 subpkt length
0x000b           82              critical subpkt: Sig Creation Time
0x000c              63 98 a3 63   (2022-12-13T16:08:03Z)
0x0010  22                       subpkt length
0x0011     21                    subpkt type: issuer fingerprint
0x0012        06                 key version
0x0013           cb 18 6c 4f 06  v6 fingerprint
0x001a  09 a6 97 e4 d5 2d fa 6c
0x0020  72 2b 0c 1f 1e 27 c1 8a
0x0028  56 70 8f 65 25 ec 27 ba
0x0030  d9 ac c9
0x0033           00 00 00 00     unhashed subpackets length: 0
0x0037                       69  left 16 bits of signed hash
0x0038  36
0x0039     20                    salt length
0x003a        76 49 5f 50 21 88  salt
0x0040  90 f7 f5 e2 ee 3c 18 22
0x0048  51 4f 70 50 0f 55 1d 86
0x0050  e5 c9 21 e4 04 e3 4a 53
0x0058  fb ac
0x005a        27 d0 6f b8 0a a8  Ed25519 signature
0x0060  fc 5b cb 16 e1 96 31 b2
0x0068  80 74 0f 9e a6 ae d5 e0
0x0070  73 ad 00 f9 41 5a 65 3c
0x0078  40 e7 7a 6a e7 7e 69 2b
0x0080  a7 1d 06 9a 10 9f a2 4c
0x0088  58 cf d8 e3 16 d0 a0 6b
0x0090  34 ad 9a cb 8e 5c 5f 52
0x0098  15 01
]]></artwork></figure>

<t>The signature is made over the following data:</t>

<figure><artwork><![CDATA[
0x0000  76 49 5f 50 21 88 90 f7
0x0008  f5 e2 ee 3c 18 22 51 4f
0x0010  70 50 0f 55 1d 86 e5 c9
0x0018  21 e4 04 e3 4a 53 fb ac
0x0020  57 68 61 74 20 77 65 20
0x0028  6e 65 65 64 20 66 72 6f
0x0030  6d 20 74 68 65 20 67 72
0x0038  6f 63 65 72 79 20 73 74
0x0040  6f 72 65 3a 0d 0a 0d 0a
0x0048  2d 20 74 6f 66 75 0d 0a
0x0050  2d 20 76 65 67 65 74 61
0x0058  62 6c 65 73 0d 0a 2d 20
0x0060  6e 6f 6f 64 6c 65 73 0d
0x0068  0a 06 01 1b 0a 00 00 00
0x0070  29 05 82 63 98 a3 63 22
0x0078  21 06 cb 18 6c 4f 06 09
0x0080  a6 97 e4 d5 2d fa 6c 72
0x0088  2b 0c 1f 1e 27 c1 8a 56
0x0090  70 8f 65 25 ec 27 ba d9
0x0098  ac c9 06 ff 00 00 00 31
]]></artwork></figure>

<t>The same data, broken out by octet and semantics, is:</t>

<figure><artwork><![CDATA[
0x0000  76 49 5f 50 21 88 90 f7  salt
0x0008  f5 e2 ee 3c 18 22 51 4f
0x0010  70 50 0f 55 1d 86 e5 c9
0x0018  21 e4 04 e3 4a 53 fb ac
      [ message begins ]
0x0020  57 68 61 74 20 77 65 20  canonicalized message
0x0028  6e 65 65 64 20 66 72 6f
0x0030  6d 20 74 68 65 20 67 72
0x0038  6f 63 65 72 79 20 73 74
0x0040  6f 72 65 3a 0d 0a 0d 0a
0x0048  2d 20 74 6f 66 75 0d 0a
0x0050  2d 20 76 65 67 65 74 61
0x0058  62 6c 65 73 0d 0a 2d 20
0x0060  6e 6f 6f 64 6c 65 73 0d
0x0068  0a
      [ trailer begins ]
0x0069     06                    sig version
0x006a        01                 sigtype: canonical text
0x006b           1b              pubkey algorithm: Ed25519
0x006c              0a           hash algorithm: SHA2-512
0x006d                 00 00 00  hashed subpackets length
0x0070  29
0x0071     05                    subpacket length
0x0072        82                 critical subpkt: Sig Creation Time
0x0073           63 98 a3 63       (2022-12-13T16:08:03Z)
0x0077                       22  subpkt length
0x0078  21                       subpkt type: issuer fingerprint
0x0079     06                    key version
0x007a        cb 18 6c 4f 06 09  v6 fingerprint
0x0080  a6 97 e4 d5 2d fa 6c 72
0x0088  2b 0c 1f 1e 27 c1 8a 56
0x0090  70 8f 65 25 ec 27 ba d9
0x0098  ac c9
0x009a        06                 sig version
0x009b           ff              sentinel octet
0x009c              00 00 00 31  trailer length
]]></artwork></figure>

<t>The calculated SHA2-512 hash digest over this data is:</t>

<figure><artwork><![CDATA[
69365bf44a97af1f0844f1f6ab83fdf6b36f26692efaa621a8aac91c4e29ea07
e894cabc6e2f20eedfce6c03b89141a2cc7cbe245e6e7a5654addbec5000b89b
]]></artwork></figure>

</section>
<section anchor="sample-inline-signed-message"><name>Sample inline-signed message</name>

<t>This is the same message and signature as in <xref target="sample-csf-message"/>, but as inline-signed message.
The hashed data is exactly the same, and all intermediate values and annotated hex dumps are also applicable.</t>

<figure><sourcecode type="text/plain" name="inline-signed-message.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

xEYGAQobIHZJX1AhiJD39eLuPBgiUU9wUA9VHYblySHkBONKU/usyxhsTwYJppfk
1S36bHIrDB8eJ8GKVnCPZSXsJ7rZrMkBy0p1AAAAAABXaGF0IHdlIG5lZWQgZnJv
bSB0aGUgZ3JvY2VyeSBzdG9yZToKCi0gdG9mdQotIHZlZ2V0YWJsZXMKLSBub29k
bGVzCsKYBgEbCgAAACkFgmOYo2MiIQbLGGxPBgmml+TVLfpscisMHx4nwYpWcI9l
JewnutmsyQAAAABpNiB2SV9QIYiQ9/Xi7jwYIlFPcFAPVR2G5ckh5ATjSlP7rCfQ
b7gKqPxbyxbhljGygHQPnqau1eBzrQD5QVplPEDnemrnfmkrpx0GmhCfokxYz9jj
FtCgazStmsuOXF9SFQE=
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
<section anchor="sample-x25519-aead-ocb-encryption-and-decryption"><name>Sample X25519-AEAD-OCB encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> for the sample cert (see <xref target="v6-cert"/>), using AES-128 with AEAD-OCB encryption.</t>

<section anchor="sample-public-key-encrypted-session-key-packet-v6"><name>Sample public-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6pkesk-x25519.hexdump"><![CDATA[
0x0000  c1 5d 06 21 06 12 c8 3f
0x0008  1e 70 6f 63 08 fe 15 1a
0x0010  41 77 43 a1 f0 33 79 0e
0x0018  93 e9 97 84 88 d1 db 37
0x0020  8d a9 93 08 85 19 87 cf
0x0028  18 d5 f1 b5 3f 81 7c ce
0x0030  5a 00 4c f3 93 cc 89 58
0x0038  bd dc 06 5f 25 f8 4a f5
0x0040  09 b1 7d d3 67 64 18 de
0x0048  a3 55 43 79 56 61 79 01
0x0050  e0 69 57 fb ca 8a 6a 47
0x0058  a5 b5 15 3e 8d 3a b7
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c1                       packet tag: PKESK
0x0001     5d                    packet length
0x0002        06                 PKESK version 6
0x0003           21              length of fingerprint
0x0004              06           Key version 6
0x0005                 12 c8 3f  Key fingerprint
0x0008  1e 70 6f 63 08 fe 15 1a
0x0010  41 77 43 a1 f0 33 79 0e
0x0018  93 e9 97 84 88 d1 db 37
0x0020  8d a9 93 08 85
0x0025                 19        algorithm: X25519
0x0026                    87 cf  Ephemeral key
0x0028  18 d5 f1 b5 3f 81 7c ce
0x0030  5a 00 4c f3 93 cc 89 58
0x0038  bd dc 06 5f 25 f8 4a f5
0x0040  09 b1 7d d3 67 64
0x0046                    18     ESK length
0x0047                       de  ESK
0x0048  a3 55 43 79 56 61 79 01
0x0050  e0 69 57 fb ca 8a 6a 47
0x0058  a5 b5 15 3e 8d 3a b7
]]></artwork></figure>

</section>
<section anchor="x25519-encryptiondecryption-of-the-session-key"><name>X25519 encryption/decryption of the session key</name>

<t>Ephemeral key:</t>

<figure><artwork><![CDATA[
  87 cf 18 d5 f1 b5 3f 81 7c ce 5a 00 4c f3 93 cc
  89 58 bd dc 06 5f 25 f8 4a f5 09 b1 7d d3 67 64
]]></artwork></figure>

<t>This ephemeral key is derived from the following ephemeral secret key material, which is never placed on the wire:</t>

<figure><artwork><![CDATA[
  af 1e 43 c0 d1 23 ef e8 93 a7 d4 d3 90 f3 a7 61
  e3 fa c3 3d fc 7f 3e da a8 30 c9 01 13 52 c7 79
]]></artwork></figure>

<t>Public key from target certificate (see <xref target="v6-cert"/>):</t>

<figure><artwork><![CDATA[
  86 93 24 83 67 f9 e5 01 5d b9 22 f8 f4 80 95 dd
  a7 84 98 7f 2d 59 85 b1 2f ba d1 6c af 5e 44 35
]]></artwork></figure>

<t>The corresponding long-lived X25519 private key material (see <xref target="v6-key"/>):</t>

<figure><artwork><![CDATA[
  4d 60 0a 4f 79 4d 44 77 5c 57 a2 6e 0f ee fe d5
  58 e9 af ff d6 ad 0d 58 2d 57 fb 2b a2 dc ed b8
]]></artwork></figure>

<t>Shared point:</t>

<figure><artwork><![CDATA[
  67 e3 0e 69 cd c7 ba b2 a2 68 0d 78 ac a4 6a 2f
  8b 6e 2a e4 4d 39 8b dc 6f 92 c5 ad 4a 49 25 14
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  f6 6d ad cf f6 45 92 23 9b 25 45 39 b6 4f f6 07
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  dd 70 8f 6f a1 ed 65 11 4d 68 d2 34 3e 7c 2f 1d
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="x25519-v2seipd-aes128-ocb.hexdump"><![CDATA[
0x0000  d2 69 02 07 02 06 61 64
0x0008  16 53 5b e0 b0 71 6d 60
0x0010  e0 52 a5 6c 4c 40 7f 9e
0x0018  b3 6b 0e fa fe 9a d0 a0
0x0020  df 9b 03 3c 69 a2 1b a9
0x0028  eb d2 c0 ec 95 bf 56 9d
0x0030  25 c9 99 ee 4a 3d e1 70
0x0038  58 f4 0d fa 8b 4c 68 2b
0x0040  e3 fb bb d7 b2 7e b0 f5
0x0048  9b b5 00 5f 80 c7 c6 f4
0x0050  03 88 c3 0a d4 06 ab 05
0x0058  13 dc d6 f9 fd 73 76 56
0x0060  28 6e 11 77 d0 0f 88 8a
0x0068  db 31 c4
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet tag: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              02           AEAD mode: OCB
0x0005                 06        chunk size (2**12 octets)
0x0006                    61 64  salt
0x0008  16 53 5b e0 b0 71 6d 60
0x0010  e0 52 a5 6c 4c 40 7f 9e
0x0018  b3 6b 0e fa fe 9a d0 a0
0x0020  df 9b 03 3c 69 a2
0x0026                    1b a9  chunk #0 encrypted data
0x0028  eb d2 c0 ec 95 bf 56 9d
0x0030  25 c9 99 ee 4a 3d e1 70
0x0038  58 f4 0d fa 8b 4c 68 2b
0x0040  e3 fb bb d7 b2 7e b0 f5
0x0048  9b b5 00
0x004b           5f 80 c7 c6 f4  chunk #0 AEAD tag
0x0050  03 88 c3 0a d4 06 ab 05
0x0058  13 dc d6
0x005b           f9 fd 73 76 56  final AEAD tag (#1)
0x0060  28 6e 11 77 d0 0f 88 8a
0x0068  db 31 c4
]]></artwork></figure>

</section>
<section anchor="decryption-of-data"><name>Decryption of data</name>

<t>Starting AEAD-OCB decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  45 12 f7 14 9d 86 33 41 52 7c 65 67 d5 bf fc 42
  5f af 32 50 21 2f f9
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  45 12 f7 14 9d 86 33 41 52 7c 65 67 d5 bf fc 42
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  5f af 32 50 21 2f f9
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  5f af 32 50 21 2f f9 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>Encrypted data chunk:</t>

<figure><artwork><![CDATA[
  1b a9 eb d2 c0 ec 95 bf 56 9d 25 c9 99 ee 4a 3d
  e1 70 58 f4 0d fa 8b 4c 68 2b e3 fb bb d7 b2 7e
  b0 f5 9b b5 00 5f 80 c7 c6 f4 03 88 c3 0a d4 06
  ab 05 13 dc d6
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e c5 a2 93 07 29 91 62 81 47 d7 2c 8f 86 b7
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  5f af 32 50 21 2f f9 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-x25519-aead-ocb-encrypted-packet-sequence"><name>Complete X25519-AEAD-OCB encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6pkesk-aes128-ocb.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

wV0GIQYSyD8ecG9jCP4VGkF3Q6HwM3kOk+mXhIjR2zeNqZMIhRmHzxjV8bU/gXzO
WgBM85PMiVi93AZfJfhK9QmxfdNnZBjeo1VDeVZheQHgaVf7yopqR6W1FT6NOrfS
aQIHAgZhZBZTW+CwcW1g4FKlbExAf56zaw76/prQoN+bAzxpohup69LA7JW/Vp0l
yZnuSj3hcFj0DfqLTGgr4/u717J+sPWbtQBfgMfG9AOIwwrUBqsFE9zW+f1zdlYo
bhF30A+IitsxxA==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-aead-eax-encryption-and-decryption"><name>Sample AEAD-EAX encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> with the passphrase <spanx style="verb">password</spanx>, using AES-128 with AEAD-EAX encryption.</t>

<section anchor="sample-symmetric-key-encrypted-session-key-packet-v6"><name>Sample symmetric-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6skesk-aes128-eax.hexdump"><![CDATA[
0x0000  c3 40 06 1e 07 01 0b 03
0x0008  08 a5 ae 57 9d 1f c5 d8
0x0010  2b ff 69 22 4f 91 99 93
0x0018  b3 50 6f a3 b5 9a 6a 73
0x0020  cf f8 c5 ef c5 f4 1c 57
0x0028  fb 54 e1 c2 26 81 5d 78
0x0030  28 f5 f9 2c 45 4e b6 5e
0x0038  be 00 ab 59 86 c6 8e 6e
0x0040  7c 55
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c3                       packet tag: SKESK
0x0001     40                    packet length
0x0002        06                 SKESK version 6
0x0003           1e              length through end of AEAD nonce
0x0004              07           cipher: AES128
0x0005                 01        AEAD mode: EAX
0x0006                    0b     length of S2K
0x0007                       03  S2K type: iterated+salted
0x0008  08                       S2K hash: SHA2-256
0x0009     a5 ae 57 9d 1f c5 d8  S2K salt
0x0010  2b
0x0011     ff                    S2K iterations (65011712 octets)
0x0012        69 22 4f 91 99 93  AEAD nonce
0x0018  b3 50 6f a3 b5 9a 6a 73
0x0020  cf f8
0x0022        c5 ef c5 f4 1c 57  encrypted session key
0x0028  fb 54 e1 c2 26 81 5d 78
0x0030  28 f5
0x0032        f9 2c 45 4e b6 5e  AEAD tag
0x0038  be 00 ab 59 86 c6 8e 6e
0x0040  7c 55
]]></artwork></figure>

</section>
<section anchor="starting-aead-eax-decryption-of-the-session-key"><name>Starting AEAD-EAX decryption of the session key</name>

<t>The derived key is:</t>

<figure><artwork><![CDATA[
  15 49 67 e5 90 aa 1f 92 3e 1c 0a c6 4c 88 f2 3d
]]></artwork></figure>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  c3 06 07 01
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  2f ce 33 1f 39 dd 95 5c c4 1e 95 d8 70 c7 21 39
]]></artwork></figure>

<t>Authenticated Data:</t>

<figure><artwork><![CDATA[
  c3 06 07 01
]]></artwork></figure>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  69 22 4f 91 99 93 b3 50 6f a3 b5 9a 6a 73 cf f8
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  38 81 ba fe 98 54 12 45 9b 86 c3 6f 98 cb 9a 5e
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet-1"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v2seipd-aes128-eax.hexdump"><![CDATA[
0x0000  d2 69 02 07 01 06 9f f9
0x0008  0e 3b 32 19 64 f3 a4 29
0x0010  13 c8 dc c6 61 93 25 01
0x0018  52 27 ef b7 ea ea a4 9f
0x0020  04 c2 e6 74 17 5d 4a 3d
0x0028  22 6e d6 af cb 9c a9 ac
0x0030  12 2c 14 70 e1 1c 63 d4
0x0038  c0 ab 24 1c 6a 93 8a d4
0x0040  8b f9 9a 5a 99 b9 0b ba
0x0048  83 25 de 61 04 75 40 25
0x0050  8a b7 95 9a 95 ad 05 1d
0x0058  da 96 eb 15 43 1d fe f5
0x0060  f5 e2 25 5c a7 82 61 54
0x0068  6e 33 9a
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet tag: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              01           AEAD mode: EAX
0x0005                 06        chunk size (2**12 octets)
0x0005                    9f f9  salt
0x0008  0e 3b 32 19 64 f3 a4 29
0x0010  13 c8 dc c6 61 93 25 01
0x0018  52 27 ef b7 ea ea a4 9f
0x0020  04 c2 e6 74 17 5d
0x0026                    4a 3d  chunk #0 encrypted data
0x0028  22 6e d6 af cb 9c a9 ac
0x0030  12 2c 14 70 e1 1c 63 d4
0x0038  c0 ab 24 1c 6a 93 8a d4
0x0040  8b f9 9a 5a 99 b9 0b ba
0x0048  83 25 de
0x004b           61 04 75 40 25  chunk #0 AEAD tag
0x0050  8a b7 95 9a 95 ad 05 1d
0x0058  da 96 eb
0x005b           15 43 1d fe f5  final AEAD tag (#1)
0x0060  f5 e2 25 5c a7 82 61 54
0x0068  6e 33 9a
]]></artwork></figure>

</section>
<section anchor="decryption-of-data-1"><name>Decryption of data</name>

<t>Starting AEAD-EAX decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 01 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  b5 04 22 ac 1c 26 be 9d dd 83 1d 5b bb 36 b6 4f
  78 b8 33 f2 e9 4a 60 c0
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  b5 04 22 ac 1c 26 be 9d dd 83 1d 5b bb 36 b6 4f
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  78 b8 33 f2 e9 4a 60 c0
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  78 b8 33 f2 e9 4a 60 c0 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 01 06
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e ae 5b f0 cd 67 05 50 03 55 81 6c b0 c8 ff
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  78 b8 33 f2 e9 4a 60 c0 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 01 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-aead-eax-encrypted-packet-sequence"><name>Complete AEAD-EAX encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6skesk-aes128-eax.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

w0AGHgcBCwMIpa5XnR/F2Cv/aSJPkZmTs1Bvo7WaanPP+MXvxfQcV/tU4cImgV14
KPX5LEVOtl6+AKtZhsaObnxV0mkCBwEGn/kOOzIZZPOkKRPI3MZhkyUBUifvt+rq
pJ8EwuZ0F11KPSJu1q/LnKmsEiwUcOEcY9TAqyQcapOK1Iv5mlqZuQu6gyXeYQR1
QCWKt5Wala0FHdqW6xVDHf719eIlXKeCYVRuM5o=
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-aead-ocb-encryption-and-decryption"><name>Sample AEAD-OCB encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> with the passphrase <spanx style="verb">password</spanx>, using AES-128 with AEAD-OCB encryption.</t>

<section anchor="sample-symmetric-key-encrypted-session-key-packet-v6-1"><name>Sample symmetric-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6skesk-aes128-ocb.hexdump"><![CDATA[
0x0000  c3 3f 06 1d 07 02 0b 03
0x0008  08 56 a2 98 d2 f5 e3 64
0x0010  53 ff cf cc 5c 11 66 4e
0x0018  db 9d b4 25 90 d7 dc 46
0x0020  b0 72 41 b6 12 c3 81 2c
0x0028  ff fb ea 00 f2 34 7b 25
0x0030  64 11 23 f8 87 ae 60 d4
0x0038  fd 61 4e 08 37 d8 19 d3
0x0040  6c
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c3                       packet tag: SKESK
0x0001     3f                    packet length
0x0002        06                 SKESK version 6
0x0003           1d              length through end of AEAD nonce
0x0004              07           cipher: AES128
0x0005                 02        AEAD mode: OCB
0x0006                    0b     length of S2K
0x0007                       03  S2K type: iterated+salted
0x0008  08                       S2K hash: SHA2-256
0x0009     56 a2 98 d2 f5 e3 64  S2K salt
0x0010  53
0x0011    ff                     S2K iterations (65011712 octets)
0x0012        cf cc 5c 11 66 4e  AEAD nonce
0x0018  db 9d b4 25 90 d7 dc 46
0x0020  b0
0x0021     72 41 b6 12 c3 81 2c  encrypted session key
0x0028  ff fb ea 00 f2 34 7b 25
0x0030  64
0x0031     11 23 f8 87 ae 60 d4  AEAD tag
0x0038  fd 61 4e 08 37 d8 19 d3
0x0040  6c
]]></artwork></figure>

</section>
<section anchor="starting-aead-ocb-decryption-of-the-session-key"><name>Starting AEAD-OCB decryption of the session key</name>

<t>The derived key is:</t>

<figure><artwork><![CDATA[
  e8 0d e2 43 a3 62 d9 3b 9d c6 07 ed e9 6a 73 56
]]></artwork></figure>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  c3 06 07 02
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  38 a9 b3 45 b5 68 0b b6 1b b6 5d 73 ee c7 ec d9
]]></artwork></figure>

<t>Authenticated Data:</t>

<figure><artwork><![CDATA[
  c3 06 07 02
]]></artwork></figure>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  cf cc 5c 11 66 4e db 9d b4 25 90 d7 dc 46 b0
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  28 e7 9a b8 23 97 d3 c6 3d e2 4a c2 17 d7 b7 91
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet-2"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v2seipd-aes128-ocb.hexdump"><![CDATA[
0x0000  d2 69 02 07 02 06 20 a6
0x0008  61 f7 31 fc 9a 30 32 b5
0x0010  62 33 26 02 7e 3a 5d 8d
0x0018  b5 74 8e be ff 0b 0c 59
0x0020  10 d0 9e cd d6 41 ff 9f
0x0028  d3 85 62 75 80 35 bc 49
0x0030  75 4c e1 bf 3f ff a7 da
0x0038  d0 a3 b8 10 4f 51 33 cf
0x0040  42 a4 10 0a 83 ee f4 ca
0x0048  1b 48 01 a8 84 6b f4 2b
0x0050  cd a7 c8 ce 9d 65 e2 12
0x0058  f3 01 cb cd 98 fd ca de
0x0060  69 4a 87 7a d4 24 73 23
0x0068  f6 e8 57
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet tag: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              02           AEAD mode: OCB
0x0005                 06        chunk size (2**21 octets)
0x0006                    20 a6  salt
0x0008  61 f7 31 fc 9a 30 32 b5
0x0010  62 33 26 02 7e 3a 5d 8d
0x0018  b5 74 8e be ff 0b 0c 59
0x0020  10 d0 9e cd d6 41
0x0026                    ff 9f  chunk #0 encrypted data
0x0028  d3 85 62 75 80 35 bc 49
0x0030  75 4c e1 bf 3f ff a7 da
0x0038  d0 a3 b8 10 4f 51 33 cf
0x0040  42 a4 10 0a 83 ee f4 ca
0x0048  1b 48 01
0x004b           a8 84 6b f4 2b  chunk #0 authentication tag
0x0050  cd a7 c8 ce 9d 65 e2 12
0x0058  f3 01 cb
0x005b           cd 98 fd ca de  final AEAD tag (#1)
0x0060  69 4a 87 7a d4 24 73 23
0x0068  f6 e8 57
]]></artwork></figure>

</section>
<section anchor="decryption-of-data-2"><name>Decryption of data</name>

<t>Starting AEAD-OCB decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  71 66 2a 11 ee 5b 4e 08 14 4e 6d e8 83 a0 09 99
  eb de 12 bb 57 0d cf
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  71 66 2a 11 ee 5b 4e 08 14 4e 6d e8 83 a0 09 99
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  eb de 12 bb 57 0d cf
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  eb de 12 bb 57 0d cf 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e ae 6a a1 64 9b 56 aa 83 5b 26 13 90 2b d2
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  eb de 12 bb 57 0d cf 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-aead-ocb-encrypted-packet-sequence"><name>Complete AEAD-OCB encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6skesk-aes128-ocb.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

wz8GHQcCCwMIVqKY0vXjZFP/z8xcEWZO2520JZDX3EawckG2EsOBLP/76gDyNHsl
ZBEj+IeuYNT9YU4IN9gZ02zSaQIHAgYgpmH3MfyaMDK1YjMmAn46XY21dI6+/wsM
WRDQns3WQf+f04VidYA1vEl1TOG/P/+n2tCjuBBPUTPPQqQQCoPu9MobSAGohGv0
K82nyM6dZeIS8wHLzZj9yt5pSod61CRzI/boVw==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-aead-gcm-encryption-and-decryption"><name>Sample AEAD-GCM encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> with the passphrase <spanx style="verb">password</spanx>, using AES-128 with AEAD-GCM encryption.</t>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> with the passphrase <spanx style="verb">password</spanx>, using AES-128 with AEAD-OCB encryption.</t>

<section anchor="sample-symmetric-key-encrypted-session-key-packet-v6-2"><name>Sample symmetric-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6skesk-aes128-gcm.hexdump"><![CDATA[
0x0000  c3 3c 06 1a 07 03 0b 03
0x0008  08 e9 d3 97 85 b2 07 00
0x0010  08 ff b4 2e 7c 48 3e f4
0x0018  88 44 57 cb 37 26 b9 b3
0x0020  db 9f f7 76 e5 f4 d9 a4
0x0028  09 52 e2 44 72 98 85 1a
0x0030  bf ff 75 26 df 2d d5 54
0x0038  41 75 79 a7 79 9f
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c3                       packet tag: SKESK
0x0001     3c                    packet length
0x0002        06                 SKESK version 6
0x0003           1a              length through end of AEAD nonce
0x0004              07           cipher: AES128
0x0005                 03        AEAD mode: GCM
0x0006                    0b     length of S2K
0x0007                       03  S2K type: iterated+salted
0x0008  08                       S2K hash: SHA2-256
0x0009     e9 d3 97 85 b2 07 00  S2K salt
0x0010  08
0x0011     ff                    S2K iterations (65011712 octets)
0x0012        b4 2e 7c 48 3e f4  AEAD nonce
0x0018  88 44 57 cb 37 26
0x001e                    b9 b3  encrypted session key
0x0020  db 9f f7 76 e5 f4 d9 a4
0x0028  09 52 e2 44 72 98
0x002e                     85 1a  AEAD tag
0x0030  bf ff 75 26 df 2d d5 54
0x0038  41 75 79 a7 79 9f
]]></artwork></figure>

</section>
<section anchor="starting-aead-gcm-decryption-of-the-session-key"><name>Starting AEAD-GCM decryption of the session key</name>

<t>The derived key is:</t>

<figure><artwork><![CDATA[
  25 02 81 71 5b ba 78 28 ef 71 ef 64 c4 78 47 53
]]></artwork></figure>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  c3 06 07 03
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  7a 6f 9a b7 f9 9f 7e f8 db ef 84 1c 65 08 00 f5
]]></artwork></figure>

<t>Authenticated Data:</t>

<figure><artwork><![CDATA[
  c3 06 07 03
]]></artwork></figure>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  b4 2e 7c 48 3e f4 88 44 57 cb 37 26
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  19 36 fc 85 68 98 02 74 bb 90 0d 83 19 36 0c 77
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet-3"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v2seipd-aes128-ocb.hexdump"><![CDATA[
0x0000  d2 69 02 07 03 06 fc b9
0x0008  44 90 bc b9 8b bd c9 d1
0x0010  06 c6 09 02 66 94 0f 72
0x0018  e8 9e dc 21 b5 59 6b 15
0x0020  76 b1 01 ed 0f 9f fc 6f
0x0028  c6 d6 5b bf d2 4d cd 07
0x0030  90 96 6e 6d 1e 85 a3 00
0x0038  53 78 4c b1 d8 b6 a0 69
0x0040  9e f1 21 55 a7 b2 ad 62
0x0048  58 53 1b 57 65 1f d7 77
0x0050  79 12 fa 95 e3 5d 9b 40
0x0058  21 6f 69 a4 c2 48 db 28
0x0060  ff 43 31 f1 63 29 07 39
0x0068  9e 6f f9
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet tag: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              03           AEAD mode: GCM
0x0005                 06        chunk size (2**21 octets)
0x0006                    fc b9  salt
0x0008  44 90 bc b9 8b bd c9 d1
0x0010  06 c6 09 02 66 94 0f 72
0x0018  e8 9e dc 21 b5 59 6b 15
0x0020  76 b1 01 ed 0f 9f
0x0026                    fc 6f  chunk #0 encrypted data
0x0028  c6 d6 5b bf d2 4d cd 07
0x0030  90 96 6e 6d 1e 85 a3 00
0x0038  53 78 4c b1 d8 b6 a0 69
0x0040  9e f1 21 55 a7 b2 ad 62
0x0048  58 53 1b
0x004b           57 65 1f d7 77  chunk #0 authentication tag
0x0050  79 12 fa 95 e3 5d 9b 40
0x0058  21 6f 69
0x005b           a4 c2 48 db 28  final AEAD tag (#1)
0x0060  ff 43 31 f1 63 29 07 39
0x0068  9e 6f f9
]]></artwork></figure>

</section>
<section anchor="decryption-of-data-3"><name>Decryption of data</name>

<t>Starting AEAD-GCM decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 03 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  ea 14 38 80 3c b8 a4 77 40 ce 9b 54 c3 38 77 8d
  4d 2b dc 2b
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  ea 14 38 80 3c b8 a4 77 40 ce 9b 54 c3 38 77 8d
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  4d 2b dc 2b
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  4d 2b dc 2b 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 03 06
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e 1c e2 26 9a 9e dd ef 81 03 21 72 b7 ed 7c
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  4d 2b dc 2b 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 03 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-aead-gcm-encrypted-packet-sequence"><name>Complete AEAD-GCM encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6skesk-aes128-gcm.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

wzwGGgcDCwMI6dOXhbIHAAj/tC58SD70iERXyzcmubPbn/d25fTZpAlS4kRymIUa
v/91Jt8t1VRBdXmneZ/SaQIHAwb8uUSQvLmLvcnRBsYJAmaUD3LontwhtVlrFXax
Ae0Pn/xvxtZbv9JNzQeQlm5tHoWjAFN4TLHYtqBpnvEhVaeyrWJYUxtXZR/Xd3kS
+pXjXZtAIW9ppMJI2yj/QzHxYykHOZ5v+Q==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-messages-encrypted-using-argon2"><name>Sample messages encrypted using Argon2</name>

<t>These messages are the literal data "Hello, world!" encrypted using v1 SEIPD, with Argon2 and the passphrase "password", using different session key sizes.
In each example, the choice of symmetric cipher is the same in both the v4 SKESK packet and v1 SEIPD packet.
In all cases, the Argon2 parameters are t = 1, p = 4, and m = 21.</t>

<section anchor="version-4-skesk-using-argon2-with-aes-128"><name>Version 4 SKESK using Argon2 with AES-128</name>

<figure><sourcecode type="application/pgp-encrypted" name="v4skesk-argon2-aes128.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----
Comment: Encrypted using AES with 128-bit key
Comment: Session key: 01FE16BBACFD1E7B78EF3B865187374F

wycEBwScUvg8J/leUNU1RA7N/zE2AQQVnlL8rSLPP5VlQsunlO+ECxHSPgGYGKY+
YJz4u6F+DDlDBOr5NRQXt/KJIf4m4mOlKyC/uqLbpnLJZMnTq3o79GxBTdIdOzhH
XfA3pqV4mTzF
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
<section anchor="version-4-skesk-using-argon2-with-aes-192"><name>Version 4 SKESK using Argon2 with AES-192</name>

<figure><sourcecode type="application/pgp-encrypted" name="v4skesk-argon2-aes192.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----
Comment: Encrypted using AES with 192-bit key
Comment: Session key: 27006DAE68E509022CE45A14E569E91001C2955...
Comment: Session key: ...AF8DFE194

wy8ECAThTKxHFTRZGKli3KNH4UP4AQQVhzLJ2va3FG8/pmpIPd/H/mdoVS5VBLLw
F9I+AdJ1Sw56PRYiKZjCvHg+2bnq02s33AJJoyBexBI4QKATFRkyez2gldJldRys
LVg77Mwwfgl2n/d572WciAM=
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
<section anchor="version-4-skesk-using-argon2-with-aes-256"><name>Version 4 SKESK using Argon2 with AES-256</name>

<figure><sourcecode type="application/pgp-encrypted" name="v4skesk-argon2-aes256.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----
Comment: Encrypted using AES with 256-bit key
Comment: Session key: BBEDA55B9AAE63DAC45D4F49D89DACF4AF37FEF...
Comment: Session key: ...C13BAB2F1F8E18FB74580D8B0

wzcECQS4eJUgIG/3mcaILEJFpmJ8AQQVnZ9l7KtagdClm9UaQ/Z6M/5roklSGpGu
623YmaXezGj80j4B+Ku1sgTdJo87X1Wrup7l0wJypZls21Uwd67m9koF60eefH/K
95D1usliXOEm8ayQJQmZrjf6K6v9PWwqMQ==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
</section>
<section anchor="upgrade-guidance"><name>Upgrade Guidance (Adapting Implementations from RFC 4880 and RFC 6637)</name>

<t>This subsection offers a concise, non-normative summary of the substantial additions to and departures from <xref target="RFC4880"/> and <xref target="RFC6637"/>.
It is intended to help implementers who are augmenting an existing implementation from those standards to this standard.
Cryptographic algorithms marked with an asterisk (*) are mandatory to implement.</t>

<t><list style="symbols">
  <t>Public Key signing algorithms:
  <list style="symbols">
      <t>* Ed25519 (<xref target="key-ed25519"/> and <xref target="sig-ed25519"/>)</t>
      <t>Ed448 (<xref target="key-ed448"/> and <xref target="sig-ed448"/>)</t>
      <t>EdDSALegacy with Ed25519Legacy (<xref target="key-eddsa-legacy"/> and <xref target="sig-eddsa-legacy"/>)</t>
      <t>ECDSA with Brainpool curves (<xref target="ec-curves"/>)</t>
    </list></t>
  <t>Public Key encryption algorithms:
  <list style="symbols">
      <t>* X25519 (<xref target="key-x25519"/> and <xref target="pkesk-x25519"/>)</t>
      <t>X448 (<xref target="key-x448"/> and <xref target="pkesk-x448"/>)</t>
      <t>ECDH with Curve25519Legacy (<xref target="ec-curves"/>)</t>
      <t>ECDH with Brainpool curves (<xref target="ec-curves"/>)</t>
    </list></t>
  <t>AEAD Encryption:
  <list style="symbols">
      <t>Version 2 SEIPD (<xref target="version-two-seipd"/>)</t>
      <t>AEAD modes:
      <list style="symbols">
          <t>* OCB mode (<xref target="aead-mode-ocb"/>)</t>
          <t>EAX mode (<xref target="aead-mode-eax"/>)</t>
          <t>GCM mode (<xref target="aead-mode-gcm"/>)</t>
        </list></t>
      <t>Version 6 PKESK (<xref target="v6-pkesk"/>)</t>
      <t>Version 6 SKESK (<xref target="v6-skesk"/>)</t>
      <t>Features subpacket: add flag for SEIPDv2 (<xref target="features-subpacket"/>)</t>
      <t>Subpacket: Preferred AEAD Ciphersuites (<xref target="preferred-v2-seipd"/>)</t>
      <t>Secret key encryption: AEAD "S2K usage octet" (<xref target="s2k-usage-octet"/> and <xref target="secret-key-packet-formats"/>)</t>
    </list></t>
  <t>Version 6 Keys and Signatures:
  <list style="symbols">
      <t>Version 6 Public keys (<xref target="v6-pubkeys"/>)</t>
      <t>Version 6 Fingerprint and Key ID (<xref target="v6-key-id-fingerprint"/>)</t>
      <t>Version 6 Secret keys (<xref target="secret-key-packet-formats"/>)</t>
      <t>Version 6 Signatures (<xref target="version-four-and-six-sig"/>)</t>
      <t>Version 6 One-Pass Signatures (<xref target="one-pass-sig"/>)</t>
    </list></t>
  <t>Certificate (Transferable Public Key) Structure:
  <list style="symbols">
      <t>Preferences subpackets in Direct-Key Signatures (<xref target="self-sigs"/>)</t>
      <t>Self-verifying revocation certificate (<xref target="v6-revocation-certificate"/>)</t>
      <t>User ID is explicitly optional (<xref target="v6-certificate-structures"/>)</t>
    </list></t>
  <t>S2K: Argon2 (<xref target="s2k-argon2"/>)</t>
  <t>Subpacket: Intended Recipient Fingerprint (<xref target="intended-recipient-fingerprint"/>)</t>
  <t>Digest algorithms: SHA3-256 and SHA3-512 (<xref target="hash-algos"/>)</t>
  <t>Packet: Padding (<xref target="padding-packet"/>)</t>
  <t>Message structure: Packet Criticality (<xref target="packet-criticality"/>)</t>
  <t>Deprecations:
  <list style="symbols">
      <t>Public Key Algorithms:
      <list style="symbols">
          <t>Avoid RSA weak keys (<xref target="rsa-notes"/>)</t>
          <t>Avoid DSA (<xref target="dsa-notes"/>)</t>
          <t>Avoid ElGamal (<xref target="elgamal-notes"/>, <xref target="pkesk-elgamal"/>)</t>
          <t>For Version 6 Keys: Avoid EdDSA25519Legacy, Curve25519Legacy (<xref target="ec-curves"/>)</t>
        </list></t>
      <t>Digest Algorithms:
      <list style="symbols">
          <t>Avoid MD5, SHA1, RIPEMD160 (<xref target="hash-algos"/>)</t>
        </list></t>
      <t>Symmetric Key Algorithms:
      <list style="symbols">
          <t>Avoid IDEA, TripleDES, CAST5 (<xref target="symmetric-algos"/>)</t>
        </list></t>
      <t>S2K Specifier:
      <list style="symbols">
          <t>Avoid Simple S2K (<xref target="s2k-simple"/>)</t>
        </list></t>
      <t>Secret Key protections (a.k.a. S2K Usage):
      <list style="symbols">
          <t>Avoid MalleableCFB (<xref target="secret-key-encryption"/>)</t>
        </list></t>
      <t>Packet Types:
      <list style="symbols">
          <t>Avoid Symmetrically-Encrypted Data (<xref target="sed"/>, <xref target="ciphertext-malleability"/>)</t>
        </list></t>
      <t>Literal Data packet metadata:
      <list style="symbols">
          <t>Avoid Filename and Date fields (<xref target="lit"/>)</t>
          <t>Avoid Special <spanx style="verb">_CONSOLE</spanx> "filename" (<xref target="for-eyes-only"/>)</t>
        </list></t>
      <t>Packet Versions:
      <list style="symbols">
          <t>Avoid Version 3 Public Keys (<xref target="v3-pubkeys"/>)</t>
          <t>Avoid Version 3 Signatures (<xref target="signature-packet"/>)</t>
        </list></t>
      <t>Signature Types:
      <list style="symbols">
          <t>Avoid Reserved Signature Type 0xFF (<xref target="sigtype-reserved"/>, <xref target="sig-computation-notes"/>)</t>
        </list></t>
      <t>Signature Subpackets:
      <list style="symbols">
          <t>For Version 6 Signatures: Avoid Issuer Key ID (<xref target="issuer-keyid-subpacket"/>)</t>
          <t>Avoid Revocation Key (<xref target="revocation-key"/>)</t>
        </list></t>
      <t>ASCII Armor:
      <list style="symbols">
          <t>Ignore, do not emit CRC (<xref target="optional-crc24"/>)</t>
          <t>Do not emit "Version" armor header (<xref target="armor-header-key-version"/>)</t>
        </list></t>
      <t>Cleartext Signature Framework:
      <list style="symbols">
          <t>Ignore, avoid emitting unnecessary Hash: headers (<xref target="armor-header-key-hash"/>)</t>
        </list></t>
    </list></t>
</list></t>

<section anchor="terminology-changes"><name>Terminology Changes</name>

<t>Note that some of the words used in previous revisions of the OpenPGP standard have been improved in this document.</t>

<t>In previous revisions, the following terms were used:</t>

<t><list style="symbols">
  <t>"Radix-64" was used to refer to OpenPGP's ASCII Armor base64 encoding (<xref target="base64"/>).</t>
  <t>"Old packet format" was used to refer to the Legacy packet format (<xref target="legacy-packet-format"/>).</t>
  <t>"New packet format" was used to refer to the OpenPGP packet format (<xref target="openpgp-packet-format"/>).</t>
  <t>"Certificate" was used ambiguously to mean multiple things.
In this document, it is used to mean "Transferable Public Key" exclusively.</t>
  <t>"Preferred Symmetric Algorithms" was the old name for the "Preferred Symmetric Ciphers for v1 SEIPD" subpacket (<xref target="preferred-v1-seipd"/>)</t>
  <t>"Modification Detection Code" or "MDC" was originally described as a distinct packet (packet tag 19), and its corresponding flag in the Features subpacket (<xref target="features-subpacket"/>) was known as "Modification Detection".
It is now described as an intrinsic part of v1 SEIPD (<xref target="version-one-seipd"/>), and the same corresponding flag is known as "Symmetrically Encrypted Integrity Protected Data packet version 1".</t>
</list></t>

</section>
</section>
<section anchor="acknowledgements"><name>Acknowledgements</name>

<t>Thanks to the openpgp design team for working on this document to prepare it for working group consumption: Stephen Farrell, Daniel Kahn Gillmor, Daniel Huigens, Jeffrey Lau, Yutaka Niibe, Justus Winter and Paul Wouters.</t>

<t>Thanks to Werner Koch for the early work on rfc4880bis and Andrey Jivsov for <xref target="RFC6637"/>.</t>

<t>This document also draws on much previous work from a number of other authors, including: Derek Atkins, Charles Breed, Dave Del Torto, Marc Dyksterhouse, Gail Haspert, Gene Hoffman, Paul Hoffman, Ben Laurie, Raph Levien, Colin Plumb, Will Price, David Shaw, William Stallings, Mark Weaver, and Philip R. Zimmermann.</t>

</section>


  </back>

<!-- ##markdown-source:
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
l0ydiolzSIm3WZLLENqribkbytCY3UJVYno5Fj99HsPjku78eufKGh2LaY08
J+NsR5jYJDZx1vIXQiM6aM5YHHEvRdvjaLB0EUdLW9gVrdouNEKWIwHvMEVq
uNZOweyF1FYc/v5YNPFRri1GniCSYOcHi4/xWFDlChdgK0tzgRRZRnKlWDLO
gEsXmGWb3VhtISo9+CaYi4SSaIBo5OS3yJWOUQGwqWV+4jLeciOZujM8Oyvm
lqPJHvxMig1ZfVfk0Mh1rRQ7a/i6oEUhTbDLEf0TqkaeLXlawdWad2JQgXVl
owgAC0r8hy+EiRXIZzkZraMrweRS45FcblOjqWGVInVPLeVBvLxXmQ2l3mTU
wxzErIENrX+oJASZYuO/L1gXYvchmsJTNV+uP20nTGyS/0T57MlPg1oEyJiC
oo7mhTyXQqQOfoMzpgyGyFhq88E0yYVBv+UKsBMTJ/BXCtSEb2ABQ9SF7uAD
7oEhWnnQ/LB288zFFcZKnyonWmQE0mAPS9YhpgQJNMP6hTMERmREjHebvHaC
jxEqnFpioJTjFkkgjaXDvJq0LCecENdYR9JZnIWLJOq2tcxmy1SNZILs0M7u
tfd5S2q2qI/CaZCDMEgFMtdgHzFgEldxv4uH08zltARvpZPdnhm9UYpeOao6
k+iWXyjjn5Q/uf9DpeyMyMZGabIjCmnNPZDMdNIsxSs+xE9snMdkQsK4st7Y
klLpygkUEHgsL9kdlkZ5MEFgJg5K+QeJK/cn8xBFBdb4IlSVyV+8JPnD1aGm
axWjsnwDXKwRTs1j8JxmzRkoCZGhSFnYtUBph5PzshiJKZNlvq7jMlG7Otzl
SjfZyhCkIQV5bGzJK1aVJnrPGcBYHABD5CKXpbAuwsumnZ6ICwkBazZpFlwg
J9WpvYE9YHw95bKYWbE5EzRvKiwUT5WWVJsZtKFqMeeDpDFElN6TgQq36iAQ
tcx4uAp2N+tYp9ri6r3P1uMYwsDkx8VtrdVhnUOlR0rwBQFrcf0ElBbg/HBw
UUCxQrt6mqsSmzMII2ZVFlOkRAJyZQK14gtw9iLDppPiEAyOAFMwovQCQ78O
mKflHeec2dVtHx7Ceo0mM0nCmkwZq8TECFgQ9RyJp+alxFiO4EHfxYM2piDc
KddPpuM4QrABtCWX5pOSUYBUTovMTOn8s9gy+bDclV9DlhBEMHN6cENgwGiP
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
a7Gf+G4cR0kY10K33Gs0vYoX+GFYD3uxX6nGtbgeVGvVShBFvTisop7VaPby
JqbBmHCas/YiKXhke60U98+UYtcOrAJrlDiz6ImCLhjRR866rBFiEVEFKNUr
46Ihyu3AtmxaAK5SEBz1gvjJiRajKQNxEYaTuJ8YLbXIRJQZmbYPTfvTH9qH
soahp87Nfuts0vsZS4vtalhTvoYVroadZ3fqsU9252uwv+ceHkTDw/3q8Pb6
rH87/vSw1uvuuMH+Zf+2/Onhxr96jrs736P95vPtxeSoPXD78PsoOpvMYYTD
W//Kvbn+lN5+PT763N1Z9Pzm/Vpv/+p7Oz262el3em10MbXv9/qjLzcT//iH
fip0U60ZPxUNc3oy2PG7V82zw5vBWXP766D+7fHmcLh3Gu61Tq/O/f1qeH9X
bV186w5P67N2crbWq/ePfj996j0/9e6G3/af+wdnp+Pfg4UX73yfne1Wz66m
w9PO7jgezcbJ6H42fXL3R3ftZHL/dPO9+e3b2t683Q++d2EMiy9f95rdvbNO
zuqU2bXcQeA4jRKafSkA37I/UznHWP0ph0PhZslzS5ZVcq46vx3EoJhsIkro
MPq/fjMGZX4ZraPOOsMrG2PppnbndksIUUc21oKBSXK3TIAj/6hkuAacBX7H
6JEWyNP6Q21D5iCf6GL0+Th9AnHEOtpUBm8ViEhteh+n96UnWsAtOId4DPkE
GXsdBR0C92ZZHbhliDgsWniFK6LuikgHfycx6n5eoIVX0E7h/qyUEV4loShV
uN7cWAuvzTIGRTcxbhHl44jzZ+taRm0Aq2jiU9B4o4oBmg24kRItjEIbcIsl
HgZKlxOn4SH8VBhrYbRKakklRBQsaCUMMSK22tDCKIJahTgzkNLhOksaKEIn
VS2MwjXa8zD5N6JITBAJsUcrkLaMYnmFplWtkTCNQdfGlOCi6g2SNsjkYYAX
aY3wtpQwGlRx5LBm5RjnCiJvr/7n9I+c7hGuEkFsQ+vpUad7ZBtZCzIPnZ82
slKrrxlY8+KRgKoBwebFlbxdNdPbkZGFVC/LMqWiWH58qf1/OgnzxwXj1KHH
lvBtxRsXR8TTYXCczhShEGcMC/mvOxv8TeFAPbbeI2FYZFRZJVpHMT37Tzhm
yIgl1M8w6G1za2gnpmHIa2uZ9dZYWbwZK1Z9ebXVW7jmq9a6YI3lFrNHgCKY
8gpr95a5D8yzBdFJCv4TixpjNXAHxKaQMRoV2KyeYEAqAexC6CKZ+2VELYgb
OJ2g7kQVHCRaOOjPmoIviMuoYoRlyjUIMXi5jEwNTaRAhSHlqHiwv3BQ67Ct
a2unBt+QZ4P1xucZR+XS1Ws2gaLqV4TOL4fMq5nR6V0RMF8QKF8QsIa14EtD
2gMV0o/FL+e5mu5m5BQ5ZgZeiRCxDHRxNE038U/Ek6iTcbWO9tlajEYgeDtB
c7C8BaQDzAeGBgpTVCOrcIQf4iToNIAyB+8CbSE8fGNtrXsXIL4YAQLrvmGh
MCmLzMRhhPsAs+751GuDENQaqNUFFTxWfqKWuodj8gNUJWG45SZ+Aj0BK23C
ZlZxNEDFlSZStAeUiwEEeINNF6brpIYGI3gSjg78Xqniuz4mxuFb8Cc026vh
osC3oEet7cYFMpJuLoqUekqIbvAU6KmeR6sLB9NH0zWQHxxJ2FovyghiD77k
xUuU718oa7GMVXrw03gwjUpBnGK+6CTsrRC7YKA1lZzK+CbA8oTBupxJXi2j
DwEYX89F2JEako++s+BjOE/A9dAeEKI/oI7OBH1n9eBw9HDD4WQCOYGeTjZ+
fWdFiaDBlEMcCNCBB3TU1FdL3MMhIhRKiOeoRyB+zUhfLT55UJpNJFcggTJh
ANZdfbVU6RC6ZHwAooEh1hrKQYFXS0xGzF4PkVV6BLvSc/XV06CEhB4BDlYJ
VhQINqxBi/o+gJHDVQw8B85ThNCiTtCzMXOA3wChRgg8iACFaICsKRMHpd40
kLQ9uvkjMr5Cc+JsQxsg3vCeE/7J5MCcqBa9ySeOlGmLarXCXKVXRbXlfpje
lRDlL4tqbu6GZjDqj5LxXCyj2d1QNA5iWn90QAdaJaQZsS68W4wF7Xvd/2//
zVP1wNkUV2wTo6ORM6r/0w/IK0IaHR01tfeupeUhvfxvd6b4A9sYlz1k1kxo
d4E8f/rc8QcZg1/mIDooqcNtqTpw1t97G3/ydL6n+iy2PEfLvtadYzFsib4m
DT1aemrThs01182W3GVYsMJcPb7NsItvO7jPgKQTxn8iXw6oE+jB9fFKYodF
RHsPklJFgZvC+sMNX/bFjwQ3VwJikoops6+/n21/7XA8mA/Q0cPmckY/180V
d9yW7f+IsWHjMH718Ux0gfXfGpW+kOC9YIEg9nOS7SLlCS5e1U7m8DAp6of5
pK04SMsHSAmoHvnYio/P8rGRt+jwrLqIlg+CEjR7BMamjoElzahDBbT1Gcvb
qJhG4eg6Xk8MVLpoaM5SpdcC/QFldHbllr5CXjl0bJGk5ofs+1OSIDvfQnLu
eSCLS10BHoXZlSryRhTxfNJsKeO86WF3oPCAWgeLBS2DHAYkCKrWWsvsMDbH
pxsvtrW1Pfp9/GcpyVMtBH+Cnorb9KvMNRBWZxjPV9oYUY7m3VHQGK9b2iyx
z9iq87kWuu3XTdePV+7+4dlN93m3EYf7zW/t08rV/v1e+ax28Hhcvv9y/2H0
9e7w27n/PT75/fb48O58dPD96dtVo3e53f/6/cvadX/nuFE9PR5cDZrl1m3y
Kbk7ap6NnpLoZHy78y2eeFe78dXtXXx20A+ukvrzZPr7ee3a27uonXyZJd21
gJIabu9ud24vrj+0H8Nrr1/ZOxr2Ok+tpFr7HjzWa9vT2dnk5EOv9f1pOrlb
TGvNz636p+vtq6k7XHu+HS+638p34d43dzf5/fPFfn9W2V7UvfqnD+npdW9+
tpP0j5P9ZuvL4ePj7HLn93Sv0/x+/SHxvkfDm8la726v7LY+HA7m6dNTKx+q
+JrRmHay0/r6X2Qt1ofVSuH5DX+HB6LfVpuJsyPKmol1zPW/wlKc2vQbB0+r
rMVllKTQThzTEfMIirKspTL4fxC5ghh1U2DIXoIsJDLgFgjfnVCsko8aHzCU
ZlNBnIhUViVTXVBGttskM0+9rKUy1CEb2GZMLQMf9lB71iIWMPJqBfl96COy
eIPMAvWGEbEayNOB1QDvgqu08v+1d6XLqSNL+r+fgvD9Md3XxqANpBMxMcG+
2QaDF0xMxFyhBWRrwYjF+ES/yzzLPNlkZmkDhLf2PX3OjdvR0W2kUi1ZmVmZ
X2VVGuh6SkaMiBmoHkCHI0BQQFUvg89sRCYWrLGS9DXw7YGrLLZ9gl34VkwN
pPsgfDt4C77ldg55B/DtYjr3lpMpsKaOHEWmG2n1dC8h6VikeRUpXkIEGye8
ChCZV1yDIEQ1BpgHfECwg7e3wUgx+XGwRY8LMUjZCToXhp5k5PR/8FPcHP0W
XRvHvmHOWhrzs28i54WJAfuTjTflUqigIdY7SmL0W0GC8sUdfykOWt2Tqczu
BL1bvtiv+Pj7rrRl0pXTx4SQ/Yoa2RPJzLbv8UHhJLW6Zf6j5n0D9GVZ+eKz
N4kUNJyEKBeiaBICoKqKs6vwiDQBScAEhM6AQQkWocmj3ZniPaCpWGBKM911
ABtIM+iaFxMxMV1H21bSwM1BgVSIlYpkgYLBJChbJldwhXR6Y9s2/D6jHGCK
gBnewONgYmCCx8yJlnHigSdFsptxjgQCC2U0VqFe0LQ/CI/bAeIOr2hbQBxt
gSpmeGkYKQLKXgOMyiloMiP0LYaBTijKYIJrMhr7GkF4Ct0CHGxcoMSBY8bT
5b9j+K+K/8L3ihlJHKhNEBOjgDFsXBElhXkuoTDxhAsj8msSETV0gIIQVhQm
oDYIDniDwBogcsCNBfA9xEhoNJIYnkQXphX6J6vhexQa8IRA9hS6dAovFVJQ
pY7jYDx2rbFOeS6gr0UJ1yBeigABGXdakDuhCoUQYXR/9AgQ0FWMfgaPjaPt
HU5HRgnEnyKlKTiSJ05HkJ7HhiQxcvULJBLKJy98/hcH4pLbrGlL5p8A4lKD
90g0doC4Hy4grwBxDDV7E4j7WWRqH4jbFrLXgLj3yt0+ELctiK8DcR+TzvcB
cfsr8eeBOO4gEIegjYgzrWo4TcAvYD6AVQbLqkyjlwjzwZvccfMp+Koo4/EO
GBIs44aC/ARU0PLpWNxHm3gDizvY9kE47sAXX4fIMfL+0hAWmuNjDOvQdLTf
QEgw1p6iDWTa9R3nUT+Z5ochrI9R/9MoFvd+FGsXYng/fLXn/v95+CpfajQn
WrmyvmjNVGno9nN1vrLKqYN273HkXPtceeUV71TV7fVOLoarZ/NKu80tbkSt
5UxuOfGo0xtK57Xb7sIunJQ6i9HUV7tj9/k27zxWyutaw809drsvrdGo133s
9Hst4WI0fdzclG8sc7U4mT8dzdpybb0c5esc1+kN2kvuKXfudhy/Zq1vtG5N
u1euS0+bK02ddTtcayU59tNoebUsTDZD4/6qzx1dVe46C+lOtdV8vak/3RWe
b6tNs8gpRssedozK/W1/eSF5H0Wl/nkxjJ9FpV4LXvx5UKnDm+kYekIx8Xjm
jQG/u6iUVCAkmyIEcFETws12NFHwRI2J7o6m4UIHbnkBFHbsNet00+ZYxIUQ
vD+9iOaMGF9MjPuPPO7CjFkApYCqhddih9hEn9ig+CCTIhSK49CGpgM1IrbJ
C4htyUVKKpdP2humjsuuSKldhCL6gWBr6UJkbxS0vxCSElLRiy+HpHbiFn8Y
JBX1Om2j+1eApNI4PwWSCk6/MkgqHZH6KCS1J1CpkNTbwsX+ZNyWJmdv4lFv
ih/7M8hwkiKJKWDUe2UyBYra34n+CBRlULwWWOUYsErGk66gBwZE1AjygU/A
HGEQjlR4HYri041nGCB4RGMBgRywcjFEbExEp/9KtI1vGAhFGRoeDHofFMXv
2q/7DHKAGZAJ3sChYKKNIjpDYJNhdFkRYxWBIAKjlYpOJEfblug2cX8RDvWR
gDBgfjVOogbMZhYx6sHUcJTAt+Byj6VIfoEPwBQFHyRPkR+CitMk6zHyS6ck
ZYPu1qNs0XkgvRKJGdSBmVINtJPBMwYhg1JKHIcP1JQlbAWcUzmPt5CPYWbi
y/XRZ9XQWx6buCTAxxgxqkbygtE1Ak4ONCSaeAJWEMI4f5QXkUe/n6MASZm4
ywTHP/aZOboqG9YcVcZIzgLlgeXjy/U1uhwZLHmNfLACOa5hUiGUVwE/BocD
CoIyBPHV1NAFp0OhZMHLdKgeBB6ce+BxXog8XbOAkid9Tez+vxoO9YUBYaDn
3w4II9HYwaF+uIC8gkOR6LyNQ/0sMrWPQ20LWWIkCZeVbmBPIFLvlcB9RGpb
JF9HpD4mpz9TaFiRFjlexdXOIFSCWQ+ciH8UdOw3zJKaxzMBSpgvG2OdDLR2
xmPcestjHHU6HPXR+t+Ao9IbPohFpRX/6tCwXx2IAptMpVBWZUxmOUklzBMo
EY4OVvAY2PZhIOoDpP8nxVKlwFCfiqLa8/f/PAz1IjeaV1oFYajbp859fjV8
GNV7uRf5Wavdjbq8xOfbo+pQqKlr7bHB1/xu+byXKxYm1c1l07ePRuXaw0nL
WN5fXiv3N2LrUpmM8vzLgAVH3U9mTlO4MDfqRbXD3T9cOCVXLAzveU5vFU5y
a//i6K5fvXJ94e7KPDHz4q2l35e4Vc3mrruNXC934vKLysOyXO7dXPd6V09X
VxWvt1QuvDEMwps2Vvmjjsy7m4uCPjJaA3ndPH8ZPSibhTQbeHqBq/RfWrmx
d7v+cHBUo3Lxk8FQ2z06+zcUdlA0JprzChRGx8wwKUwxzBW8BYUZCh3jKtIJ
KCbdcdg8no80yQGjMzSg/wQjPHeBVpIs46kl0DIaHoGkPQ90FCMrCR04Ew2x
It1iA+YDXksmRiYPLD0STx6ZiLpTYYd+40vMxmTmgOEDNet0VAu0pxRDYXhW
U8LjUyoeJUMH5S9EvrRXPvk65Gsn4ckPQ76iTiQsehDRXwf5SmP0FOQrLyeQ
r68JxtqTn1Tka0+W2JvUDCskZa8CXZ8RPvYmtUEml7vA1+cldB8GQ3X/eRgM
gwgoFh3MXtxnVXE/DkEgE58YdLmTJuJDsYjg5qswmHDAYlcpeol22nFD30TH
0ZSRztCAzPb/JUopSwdt3geDCbum8z637HPGG+gXp+A2M3i+MqF1oFbRyxUp
R1geLUJZCMqAUwv260+NfhGlYCzjOAoLqAHjGOMzjK4Y63jQQ+diGaZwQJbu
E5wghe5WLMZJ8/AMs4FYIk/HtiUFfVtOiiQHBGbMoXsK9M2T825q4ZVnKDlQ
Ofj8yGcm9lXU0WcNciIL7EJKpUAXi+kYrCdT6sd84uiWQJyoYSu6jCAq3reY
SOdm4IFy6JxE2f3wZC540IkLLWWsgiP7Hs+7mghkFouR7w2ChseCKBTEEBDZ
ABdDzEe+N9RcoLhrlaJpROLhQPdTnIeJcDKCJxxd4afgRAhxJjKFrkwzlX+j
Xylra/L7tLXyq9EvEo0d9OuHC8hr6Bf5ym+iXz+LTO2jX9tC9j70670SuI9+
bYvkG/FYH5LT96Ff++vw59Ev4SD6ZagIRGG0cB4N57GM48ZrV/KEF1LIODov
Mj6Uw5N7wBQ8XTnAj9NBr49W+wbotdXeQawrUerrIC7h14e4wBwyKOQfYxIN
jIMz6H4UGBuwP9Qzpt3JovZhiOttin8a2RI+GF+VQCk+CWyh9/4FwNa60Zho
VQS2Cnp3OB23mqXSQ25RkeRBtZi3av3h5kVzluPe2M3pvGRej2YleyA+9jdO
60Y9WuUUrr2QF9xtv6wPHdcY5RiotR7Ly5vB1ercOV9pbr/s37dLjnpTFc6B
xdbTxa09rw/V56OSke+5uefV82I0Xinty5cr48p2pEXTu3so1S/F6/Pm/eKp
PHNXtemtamzmd+37m+fFcNTPDXXhcXB0Mhs+DEeLUutOmc0u2i1+85C7emk+
328em92RtDrZS07wGqgVXBLoJyYnAHko5RZZLX6iGF5GiPJjJ4XreEt4jvfq
WnHMhDgNICOqmoydHazpOMSajkNFqlumacyBHbfwIlz5/TPQSqDJtGkIdrEk
LNrUs1gy9jgdC7NHti6AtNzM2AuUwUoMAIWAL7FnYZ+DZ9QY3tyoQT991lIw
jpmKuUaAHAF1Mv+Z4U4zM/ifyC58dOBPngtQsdvAigqbTFI7RNQIXjsgFGIg
FPRBIBt/Wi4w5yjQ+FumtssFtQHrFErg2KI7kuLSg4RPBbqkXuMK5XKpUq9y
tWK5KNfqQlkuSJxcFIpiHYRvo9XK64F2s5rI7Zxt3FzecP1S8TL3UuMxi5lr
n8vzwXmvJ93aV/7Stbsntcpzc9CbNO4bnfuTo/v2i7gs1E+qVbta7s6ly/7V
cJHrtFum6IhO1+5sKrnl0/l45p63Rxfu9ZPgFZXGc/lab+ndl2nzaGiWhNnT
rehcv9TflpF3T5bCv3uyFP5HTJbCvzFZfBEsn2qpVpBrUl7J83ylJkolTqxJ
BaWmcGDdVnhFks7Ozg5UAG9KdbkKU66IOLNyrVK6nl53npv16/6o0bEtoXPZ
FG96Is7s9OW8za9Uod6QczNn1urpuWbO0b3bgXRbPj9fH9WV1klJb3ODtVTo
9e+tzuihsmpOTvix+5TnfUEotdvepmw8l1viVad0Xe8/bowXfmLrbVvvb/yj
89tJsXixXpsTmwfFLRX5O80qXbxDE753lhEme+csQ9EfMMvQyhuzXC7XqiVJ
KislmGmhWqqIUlWsi0pVVuBHXSzVhWK9Vn91liucUC6V+TpXl2ucXC8XRUnO
V+VyHhdTrVa5GohG+2bSauQER1Nb57V2fea0ZZLnkWIXO2Ce6BXbUW7Uq9yo
cJGTwO+1B41ZY3lU4IV7Rx0aL40HOf8glk86S86fXOttTy4Oubv5cla08+v2
ZjayfZ67WeuFoqM8evVC3jDMZq5zpEhVbunb1rBbc2R1c9W+ckbzB7PQKayU
3t366eI9a2HmZjaZY/aFxtLSVTBHMr+VdHVGFlYL1xUkTABh0sVr/XoF7D8w
nVG5449CQShirswlqyg7CSr6I0CF/OXYB4uZ+QkmLRRoeWqWD2sWmGxZ15s7
0MIKM3M5lGgtzhHmLxAOSJhoPiaMYhtPsPTgvcVBv75/h85gx/74g97Tb+wb
5gBtLXD5w3uHXR14CaqYGvYsY4UDxF6tpx67bXg5cehi6QnUA6trkEjY2iJG
eKWe56M1De2pc526RtdEh0+As5B7PSDMbAorcXSLI2a8mMfJP2Fx9fEqOP8x
89vff6deOFgDuBkbSpAVtn2GGakSiU/xsmPqaFTxNzBWs5n//nuUaOS379+B
m7MG+xkRB76Mn/1OH9V0EQz7qDz82ClNT8Ky1UHp3Jio2oaNIWgueBRVovtq
1qZnO3UlXwRVVqBKVll5rlruzPPA4FjOVzDDUJ+hZdkPLL9FhOSO5D4dhltk
eN6mQvKy27AfwwQVnpNECAonqVCpNlmPK9i1HQps9Xi7+DsGSM58LRoaG0+o
rEP4FdOysUfZxdrLEnIathbBSkSLgBq4V4nP8EvVUPUs/kCQlX1FvSwNU4oY
6nNcBP2Z/SLgo4Rth/0sBPe+svRxRMD9IoNEET9ZpG6oTMCjBADfUA9kTFud
0OXLRIQVj9+aQdlsVDasZRB/3JsboIDwqkMiToUMY38J1jzNwCx8nV3x27Qc
xHdkxtz2jdVyjBs9S0IZCIc7xqp8/jFLz7L0LGZ+llwXeYt1KmuS9gsmPSYK
MDa7FD3Ke+Z/2yVtdCWmHxKYUjz4+yROpqzHSlFsWtXgK+yMpWcT1+CmzFFE
AGrr1WHsfBn1P8mtJtgRWehJ1ree8cr2/e+6rpHtgUO0U4EHj9FPCj/KZirJ
K0APZIj+PTNYzJca1sKoyDgB3W8/mZwC/KIq5YCn5PDbLYcZ4f2YKeAB5U7c
oA6eGysvAPm2biUlGscvs4mXYU03PvhnMB8UuoD2koUX53uzAJOIky8G32X9
cDQB3wALfgtttoD7mEEWvI5FoBWugX0D/EILfcskc8DH4SoJfQ5K7LJGFohE
iRES6hZ3UwU0ExnT4g9MowD14WZrFkuGmjsUxgAWQsFjf2Zjwc1G2TGjoX4L
vsxUguQe1mLDPiYG1OKnQR8NkGdG80B0EmtGaWuhIHW58iygCi5BhvoYcfoc
1inXW4RKPC6JixXmtDz0vmY3VIdNnmFP8M+w3Gm0lgQv4k/roNS2dcC3sDpc
cBMLzOn7lpxgog4N96IqneJkgcveb/VqF1WukN+fM2L2CE54jXytaq10mrme
W2CvVGsD6GRpcC0RS0aBMNvVgu4czIDRTMuYb9c1IKuHSgQs7dOTHZ2M3ZnN
gbJasM+unj2eqWf03Q1y0O87Q1Zt20D1UKmXd1RZrNrDNgKOu97MjJ2RRvSA
6jbZ2E2hRL1Urc5mmqEvlLrUYU1bIY9ibSFOW03gtFCxypDHZIt1yzbQ5yIB
q1JmVsuwdeJSqHGX/4iqUPE//qfSvRx0z2v/yBybQRW0RIHGzhobWDE9197s
DDjgwZ0xh5wpJCSJaXVhe+lJ+2RHmYa/sjuLdZSNJIXmfQP0JO7rb5fK5J/r
9aBSDAoBxcXKsQlAe1PznNmSWe5JaU22F+nIqNFtYUyswyGzs1Q98VrKcvcg
K8FyumOHJEcRrRP4KeqYeHFg9z8z+21QabVAqTteJBitCfhK4DXpHjhOi4zh
gANc6VdoXQwWC9CDGi/GbVYTRY+D0RyDhwG1gg8E/tqcjDj8nWW/SRSCdTrs
y3buYkawephkeLd3Kg0TWyTHaem6hobKHHyZJgXesHb81IZR82CriNJeG3PH
cj3bm2wylanqIgT7/W+L+GlWY0//SCYk9j3HCD1IRFN9losalnZYD1aWt/Rx
qbaIv8Ny3ZnhooMcOm6ZqbrCqH7DRd9r7q1YBSwHkKctA1+slVbn6U7cA/YX
vEtMfUupWtGFO+6rOhg+BfE4s1aDDoKfR0YJ/hH05z/8JBdkxqpvFES0QL1w
5WSPKCcz1Nq1o90FZo8dqB47GCwaW8VJldDzbbMurP/SWL+7/pCkew148AKR
oNQWEsZcom7VGVuTJVDZJnfYMcBjdpb2ApcZnBR34p8BE7Z2Zug0Y5HfH/aP
vjs+YCIeg+ml2UvfWhn2hvoSewvx4hcvfKx7OFIPqE6KOcwHk/pl4GxQoRBe
P06kNtv2P7jY/4CeXMB8m+EOctUI1rpMBbyu4wzUd3xRrbD+QOcmuKUFhALH
D2yiMZIPIRedcAxtEYWbxpETGU75nYH1LBN38gZ78rUsdu//vj920POizjy6
3hqhjUMDOKZJoymCkjsddhGuAYvTB9oh0oOiGm1LJDwJdAhCWp1G2yq0y5E2
kmSvttbwBNSINvJkjuZljxkW4boeDDqMBeGOcVsjU9KwStvQJ4TR+Ih7qe6j
H0pCwPA4PlCeoA9Uh7gAdSd2zNthW/wOWGGGMJC12Co6mXvLGaJn/tIJfNDB
AlM5uJm6CoO17VPoqQt2QaajTt1Mw7Jt0BzRw+YS7EFUUW3DNOew+pyry9PM
PSyNj2rm0gLiw6ulvwB9dkdZuoigPXVpZ+68JcJkZ8nR3RlzF1dAT5tGzA8L
BRCTks/DwOamhpjc2GLObMnVsdW2tfK9FX3y/ft/JXA6hhhGhKDEX/pcXftY
l7OEZiJ9Sy0QCqdm3KUzhn5gaNkCt7pwE9ebY/ZNF0QaZ/8bcN3ceMyUFkBH
eAHLydwGTi7PDUNH8oC6rwKBrr35wjsFI3GuZaqbR0TlptAakKWhWjauXzPQ
UPDLcI1M0zNNR3VPGYGiX2WYDaDr3IKv+upsCqp2BW4UNOrZIEk9G3p7CvS1
beAvSzOoebTYpuqaPbeAQwYL4ErUbNSbR6A19HHOOLw3BRtylumf/d//jizg
YdCgrnt29P9VFqkPtNsEAA==

-->

</rfc>

