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

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

    <date year="2023" month="October" day="09"/>

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

<t>Software that has already implemented those previous standards may want to review <xref target="upgrade-guidance"/> for pointers to what has changed.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>Examples:</t>

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

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

<t>Additional rules:</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>The first octet of the packet denotes the format of the rest of the header, and encodes the Packet Type ID, indicating the type of the packet (see <xref target="packet-types"/>).
The remainder of the packet header is the length of the packet.</t>

<t>There are two packet formats, the (current) OpenPGP packet format specified by this document and its predecessors <xref target="RFC4880"/> and <xref target="RFC2440"/>, and the Legacy packet format as used by implementations predating any IETF specification of the protocol.</t>

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

<figure><artwork><![CDATA[
                          ┌───────────────┐
  Encoded Packet Type ID: │7 6 5 4 3 2 1 0│
                          └───────────────┘
  OpenPGP format:
    Bit 7 -- always one
    Bit 6 -- always one
    Bits 5 to 0 -- packet type ID

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

<t>Bit 6 of the first octet of the packet header indicates whether the packet is encoded in the OpenPGP or Legacy packet format.
The Legacy packet format <bcp14>MAY</bcp14> be used when consuming packets to facilitate interoperability and accessing archived data.
The Legacy packet format <bcp14>SHOULD NOT</bcp14> be used to generate new data, unless the recipient is known to only support the Legacy packet format.
This latter case is extremely unlikely, as the Legacy packet format was obsoleted by <xref target="RFC2440"/> in 1998.</t>

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

<t>Note that Legacy format headers only have 4 bits for the packet type ID, and hence can only encode packet type IDs less than 16, whereas the OpenPGP format headers can encode IDs as great as 63.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>The v6 PKESK packet consists of the following fields:</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

</section>
<section anchor="sigtype-direct-key"><name>Direct Key Signature (type ID 0x1F)</name>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>A DSA signature <bcp14>MUST</bcp14> use a hash algorithm with a digest size of at least the number of bits of q, the group generated by the DSA key's generator value.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>The other bits of the encoded subpacket type ID (i.e. bits 6-0) contain the subpacket type ID.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>(null-terminated UTF-8 encoded regular expression)</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>(String)</t>

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

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

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

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

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

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

<t>(String)</t>

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

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

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

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

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

<t>Usage notes:</t>

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

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

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

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

<t>(String)</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>First octet:</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>A Public-Subkey packet (type ID 14) has exactly the same format as a Public-Key packet, but denotes a subkey.
One or more subkeys may be associated with a top-level key.
By convention, the top-level key offers certification capability, but does not provide encryption services, while a dedicated subkey provides encryption (see <xref target="common-requirements"/>).</t>

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

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

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

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

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

<t>There are four versions of key-material packets.
The V2 and V3 versions have been deprecated since 1998.
The V4 version has been deprecated by this document in 2023.</t>

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

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

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

<t>V2 keys are identical to v3 keys except for the version number.
A version 3 public key or public-subkey packet contains:</t>

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

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

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

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

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

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

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

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

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

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

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

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

<t>The packet contains:</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>This packet is obsolete.
An implementation <bcp14>MUST NOT</bcp14> create this packet.
An implementation <bcp14>SHOULD</bcp14> reject such a packet and stop processing the message.
If an implementation chooses to process the packet anyway, it <bcp14>MUST</bcp14> return a clear warning that a non-integrity protected packet has been processed.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>An implementation that deals with either historic data or data generated by an implementation that predates support for <xref target="RFC2440"/> <bcp14>MAY</bcp14> interpret Literal Data packets that use the Legacy format for packet framing.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>The chunk size octet specifies the size of chunks using the following formula (in <xref target="C99"/>), where c is the chunk size octet:</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>An OpenPGP cleartext signed message consists of:</t>

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

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

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

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

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

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

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

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

</section>
<section anchor="csf-issues"><name>Issues with the Cleartext Signature Framework</name>

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

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

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

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

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

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

<t>Finally, when a Cleartext Signature Framework message is presented to the user as-is, an attacker can include additional text in the <spanx style="verb">Hash</spanx> header, which may mislead the user into thinking it is part of the signed text.
The signature validation constraints described in <xref target="armor-header-key-hash"/> and <xref target="cleartext-structure"/> help to mitigate the risk of arbitrary or misleading text in the Armor Headers.</t>

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

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

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

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

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

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

</section>
<section anchor="constants"><name>Constants</name>

<t>This section describes the constants used in OpenPGP.</t>

<t>Note that these tables are not exhaustive lists; an implementation <bcp14>MAY</bcp14> implement an algorithm not on these lists, so long as the algorithm IDs are chosen from the private or experimental algorithm range.</t>

<t>See <xref target="notes-on-algorithms"/> for more discussion of the algorithms.</t>

<section anchor="pubkey-algos"><name>Public-Key Algorithms</name>

<texttable title="Public Key Algorithms registry" anchor="pubkey-algo-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <ttcol align='left'>Public Key Format</ttcol>
      <ttcol align='left'>Secret Key Format</ttcol>
      <ttcol align='left'>Signature Format</ttcol>
      <ttcol align='left'>PKESK Format</ttcol>
      <c>0</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>1</c>
      <c>RSA (Encrypt or Sign) <xref target="FIPS186"/></c>
      <c>MPI(n), MPI(e) [<xref target="key-rsa"/>]</c>
      <c>MPI(d), MPI(p), MPI(q), MPI(u)</c>
      <c>MPI(m**d mod n) [<xref target="sig-rsa"/>]</c>
      <c>MPI(m**e mod n) [<xref target="pkesk-rsa"/>]</c>
      <c>2</c>
      <c>RSA Encrypt-Only <xref target="FIPS186"/></c>
      <c>MPI(n), MPI(e) [<xref target="key-rsa"/>]</c>
      <c>MPI(d), MPI(p), MPI(q), MPI(u)</c>
      <c>N/A</c>
      <c>MPI(m**e mod n) [<xref target="pkesk-rsa"/>]</c>
      <c>3</c>
      <c>RSA Sign-Only <xref target="FIPS186"/></c>
      <c>MPI(n), MPI(e) [<xref target="key-rsa"/>]</c>
      <c>MPI(d), MPI(p), MPI(q), MPI(u)</c>
      <c>MPI(m**d mod n) [<xref target="sig-rsa"/>]</c>
      <c>N/A</c>
      <c>16</c>
      <c>Elgamal (Encrypt-Only) <xref target="ELGAMAL"/></c>
      <c>MPI(p), MPI(g), MPI(y) [<xref target="key-elgamal"/>]</c>
      <c>MPI(x)</c>
      <c>N/A</c>
      <c>MPI(g**k mod p), MPI (m * y**k mod p) [<xref target="pkesk-elgamal"/>]</c>
      <c>17</c>
      <c>DSA (Digital Signature Algorithm) <xref target="FIPS186"/></c>
      <c>MPI(p), MPI(q), MPI(g), MPI(y) [<xref target="key-dsa"/>]</c>
      <c>MPI(x)</c>
      <c>MPI(r), MPI(s) [<xref target="sig-dsa"/>]</c>
      <c>N/A</c>
      <c>18</c>
      <c>ECDH public key algorithm</c>
      <c>OID, MPI(point in curve-specific point format), KDFParams [see <xref target="curve-specific-formats"/>, <xref target="key-ecdh"/>]</c>
      <c>MPI(value in curve-specific format) [<xref target="curve-specific-formats"/>]</c>
      <c>N/A</c>
      <c>MPI(point in curve-specific point format), size octet, encoded key [<xref target="curve-specific-formats"/>, <xref target="pkesk-ecdh"/>, <xref target="ecdh"/>]</c>
      <c>19</c>
      <c>ECDSA public key algorithm <xref target="FIPS186"/></c>
      <c>OID, MPI(point in SEC1 format) [<xref target="key-ecdsa"/>]</c>
      <c>MPI(value)</c>
      <c>MPI(r), MPI(s) [<xref target="sig-dsa"/>]</c>
      <c>N/A</c>
      <c>20</c>
      <c>Reserved (formerly Elgamal Encrypt or Sign)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>21</c>
      <c>Reserved for Diffie-Hellman (X9.42, as defined for IETF-S/MIME)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>22</c>
      <c>EdDSALegacy (deprecated)</c>
      <c>OID, MPI(point in prefixed native format) [see <xref target="ec-point-prefixed-native"/>, <xref target="key-eddsa-legacy"/>]</c>
      <c>MPI(value in curve-specific format) [see <xref target="curve-specific-formats"/>]</c>
      <c>MPI, MPI [see <xref target="curve-specific-formats"/>, <xref target="sig-eddsa-legacy"/>]</c>
      <c>N/A</c>
      <c>23</c>
      <c>Reserved (AEDH)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>24</c>
      <c>Reserved (AEDSA)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>25</c>
      <c>X25519</c>
      <c>32 octets [see <xref target="key-x25519"/>]</c>
      <c>32 octets</c>
      <c>N/A</c>
      <c>32 octets, size octet, encoded key [see <xref target="pkesk-x25519"/>]</c>
      <c>26</c>
      <c>X448</c>
      <c>56 octets [see <xref target="key-x448"/>]</c>
      <c>56 octets</c>
      <c>N/A</c>
      <c>56 octets, size octet, encoded key [see <xref target="pkesk-x448"/>]</c>
      <c>27</c>
      <c>Ed25519</c>
      <c>32 octets [see <xref target="key-ed25519"/>]</c>
      <c>32 octets</c>
      <c>64 octets [see <xref target="sig-ed25519"/>]</c>
      <c>&#160;</c>
      <c>28</c>
      <c>Ed448</c>
      <c>57 octets [see <xref target="key-ed448"/>]</c>
      <c>57 octets</c>
      <c>114 octets [see <xref target="sig-ed448"/>]</c>
      <c>&#160;</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement Ed25519 (27) for signatures, and X25519 (25) for encryption.
Implementations <bcp14>SHOULD</bcp14> implement Ed448 (28) and X448 (26).</t>

<t>RSA (1) keys are deprecated and <bcp14>SHOULD NOT</bcp14> be generated, but may be interpreted.
RSA Encrypt-Only (2) and RSA Sign-Only (3) are deprecated and <bcp14>MUST NOT</bcp14> be generated.
See <xref target="rsa-notes"/>.
Elgamal (16) keys are deprecated and <bcp14>MUST NOT</bcp14> be generated (see <xref target="elgamal-notes"/>).
DSA (17) keys are deprecated and <bcp14>MUST NOT</bcp14> be generated (see <xref target="dsa-notes"/>).
See <xref target="reserved-notes"/> for notes on Elgamal Encrypt or Sign (20), and X9.42 (21).
Implementations <bcp14>MAY</bcp14> implement any other algorithm.</t>

<t>Note that an implementation conforming to the previous version of this standard (<xref target="RFC4880"/>) has only DSA (17) and Elgamal (16) as its <bcp14>MUST</bcp14>-implement algorithms.</t>

<t>A compatible specification of ECDSA is given in <xref target="RFC6090"/> as "KT-I Signatures" and in <xref target="SEC1"/>; ECDH is defined in <xref target="ecdh"/> of this document.</t>

</section>
<section anchor="ec-curves"><name>ECC Curves for OpenPGP</name>

<t>The parameter curve OID is an array of octets that defines a named curve.</t>

<t>The table below specifies the exact sequence of octets for each named curve referenced in this document.
It also specifies which public key algorithms the curve can be used with, as well as the size of expected elements in octets:</t>

<texttable title="ECC Curve OID and Usage registry" anchor="ecc-oid-usage-registry">
      <ttcol align='left'>ASN.1 Object Identifier</ttcol>
      <ttcol align='left'>OID len</ttcol>
      <ttcol align='left'>Curve OID octets in hex</ttcol>
      <ttcol align='left'>Curve name</ttcol>
      <ttcol align='left'>Usage</ttcol>
      <ttcol align='left'>Field Size (fsize)</ttcol>
      <c>1.2.840.10045.3.1.7</c>
      <c>8</c>
      <c>2A 86 48 CE 3D 03 01 07</c>
      <c>NIST P-256</c>
      <c>ECDSA, ECDH</c>
      <c>32</c>
      <c>1.3.132.0.34</c>
      <c>5</c>
      <c>2B 81 04 00 22</c>
      <c>NIST P-384</c>
      <c>ECDSA, ECDH</c>
      <c>48</c>
      <c>1.3.132.0.35</c>
      <c>5</c>
      <c>2B 81 04 00 23</c>
      <c>NIST P-521</c>
      <c>ECDSA, ECDH</c>
      <c>66</c>
      <c>1.3.36.3.3.2.8.1.1.7</c>
      <c>9</c>
      <c>2B 24 03 03 02 08 01 01 07</c>
      <c>brainpoolP256r1</c>
      <c>ECDSA, ECDH</c>
      <c>32</c>
      <c>1.3.36.3.3.2.8.1.1.11</c>
      <c>9</c>
      <c>2B 24 03 03 02 08 01 01 0B</c>
      <c>brainpoolP384r1</c>
      <c>ECDSA, ECDH</c>
      <c>48</c>
      <c>1.3.36.3.3.2.8.1.1.13</c>
      <c>9</c>
      <c>2B 24 03 03 02 08 01 01 0D</c>
      <c>brainpoolP512r1</c>
      <c>ECDSA, ECDH</c>
      <c>64</c>
      <c>1.3.6.1.4.1.11591.15.1</c>
      <c>9</c>
      <c>2B 06 01 04 01 DA 47 0F 01</c>
      <c>Ed25519Legacy</c>
      <c>EdDSALegacy</c>
      <c>32</c>
      <c>1.3.6.1.4.1.3029.1.5.1</c>
      <c>10</c>
      <c>2B 06 01 04 01 97 55 01 05 01</c>
      <c>Curve25519Legacy</c>
      <c>ECDH</c>
      <c>32</c>
</texttable>

<t>The "Field Size (fsize)" column represents the field size of the group in number of octets, rounded up, such that x or y coordinates for a point on the curve or native point representations for the curve can be represented in that many octets.
For the curves specified here, also scalars such as the base point order and the private key can be represented in fsize octets.
Note that, however, there exist curves outside this specification where the representation of scalars requires an additional octet.</t>

<t>The sequence of octets in the third column is the result of applying the Distinguished Encoding Rules (DER) to the ASN.1 Object Identifier with subsequent truncation.
The truncation removes the two fields of encoded Object Identifier.
The first omitted field is one octet representing the Object Identifier tag, and the second omitted field is the length of the Object Identifier body.
For example, the complete ASN.1 DER encoding for the NIST P-256 curve OID is "06 08 2A 86 48 CE 3D 03 01 07", from which the first entry in the table above is constructed by omitting the first two octets.
Only the truncated sequence of octets is the valid representation of a curve OID.</t>

<t>The deprecated OIDs for Ed25519Legacy and Curve25519Legacy are used only in version 4 keys and signatures.
Implementations <bcp14>MAY</bcp14> implement these variants for compatibility with existing v4 key material and signatures.
Implementations <bcp14>MUST NOT</bcp14> accept or generate v6 key material using the deprecated OIDs.</t>

<section anchor="curve-specific-formats"><name>Curve-Specific Wire Formats</name>

<t>Some Elliptic Curve Public Key Algorithms use different conventions for specific fields depending on the curve in use.
Each field is always formatted as an MPI, but with a curve-specific framing.
This table summarizes those distinctions.</t>

<texttable title="ECC Curve-specific Wire Formats registry" anchor="ecc-wire-formats-registry">
      <ttcol align='left'>Curve</ttcol>
      <ttcol align='left'>ECDH Point Format</ttcol>
      <ttcol align='left'>ECDH Secret Key MPI</ttcol>
      <ttcol align='left'>EdDSA Secret Key MPI</ttcol>
      <ttcol align='left'>EdDSA Signature first MPI</ttcol>
      <ttcol align='left'>EdDSA Signature second MPI</ttcol>
      <c>NIST P-256</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>NIST P-384</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>NIST P-521</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>brainpoolP256r1</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>brainpoolP384r1</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>brainpoolP512r1</c>
      <c>SEC1</c>
      <c>integer</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>Ed25519Legacy</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>32 octets of secret</c>
      <c>32 octets of R</c>
      <c>32 octets of S</c>
      <c>Curve25519Legacy</c>
      <c>prefixed native</c>
      <c>integer (see <xref target="curve25519-secrets"/>)</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>N/A</c>
</texttable>

<t>For the native octet-string forms of Ed25519Legacy values, see <xref target="RFC8032"/>.
For the native octet-string forms of Curve25519Legacy secret scalars and points, see <xref target="RFC7748"/>.</t>

</section>
</section>
<section anchor="symmetric-algos"><name>Symmetric-Key Algorithms</name>

<texttable title="Symmetric Key Algorithms registry" anchor="symkey-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <c>0</c>
      <c>Plaintext or unencrypted data</c>
      <c>1</c>
      <c>IDEA <xref target="IDEA"/></c>
      <c>2</c>
      <c>TripleDES (DES-EDE, <xref target="SP800-67"/> - 168 bit key derived from 192)</c>
      <c>3</c>
      <c>CAST5 (128 bit key, as per <xref target="RFC2144"/>)</c>
      <c>4</c>
      <c>Blowfish (128 bit key, 16 rounds) <xref target="BLOWFISH"/></c>
      <c>5</c>
      <c>Reserved</c>
      <c>6</c>
      <c>Reserved</c>
      <c>7</c>
      <c>AES with 128-bit key <xref target="AES"/></c>
      <c>8</c>
      <c>AES with 192-bit key</c>
      <c>9</c>
      <c>AES with 256-bit key</c>
      <c>10</c>
      <c>Twofish with 256-bit key <xref target="TWOFISH"/></c>
      <c>11</c>
      <c>Camellia with 128-bit key <xref target="RFC3713"/></c>
      <c>12</c>
      <c>Camellia with 192-bit key</c>
      <c>13</c>
      <c>Camellia with 256-bit key</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>253, 254 and 255</c>
      <c>Reserved to avoid collision with Secret Key Encryption (see <xref target="secret-key-protection-registry"/> and <xref target="secret-key-packet-formats"/>)</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement AES-128.
Implementations <bcp14>SHOULD</bcp14> implement AES-256.
Implementations <bcp14>MUST NOT</bcp14> encrypt data with IDEA, TripleDES, or CAST5.
Implementations <bcp14>MAY</bcp14> decrypt data that uses IDEA, TripleDES, or CAST5 for the sake of reading older messages or new messages from implementations predating support for <xref target="RFC2440"/>.
An Implementation that decrypts data using IDEA, TripleDES, or CAST5 <bcp14>SHOULD</bcp14> generate a deprecation warning about the symmetric algorithm, indicating that message confidentiality is suspect.
Implementations <bcp14>MAY</bcp14> implement any other algorithm.</t>

</section>
<section anchor="compression-algos"><name>Compression Algorithms</name>

<texttable title="Compression Algorithms registry" anchor="compression-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <c>0</c>
      <c>Uncompressed</c>
      <c>1</c>
      <c>ZIP <xref target="RFC1951"/></c>
      <c>2</c>
      <c>ZLIB <xref target="RFC1950"/></c>
      <c>3</c>
      <c>BZip2 <xref target="BZ2"/></c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement uncompressed data.
Implementations <bcp14>SHOULD</bcp14> implement ZLIB.
For interoperability reasons implementations <bcp14>SHOULD</bcp14> be able to decompress using ZIP.
Implementations <bcp14>MAY</bcp14> implement any other algorithm.</t>

</section>
<section anchor="hash-algos"><name>Hash Algorithms</name>

<texttable title="Hash Algorithms registry" anchor="hash-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Algorithm</ttcol>
      <ttcol align='left'>Text Name</ttcol>
      <ttcol align='left'>V6 signature salt size</ttcol>
      <c>1</c>
      <c>MD5 <xref target="RFC1321"/></c>
      <c>"MD5"</c>
      <c>N/A</c>
      <c>2</c>
      <c>SHA-1 <xref target="FIPS180"/>, <xref target="sha1cd"/></c>
      <c>"SHA1"</c>
      <c>N/A</c>
      <c>3</c>
      <c>RIPEMD-160 <xref target="RIPEMD-160"/></c>
      <c>"RIPEMD160"</c>
      <c>N/A</c>
      <c>4</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>5</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>6</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>7</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>8</c>
      <c>SHA2-256 <xref target="FIPS180"/></c>
      <c>"SHA256"</c>
      <c>16</c>
      <c>9</c>
      <c>SHA2-384 <xref target="FIPS180"/></c>
      <c>"SHA384"</c>
      <c>24</c>
      <c>10</c>
      <c>SHA2-512 <xref target="FIPS180"/></c>
      <c>"SHA512"</c>
      <c>32</c>
      <c>11</c>
      <c>SHA2-224 <xref target="FIPS180"/></c>
      <c>"SHA224"</c>
      <c>16</c>
      <c>12</c>
      <c>SHA3-256 <xref target="FIPS202"/></c>
      <c>"SHA3-256"</c>
      <c>16</c>
      <c>13</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>14</c>
      <c>SHA3-512 <xref target="FIPS202"/></c>
      <c>"SHA3-512"</c>
      <c>32</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<texttable title="Hash Algorithm Identifiers for RSA Signatures use of EMSA-PKCS1-v1_5 Padding registry" anchor="emsa-hash-oids-registry">
      <ttcol align='left'>Hash Algorithm</ttcol>
      <ttcol align='left'>OID</ttcol>
      <ttcol align='left'>Full hash prefix</ttcol>
      <c>MD5</c>
      <c>1.2.840.113549.2.5</c>
      <c>0x30, 0x20, 0x30, 0x0C, 0x06, 0x08, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, 0x05, 0x00, 0x04, 0x10</c>
      <c>SHA-1</c>
      <c>1.3.14.3.2.26</c>
      <c>0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2B, 0x0E, 0x03, 0x02, 0x1A, 0x05, 0x00, 0x04, 0x14</c>
      <c>RIPEMD-160</c>
      <c>1.3.36.3.2.1</c>
      <c>0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2B, 0x24, 0x03, 0x02, 0x01, 0x05, 0x00, 0x04, 0x14</c>
      <c>SHA2-256</c>
      <c>2.16.840.1.101.3.4.2.1</c>
      <c>0x30, 0x31, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01, 0x05, 0x00, 0x04, 0x20</c>
      <c>SHA2-384</c>
      <c>2.16.840.1.101.3.4.2.2</c>
      <c>0x30, 0x41, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02, 0x05, 0x00, 0x04, 0x30</c>
      <c>SHA2-512</c>
      <c>2.16.840.1.101.3.4.2.3</c>
      <c>0x30, 0x51, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03, 0x05, 0x00, 0x04, 0x40</c>
      <c>SHA2-224</c>
      <c>2.16.840.1.101.3.4.2.4</c>
      <c>0x30, 0x2D, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x04, 0x05, 0x00, 0x04, 0x1C</c>
      <c>SHA3-256</c>
      <c>2.16.840.1.101.3.4.2.8</c>
      <c>0x30, 0x31, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x08, 0x05, 0x00, 0x04, 0x20</c>
      <c>SHA3-512</c>
      <c>2.16.840.1.101.3.4.2.10</c>
      <c>0x30, 0x51, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x0a, 0x05, 0x00, 0x04, 0x40</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement SHA2-256.
Implementations <bcp14>SHOULD</bcp14> implement SHA2-384 and SHA2-512.
Implementations <bcp14>MAY</bcp14> implement other algorithms.
Implementations <bcp14>SHOULD NOT</bcp14> create messages which require the use of SHA-1 with the exception of computing version 4 key fingerprints and for purposes of the Modification Detection Code (MDC) in version 1 Symmetrically Encrypted Integrity Protected Data packets.
Implementations <bcp14>MUST NOT</bcp14> generate signatures with MD5, SHA-1, or RIPEMD-160.
Implementations <bcp14>MUST NOT</bcp14> use MD5, SHA-1, or RIPEMD-160 as a hash function in an ECDH KDF.
Implementations <bcp14>MUST NOT</bcp14> generate packets using MD5, SHA-1, or RIPEMD-160 as a hash function in an S2K KDF.
Implementations <bcp14>MUST NOT</bcp14> decrypt a secret using MD5, SHA-1, or RIPEMD-160 as a hash function in an S2K KDF in a version 6 (or later) packet.
Implementations <bcp14>MUST NOT</bcp14> validate any recent signature that depends on MD5, SHA-1, or RIPEMD-160.
Implementations <bcp14>SHOULD NOT</bcp14> validate any old signature that depends on MD5, SHA-1, or RIPEMD-160 unless the signature's creation date predates known weakness of the algorithm used, and the implementation is confident that the message has been in the secure custody of the user the whole time.</t>

</section>
<section anchor="aead-algorithms"><name>AEAD Algorithms</name>

<texttable title="AEAD Algorithms registry" anchor="aead-algorithms-registry">
      <ttcol align='right'>ID</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Nonce length (octets)</ttcol>
      <ttcol align='left'>authentication tag length (octets)</ttcol>
      <c>1</c>
      <c>EAX</c>
      <c><xref target="EAX"/></c>
      <c>16</c>
      <c>16</c>
      <c>2</c>
      <c>OCB</c>
      <c><xref target="RFC7253"/></c>
      <c>15</c>
      <c>16</c>
      <c>3</c>
      <c>GCM</c>
      <c><xref target="SP800-38D"/></c>
      <c>12</c>
      <c>16</c>
      <c>100 to 110</c>
      <c>Private/Experimental algorithm</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<t>Implementations <bcp14>MUST</bcp14> implement OCB.
Implementations <bcp14>MAY</bcp14> implement EAX, GCM and other algorithms.</t>

</section>
</section>
<section anchor="packet-sequence-composition"><name>Packet Sequence Composition</name>

<t>OpenPGP packets are assembled into sequences in order to create messages and to transfer keys.
Not all possible packet sequences are meaningful and correct.
This section describes the rules for how packets should be placed into sequences.</t>

<t>There are three distinct sequences of packets:</t>

<t><list style="symbols">
  <t>Transferable Public Keys (<xref target="transferable-public-keys"/>) and their close counterpart, Transferable Secret Keys (<xref target="transferable-secret-keys"/>)</t>
  <t>OpenPGP Messages (<xref target="openpgp-messages"/>)</t>
  <t>Detached Signatures (<xref target="detached-signatures"/>)</t>
</list></t>

<t>Each sequence has an explicit grammar of what packet types (<xref target="packet-types-registry"/>) can appear in what place.
The presence of an unknown critical packet, or a known but unexpected packet is a critical error, invalidating the entire sequence (see <xref target="packet-criticality"/>).
On the other hand, unknown non-critical packets can appear anywhere within any sequence.
This provides a structured way to introduce new packets into the protocol, while making sure that certain packets will be handled strictly.</t>

<t>An implementation may "recognize" a packet, but not implement it.
The purpose of Packet Criticality is to allow the producer to tell the consumer whether it would prefer a new, unknown packet to generate an error or be ignored.</t>

<t>Note that previous versions of this document did not have a concept of Packet Criticality, and did not give clear guidance on what to do when unknown packets are encountered.
Therefore, implementations of older versions of this document may reject unknown non-critical packets, or accept unknown critical packets.</t>

<t>When generating a sequence of OpenPGP packets according to one of the three grammars, an implementation <bcp14>MUST NOT</bcp14> inject a critical packet of a type that does not adhere to the grammar.</t>

<t>When consuming a sequence of OpenPGP packets according to one of the three grammars, an implementation <bcp14>MUST</bcp14> reject the sequence with an error if it encounters a critical packet of inappropriate type according to the grammar.</t>

<section anchor="transferable-public-keys"><name>Transferable Public Keys</name>

<t>OpenPGP users may transfer public keys.
This section describes the structure of public keys in transit to ensure interoperability.
An OpenPGP Transferable Public Key is also known as an OpenPGP certificate, in order to distinguish it from both its constituent Public-Key packets (<xref target="pubkey"/> and <xref target="pubsubkey"/>) and the underlying cryptographic key material.</t>

<section anchor="v6-certificate-structures"><name>OpenPGP v6 Certificate Structure</name>

<t>The format of an OpenPGP v6 certificate is as follows.
Entries in square brackets are optional and ellipses indicate repetition.</t>

<figure><artwork><![CDATA[
Primary Key
   [Revocation Signature...]
    Direct-Key Signature...
   [User ID or User Attribute
           [Certification Revocation Signature...]
           [Certification Signature...]]...
   [Subkey [Subkey Revocation Signature...]
           Subkey Binding Signature...]...
   [Padding]
]]></artwork></figure>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<t>Note, that a v6 key uses a self-signed Direct-Key Signature to store algorithm preferences.</t>

<t>Every subkey for a v6 primary key <bcp14>MUST</bcp14> be a v6 subkey.
Every subkey <bcp14>MUST</bcp14> have at least one subkey binding signature.
Every subkey binding signature <bcp14>MUST</bcp14> be a self-signature (that is, made by the v6 primary key).
Like all other signatures, every self-signature made by a v6 key <bcp14>MUST</bcp14> be a v6 signature.</t>

</section>
<section anchor="v6-revocation-certificate"><name>OpenPGP v6 Revocation Certificate</name>

<t>When a primary v6 Public Key is revoked, it is sometimes distributed with only the revocation signature:</t>

<figure><artwork><![CDATA[
Primary Key
    Revocation Signature
]]></artwork></figure>

<t>In this case, the direct-key signature is no longer necessary, since the primary key itself has been marked as unusable.</t>

</section>
<section anchor="openpgp-v4-certificate-structure"><name>OpenPGP v4 Certificate Structure</name>

<t>The format of an OpenPGP v4 key is as follows.</t>

<figure><artwork><![CDATA[
Primary Key
   [Revocation Signature]
   [Direct-Key Signature...]
   [User ID or User Attribute [Signature...]]...
   [Subkey [Subkey Revocation Signature...]
           Subkey Binding Signature...]...
]]></artwork></figure>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<t>A subkey always has at least one subkey binding signature after it that is issued using the primary key to tie the two keys together.
These binding signatures may be in either v3 or v4 format, but <bcp14>SHOULD</bcp14> be in v4 format.
Subkeys that can issue signatures <bcp14>MUST</bcp14> have a v4 binding signature due to the <bcp14>REQUIRED</bcp14> embedded primary key binding signature.</t>

<t>Every subkey for a v4 primary key <bcp14>MUST</bcp14> be a v4 subkey.</t>

<t>When a primary v4 Public Key is revoked, the revocation signature is sometimes distributed by itself, without the primary key packet it applies to. This is referred to as a "revocation certificate".
Instead, a v6 revocation certificate <bcp14>MUST</bcp14> include the primary key packet, as described in <xref target="v6-revocation-certificate"/>.</t>

</section>
<section anchor="openpgp-v3-key-structure"><name>OpenPGP v3 Key Structure</name>

<t>The format of an OpenPGP v3 key is as follows.</t>

<figure><artwork><![CDATA[
RSA Public Key
   [Revocation Signature]
    User ID [Signature...]
   [User ID [Signature...]]...
]]></artwork></figure>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<t>Each signature certifies the RSA public key and the preceding User ID.
The RSA public key can have many User IDs and each User ID can have many signatures.
V3 keys are deprecated.
Implementations <bcp14>MUST NOT</bcp14> generate new v3 keys, but <bcp14>MAY</bcp14> continue to use existing ones.</t>

<t>V3 keys <bcp14>MUST NOT</bcp14> have subkeys.</t>

</section>
<section anchor="common-requirements"><name>Common requirements</name>

<t>The Public-Key packet occurs first.</t>

<t>The primary key <bcp14>MUST</bcp14> be an algorithm capable of making signatures (that is, not an encryption-only algorithm).
This is because the primary key needs to be able to create self-signatures (see <xref target="self-sigs"/>).
The subkeys may be keys of any type.
For example, there may be a single-key RSA key, an Ed25519 primary key with an RSA encryption key, or an Ed25519 primary key with an X25519 subkey, etc.</t>

<t>Each of the following User ID packets provides the identity of the owner of this public key.
If there are multiple User ID packets, this corresponds to multiple means of identifying the same unique individual user; for example, a user may have more than one email address, and construct a User ID for each one.
A transferable public key <bcp14>SHOULD</bcp14> include at least one User ID packet unless storage requirements prohibit this.</t>

<t>Immediately following each User ID packet, there are zero or more Signature packets.
Each Signature packet is calculated on the immediately preceding User ID packet and the initial Public-Key packet.
The signature serves to certify the corresponding public key and User ID.
In effect, the signer is testifying to his or her belief that this public key belongs to the user identified by this User ID.</t>

<t>Within the same section as the User ID packets, there are zero or more User Attribute packets.
Like the User ID packets, a User Attribute packet is followed by zero or more Signature packets calculated on the immediately preceding User Attribute packet and the initial Public-Key packet.</t>

<t>User Attribute packets and User ID packets may be freely intermixed in this section, so long as the signatures that follow them are maintained on the proper User Attribute or User ID packet.</t>

<t>After the sequence of User ID packets and Attribute packets and their associated signatures, zero or more Subkey packets follow, each with their own signatures.
In general, subkeys are provided in cases where the top-level public key is a certification-only key.
However, any v4 or v6 key may have subkeys, and the subkeys may be encryption keys, signing keys, authentication keys, etc.
It is good practice to use separate subkeys for every operation (i.e. signature-only, encryption-only, authentication-only keys, etc.).</t>

<t>Each Subkey packet <bcp14>MUST</bcp14> be followed by one Signature packet, which should be a subkey binding signature issued by the top-level key.
For subkeys that can issue signatures, the subkey binding signature <bcp14>MUST</bcp14> contain an Embedded Signature subpacket with a primary key binding signature (0x19) issued by the subkey on the top-level key.</t>

<t>Subkey and Key packets may each be followed by a revocation Signature packet to indicate that the key is revoked.
Revocation signatures are only accepted if they are issued by the key itself, or by a key that is authorized to issue revocations via a Revocation Key subpacket in a self-signature by the top-level key.</t>

<t>The optional trailing Padding packet is a mechanism to defend against traffic analysis (see <xref target="traffic-analysis"/>).
For maximum interoperability, if the Public-Key packet is a v4 key, the optional Padding packet <bcp14>SHOULD NOT</bcp14> be present unless the recipient has indicated that they are capable of ignoring it successfully.
An implementation that is capable of receiving a transferable public key with a v6 Public-Key primary key <bcp14>MUST</bcp14> be able to accept (and ignore) the trailing optional Padding packet.</t>

<t>Transferable public-key packet sequences may be concatenated to allow transferring multiple public keys in one operation (see <xref target="keyrings"/>).</t>

</section>
</section>
<section anchor="transferable-secret-keys"><name>Transferable Secret Keys</name>

<t>OpenPGP users may transfer secret keys.
The format of a transferable secret key is the same as a transferable public key except that secret-key and secret-subkey packets can be used in addition to the public key and public-subkey packets.
If a single secret-key or secret-subkey packet is included in a packet sequence, it is a transferable secret key and should be handled and marked as such (see <xref target="forming-ascii-armor"/>).
An implementation <bcp14>SHOULD</bcp14> include self-signatures on any User IDs and subkeys, as this allows for a complete public key to be automatically extracted from the transferable secret key.
An implementation <bcp14>MAY</bcp14> choose to omit the self-signatures, especially if a transferable public key accompanies the transferable secret key.</t>

</section>
<section anchor="openpgp-messages"><name>OpenPGP Messages</name>

<t>An OpenPGP message is a packet or sequence of packets that corresponds to the following grammatical rules (comma (,) represents sequential composition, and vertical bar (|) separates alternatives):</t>

<dl>
  <dt>OpenPGP Message :-</dt>
  <dd>
    <t>Encrypted Message | Signed Message | Compressed Message | Literal Message.</t>
  </dd>
  <dt>Compressed Message :-</dt>
  <dd>
    <t>Compressed Data Packet.</t>
  </dd>
  <dt>Literal Message :-</dt>
  <dd>
    <t>Literal Data Packet.</t>
  </dd>
  <dt>ESK :-</dt>
  <dd>
    <t>Public-Key Encrypted Session Key Packet | Symmetric-Key Encrypted Session Key Packet.</t>
  </dd>
  <dt>ESK Sequence :-</dt>
  <dd>
    <t>ESK | ESK Sequence, ESK.</t>
  </dd>
  <dt>Encrypted Data :-</dt>
  <dd>
    <t>Symmetrically Encrypted Data Packet | Symmetrically Encrypted Integrity Protected Data Packet</t>
  </dd>
  <dt>Encrypted Message :-</dt>
  <dd>
    <t>Encrypted Data | ESK Sequence, Encrypted Data.</t>
  </dd>
  <dt>One-Pass Signed Message :-</dt>
  <dd>
    <t>One-Pass Signature Packet, OpenPGP Message, Corresponding Signature Packet.</t>
  </dd>
  <dt>Signed Message :-</dt>
  <dd>
    <t>Signature Packet, OpenPGP Message | One-Pass Signed Message.</t>
  </dd>
  <dt>Optionally Padded Message :-</dt>
  <dd>
    <t>OpenPGP Message | OpenPGP Message, Padding Packet.</t>
  </dd>
</dl>

<t>In addition to these rules, a marker packet (<xref target="marker-packet"/>) can appear anywhere in the sequence.</t>

<section anchor="unwrapping"><name>Unwrapping Encrypted and Compressed Messages</name>

<t>In addition to the above grammar, certain messages can be "unwrapped" to yield new messages.
In particular:</t>

<t><list style="symbols">
  <t>Decrypting a version 2 Symmetrically Encrypted and Integrity Protected Data packet <bcp14>MUST</bcp14> yield a valid Optionally Padded Message.</t>
  <t>Decrypting a version 1 Symmetrically Encrypted and Integrity Protected Data packet or --- for historic data --- a Symmetrically Encrypted Data packet <bcp14>MUST</bcp14> yield a valid OpenPGP Message.</t>
  <t>Decompressing a Compressed Data packet <bcp14>MUST</bcp14> also yield a valid OpenPGP Message.</t>
</list></t>

<t>When any unwrapping is performed, the resulting stream of octets is parsed into a series of OpenPGP packets like any other stream of octets.
The packet boundaries found in the series of octets are expected to align with the length of the unwrapped octet stream.
An implementation <bcp14>MUST NOT</bcp14> interpret octets beyond the boundaries of the unwrapped octet stream as part of any OpenPGP packet.
If an implementation encounters a packet whose header length indicates that it would extend beyond the boundaries of the unwrapped octet stream, the implementation <bcp14>MUST</bcp14> reject that packet as malformed and unusable.</t>

</section>
<section anchor="additional-constraints-on-packet-sequences"><name>Additional Constraints on Packet Sequences</name>

<t>Note that some subtle combinations that are formally acceptable by this grammar are nonetheless unacceptable.</t>

<section anchor="encrypted-message-versions"><name>Packet Versions in Encrypted Messages</name>

<t>As noted above, an Encrypted Message is a sequence of zero or more PKESKs (<xref target="pkesk"/>) and SKESKs (<xref target="skesk"/>), followed by an SEIPD (<xref target="seipd"/>) payload.
In some historic data, the payload may be a deprecated SED (<xref target="sed"/>) packet instead of SEIPD, though implementations <bcp14>MUST NOT</bcp14> generate SED packets (see <xref target="ciphertext-malleability"/>).
The versions of the preceding ESK packets within an Encrypted Message <bcp14>MUST</bcp14> align with the version of the payload SEIPD packet, as described in this section.</t>

<t>v3 PKESK and v4 SKESK packets both contain in their cleartext the symmetric cipher algorithm ID in addition to the session key for the subsequent SEIPD packet.
Since a v1 SEIPD does not contain a symmetric algorithm ID, all ESK packets preceding a v1 SEIPD payload <bcp14>MUST</bcp14> be either v3 PKESK or v4 SKESK.</t>

<t>On the other hand, the cleartext of the v6 ESK packets (either PKESK or SKESK) do not contain a symmetric cipher algorithm ID, so they cannot be used in combination with a v1 SEIPD payload.
The payload following any v6 PKESK or v6 SKESK packet <bcp14>MUST</bcp14> be a v2 SEIPD.</t>

<t>Additionally, to avoid potentially conflicting cipher algorithm IDs, and for simplicity, implementations <bcp14>MUST NOT</bcp14> precede a v2 SEIPD payload with either v3 PKESK or v4 SKESK packets.</t>

<t>The versions of packets found in an Encrypted Message are summarized in the following table.
An implementation <bcp14>MUST</bcp14> only generate an Encrypted Message using packet versions that match a row with "Yes" in the "Generate?" column.
Other rows are provided for the purpose of historic interoperability.
A conforming implementation <bcp14>MUST</bcp14> only generate an Encrypted Message using packets whose versions correspond to a single row.</t>

<texttable title="Encrypted Message Packet Versions registry" anchor="encrypted-packet-versions-registry">
      <ttcol align='left'>Version of Encrypted Data payload</ttcol>
      <ttcol align='left'>Version of preceding Symmetric-Key ESK (if any)</ttcol>
      <ttcol align='left'>Version of preceding Public-Key ESK (if any)</ttcol>
      <ttcol align='left'>Generate?</ttcol>
      <c>SED (<xref target="sed"/>)</c>
      <c>-</c>
      <c>v2 PKESK (<xref target="RFC2440"/>)</c>
      <c>No</c>
      <c>SED (<xref target="sed"/>)</c>
      <c>v4 SKESK (<xref target="v4-skesk"/>)</c>
      <c>v3 PKESK (<xref target="v3-pkesk"/>)</c>
      <c>No</c>
      <c>v1 SEIPD (<xref target="version-one-seipd"/>)</c>
      <c>v4 SKESK (<xref target="v4-skesk"/>)</c>
      <c>v3 PKESK (<xref target="v3-pkesk"/>)</c>
      <c>Yes</c>
      <c>v2 SEIPD (<xref target="version-two-seipd"/>)</c>
      <c>v6 SKESK (<xref target="v6-skesk"/>)</c>
      <c>v6 PKESK (<xref target="v6-pkesk"/>)</c>
      <c>Yes</c>
</texttable>

<t>An implementation processing an Encrypted Message <bcp14>MUST</bcp14> discard any preceding ESK packet with a version that does not align with the version of the payload.</t>

</section>
<section anchor="signed-message-versions"><name>Packet Versions in Signatures</name>

<t>OpenPGP key packets and signature packets are also versioned.
The version of a Signature typically matches the version of the signing key.
When a v6 key produces a signature packet, it <bcp14>MUST</bcp14> produce a version 6 signature packet, regardless of the signature packet type.
When a message is signed or verified using the one-pass construction, the version of the One-Pass Signature packet (<xref target="one-pass-sig"/>) should also be aligned to the other versions.</t>

<t>Some legacy implementations have produced unaligned signature versions for older key material, which are also described in the table below for purpose of historic interoperability.
A conforming implementation <bcp14>MUST</bcp14> only generate signature packets with version numbers matching rows with "Yes" in the "Generate?" column.</t>

<texttable title="Key and Signature Versions registry" anchor="signed-packet-versions-registry">
      <ttcol align='left'>Signing key version</ttcol>
      <ttcol align='left'>Signature packet version</ttcol>
      <ttcol align='left'>OPS packet version</ttcol>
      <ttcol align='left'>Generate?</ttcol>
      <c>3 (<xref target="v3-pubkeys"/>)</c>
      <c>3 (<xref target="version-three-sig"/>)</c>
      <c>3 <xref target="one-pass-sig"/></c>
      <c>No</c>
      <c>4 (<xref target="v4-pubkeys"/>)</c>
      <c>3 (<xref target="version-three-sig"/>)</c>
      <c>3 <xref target="one-pass-sig"/></c>
      <c>No</c>
      <c>4 (<xref target="v4-pubkeys"/>)</c>
      <c>4 (<xref target="version-four-and-six-sig"/>)</c>
      <c>3 <xref target="one-pass-sig"/></c>
      <c>Yes</c>
      <c>6 (<xref target="v6-pubkeys"/>)</c>
      <c>6 (<xref target="version-four-and-six-sig"/>)</c>
      <c>6 <xref target="one-pass-sig"/></c>
      <c>Yes</c>
</texttable>

<t>Note, however, that a version mismatch between these packets does not invalidate the packet sequence as a whole, it merely invalidates the signature, as a signature with an unknown version <bcp14>SHOULD</bcp14> be discarded (see <xref target="malformed-signatures"/>).</t>

</section>
</section>
</section>
<section anchor="detached-signatures"><name>Detached Signatures</name>

<t>Some OpenPGP applications use so-called "detached signatures".
For example, a program bundle may contain a file, and with it a second file that is a detached signature of the first file.
These detached signatures are simply one or more Signature packets stored separately from the data for which they are a signature.</t>

<t>In addition, a marker packet (<xref target="marker-packet"/>) and a padding packet (<xref target="padding-packet"/>) can appear anywhere in the sequence.</t>

</section>
</section>
<section anchor="elliptic-curve-cryptography"><name>Elliptic Curve Cryptography</name>

<t>This section describes algorithms and parameters used with Elliptic Curve Cryptography (ECC) keys.
A thorough introduction to ECC can be found in <xref target="KOBLITZ"/>.</t>

<t>None of the ECC methods described in this document are allowed with deprecated v3 keys.
Refer to <xref target="FIPS186"/>, B.4.1, for the method to generate a uniformly distributed ECC private key.</t>

<section anchor="ecc-curves"><name>ECC Curves</name>

<t>This document references three named prime field curves defined in <xref target="FIPS186"/> as "Curve P-256", "Curve P-384", and "Curve P-521"; and three named prime field curves defined in <xref target="RFC5639"/> as "brainpoolP256r1", "brainpoolP384r1", and "brainpoolP512r1".
The three <xref target="FIPS186"/> curves and the three <xref target="RFC5639"/> curves can be used with ECDSA and ECDH public key algorithms.
They are referenced using a sequence of octets, referred to as the curve OID.
<xref target="ec-curves"/> describes in detail how this sequence of octets is formed.</t>

<t>Separate algorithms are also defined for the use of X25519 and X448, defined in <xref target="RFC7748"/>; and Ed25519 and Ed448, defined in <xref target="RFC8032"/>.
Additionally, legacy OIDs are defined for "Curve25519Legacy" (for encryption using the ECDH algorithm) and "Ed25519Legacy" (for signing using the EdDSALegacy algorithm).</t>

</section>
<section anchor="ec-point-wire-formats"><name>EC Point Wire Formats</name>

<t>A point on an elliptic curve will always be represented on the wire as an MPI.
Each curve uses a specific point format for the data within the MPI itself.
Each format uses a designated prefix octet to ensure that the high octet has at least one bit set to make the MPI a constant size.</t>

<texttable title="Elliptic Curve Point Wire Formats registry" anchor="ec-point-wire-formats-registry">
      <ttcol align='right'>Name</ttcol>
      <ttcol align='left'>Wire Format</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>SEC1</c>
      <c>0x04 || x || y</c>
      <c><xref target="ec-point-sec1"/></c>
      <c>Prefixed native</c>
      <c>0x40 || native</c>
      <c><xref target="ec-point-prefixed-native"/></c>
</texttable>

<section anchor="ec-point-sec1"><name>SEC1 EC Point Wire Format</name>

<t>For a SEC1-encoded (uncompressed) point the content of the MPI is:</t>

<figure><artwork><![CDATA[
B = 04 || x || y
]]></artwork></figure>

<t>where x and y are coordinates of the point P = (x, y), and each is encoded in the big-endian format and zero-padded to the adjusted underlying field size.
The adjusted underlying field size is the underlying field size rounded up to the nearest 8-bit boundary, as noted in the "fsize" column in <xref target="ec-curves"/>.
This encoding is compatible with the definition given in <xref target="SEC1"/>.</t>

</section>
<section anchor="ec-point-prefixed-native"><name>Prefixed Native EC Point Wire Format</name>

<t>For a custom compressed point the content of the MPI is:</t>

<figure><artwork><![CDATA[
B = 40 || p
]]></artwork></figure>

<t>where p is the public key of the point encoded using the rules defined for the specified curve.
This format is used for ECDH keys based on curves expressed in Montgomery form, and for points when using EdDSA.</t>

</section>
<section anchor="notes-on-ec-point-wire-formats"><name>Notes on EC Point Wire Formats</name>

<t>Given the above definitions, the exact size of the MPI payload for an encoded point is 515 bits for both NIST P-256 and brainpoolP256r1, 771 for both NIST P-384 and brainpoolP384r1, 1059 for NIST P-521, 1027 for brainpoolP512r1, and 263 for both Curve25519Legacy and Ed25519Legacy.
For example, the length of a EdDSALegacy public key for the curve Ed25519Legacy is 263 bits: 7 bits to represent the 0x40 prefix octet and 32 octets for the native value of the public key.</t>

<t>Even though the zero point, also called the point at infinity, may occur as a result of arithmetic operations on points of an elliptic curve, it <bcp14>SHALL NOT</bcp14> appear in data structures defined in this document.</t>

<t>Each particular curve uses a designated wire format for the point found in its public key or ECDH data structure.
An implementation <bcp14>MUST NOT</bcp14> use a different wire format for a point than the wire format associated with the curve.</t>

</section>
</section>
<section anchor="ec-scalar-wire-formats"><name>EC Scalar Wire Formats</name>

<t>Some non-curve values in elliptic curve cryptography (for example, secret keys and signature components) are not points on a curve, but are also encoded on the wire in OpenPGP as an MPI.</t>

<t>Because of different patterns of deployment, some curves treat these values as opaque bit strings with the high bit set, while others are treated as actual integers, encoded in the standard OpenPGP big-endian form.
The choice of encoding is specific to the public key algorithm in use.</t>

<texttable title="Elliptic Curve Scalar Encodings registry" anchor="ec-scalar-wire-formats-registry">
      <ttcol align='left'>Type</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>integer</c>
      <c>An integer, big-endian encoded as a standard OpenPGP MPI</c>
      <c><xref target="mpi"/></c>
      <c>octet string</c>
      <c>An octet string of fixed length, that may be shorter on the wire due to leading zeros being stripped by the MPI encoding, and may need to be zero-padded before use</c>
      <c><xref target="ec-octet-string"/></c>
      <c>prefixed N octets</c>
      <c>An octet string of fixed length N, prefixed with octet 0x40 to ensure no leading zero octet</c>
      <c><xref target="ec-prefix"/></c>
</texttable>

<section anchor="ec-octet-string"><name>EC Octet String Wire Format</name>

<t>Some opaque strings of octets are represented on the wire as an MPI by simply stripping the leading zeros and counting the remaining bits.
These strings are of known, fixed length.
They are represented in this document as <spanx style="verb">MPI(N octets of X)</spanx> where <spanx style="verb">N</spanx> is the expected length in octets of the octet string.</t>

<t>For example, a five-octet opaque string (<spanx style="verb">MPI(5 octets of X)</spanx>) where <spanx style="verb">X</spanx> has the value <spanx style="verb">00 02 EE 19 00</spanx> would be represented on the wire as an MPI like so: <spanx style="verb">00 1A 02 EE 19 00</spanx>.</t>

<t>To encode <spanx style="verb">X</spanx> to the wire format, we set the MPI's two-octet bit counter to the value of the highest set bit (bit 26, or 0x001A), and do not transfer the leading all-zero octet to the wire.</t>

<t>To reverse the process, an implementation that knows this value has an expected length of 5 octets can take the following steps:</t>

<t><list style="symbols">
  <t>Ensure that the MPI's two-octet bitcount is less than or equal to 40 (5 octets of 8 bits)</t>
  <t>Allocate 5 octets, setting all to zero initially</t>
  <t>Copy the MPI data octets (without the two count octets) into the lower octets of the allocated space</t>
</list></t>

</section>
<section anchor="ec-prefix"><name>Elliptic Curve Prefixed Octet String Wire Format</name>

<t>Another way to ensure that a fixed-length bytestring is encoded simply to the wire while remaining in MPI format is to prefix the bytestring with a dedicated non-zero octet.
This specification uses 0x40 as the prefix octet.
This is represented in this standard as <spanx style="verb">MPI(prefixed N octets of X)</spanx>, where <spanx style="verb">N</spanx> is the known bytestring length.</t>

<t>For example, a five-octet opaque string using <spanx style="verb">MPI(prefixed 5 octets of X)</spanx> where <spanx style="verb">X</spanx> has the value <spanx style="verb">00 02 EE 19 00</spanx> would be written to the wire form as: <spanx style="verb">00 2F 40 00 02 EE 19 00</spanx>.</t>

<t>To encode the string, we prefix it with the octet 0x40 (whose 7th bit is set), then set the MPI's two-octet bit counter to 47 (0x002F, 7 bits for the prefix octet and 40 bits for the string).</t>

<t>To decode the string from the wire, an implementation that knows that the variable is formed in this way can:</t>

<t><list style="symbols">
  <t>Ensure that the first three octets of the MPI (the two bit-count octets plus the prefix octet)  are <spanx style="verb">00 2F 40</spanx>, and</t>
  <t>Use the remainder of the MPI directly off the wire.</t>
</list></t>

<t>Note that this is a similar approach to that used in the EC point encodings found in <xref target="ec-point-prefixed-native"/>.</t>

</section>
</section>
<section anchor="key-derivation-function"><name>Key Derivation Function</name>

<t>A key derivation function (KDF) is necessary to implement EC encryption.
The Concatenation Key Derivation Function (Approved Alternative 1) <xref target="SP800-56A"/> with the KDF hash function that is SHA2-256 <xref target="FIPS180"/> or stronger is <bcp14>REQUIRED</bcp14>.</t>

<t>For convenience, the synopsis of the encoding method is given below with significant simplifications attributable to the restricted choice of hash functions in this document.
However, <xref target="SP800-56A"/> is the normative source of the definition.</t>

<figure><artwork><![CDATA[
//   Implements KDF( X, oBits, Param );
//   Input: point X = (x,y)
//   oBits - the desired size of output
//   hBits - the size of output of hash function Hash
//   Param - octets representing the parameters
//   Assumes that oBits <= hBits
// Convert the point X to the octet string:
//   ZB' = 04 || x || y
// and extract the x portion from ZB'
ZB = x;
MB = Hash ( 00 || 00 || 00 || 01 || ZB || Param );
return oBits leftmost bits of MB.
]]></artwork></figure>

<t>Note that ZB in the KDF description above is the compact representation of X as defined in <xref section="4.2" sectionFormat="of" target="RFC6090"/>.</t>

</section>
<section anchor="ecdh"><name>EC DH Algorithm (ECDH)</name>

<t>The method is a combination of an ECC Diffie-Hellman method to establish a shared secret, a key derivation method to process the shared secret into a derived key, and a key wrapping method that uses the derived key to protect a session key used to encrypt a message.</t>

<t>The One-Pass Diffie-Hellman method C(1, 1, ECC CDH) <xref target="SP800-56A"/> <bcp14>MUST</bcp14> be implemented with the following restrictions: the ECC CDH primitive employed by this method is modified to always assume the cofactor is 1, the KDF specified in <xref target="key-derivation-function"/> is used, and the KDF parameters specified below are used.</t>

<t>The KDF parameters are encoded as a concatenation of the following 5 variable-length and fixed-length fields, which are compatible with the definition of the OtherInfo bitstring <xref target="SP800-56A"/>:</t>

<t><list style="symbols">
  <t>A variable-length field containing a curve OID, which is formatted as follows:  <list style="symbols">
      <t>A one-octet size of the following field,</t>
      <t>The octets representing a curve OID defined in <xref target="ec-curves"/>;</t>
    </list></t>
  <t>A one-octet public key algorithm ID defined in <xref target="pubkey-algos"/>;</t>
  <t>A variable-length field containing KDF parameters, which are identical to the corresponding field in the ECDH public key, and are formatted as follows:  <list style="symbols">
      <t>A one-octet size of the following fields; values 0 and 0xFF are reserved for future extensions,</t>
      <t>A one-octet value 0x01, reserved for future extensions,</t>
      <t>A one-octet hash function ID used with the KDF,</t>
      <t>A one-octet algorithm ID for the symmetric algorithm used to wrap the symmetric key for message encryption; see <xref target="ecdh"/> for details;</t>
    </list></t>
  <t>20 octets representing the UTF-8 encoding of the string <spanx style="verb">Anonymous Sender    </spanx>, which is the octet sequence 41 6E 6F 6E 79 6D 6F 75 73 20 53 65 6E 64 65 72 20 20 20 20;</t>
  <t>A variable-length field containing the fingerprint of the recipient encryption subkey identifying the key material that is needed for decryption.
For version 4 keys, this field is 20 octets.
For version 6 keys, this field is 32 octets.</t>
</list></t>

<t>The size in octets of the KDF parameters sequence, defined above, for encrypting to a v4 key is either 54 for curve NIST P-256, 51 for curves NIST P-384 and NIST P-521, 55 for curves brainpoolP256r1, brainpoolP384r1 and brainpoolP512r1, or 56 for Curve25519Legacy.
For encrypting to a v6 key, the size of the sequence is either 66 for curve NIST P-256, 63 for curves NIST P-384 and NIST P-521, or 67 for curves brainpoolP256r1, brainpoolP384r1 and brainpoolP512r1.</t>

<t>The key wrapping method is described in <xref target="RFC3394"/>.
The KDF produces a symmetric key that is used as a key-encryption key (KEK) as specified in <xref target="RFC3394"/>.
Refer to <xref target="ecdh-parameters"/> for the details regarding the choice of the KEK algorithm, which <bcp14>SHOULD</bcp14> be one of the three AES algorithms.
Key wrapping and unwrapping is performed with the default initial value of <xref target="RFC3394"/>.</t>

<t>To produce the input to the key wrapping method, first concatenate the following values:</t>

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

<t>Then, the above values are padded using the method described in <xref target="RFC2898"/> to an 8-octet granularity.</t>

<t>For example, in a v3 Public-Key Encrypted Session Key packet, an AES-256 session key is encoded as follows, forming a 40 octet sequence:</t>

<figure><artwork><![CDATA[
09 k0 k1 ... k31 s0 s1 05 05 05 05 05
]]></artwork></figure>

<t>The octets k0 to k31 above denote the session key, and the octets s0 and s1 denote the checksum of the session key octets.
This encoding allows the sender to obfuscate the size of the symmetric encryption key used to encrypt the data.
For example, assuming that an AES algorithm is used for the session key, the sender <bcp14>MAY</bcp14> use 21, 13, and 5 octets of padding for AES-128, AES-192, and AES-256, respectively, to provide the same number of octets, 40 total, as an input to the key wrapping method.</t>

<t>In a v6 Public-Key Encrypted Session Key packet, the symmetric algorithm is not included, as described in <xref target="pkesk"/>.
For example, an AES-256 session key would be composed as follows:</t>

<figure><artwork><![CDATA[
k0 k1 ... k31 s0 s1 06 06 06 06 06 06
]]></artwork></figure>

<t>The octets k0 to k31 above again denote the session key, and the octets s0 and s1 denote the checksum.
In this case, assuming that an AES algorithm is used for the session key, the sender <bcp14>MAY</bcp14> use 22, 14, and 6 octets of padding for AES-128, AES-192, and AES-256, respectively, to provide the same number of octets, 40 total, as an input to the key wrapping method.</t>

<t>The output of the method consists of two fields.
The first field is the MPI containing the ephemeral key used to establish the shared secret.
The second field is composed of the following two subfields:</t>

<t><list style="symbols">
  <t>One octet encoding the size in octets of the result of the key wrapping method; the value 255 is reserved for future extensions;</t>
  <t>Up to 254 octets representing the result of the key wrapping method, applied to the 8-octet padded session key, as described above.</t>
</list></t>

<t>Note that for session key sizes 128, 192, and 256 bits, the size of the result of the key wrapping method is, respectively, 32, 40, and 48 octets, unless size obfuscation is used.</t>

<t>For convenience, the synopsis of the encoding method is given below; however, this section, <xref target="SP800-56A"/>, and <xref target="RFC3394"/> are the normative sources of the definition.</t>

<t><list style="symbols">
  <t>Obtain the authenticated recipient public key R</t>
  <t>Generate an ephemeral, single-use key pair {v, V=vG}</t>
  <t>Compute the shared point S = vR;</t>
  <t>m = symm_alg_ID || session key || checksum || pkcs5_padding;</t>
  <t>curve_OID_len = (octet)len(curve_OID);</t>
  <t>Param = curve_OID_len || curve_OID || public_key_alg_ID || 03 || 01 || KDF_hash_ID || KEK_alg_ID for AESKeyWrap || <spanx style="verb">Anonymous Sender    </spanx> || recipient_fingerprint;</t>
  <t>Z_len = the key size for the KEK_alg_ID used with AESKeyWrap</t>
  <t>Compute Z = KDF( S, Z_len, Param );</t>
  <t>Compute C = AESKeyWrap( Z, m ) as per <xref target="RFC3394"/></t>
  <t>Wipe the memory that contained S, v, and Z to avoid leaking ephemeral secrets</t>
  <t>VB = convert point V to the octet string</t>
  <t>Output (MPI(VB) || len(C) || C).</t>
</list></t>

<t>The decryption is the inverse of the method given.
Note that the recipient with key pair (r,R) obtains the shared secret by calculating:</t>

<figure><artwork><![CDATA[
S = rV = rvG
]]></artwork></figure>

<section anchor="ecdh-parameters"><name>ECDH Parameters</name>

<t>ECDH keys have a hash algorithm parameter for key derivation and a symmetric algorithm for key encapsulation.</t>

<t>For v6 keys, the following algorithms <bcp14>MUST</bcp14> be used depending on the curve.
An implementation <bcp14>MUST NOT</bcp14> generate a v6 ECDH key over any listed curve that uses different KDF or KEK parameters.
An implementation <bcp14>MUST NOT</bcp14> encrypt any message to a v6 ECDH key over a listed curve that announces a different KDF or KEK parameter.</t>

<t>For v4 keys, the following algorithms <bcp14>SHOULD</bcp14> be used depending on the curve.
An implementation <bcp14>SHOULD</bcp14> only use an AES algorithm as a KEK algorithm.</t>

<texttable title="ECDH KDF and KEK Parameters registry" anchor="ecdh-kdf-kek-parameters-registry">
      <ttcol align='left'>Curve</ttcol>
      <ttcol align='left'>Hash algorithm</ttcol>
      <ttcol align='left'>Symmetric algorithm</ttcol>
      <c>NIST P-256</c>
      <c>SHA2-256</c>
      <c>AES-128</c>
      <c>NIST P-384</c>
      <c>SHA2-384</c>
      <c>AES-192</c>
      <c>NIST P-521</c>
      <c>SHA2-512</c>
      <c>AES-256</c>
      <c>brainpoolP256r1</c>
      <c>SHA2-256</c>
      <c>AES-128</c>
      <c>brainpoolP384r1</c>
      <c>SHA2-384</c>
      <c>AES-192</c>
      <c>brainpoolP512r1</c>
      <c>SHA2-512</c>
      <c>AES-256</c>
      <c>Curve25519Legacy</c>
      <c>SHA2-256</c>
      <c>AES-128</c>
</texttable>

</section>
</section>
</section>
<section anchor="notes-on-algorithms"><name>Notes on Algorithms</name>

<section anchor="pkcs-encoding"><name>PKCS#1 Encoding in OpenPGP</name>

<t>This standard makes use of the PKCS#1 functions EME-PKCS1-v1_5 and EMSA-PKCS1-v1_5.
However, the calling conventions of these functions has changed in the past.
To avoid potential confusion and interoperability problems, we are including local copies in this document, adapted from those in PKCS#1 v2.1 <xref target="RFC8017"/>.
<xref target="RFC8017"/> should be treated as the ultimate authority on PKCS#1 for OpenPGP.
Nonetheless, we believe that there is value in having a self-contained document that avoids problems in the future with needed changes in the conventions.</t>

<section anchor="eme-pkcs1-v1-5-encode"><name>EME-PKCS1-v1_5-ENCODE</name>

<t>Input:</t>

<dl>
  <dt>k =</dt>
  <dd>
    <t>the length in octets of the key modulus.</t>
  </dd>
  <dt>M =</dt>
  <dd>
    <t>message to be encoded, an octet string of length mLen, where mLen &lt;= k - 11.</t>
  </dd>
</dl>

<t>Output:</t>

<dl>
  <dt>EM =</dt>
  <dd>
    <t>encoded message, an octet string of length k.</t>
  </dd>
</dl>

<t>Error: "message too long".</t>

<t><list style="numbers">
  <t>Length checking: If mLen &gt; k - 11, output "message too long" and stop.</t>
  <t>Generate an octet string PS of length k - mLen - 3 consisting of pseudo-randomly generated nonzero octets.
The length of PS will be at least eight octets.</t>
  <t>Concatenate PS, the message M, and other padding to form an encoded message EM of length k octets as  <vspace blankLines='1'/>
    <figure><artwork><![CDATA[
EM = 0x00 || 0x02 || PS || 0x00 || M.
]]></artwork></figure>
  </t>
  <t>Output EM.</t>
</list></t>

</section>
<section anchor="eme-pkcs1-v1-5-decode"><name>EME-PKCS1-v1_5-DECODE</name>

<t>Input:</t>

<dl>
  <dt>EM =</dt>
  <dd>
    <t>encoded message, an octet string</t>
  </dd>
</dl>

<t>Output:</t>

<dl>
  <dt>M =</dt>
  <dd>
    <t>message, an octet string.</t>
  </dd>
</dl>

<t>Error: "decryption error".</t>

<t>To decode an EME-PKCS1_v1_5 message, separate the encoded message EM into an octet string PS consisting of nonzero octets and a message M as follows</t>

<figure><artwork><![CDATA[
  EM = 0x00 || 0x02 || PS || 0x00 || M.
]]></artwork></figure>

<t>If the first octet of EM does not have hexadecimal value 0x00, if the second octet of EM does not have hexadecimal value 0x02, if there is no octet with hexadecimal value 0x00 to separate PS from M, or if the length of PS is less than 8 octets, output "decryption error" and stop.
See also <xref target="pkcs1-errors"/> regarding differences in reporting between a decryption error and a padding error.</t>

</section>
<section anchor="emsa-pkcs1-v1-5"><name>EMSA-PKCS1-v1_5</name>

<t>This encoding method is deterministic and only has an encoding operation.</t>

<t>Option:</t>

<dl>
  <dt>Hash -</dt>
  <dd>
    <t>a hash function in which hLen denotes the length in octets of the hash function output.</t>
  </dd>
</dl>

<t>Input:</t>

<dl>
  <dt>M =</dt>
  <dd>
    <t>message to be encoded.</t>
  </dd>
  <dt>emLen =</dt>
  <dd>
    <t>intended length in octets of the encoded message, at least tLen + 11, where tLen is the octet length of the DER encoding T of a certain value computed during the encoding operation.</t>
  </dd>
</dl>

<t>Output:</t>

<dl>
  <dt>EM =</dt>
  <dd>
    <t>encoded message, an octet string of length emLen.</t>
  </dd>
</dl>

<t>Errors: "message too long"; "intended encoded message length too short".</t>

<t>Steps:</t>

<t><list style="numbers">
  <t>Apply the hash function to the message M to produce a hash value H:  <vspace blankLines='1'/>
H = Hash(M).  <vspace blankLines='1'/>
If the hash function outputs "message too long," output "message too long" and stop.</t>
  <t>Using the list in <xref target="hash-algos"/>, produce an ASN.1 DER value for the hash function used.
Let T be the full hash prefix from the list, and let tLen be the length in octets of T.</t>
  <t>If emLen &lt; tLen + 11, output "intended encoded message length too short" and stop.</t>
  <t>Generate an octet string PS consisting of emLen - tLen - 3 octets with hexadecimal value 0xFF.
The length of PS will be at least 8 octets.</t>
  <t>Concatenate PS, the hash prefix T, and other padding to form the encoded message EM as  <vspace blankLines='1'/>
    <figure><artwork><![CDATA[
EM = 0x00 || 0x01 || PS || 0x00 || T.
]]></artwork></figure>
  </t>
  <t>Output EM.</t>
</list></t>

</section>
</section>
<section anchor="symmetric-algorithm-preferences"><name>Symmetric Algorithm Preferences</name>

<t>The symmetric algorithm preference is an ordered list of algorithms that the keyholder accepts.
Since it is found on a self-signature, it is possible that a keyholder may have multiple, different preferences.
For example, Alice may have AES-128 only specified for "alice@work.com" but Camellia-256, Twofish, and AES-128 specified for "alice@home.org".
Note that it is also possible for preferences to be in a subkey's binding signature.</t>

<t>Since AES-128 is the <bcp14>MUST</bcp14>-implement algorithm, if it is not explicitly in the list, it is tacitly at the end.
However, it is good form to place it there explicitly.
Note also that if an implementation does not implement the preference, then it is implicitly an AES-128-only implementation.
Note further that implementations conforming to previous versions of this standard <xref target="RFC4880"/> have TripleDES as its only <bcp14>MUST</bcp14>-implement algorithm.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> use a symmetric algorithm that is not in the recipient's preference list.
When encrypting to more than one recipient, the implementation finds a suitable algorithm by taking the intersection of the preferences of the recipients.
Note that the <bcp14>MUST</bcp14>-implement algorithm, AES-128, ensures that the intersection is non-empty.
The implementation may use any mechanism to pick an algorithm in the intersection.</t>

<t>If an implementation can decrypt a message that a keyholder doesn't have in their preferences, the implementation <bcp14>SHOULD</bcp14> decrypt the message anyway, but <bcp14>MUST</bcp14> warn the keyholder that the protocol has been violated.
For example, suppose that Alice, above, has an implementation that implements all algorithms in this specification.
Nonetheless, she prefers subsets for work or home.
If she is sent a message encrypted with IDEA, which is not in her preferences, the implementation warns her that someone sent her an IDEA-encrypted message, but it would ideally decrypt it anyway.</t>

<section anchor="plaintext"><name>Plaintext</name>

<t>Algorithm 0, "plaintext", may only be used to denote secret keys that are stored in the clear.
An implementation <bcp14>MUST NOT</bcp14> use algorithm 0 as the indicated symmetric cipher for an encrypted data packet (<xref target="sed"/> or <xref target="seipd"/>); it can use a Literal Data packet (<xref target="lit"/>) to encode unencrypted literal data.</t>

</section>
</section>
<section anchor="other-algorithm-preferences"><name>Other Algorithm Preferences</name>

<t>Other algorithm preferences work similarly to the symmetric algorithm preference, in that they specify which algorithms the keyholder accepts.
There are two interesting cases that other comments need to be made about, though, the compression preferences and the hash preferences.</t>

<section anchor="compression-preferences"><name>Compression Preferences</name>

<t>Like the algorithm preferences, an implementation <bcp14>MUST NOT</bcp14> use an algorithm that is not in the preference vector.
If Uncompressed (0) is not explicitly in the list, it is tacitly at the end.
That is, uncompressed messages may always be sent.</t>

<t>Note that earlier implementations may assume that the absence of compression preferences means that [ZIP(1), Uncompressed(0)] are preferred, and default to ZIP compression.
Therefore, an implementation that prefers uncompressed data <bcp14>SHOULD</bcp14> explicitly state this in the preferred compression algorithms.</t>

<section anchor="uncompressed"><name>Uncompressed</name>

<t>Algorithm 0, "uncompressed", may only be used to denote a preference for uncompressed data.
An implementation <bcp14>MUST NOT</bcp14> use algorithm 0 as the indicated compression algorithm in a Compressed Data packet (<xref target="compressed-data"/>); it can use a Literal Data packet (<xref target="lit"/>) to encode uncompressed literal data.</t>

</section>
</section>
<section anchor="hash-algorithm-preferences"><name>Hash Algorithm Preferences</name>

<t>Typically, the choice of a hash algorithm is something the signer does, rather than the verifier, because a signer rarely knows who is going to be verifying the signature.
This preference, though, allows a protocol based upon digital signatures ease in negotiation.</t>

<t>Thus, if Alice is authenticating herself to Bob with a signature, it makes sense for her to use a hash algorithm that Bob's implementation uses.
This preference allows Bob to state in his key which algorithms Alice may use.</t>

<t>Since SHA2-256 is the <bcp14>MUST</bcp14>-implement hash algorithm, if it is not explicitly in the list, it is tacitly at the end.
However, it is good form to place it there explicitly.</t>

</section>
</section>
<section anchor="rsa-notes"><name>RSA</name>

<t>The PKCS1-v1_5 padding scheme, used by the RSA algorithms defined in this document, is no longer recommended, and its use is deprecated by <xref target="SP800-131A"/>.
Therefore, an implementation <bcp14>SHOULD NOT</bcp14> generate RSA keys.</t>

<t>There are algorithm types for RSA Sign-Only, and RSA Encrypt-Only keys.
These types are deprecated.
The "key flags" subpacket in a signature is a much better way to express the same idea, and generalizes it to all algorithms.
An implementation <bcp14>MUST NOT</bcp14> create such a key, but <bcp14>MAY</bcp14> interpret it.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> generate RSA keys of size less than 3072 bits.
An implementation <bcp14>SHOULD NOT</bcp14> encrypt, sign or verify using RSA keys of size less than 3072 bits.
An implementation <bcp14>MUST NOT</bcp14> encrypt, sign or verify using RSA keys of size less than 2048 bits.
An implementation that decrypts a message using an RSA secret key of size less than 3072 bits <bcp14>SHOULD</bcp14> generate a deprecation warning that the key is too weak for modern use.</t>

</section>
<section anchor="dsa-notes"><name>DSA</name>

<t>DSA is no longer recommended.
It has also been deprecated in <xref target="FIPS186"/>.
Therefore, an implementation <bcp14>MUST NOT</bcp14> generate DSA keys.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> sign or verify using DSA keys.</t>

</section>
<section anchor="elgamal-notes"><name>Elgamal</name>

<t>The PKCS1-v1_5 padding scheme, used by the Elgamal algorithm defined in this document, is no longer recommended, and its use is deprecated by <xref target="SP800-131A"/>.
Therefore, an implementation <bcp14>MUST NOT</bcp14> generate Elgamal keys.</t>

<t>An implementation <bcp14>MUST NOT</bcp14> encrypt using Elgamal keys.
An implementation that decrypts a message using an Elgamal secret key <bcp14>SHOULD</bcp14> generate a deprecation warning that the key is too weak for modern use.</t>

</section>
<section anchor="eddsa-notes"><name>EdDSA</name>

<t>Although the EdDSA algorithm allows arbitrary data as input, its use with OpenPGP requires that a digest of the message is used as input (pre-hashed).
See <xref target="computing-signatures"/> for details.
Truncation of the resulting digest is never applied; the resulting digest value is used verbatim as input to the EdDSA algorithm.</t>

<t>For clarity: while <xref target="RFC8032"/> describes different variants of EdDSA, OpenPGP uses the "pure" variant (PureEdDSA).
The hashing that happens with OpenPGP is done as part of the standard OpenPGP signature process, and that hash itself is fed as the input message to the PureEdDSA algorithm.</t>

<t>As specified in <xref target="RFC8032"/>, Ed448 also expects a "context string".
In OpenPGP, Ed448 is used with the empty string as a context string.</t>

</section>
<section anchor="reserved-notes"><name>Reserved Algorithm IDs</name>

<t>A number of algorithm IDs have been reserved for algorithms that would be useful to use in an OpenPGP implementation, yet there are issues that prevent an implementer from actually implementing the algorithm.
These are marked as reserved in <xref target="pubkey-algos"/>.</t>

<t>The reserved public-key algorithm X9.42 (21) does not have the necessary parameters, parameter order, or semantics defined.
The same is currently true for reserved public-key algorithms AEDH (23) and AEDSA (24).</t>

<t>Previous versions of OpenPGP permitted Elgamal <xref target="ELGAMAL"/> signatures with a public-key algorithm ID of 20.
These are no longer permitted.
An implementation <bcp14>MUST NOT</bcp14> generate such keys.
An implementation <bcp14>MUST NOT</bcp14> generate Elgamal signatures.
See <xref target="BLEICHENBACHER"/>.</t>

</section>
<section anchor="cfb-mode"><name>CFB Mode</name>

<t>The Cipher Feedback (CFB) mode used in this document is defined in Section 6.3 of <xref target="SP800-38A"/>.</t>

<t>The CFB segment size <spanx style="verb">s</spanx> is equal to the block size of the cipher (i.e., n-bit CFB mode where n is the block size is used).</t>

</section>
<section anchor="private-or-experimental-parameters"><name>Private or Experimental Parameters</name>

<t>S2K specifiers, Signature subpacket type IDs, User Attribute subpacket type IDs, image format IDs, and the various algorithm IDs described in <xref target="constants"/> all reserve the range 100 to 110 for private and experimental use.
Packet type IDs reserve the range 60 to 63 for private and experimental use.
These are intentionally managed with the PRIVATE USE method, as described in <xref target="RFC8126"/>.</t>

<t>However, implementations need to be careful with these and promote them to full IANA-managed parameters when they grow beyond the original, limited system.</t>

</section>
<section anchor="meta-considerations-for-expansion"><name>Meta-Considerations for Expansion</name>

<t>If OpenPGP is extended in a way that is not backwards-compatible, meaning that old implementations will not gracefully handle their absence of a new feature, the extension proposal can be declared in the key holder's self-signature as part of the Features signature subpacket.</t>

<t>We cannot state definitively what extensions will not be upwards-compatible, but typically new algorithms are upwards-compatible, whereas new packets are not.</t>

<t>If an extension proposal does not update the Features system, it <bcp14>SHOULD</bcp14> include an explanation of why this is unnecessary.
If the proposal contains neither an extension to the Features system nor an explanation of why such an extension is unnecessary, the proposal <bcp14>SHOULD</bcp14> be rejected.</t>

</section>
</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t><list style="symbols">
  <t>As with any technology involving cryptography, implementors should check the current literature to determine if any algorithms used here have been found to be vulnerable to an attack.
If so, implementors should consider disallowing such algorithms for new data and warn or prevent the enduser when they are trying to consume data protected by such now vulnerable algorithms.</t>
  <t>This specification uses Public-Key Cryptography technologies.
It is assumed that the private key portion of a public-private key pair is controlled and secured by the proper party or parties.</t>
  <t>The MD5 and SHA-1 hash algorithms have been found to have weaknesses, with collisions found in a number of cases.
MD5 and SHA-1 are deprecated for use in OpenPGP (See <xref target="hash-algos"/>).</t>
  <t>Many security protocol designers think that it is a bad idea to use a single key for both privacy (encryption) and integrity (signatures).
In fact, this was one of the motivating forces behind the v4 key format with separate signature and encryption keys.
Using a single key for encrypting and signing is discouraged.</t>
  <t>The DSA algorithm will work with any hash, but is sensitive to the quality of the hash algorithm.
Verifiers should be aware that even if the signer used a strong hash, an attacker could have modified the signature to use a weak one.
Only signatures using acceptably strong hash algorithms should be accepted as valid.</t>
  <t>As OpenPGP combines many different asymmetric, symmetric, and hash algorithms, each with different measures of strength, care should be taken that the weakest element of an OpenPGP message is still sufficiently strong for the purpose at hand.
While consensus about the strength of a given algorithm may evolve, NIST Special Publication 800-57 <xref target="SP800-57"/> contains recommendations current at the time of this publication about equivalent security levels of different algorithms.</t>
  <t>There is a somewhat-related potential security problem in signatures.
If an attacker can find a message that hashes to the same hash with a different algorithm, a bogus signature structure can be constructed that evaluates correctly.  <vspace blankLines='1'/>
For example, suppose Alice DSA signs message M using hash algorithm H.
Suppose that Mallet finds a message M' that has the same hash value as M with H'.
Mallet can then construct a signature block that verifies as Alice's signature of M' with H'.
However, this would also constitute a weakness in either H or H' or both.
Should this ever occur, a revision will have to be made to this document to revise the allowed hash algorithms.</t>
  <t>If you are building an authentication system, the recipient may specify a preferred signing algorithm.
However, the signer would be foolish to use a weak algorithm simply because the recipient requests it.</t>
  <t>Some of the encryption algorithms mentioned in this document have been analyzed less than others.
For example, although TWOFISH is presently considered reasonably strong, it has been analyzed much less than AES.
Other algorithms may have other concerns surrounding them.</t>
  <t>In late summer 2002, Jallad, Katz, and Schneier published an interesting attack on older versions of the OpenPGP protocol and some of its implementations <xref target="JKS02"/>.
In this attack, the attacker modifies a message and sends it to a user who then returns the erroneously decrypted message to the attacker.
The attacker is thus using the user as a decryption oracle, and can often decrypt the message.
This attack is a particular form of ciphertext malleability.
See <xref target="ciphertext-malleability"/> for information on how to defend against such an attack using more recent versions of OpenPGP.</t>
</list></t>

<section anchor="sha1cd"><name>SHA-1 Collision Detection</name>

<t>As described in <xref target="SHAMBLES"/>, the SHA-1 digest algorithm is not collision-resistant.
However, an OpenPGP implementation cannot completely discard the SHA-1 algorithm, because it is required for implementing v4 public keys.
In particular, the v4 fingerprint derivation uses SHA-1.
So as long as an OpenPGP implementation supports v4 public keys, it will need to implement SHA-1 in at least some scenarios.</t>

<t>To avoid the risk of uncertain breakage from a maliciously introduced SHA-1 collision, an OpenPGP implementation <bcp14>MAY</bcp14> attempt to detect when a hash input is likely from a known collision attack, and then either deliberately reject the hash input or modify the hash output.
This should convert an uncertain breakage (where it is unclear what the effect of a collision will be) to an explicit breakage, which is more desirable for a robust implementation.</t>

<t><xref target="STEVENS2013"/> describes a method for detecting indicators of well-known SHA-1 collision attacks.
Some example C code implementing this technique can be found at <xref target="SHA1CD"/>.</t>

</section>
<section anchor="signature-salt-rationale"><name>Advantages of Salted Signatures</name>

<t>V6 signatures include a salt that is hashed first, which size depends on the hashing algorithm.
This makes v6 OpenPGP signatures non-deterministic and protects against a broad class of attacks that depend on creating a signature over a predictable message.
By selecting a new random salt for each signature made, the signed hashes and the signatures are not predictable.</t>

<t>While the material to be signed could be attacker-controlled, hashing the salt first means that there is no attacker controlled hashed prefix.
An example of this kind of attack is described in the paper "SHA-1 Is A Shambles" <xref target="SHAMBLES"/>, which leverages a chosen prefix collision attack against SHA-1.
This means that an adversary carrying out a chosen-message attack will not be able to control the hash that is being signed, and will need to break second-preimage resistance instead of the simpler collision resistance to create two messages having the same signature.
The size of the salt is bound to the hash function to match the expected collision resistance level, and at least 16 octets.</t>

<t>In some cases, an attacker may be able to induce a signature to be made, even if they do not control the content of the message.
In some scenarios, a repeated signature over the exact same message may risk leakage of part or all of the signing key, for example see discussion of hardware faults over EdDSA and deterministic ECDSA in <xref target="PSSLR17"/>.
Choosing a new random salt for each signature ensures that no repeated signatures are produced, and mitigates this risk.</t>

</section>
<section anchor="ecc-side-channels"><name>Elliptic Curve Side Channels</name>

<t>Side channel attacks are a concern when a compliant application's use of the OpenPGP format can be modeled by a decryption or signing oracle, for example, when an application is a network service performing decryption to unauthenticated remote users.
ECC scalar multiplication operations used in ECDSA and ECDH are vulnerable to side channel attacks.
Countermeasures can often be taken at the higher protocol level, such as limiting the number of allowed failures or time-blinding of the operations associated with each network interface.
Mitigations at the scalar multiplication level seek to eliminate any measurable distinction between the ECC point addition and doubling operations.</t>

</section>
<section anchor="quick-check-oracle"><name>Risks of a Quick Check Oracle</name>

<t>In winter 2005, Serge Mister and Robert Zuccherato from Entrust released a paper describing a way that the "quick check" in v1 SEIPD and SED packets can be used as an oracle to decrypt two octets of every cipher block <xref target="MZ05"/>.
This check was intended for early detection of session key decryption errors, particularly to detect a wrong passphrase, since v4 SKESK packets do not include an integrity check.</t>

<t>There is a danger to using the quick check if timing or error information about the check can be exposed to an attacker, particularly via an automated service that allows rapidly repeated queries.</t>

<t>Disabling the quick check prevents the attack.</t>

<t>For very large encrypted data whose session key is protected by a passphrase using a version 4 SKESK, the quick check may be convenient to the user, by informing them early that they typed the wrong passphrase.
But the implementation should use the quick check with care.
The recommended approach for secure and early detection of decryption failure is to encrypt data using v2 SEIPD.
If the session key is public-key encrypted, the quick check is not useful as the public-key encryption of the session key should guarantee that it is the right session key.</t>

<t>The quick check oracle attack is a particular type of attack that exploits ciphertext malleability.
For information about other similar attacks, see <xref target="ciphertext-malleability"/>.</t>

</section>
<section anchor="pkcs1-errors"><name>Avoiding Leaks From PKCS#1 Errors</name>

<t>The PKCS#1 padding (used in RSA-encrypted and ElGamal-encrypted PKESK) has been found to be vulnerable to attacks in which a system that allows distinguishing padding errors from other decryption errors can act as a decryption and/or signing oracle that can leak the session key or allow signing arbitrary data, respectively <xref target="BLEICHENBACHER-PKCS1"/>.
The number of queries required to carry out an attack can range from thousands to millions, depending on how strict and careful an implementation is in processing the padding.</t>

<t>To make the attack more difficult, an implementation <bcp14>SHOULD</bcp14> implement strict, robust, constant time padding checks.</t>

<t>To prevent the attack, in settings where the attacker does not have access to timing information concerning message decryption, the simplest solution is to report a single error code for all variants of PKESK processing errors as well as SEIPD integrity errors (this includes also session key parsing errors, such as on invalid cipher algorithm for v3 PKESK, or session key size mismatch for v6 PKESK).
If the attacker may have access to timing information, then a constant time solution is also needed.
This requires careful design, especially for v3 PKESK, where session key size and cipher information is typically not known in advance, as it is part of the PKESK encrypted payload.</t>

</section>
<section anchor="fingerprint-usability"><name>Fingerprint Usability</name>

<t>This specification uses fingerprints in several places on the wire (e.g., <xref target="revocation-key"/>, <xref target="issuer-fingerprint-subpacket"/>, and <xref target="intended-recipient-fingerprint"/>), and in processing (e.g., in ECDH KDF <xref target="ecdh"/>).
An implementation may also use the fingerprint internally, for example as an index to a keystore.</t>

<t>Additionally, some OpenPGP users have historically used manual fingerprint comparison to verify the public key of a peer.
For a version 4 fingerprint, this has typically been done with the fingerprint represented as 40 hexadecimal digits, often broken into groups of four digits with whitespace between each group.</t>

<t>When a human is actively involved, the result of such a verification is dubious.
There is little evidence that most humans are good at precise comparison of high-entropy data, particularly when that data is represented in compact textual form like a hexadecimal fingerprint.</t>

<t>The version 6 fingerprint makes the challenge for a human verifier even worse.
At 256 bits (compared to v4's 160 bit fingerprint), a v6 fingerprint is even harder for a human to successfully compare.</t>

<t>An OpenPGP implementation should prioritize mechanical fingerprint transfer and comparison where possible, and <bcp14>SHOULD NOT</bcp14> promote manual transfer or comparison of full fingerprints by a human unless there is no other way to achieve the desired result.</t>

<t>While this subsection acknowledges existing practice for human-representable v4 fingerprints, this document does not attempt to standardize any specific human-readable form of v6 fingerprint for this discouraged use case.</t>

<t>NOTE: the topic of interoperable human-in-the-loop key verification needs more work, to be done in a separate document.</t>

</section>
<section anchor="ciphertext-malleability"><name>Avoiding Ciphertext Malleability</name>

<t>If ciphertext can be modified by an attacker but still subsequently decrypted to some new plaintext, it is considered "malleable".
A number of attacks can arise in any cryptosystem that uses malleable encryption, so <xref target="RFC4880"/> and later versions of OpenPGP offer mechanisms to defend against it.
However, OpenPGP data may have been created before these defense mechanisms were available.
Because OpenPGP implementations deal with historic stored data, they may encounter malleable ciphertexts.</t>

<t>When an OpenPGP implementation discovers that it is decrypting data that appears to be malleable, it <bcp14>MUST</bcp14> indicate a clear error message that the integrity of the message is suspect, <bcp14>SHOULD NOT</bcp14> attempt to parse nor release decrypted data to the user, and <bcp14>SHOULD</bcp14> halt with an error.
Parsing or releasing decrypted data before having confirmed its integrity can leak the decrypted data <xref target="EFAIL"/>, <xref target="MRLG15"/>.</t>

<t>In the case of AEAD encrypted data, if the authentication tag fails to verify, the implementation <bcp14>MUST NOT</bcp14> attempt to parse nor release decrypted data to the user, and <bcp14>MUST</bcp14> halt with an error.</t>

<t>An implementation that encounters malleable ciphertext <bcp14>MAY</bcp14> choose to release cleartext to the user if it is not encrypted using AEAD, and it is known to be dealing with historic archived legacy data, and the user is aware of the risks.</t>

<t>In the case of AEAD encrypted messages, if the message is truncated, i.e. the final zero-octet chunk and possibly (part of) some chunks before it are missing, the implementation <bcp14>MAY</bcp14> choose to release cleartext from fully authenticated chunks before it to the user if it is operating in a streaming fashion, but it <bcp14>MUST</bcp14> indicate a clear error message as soon as the truncation is detected.</t>

<t>Any of the following OpenPGP data elements indicate that malleable ciphertext is present:</t>

<t><list style="symbols">
  <t>All Symmetrically Encrypted Data packets (<xref target="sed"/>).</t>
  <t>Within any encrypted container, any Compressed Data packet (<xref target="compressed-data"/>) where there is a decompression failure.</t>
  <t>Any version 1 Symmetrically Encrypted Integrity Protected Data packet (<xref target="version-one-seipd"/>) where the internal Modification Detection Code does not validate.</t>
  <t>Any version 2 Symmetrically Encrypted Integrity Protected Data packet (<xref target="version-two-seipd"/>) where the authentication tag of any chunk fails, or where there is no final zero-octet chunk.</t>
  <t>Any Secret-Key packet with encrypted secret key material (<xref target="secret-key-encryption"/>) where there is an integrity failure, based on the value of the secret key protection octet:  <list style="symbols">
      <t>Value 255 (MalleableCFB) or raw cipher algorithm: where the trailing 2-octet checksum does not match.</t>
      <t>Value 254 (CFB): where the SHA1 checksum is mismatched.</t>
      <t>Value 253 (AEAD): where the AEAD authentication tag is invalid.</t>
    </list></t>
</list></t>

<t>To avoid these circumstances, an implementation that generates OpenPGP encrypted data <bcp14>SHOULD</bcp14> select the encrypted container format with the most robust protections that can be handled by the intended recipients.
In particular:</t>

<t><list style="symbols">
  <t>The SED packet is deprecated, and <bcp14>MUST NOT</bcp14> be generated.</t>
  <t>When encrypting to one or more public keys:  <list style="symbols">
      <t>If all recipient keys indicate support for version 2 of the Symmetrically Encrypted Integrity Protected Data packet in their Features subpacket (<xref target="features-subpacket"/>), or are v6 keys without a Features subpacket, or the implementation can otherwise infer that all recipients support v2 SEIPD packets, the implementation <bcp14>SHOULD</bcp14> encrypt using a v2 SEIPD packet.</t>
      <t>If one of the recipients does not support v2 SEIPD packets, then the message generator <bcp14>MAY</bcp14> use a v1 SEIPD packet instead.</t>
    </list></t>
  <t>Passphrase-protected secret key material in a v6 Secret Key or v6 Secret Subkey packet <bcp14>SHOULD</bcp14> be protected with AEAD encryption (S2K usage octet 253) unless it will be transferred to an implementation that is known to not support AEAD.
An implementation should be aware that, in scenarios where an attacker has write access to encrypted private keys, CFB-encrypted keys (S2K usage octet 254 or 255) are vulnerable to corruption attacks that can cause leakage of secret data when the secret key is used <xref target="KOPENPGP"/>, <xref target="KR02"/>.</t>
</list></t>

<t>Implementers should implement AEAD (v2 SEIPD and S2K usage octet 253) promptly and encourage its spread.</t>

<t>Users are <bcp14>RECOMMENDED</bcp14> to migrate to AEAD.</t>

</section>
<section anchor="secure-sessionkey-reuse"><name>Secure Use of the v2 SEIPD Session-Key-Reuse Feature</name>

<t>The salted key derivation of v2 SEIPD packets (<xref target="version-two-seipd"/>) allows the recipient of an encrypted message to reply to the sender and all other recipients without needing their public keys but by using the same v6 PKESK packets he received and a different random salt value.
This ensures a secure mechanism on the cryptographic level that enables the use of message encryption in cases where a sender does not have a copy of an encryption-capable certificate for one or more participants in the conversation and thus can enhance the overall security of an application.
However, care must be taken when using this mechanism not to create security vulnerabilities, such as the following.</t>

<t><list style="symbols">
  <t>Replying to only a subset of the original recipients and the original sender by use of the session-key-reuse feature would mean that the remaining recipients (including the sender) of the original message could read the encrypted reply message, too.</t>
  <t>Adding a further recipient to the reply that is encrypted using the session-key-reuse feature gives that further recipient also cryptographic access to the original message that is being replied to (and potentially to a longer history of previous messages).</t>
  <t>A modification of the list of recipients addressed in the above points needs also to be safeguarded when a message is initially composed as a reply with session-key reuse but then first stored (e.g. as a draft) and later reopened for further editing and finally sent.</t>
  <t>There is the potential threat that an attacker with network or mailbox access, who is at the same time a recipient of the original message, silently removes themselves from the message before the victim's client receives it.
The victim's client that then uses the mechanism for replying with session-key reuse would unknowingly compose an encrypted message that could be read by the attacker.
Implementations are encouraged to use the Intended Recipient Fingerprint (<xref target="intended-recipient-fingerprint"/>) subpacket when composing messages and to use it to check the consistency of the set of recipients of a message before replying to it with session-key reuse.</t>
  <t>When using the session-key-reuse feature in any higher-layer protocol, care should be taken that there is no other potentially interfering practice of session-key reuse established in that protocol.
Such interfering session-key reuse could for instance be given if an initial message is already composed by reusing the session key of an existing encrypted file the access to which may be shared among a group of users already.
Using the session-key-reuse feature to compose an encrypted reply to such a message would unknowingly give this whole group of users cryptographic access to the encrypted message.</t>
  <t>Generally, the use of the session-key-reuse feature should be under the control of the user.
Specifically, care should be taken that this feature is not silently used when the user assumes that proper public-key encryption is used.
This can be the case for instance when the public key of one of the recipients of the reply is known but has expired.
Special care should be taken to ensure that users do not get caught in continued use of the session-key reuse unknowingly but instead receive the chance to switch to proper fresh public-key encryption as soon as possible.</t>
  <t>Whenever possible, a client should prefer a fresh public key encryption over the session-key reuse.</t>
</list></t>

<t>Even though this not necessarily being a security aspect, note that initially composing an encrypted reply using the session-key-reuse feature on one client and storing it (e.g. as a draft) and later reopening the stored unfinished reply with another client that does not support the session-key-reuse feature may lead to interoperability problems.</t>

<t>Avoiding the pitfalls described above requires context-specific expertise.
An implementation should only make use of the session-key-reuse feature in any particular application layer when it can follow reasonable documentation about how to deploy the feature safely in the specific application.
At the time of this writing, there is no known documentation about safe reuse of OpenPGP session keys for any specific context. An implementer that intends to make use of this feature should publish their own proposed guidance for others to review.</t>

</section>
<section anchor="escrowed-revocations"><name>Escrowed Revocation Signatures</name>

<t>A keyholder, Alice, may wish to designate a third party to be able to revoke Alice's own key.</t>

<t>The preferred way for her to do this is to produce a specific Revocation Signature (signature type IDs 0x20, 0x28, or 0x30) and distribute it securely to her preferred revoker who can hold it in escrow.
The preferred revoker can then publish the escrowed Revocation Signature at whatever time is deemed appropriate, rather than generating a revocation signature themselves.</t>

<t>There are multiple advantages of using an escrowed Revocation Signature over the deprecated Revocation Key subpacket (<xref target="revocation-key"/>):</t>

<t><list style="symbols">
  <t>The keyholder can constrain what types of revocation the preferred revoker can issue, by only escrowing those specific signatures.</t>
  <t>There is no public/visible linkage between the keyholder and the preferred revoker.</t>
  <t>Third parties can verify the revocation without needing to find the key of the preferred revoker.</t>
  <t>The preferred revoker doesn't even need to have a public OpenPGP key if some other secure transport is possible between them and the keyholder.</t>
  <t>Implementation support for enforcing a revocation from an authorized Revocation Key subpacket is uneven and unreliable.</t>
  <t>If the fingerprint mechanism suffers a cryptanalytic flaw, the escrowed Revocation Signature is not affected.</t>
</list></t>

<t>A Revocation Signature may also be split up into shares and distributed among multiple parties, requiring some subset of those parties to collaborate before the escrowed Revocation Signature is recreated.</t>

</section>
<section anchor="CSPRNG"><name>Random Number Generation and Seeding</name>

<t>OpenPGP requires a cryptographically secure pseudorandom number generator (CSPRNG).
In most cases, the operating system provides an appropriate facility such as a <spanx style="verb">getrandom()</spanx> syscall on Linux or BSD, which should be used absent other (for example, performance) concerns.
It is <bcp14>RECOMMENDED</bcp14> to use an existing CSPRNG implementation in preference to crafting a new one.
Many adequate cryptographic libraries are already available under favorable license terms.
Should those prove unsatisfactory, <xref target="RFC4086"/> provides guidance on the generation of random values.</t>

<t>OpenPGP uses random data with three different levels of visibility:</t>

<t><list style="symbols">
  <t>In publicly-visible fields such as nonces, IVs, public padding material, or salts,</t>
  <t>In shared-secret values, such as session keys for encrypted data or padding material within an encrypted packet, and</t>
  <t>In entirely private data, such as asymmetric key generation.</t>
</list></t>

<t>With a properly functioning CSPRNG, this does not present a security problem, as it is not feasible to determine the CSPRNG state from its output.
However, with a broken CSPRNG, it may be possible for an attacker to use visible output to determine the CSPRNG internal state and thereby predict less-visible data like keying material, as documented in <xref target="CHECKOWAY"/>.</t>

<t>An implementation can provide extra security against this form of attack by using separate CSPRNGs to generate random data with different levels of visibility.</t>

</section>
<section anchor="traffic-analysis"><name>Traffic Analysis</name>

<t>When sending OpenPGP data through the network, the size of the data may leak information to an attacker.
There are circumstances where such a leak could be unacceptable from a security perspective.</t>

<t>For example, if possible cleartext messages for a given protocol are known to be either <spanx style="verb">yes</spanx> (three octets) and <spanx style="verb">no</spanx> (two octets) and the messages are sent within a Symmetrically-Encrypted Integrity Protected Data packet, the length of the encrypted message will reveal the contents of the cleartext.</t>

<t>In another example, sending an OpenPGP Transferable Public Key over an encrypted network connection might reveal the length of the certificate.
Since the length of an OpenPGP certificate varies based on the content, an external observer interested in metadata (who is trying to contact whom) may be able to guess the identity of the certificate sent, if its length is unique.</t>

<t>In both cases, an implementation can adjust the size of the compound structure by including a Padding packet (see <xref target="padding-packet"/>).</t>

</section>
<section anchor="surreptitious-forwarding"><name>Surreptitious Forwarding</name>

<t>When an attacker obtains a signature for some text, e.g. by receiving a signed message, they may be able to use that signature maliciously by sending a message purporting to come from the original sender, with the same body and signature, to a different recipient.
To prevent this, an implementation <bcp14>SHOULD</bcp14> implement the Intended Recipient Fingerprint signature subpacket (<xref target="intended-recipient-fingerprint"/>).</t>

</section>
<section anchor="subpacket-section-guidance"><name>Hashed vs. Unhashed Subpackets</name>

<t>Each OpenPGP signature can have subpackets in two different sections.
The first set of subpackets (the "hashed section") is covered by the signature itself.
The second set has no cryptographic protections, and is used for advisory material only, including locally-stored annotations about the signature.</t>

<t>For example, consider an implementation working with a specific signature that happens to know that the signature was made by a certain key, even though the signature contains no Issuer Fingerprint subpacket (<xref target="issuer-fingerprint-subpacket"/>) in the hashed section.
That implementation <bcp14>MAY</bcp14> synthesize an Issuer Fingerprint subpacket and store it in the unhashed section so that in the future it will be able to recall which key issued the signature.</t>

<t>Some subpackets are only useful when they are in the hashed section, and an implementation <bcp14>SHOULD</bcp14> ignore them when they are found with unknown provenance in the unhashed section.
For example, a Preferred AEAD Ciphersuites subpacket (<xref target="preferred-v2-seipd"/>) in a direct-key self-signature indicates the preferences of the key holder when encrypting SEIPD v2 data to the key.
An implementation that observes such a subpacket found in the unhashed section would open itself to an attack where the recipient's certificate is tampered with to encourage the use of a specific cipher or mode of operation.</t>

</section>
<section anchor="compress-bomb"><name>Malicious Compressed Data</name>

<t>It is possible to form a compression quine that produces itself upon decompression, leading to infinite regress in any implementation willing to parse arbitrary numbers of layers of compression.
This could cause resource exhaustion which itself could lead to it being terminated by the operating system.
If the operating system would create a "crash report", that report could contain confidential information.</t>

<t>An OpenPGP implementation <bcp14>SHOULD</bcp14> limit the number of layers of compression it is willing to decompress in a single message.</t>

</section>
</section>
<section anchor="implementation-considerations"><name>Implementation Considerations</name>

<t>This section is a collection of comments to help an implementer, particularly with an eye to backward compatibility.
Often the differences are small, but small differences are frequently more vexing than large differences.
Thus, this is a non-comprehensive list of potential problems and gotchas for a developer who is trying to be backward-compatible.</t>

<t><list style="symbols">
  <t>There are many ways possible for two keys to have the same key material, but different fingerprints (and thus Key IDs).
For example, since a v4 fingerprint is constructed by hashing the key creation time along with other things, two v4 keys created at different times, yet with the same key material will have different fingerprints.</t>
  <t>OpenPGP does not put limits on the size of public keys.
However, larger keys are not necessarily better keys.
Larger keys take more computation time to use, and this can quickly become impractical.
Different OpenPGP implementations may also use different upper bounds for public key sizes, and so care should be taken when choosing sizes to maintain interoperability.</t>
  <t>ASCII armor is an optional feature of OpenPGP.
The OpenPGP working group strives for a minimal set of mandatory-to-implement features, and since there could be useful implementations that only use binary object formats, this is not a "<bcp14>MUST</bcp14>" feature for an implementation.
For example, an implementation that is using OpenPGP as a mechanism for file signatures may find ASCII armor unnecessary.
OpenPGP permits an implementation to declare what features it does and does not support, but ASCII armor is not one of these.
Since most implementations allow binary and armored objects to be used indiscriminately, an implementation that does not implement ASCII armor may find itself with compatibility issues with general-purpose implementations.
Moreover, implementations of OpenPGP-MIME <xref target="RFC3156"/> already have a requirement for ASCII armor so those implementations will necessarily have support.</t>
  <t>What this document calls Legacy packet format <xref target="legacy-packet-format"/> is what older documents called the "old packet format".
It is the packet format used by implementations predating <xref target="RFC2440"/>.
Older RFCs called the current OpenPGP packet format <xref target="openpgp-packet-format"/> the "new packet format".
This is the format introduced in <xref target="RFC2440"/> and maintained through <xref target="RFC4880"/> to this document.</t>
</list></t>

<section anchor="constrained-legacy-fingerprint-storage-for-v6-keys"><name>Constrained Legacy Fingerprint Storage for v6 Keys</name>

<t>Some OpenPGP implementations have fixed length constraints for key fingerprint storage that will not fit all 32 octets of a v6 fingerprint.
For example, <xref target="OPENPGPCARD"/> reserves 20 octets for each stored fingerprint.</t>

<t>An OpenPGP implementation <bcp14>MUST NOT</bcp14> attempt to map any part of a v6 fingerprint to such a constrained field unless the relevant spec for the constrained environment has explicit guidance for storing a v6 fingerprint that distinguishes it from a v4 fingerprint.
An implementation interacting with such a constrained field <bcp14>SHOULD</bcp14> directly calculate the v6 fingerprint from public key material and associated metadata instead of relying on the constrained field.</t>

</section>
</section>
<section anchor="iana-considerations"><name>IANA Considerations</name>

<t>This document obsoletes <xref target="RFC4880"/>.
IANA is requested to update all registration information that references <xref target="RFC4880"/> to instead reference this RFC.</t>

<section anchor="rename-pretty-good-privacy-pgp-protocol-group-to-openpgp"><name>Rename "Pretty Good Privacy (PGP)" Protocol Group to "OpenPGP"</name>

<t>IANA bundles a set of registries associated with a particular protocol into a "protocol group".
This document requests IANA to update the name of the "Pretty Good Privacy (PGP)" protocol group (i.e., the group of registries described at <spanx style="verb">https://www.iana.org/assignments/pgp-parameters/</spanx>) to "OpenPGP".
If renaming the protocol group results in new URLs for the registries in this protocol group, please arrange for a permanent redirection (e.g., HTTP 301) from the existing URLs to the new URLs.
All further updates specified below are for registries within this same "OpenPGP" protocol group.</t>

</section>
<section anchor="registries-to-be-renamed-and-updated"><name>Registries to be Renamed and Updated</name>

<t>IANA is requested to rename the "PGP String-to-Key (S2K)" registry to "String-to-Key (S2K) Types" and update its content to <xref target="s2k-types-registry"/>.</t>

<t>IANA is requested to rename the "PGP Packet Types/Tags" registry to "Packet Types" and update its content to <xref target="packet-types-registry"/>.</t>

<t>IANA is requested to rename the "PGP User Attribute Types" registry to "User Attribute Subpacket Types" and update its content to <xref target="user-attr-subpacket-types-registry"/></t>

<t>IANA is requested to rename the "Image Format Subpacket Types" registry to "Image Attribute Encoding Format" and update its content to <xref target="image-attr-encoding-format-registry"/>.</t>

<t>IANA is requested to rename the "Key Server Preference Extensions" registry to "Key Server Preference Flags" and update its contents to <xref target="key-server-preference-flags-registry"/>.</t>

<t>IANA is requested to rename the "Reason for Revocation Extensions" registry to "Reason for Revocation Code" and update its contents to <xref target="reason-for-revocation-code-registry"/></t>

<t>IANA is requested to rename the "Key Flags Extensions" registry to "Key Flags" and update its contents to <xref target="key-flags-registry"/>.</t>

<t>IANA is requested to rename the "Implementation Features" registry to "Features Flags" and update its contents to <xref target="features-flags-registry"/></t>

</section>
<section anchor="updated-registries"><name>Registries to be Updated</name>

<t>IANA is requested to update the "Public Key Algorithms" registry with the contents of <xref target="pubkey-algo-registry"/>.</t>

<t>IANA is requested to update the "Symmetric Key Algorithms" registry with the contents of <xref target="symkey-algorithms-registry"/>.</t>

<t>IANA is requested to update the "Compression Algorithms" registry with the contents of <xref target="compression-algorithms-registry"/>.</t>

<t>IANA is requested to update the "Hash Algorithms" registry with the contents of <xref target="hash-algorithms-registry"/>.</t>

<t>IANA is requested to update the "Signature Subpacket Types" registry with the contents of <xref target="signature-subpacket-types-registry"/>.</t>

</section>
<section anchor="removed-registries"><name>Registries to be Removed</name>

<t>IANA is requested to remove the empty "New Packet Versions" registry.</t>

<t>A tombstone note should be added to the OpenPGP protocol group with the following content: Those wishing to use the removed "New Packet Versions" registry should instead register new versions of the relevant packets in the "Key and Signature Versions", "Key ID and Fingerprint" and "Encrypted Message Packet Versions" registries.</t>

</section>
<section anchor="added-registries"><name>Registries to be Added</name>

<t>IANA is requested to add the following registries in the OpenPGP protocol group:</t>

<t><list style="symbols">
  <t>Secret Key Encryption (S2K Usage Octet) containing <xref target="secret-key-protection-registry"/>.</t>
  <t>Signature Types containing <xref target="signature-types-registry"/></t>
  <t>Signature Notation Data Subpacket Notation Flags containing <xref target="sig-note-data-note-flags-registry"/>.</t>
  <t>Signature Notation Data Subpacket Types containing <xref target="sig-note-data-subpacket-types"/>.</t>
  <t>Key ID and Fingerprint containing <xref target="key-id-fingerprint-registry"/>.</t>
  <t>Image Attribute Version containing <xref target="image-attribute-version-registry"/>.</t>
  <t>Armor Header Line containing <xref target="armor-header-line-registry"/>.</t>
  <t>Armor Header Key containing <xref target="armor-header-key-registry"/>.</t>
  <t>ECC Curve OID and Usage containing <xref target="ecc-oid-usage-registry"/>.</t>
  <t>ECC Curve-specific Wire Formats containing <xref target="ecc-wire-formats-registry"/>.</t>
  <t>Hash Algorithm Identifiers for RSA Signatures use of EMSA-PKCS1-v1_5 Padding containing <xref target="emsa-hash-oids-registry"/>.</t>
  <t>AEAD Algorithms containing <xref target="aead-algorithms-registry"/>.</t>
  <t>Encrypted Message Packet Versions containing <xref target="encrypted-packet-versions-registry"/>.</t>
  <t>Key and Signature Versions containing <xref target="signed-packet-versions-registry"/>.</t>
  <t>Elliptic Curve Point Wire Formats containing <xref target="ec-point-wire-formats-registry"/>.</t>
  <t>Elliptic Curve Scalar Encodings containing <xref target="ec-scalar-wire-formats-registry"/>.</t>
  <t>ECDH KDF and KEK Parameters containing <xref target="ecdh-kdf-kek-parameters-registry"/>.</t>
</list></t>

</section>
<section anchor="registration-policies"><name>Registration Policies</name>

<t>IANA is requested to set all registries within the OpenPGP protocol group to use the SPECIFICATION <bcp14>REQUIRED</bcp14> registration policy, see <xref section="4.6" sectionFormat="of" target="RFC8126"/> with the exception of the registries listed in <xref target="rfc-required-registries"/>, below.
This policy means that review and approval by a designated expert is required, and that the IDs and their meanings must be documented in a permanent and readily available public specification, in sufficient detail so that interoperability between independent implementations is possible.</t>

<section anchor="rfc-required-registries"><name>Registries that are RFC REQUIRED</name>

<t>The following registries use the RFC <bcp14>REQUIRED</bcp14> registration policy, as described in <xref section="4.7" sectionFormat="of" target="RFC8126"/>:</t>

<t><list style="symbols">
  <t>Packet Types registry (<xref target="packet-types-registry"/>)</t>
  <t>Key and Signature Versions registry (<xref target="signed-packet-versions-registry"/>)</t>
  <t>Key ID and Fingerprint registry (<xref target="key-id-fingerprint-registry"/>)</t>
  <t>Encrypted Message Packet Versions registry (<xref target="encrypted-packet-versions-registry"/>)</t>
</list></t>

</section>
</section>
<section anchor="designated-experts"><name>Designated Experts</name>

<t>The designated experts will determine whether the new registrations retain the security properties that are expected by the base implementation and that these new registrations do not cause interoperability issues with existing implementations other than not producing or consuming the IDs associated with these new registrations.
Registration proposals that fail to meet these criteria could instead be proposed as new work items for the OpenPGP working group or its successor.</t>

<t>The subsections below describe specific guidance for classes of registry updates that a designated expert will consider.</t>

<t>The designated experts should also consider <xref target="meta-considerations-for-expansion"/> when reviewing proposed additions to the OpenPGP registries.</t>

<section anchor="key-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 an ID and pointing to a reference.
But some algorithm registries require some subtle additional details when a new algorithm is introduced.</t>

<section anchor="elliptic-curve-algorithms"><name>Elliptic Curve Algorithms</name>

<t>To register a new elliptic curve for use with OpenPGP, its OID needs to be registered in <xref target="ecc-oid-usage-registry"/>, its wire format needs to be documented in <xref target="ecc-wire-formats-registry"/>, and if used for ECDH, its KDF and KEK parameters must be populated in <xref target="ecdh-kdf-kek-parameters-registry"/>.
If the wire format(s) used are not already defined in <xref target="ec-point-wire-formats-registry"/> or <xref target="ec-scalar-wire-formats-registry"/>, they should be defined there as well.</t>

</section>
<section anchor="symmetric-key-algorithms"><name>Symmetric-Key Algorithms</name>

<t>When registering a new symmetric cipher with a block size of 64 or 128 bits and a key size that is a multiple of 64 bits, no new considerations are needed.</t>

<t>If the new cipher has a different block size, there needs to be additional documentation describing how to use the cipher in CFB mode.</t>

<t>If the new cipher has an unusual key size, then padding needs to be considered for X25519 and X448 keywrap, which currently needs no padding.</t>

</section>
<section anchor="hash-algorithms"><name>Hash Algorithms</name>

<t>When registering a new hash algorithm (in <xref target="hash-algorithms-registry"/>), if the algorithm is also to be used with RSA signing schemes, it must also have an entry in <xref target="emsa-hash-oids-registry"/>.</t>

</section>
</section>
</section>
</section>


  </middle>

  <back>


    <references title='Normative References'>

<reference anchor="BLOWFISH" target="http://www.counterpane.com/bfsverlag.html">
  <front>
    <title>Description of a New Variable-Length Key, 64-Bit Block Cipher (Blowfish)</title>
    <author initials="B." surname="Schneier">
      <organization></organization>
    </author>
    <date year="1993" month="December"/>
  </front>
  <seriesInfo name="Fast Software Encryption, Cambridge Security Workshop Proceedings" value="Springer-Verlag, 1994, pp191-204"/>
</reference>
<reference anchor="BZ2" target="http://www.bzip.org/">
  <front>
    <title>The Bzip2 and libbzip2 home page</title>
    <author initials="J." surname="Seward" fullname="Julian Seward, jseward@acm.org">
      <organization></organization>
    </author>
    <date year="2010"/>
  </front>
</reference>
<reference anchor="EAX" target="https://seclab.cs.ucdavis.edu/papers/eax.pdf">
  <front>
    <title>A Conventional Authenticated-Encryption Mode</title>
    <author initials="M." surname="Bellare">
      <organization></organization>
    </author>
    <author initials="P." surname="Rogaway">
      <organization></organization>
    </author>
    <author initials="D." surname="Wagner">
      <organization></organization>
    </author>
    <date year="2003" month="April"/>
  </front>
</reference>
<reference anchor="ELGAMAL" >
  <front>
    <title>A Public-Key Cryptosystem and a Signature Scheme Based on Discrete Logarithms</title>
    <author initials="T." surname="Elgamal">
      <organization></organization>
    </author>
    <date year="1985"/>
  </front>
  <seriesInfo name="IEEE Transactions on Information Theory" value="v. IT-31, n. 4, 1985, pp. 469-472"/>
</reference>
<reference anchor="IDEA" >
  <front>
    <title>On the design and security of block ciphers</title>
    <author initials="X." surname="Lai">
      <organization></organization>
    </author>
    <date year="1992"/>
  </front>
  <seriesInfo name="ETH Series in Information Processing, J.L. Massey (editor)" value="Vol. 1, Hartung-Gorre Verlag Konstanz, Technische Hochschule (Zurich)"/>
</reference>
<reference anchor="ISO10646" target="https://www.iso.org/standard/76835.html">
  <front>
    <title>Information Technology - Universal Multiple-octet coded Character Set (UCS) - Part 1: Architecture and Basic Multilingual Plane</title>
    <author >
      <organization>International Organization for Standardization</organization>
    </author>
    <date year="2020"/>
  </front>
  <seriesInfo name="ISO" value="Standard 10646-1"/>
</reference>
<reference anchor="JFIF" target="https://www.itu.int/rec/T-REC-T.871-201105-I">
  <front>
    <title>Information technology – Digital compression and coding of continuous-tone still images: JPEG File Interchange Format (JFIF)</title>
    <author >
      <organization>International Telecommunication Union</organization>
    </author>
    <date year="2011" month="May" day="14"/>
  </front>
  <seriesInfo name="ISO" value="ISO/IEC 10918-5"/>
</reference>


<reference anchor='RFC1321'>
  <front>
    <title>The MD5 Message-Digest Algorithm</title>
    <author fullname='R. Rivest' initials='R.' surname='Rivest'/>
    <date month='April' year='1992'/>
    <abstract>
      <t>This document describes the MD5 message-digest algorithm. The algorithm takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input. This memo provides information for the Internet community. It does not specify an Internet standard.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='1321'/>
  <seriesInfo name='DOI' value='10.17487/RFC1321'/>
</reference>

<reference anchor='RFC1950'>
  <front>
    <title>ZLIB Compressed Data Format Specification version 3.3</title>
    <author fullname='P. Deutsch' initials='P.' surname='Deutsch'/>
    <author fullname='J-L. Gailly' surname='J-L. Gailly'/>
    <date month='May' year='1996'/>
    <abstract>
      <t>This specification defines a lossless compressed data format. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='1950'/>
  <seriesInfo name='DOI' value='10.17487/RFC1950'/>
</reference>

<reference anchor='RFC1951'>
  <front>
    <title>DEFLATE Compressed Data Format Specification version 1.3</title>
    <author fullname='P. Deutsch' initials='P.' surname='Deutsch'/>
    <date month='May' year='1996'/>
    <abstract>
      <t>This specification defines a lossless compressed data format that compresses data using a combination of the LZ77 algorithm and Huffman coding, with efficiency comparable to the best currently available general-purpose compression methods. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='1951'/>
  <seriesInfo name='DOI' value='10.17487/RFC1951'/>
</reference>

<reference anchor='RFC2144'>
  <front>
    <title>The CAST-128 Encryption Algorithm</title>
    <author fullname='C. Adams' initials='C.' surname='Adams'/>
    <date month='May' year='1997'/>
    <abstract>
      <t>There is a need in the Internet community for an unencumbered encryption algorithm with a range of key sizes that can provide security for a variety of cryptographic applications and protocols. This document describes an existing algorithm that can be used to satisfy this requirement. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='2144'/>
  <seriesInfo name='DOI' value='10.17487/RFC2144'/>
</reference>

<reference anchor='RFC2822'>
  <front>
    <title>Internet Message Format</title>
    <author fullname='P. Resnick' initials='P.' role='editor' surname='Resnick'/>
    <date month='April' year='2001'/>
    <abstract>
      <t>This document specifies a syntax for text messages that are sent between computer users, within the framework of "electronic mail" messages. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='2822'/>
  <seriesInfo name='DOI' value='10.17487/RFC2822'/>
</reference>

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

<reference anchor='RFC3156'>
  <front>
    <title>MIME Security with OpenPGP</title>
    <author fullname='M. Elkins' initials='M.' surname='Elkins'/>
    <author fullname='D. Del Torto' initials='D.' surname='Del Torto'/>
    <author fullname='R. Levien' initials='R.' surname='Levien'/>
    <author fullname='T. Roessler' initials='T.' surname='Roessler'/>
    <date month='August' year='2001'/>
    <abstract>
      <t>This document describes how the OpenPGP Message Format can be used to provide privacy and authentication using the Multipurpose Internet Mail Extensions (MIME) security content types described in RFC 1847. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='3156'/>
  <seriesInfo name='DOI' value='10.17487/RFC3156'/>
</reference>

<reference anchor='RFC3394'>
  <front>
    <title>Advanced Encryption Standard (AES) Key Wrap Algorithm</title>
    <author fullname='J. Schaad' initials='J.' surname='Schaad'/>
    <author fullname='R. Housley' initials='R.' surname='Housley'/>
    <date month='September' year='2002'/>
  </front>
  <seriesInfo name='RFC' value='3394'/>
  <seriesInfo name='DOI' value='10.17487/RFC3394'/>
</reference>

<reference anchor='RFC3629'>
  <front>
    <title>UTF-8, a transformation format of ISO 10646</title>
    <author fullname='F. Yergeau' initials='F.' surname='Yergeau'/>
    <date month='November' year='2003'/>
    <abstract>
      <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems. The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo. UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values. This memo obsoletes and replaces RFC 2279.</t>
    </abstract>
  </front>
  <seriesInfo name='STD' value='63'/>
  <seriesInfo name='RFC' value='3629'/>
  <seriesInfo name='DOI' value='10.17487/RFC3629'/>
</reference>

<reference anchor='RFC3713'>
  <front>
    <title>A Description of the Camellia Encryption Algorithm</title>
    <author fullname='M. Matsui' initials='M.' surname='Matsui'/>
    <author fullname='J. Nakajima' initials='J.' surname='Nakajima'/>
    <author fullname='S. Moriai' initials='S.' surname='Moriai'/>
    <date month='April' year='2004'/>
    <abstract>
      <t>This document describes the Camellia encryption algorithm. Camellia is a block cipher with 128-bit block size and 128-, 192-, and 256-bit keys. The algorithm description is presented together with key scheduling part and data randomizing part. This memo provides information for the Internet community.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='3713'/>
  <seriesInfo name='DOI' value='10.17487/RFC3713'/>
</reference>

<reference anchor='RFC4086'>
  <front>
    <title>Randomness Requirements for Security</title>
    <author fullname='D. Eastlake 3rd' initials='D.' surname='Eastlake 3rd'/>
    <author fullname='J. Schiller' initials='J.' surname='Schiller'/>
    <author fullname='S. Crocker' initials='S.' surname='Crocker'/>
    <date month='June' year='2005'/>
    <abstract>
      <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
      <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name='BCP' value='106'/>
  <seriesInfo name='RFC' value='4086'/>
  <seriesInfo name='DOI' value='10.17487/RFC4086'/>
</reference>

<reference anchor='RFC4648'>
  <front>
    <title>The Base16, Base32, and Base64 Data Encodings</title>
    <author fullname='S. Josefsson' initials='S.' surname='Josefsson'/>
    <date month='October' year='2006'/>
    <abstract>
      <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='4648'/>
  <seriesInfo name='DOI' value='10.17487/RFC4648'/>
</reference>

<reference anchor='RFC6234'>
  <front>
    <title>US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF)</title>
    <author fullname='D. Eastlake 3rd' initials='D.' surname='Eastlake 3rd'/>
    <author fullname='T. Hansen' initials='T.' surname='Hansen'/>
    <date month='May' year='2011'/>
    <abstract>
      <t>Federal Information Processing Standard, FIPS</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='6234'/>
  <seriesInfo name='DOI' value='10.17487/RFC6234'/>
</reference>

<reference anchor='RFC7253'>
  <front>
    <title>The OCB Authenticated-Encryption Algorithm</title>
    <author fullname='T. Krovetz' initials='T.' surname='Krovetz'/>
    <author fullname='P. Rogaway' initials='P.' surname='Rogaway'/>
    <date month='May' year='2014'/>
    <abstract>
      <t>This document specifies OCB, a shared-key blockcipher-based encryption scheme that provides confidentiality and authenticity for plaintexts and authenticity for associated data. This document is a product of the Crypto Forum Research Group (CFRG).</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='7253'/>
  <seriesInfo name='DOI' value='10.17487/RFC7253'/>
</reference>

<reference anchor='RFC7748'>
  <front>
    <title>Elliptic Curves for Security</title>
    <author fullname='A. Langley' initials='A.' surname='Langley'/>
    <author fullname='M. Hamburg' initials='M.' surname='Hamburg'/>
    <author fullname='S. Turner' initials='S.' surname='Turner'/>
    <date month='January' year='2016'/>
    <abstract>
      <t>This memo specifies two elliptic curves over prime fields that offer a high level of practical security in cryptographic applications, including Transport Layer Security (TLS). These curves are intended to operate at the ~128-bit and ~224-bit security level, respectively, and are generated deterministically based on a list of required properties.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='7748'/>
  <seriesInfo name='DOI' value='10.17487/RFC7748'/>
</reference>

<reference anchor='RFC8017'>
  <front>
    <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
    <author fullname='K. Moriarty' initials='K.' role='editor' surname='Moriarty'/>
    <author fullname='B. Kaliski' initials='B.' surname='Kaliski'/>
    <author fullname='J. Jonsson' initials='J.' surname='Jonsson'/>
    <author fullname='A. Rusch' initials='A.' surname='Rusch'/>
    <date month='November' year='2016'/>
    <abstract>
      <t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t>
      <t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series. By publishing this RFC, change control is transferred to the IETF.</t>
      <t>This document also obsoletes RFC 3447.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='8017'/>
  <seriesInfo name='DOI' value='10.17487/RFC8017'/>
</reference>

<reference anchor='RFC8032'>
  <front>
    <title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
    <author fullname='S. Josefsson' initials='S.' surname='Josefsson'/>
    <author fullname='I. Liusvaara' initials='I.' surname='Liusvaara'/>
    <date month='January' year='2017'/>
    <abstract>
      <t>This document describes elliptic curve signature scheme Edwards-curve Digital Signature Algorithm (EdDSA). The algorithm is instantiated with recommended parameters for the edwards25519 and edwards448 curves. An example implementation and test vectors are provided.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='8032'/>
  <seriesInfo name='DOI' value='10.17487/RFC8032'/>
</reference>

<reference anchor='RFC8126'>
  <front>
    <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
    <author fullname='M. Cotton' initials='M.' surname='Cotton'/>
    <author fullname='B. Leiba' initials='B.' surname='Leiba'/>
    <author fullname='T. Narten' initials='T.' surname='Narten'/>
    <date month='June' year='2017'/>
    <abstract>
      <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
      <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
      <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
    </abstract>
  </front>
  <seriesInfo name='BCP' value='26'/>
  <seriesInfo name='RFC' value='8126'/>
  <seriesInfo name='DOI' value='10.17487/RFC8126'/>
</reference>

<reference anchor='RFC9106'>
  <front>
    <title>Argon2 Memory-Hard Function for Password Hashing and Proof-of-Work Applications</title>
    <author fullname='A. Biryukov' initials='A.' surname='Biryukov'/>
    <author fullname='D. Dinu' initials='D.' surname='Dinu'/>
    <author fullname='D. Khovratovich' initials='D.' surname='Khovratovich'/>
    <author fullname='S. Josefsson' initials='S.' surname='Josefsson'/>
    <date month='September' year='2021'/>
    <abstract>
      <t>This document describes the Argon2 memory-hard function for password hashing and proof-of-work applications. We provide an implementer-oriented description with test vectors. The purpose is to simplify adoption of Argon2 for Internet protocols. This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='9106'/>
  <seriesInfo name='DOI' value='10.17487/RFC9106'/>
</reference>


<reference anchor="RIPEMD-160" >
  <front>
    <title>Information technology - Security techniques - Hash-functions - Part 3: Dedicated hash-functions,</title>
    <author >
      <organization>International Organization for Standardization, Geneva, Switzerland</organization>
    </author>
    <date year="1998"/>
  </front>
  <seriesInfo name="ISO" value="ISO/IEC 10118-3"/>
</reference>
<reference anchor="SP800-38A" >
  <front>
    <title>Recommendation for Block Cipher Modes of Operation: Methods and Techniques</title>
    <author initials="M." surname="Dworkin">
      <organization></organization>
    </author>
    <date year="2001" month="December"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-38A"/>
</reference>
<reference anchor="SP800-38D" >
  <front>
    <title>Recommendation for Block Cipher Modes of Operation: Galois/Counter Mode (GCM) and GMAC</title>
    <author initials="M." surname="Dworkin">
      <organization></organization>
    </author>
    <date year="2007" month="November"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-38D"/>
</reference>
<reference anchor="SP800-56A" >
  <front>
    <title>Recommendation for Pair-Wise Key Establishment Schemes Using Discrete Logarithm Cryptography</title>
    <author initials="E." surname="Barker">
      <organization></organization>
    </author>
    <author initials="D." surname="Johnson">
      <organization></organization>
    </author>
    <author initials="M." surname="Smid">
      <organization></organization>
    </author>
    <date year="2007" month="March"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-56A Revision 1"/>
</reference>
<reference anchor="SP800-67" target="https://doi.org/10.6028/NIST.SP.800-67r2">
  <front>
    <title>Recommendation for the Triple Data Encryption Algorithm (TDEA) Block Cipher</title>
    <author >
      <organization>NIST</organization>
    </author>
    <date year="2017" month="November"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-67 Rev. 2"/>
  <seriesInfo name="DOI" value="10.6028/NIST.SP.800-67r2"/>
</reference>
<reference anchor="TWOFISH" target="https://www.schneier.com/wp-content/uploads/2016/02/paper-twofish-paper.pdf">
  <front>
    <title>The Twofish Encryption Algorithm</title>
    <author initials="B." surname="Schneier">
      <organization></organization>
    </author>
    <author initials="J." surname="Kelsey">
      <organization></organization>
    </author>
    <author initials="D." surname="Whiting">
      <organization></organization>
    </author>
    <author initials="D." surname="Wagner">
      <organization></organization>
    </author>
    <author initials="C." surname="Hall">
      <organization></organization>
    </author>
    <author initials="N." surname="Ferguson">
      <organization></organization>
    </author>
    <date year="1999"/>
  </front>
</reference>


<reference anchor='RFC2119'>
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author fullname='S. Bradner' initials='S.' surname='Bradner'/>
    <date month='March' year='1997'/>
    <abstract>
      <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name='BCP' value='14'/>
  <seriesInfo name='RFC' value='2119'/>
  <seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>

<reference anchor='RFC8174'>
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author fullname='B. Leiba' initials='B.' surname='Leiba'/>
    <date month='May' year='2017'/>
    <abstract>
      <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
    </abstract>
  </front>
  <seriesInfo name='BCP' value='14'/>
  <seriesInfo name='RFC' value='8174'/>
  <seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>

<reference anchor='FIPS186'>
  <front>
    <title>Digital Signature Standard (DSS)</title>
    <author fullname='Dustin Moody' initials='D.' surname='Moody'>
      <organization>National Institute of Standards and Technology</organization>
    </author>
    <date year='2023'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.186-5'/>
</reference>

<reference anchor='AES'>
  <front>
    <title>Advanced encryption standard (AES)</title>
    <author>
      <organization/>
    </author>
    <date month='November' year='2001'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.197'/>
</reference>

<reference anchor='FIPS180'>
  <front>
    <title>Secure Hash Standard</title>
    <author fullname='Quynh H. Dang' initials='Q.' surname='Dang'>
      <organization/>
    </author>
    <date month='July' year='2015'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.180-4'/>
</reference>

<reference anchor='FIPS202'>
  <front>
    <title>SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions</title>
    <author fullname='Morris J. Dworkin' initials='M.' surname='Dworkin'>
      <organization/>
    </author>
    <date month='July' year='2015'/>
  </front>
  <seriesInfo name='National Institute of Standards and Technology' value='report'/>
  <seriesInfo name='DOI' value='10.6028/nist.fips.202'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="BLEICHENBACHER" >
  <front>
    <title>Generating ElGamal Signatures Without Knowing the Secret Key</title>
    <author initials="D." surname="Bleichenbacher">
      <organization></organization>
    </author>
    <date year="1996"/>
  </front>
  <seriesInfo name="Lecture Notes in Computer Science" value="Volume 1070, pp. 10-18"/>
</reference>
<reference anchor="BLEICHENBACHER-PKCS1" target="http://archiv.infsec.ethz.ch/education/fs08/secsem/Bleichenbacher98.pdf">
  <front>
    <title>Chosen Ciphertext Attacks Against Protocols Based on the RSA Encryption Standard PKCS \#1</title>
    <author initials="D." surname="Bleichenbacher">
      <organization></organization>
    </author>
    <date year="1998"/>
  </front>
</reference>
<reference anchor="C99" target="https://www.iso.org/standard/50510.html">
  <front>
    <title>Programming languages - C: C99, correction 3:2007,  ISO/IEC 9899:1999/Cor 3:2007</title>
    <author initials="I. O. for" surname="Standardization" fullname="International Organization for Standardization">
      <organization></organization>
    </author>
    <date year="2007" month="November"/>
  </front>
</reference>
<reference anchor="EFAIL" target="https://www.usenix.org/system/files/conference/usenixsecurity18/sec18-poddebniak.pdf">
  <front>
    <title>Efail: Breaking S/MIME and OpenPGP Email Encryption using Exfiltration Channels</title>
    <author initials="D." surname="Poddebniak" fullname="Damian Poddebniak">
      <organization></organization>
    </author>
    <author initials="C." surname="Dresen" fullname="Christian Dresen">
      <organization></organization>
    </author>
    <author initials="J." surname="Müller" fullname="Jens Müller">
      <organization></organization>
    </author>
    <author initials="F." surname="Ising" fullname="Fabian Ising">
      <organization></organization>
    </author>
    <author initials="S." surname="Schinzel" fullname="Sebastian Schinzel">
      <organization></organization>
    </author>
    <author initials="S." surname="Friedberger" fullname="Simon Friedberger">
      <organization></organization>
    </author>
    <author initials="J." surname="Somorovsky" fullname="Juraj Somorovsky">
      <organization></organization>
    </author>
    <author initials="J." surname="Schwenk" fullname="Jörg Schwenk">
      <organization></organization>
    </author>
    <date year="2018"/>
  </front>
  <seriesInfo name="Proceedings of the 27th USENIX Conference on Security Symposium, August 2018, Pages 549–566" value=""/>
</reference>
<reference anchor="Errata-2199" target="https://www.rfc-editor.org/errata/eid2199">
  <front>
    <title>Errata Report 2199 - S2K hash/cipher octet correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2200" target="https://www.rfc-editor.org/errata/eid2200">
  <front>
    <title>Errata Report 2200 - No implicit use of IDEA correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2206" target="https://www.rfc-editor.org/errata/eid2206">
  <front>
    <title>Errata Report 2206 - PKESK acronym expansion</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2208" target="https://www.rfc-editor.org/errata/eid2208">
  <front>
    <title>Errata Report 2208 - Signature key owner clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2214" target="https://www.rfc-editor.org/errata/eid2214">
  <front>
    <title>Errata Report 2214 - Signature hashing clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2216" target="https://www.rfc-editor.org/errata/eid2216">
  <front>
    <title>Errata Report 2216 - Self signature applies to user ID correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2219" target="https://www.rfc-editor.org/errata/eid2219">
  <front>
    <title>Errata Report 2219 - Session key encryption storage clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2222" target="https://www.rfc-editor.org/errata/eid2222">
  <front>
    <title>Errata Report 2222 - Simple hash MUST/MAY clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2226" target="https://www.rfc-editor.org/errata/eid2226">
  <front>
    <title>Errata Report 2226 - Native line endings SHOULD clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2234" target="https://www.rfc-editor.org/errata/eid2234">
  <front>
    <title>Errata Report 2234 - Radix-64 / base64 clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2235" target="https://www.rfc-editor.org/errata/eid2235">
  <front>
    <title>Errata Report 2235 - ASCII / UTF-8 collation sequence clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2236" target="https://www.rfc-editor.org/errata/eid2236">
  <front>
    <title>Errata Report 2236 - Packet Composition is a sequence clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2238" target="https://www.rfc-editor.org/errata/eid2238">
  <front>
    <title>Errata Report 2238 - Subkey packets come after all User ID packets clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2240" target="https://www.rfc-editor.org/errata/eid2240">
  <front>
    <title>Errata Report 2240 - Subkey removal clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2242" target="https://www.rfc-editor.org/errata/eid2242">
  <front>
    <title>Errata Report 2242 - mL / emLen variable correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2243" target="https://www.rfc-editor.org/errata/eid2243">
  <front>
    <title>Errata Report 2243 - CFB mode initialization vector (IV) clarification</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2270" target="https://www.rfc-editor.org/errata/eid2270">
  <front>
    <title>Errata Report 2270 - SHA-224 octet sequence correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-2271" target="https://www.rfc-editor.org/errata/eid2271">
  <front>
    <title>Errata Report 2271 - Radix-64 correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-3298" target="https://www.rfc-editor.org/errata/eid3298">
  <front>
    <title>Errata Report 3298 - Key revocation signatures correction</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-5491" target="https://www.rfc-editor.org/errata/eid5491">
  <front>
    <title>Errata Report 5491 - C code fix for CRC24_POLY define</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="Errata-7545" target="https://www.rfc-editor.org/errata/eid7545">
  <front>
    <title>Errata Report 7545 - Armor Header colon hex fix</title>
    <author >
      <organization></organization>
    </author>
    <date />
  </front>
  <seriesInfo name="RFC" value="4880"/>
</reference>
<reference anchor="HASTAD" >
  <front>
    <title>Solving Simultaneous Modular Equations of Low Degree</title>
    <author initials="J." surname="Hastad" fullname="Johan Hastad">
      <organization></organization>
    </author>
    <date year="1988"/>
  </front>
  <seriesInfo name="DOI" value="10.1137/0217019"/>
</reference>
<reference anchor="JKS02" target="http://www.counterpane.com/pgp-attack.html">
  <front>
    <title>Implementation of Chosen-Ciphertext Attacks against PGP and GnuPG</title>
    <author initials="K." surname="Jallad" fullname="Kahil Jallad">
      <organization></organization>
    </author>
    <author initials="J." surname="Katz" fullname="Jonathan Katz">
      <organization></organization>
    </author>
    <author initials="B." surname="Schneier" fullname="Bruce Schneier">
      <organization></organization>
    </author>
    <date year="2002"/>
  </front>
</reference>
<reference anchor="KOBLITZ" >
  <front>
    <title>A course in number theory and cryptography, Chapter VI. Elliptic Curves</title>
    <author initials="N." surname="Koblitz">
      <organization></organization>
    </author>
    <date year="1997"/>
  </front>
  <seriesInfo name="ISBN" value="0-387-96576-9"/>
</reference>
<reference anchor="KOPENPGP" target="https://www.kopenpgp.com/">
  <front>
    <title>Victory by KO: Attacking OpenPGP Using Key Overwriting</title>
    <author initials="L." surname="Bruseghini" fullname="Lara Bruseghini">
      <organization></organization>
    </author>
    <author initials="K. G." surname="Paterson" fullname="Kenneth G. Paterson">
      <organization></organization>
    </author>
    <author initials="D." surname="Huigens" fullname="Daniel Huigens">
      <organization></organization>
    </author>
    <date year="2022"/>
  </front>
  <seriesInfo name="Proceedings of the 29th ACM Conference on Computer and Communications Security, November 2022 (to appear)" value=""/>
</reference>
<reference anchor="KR02" target="https://eprint.iacr.org/2002/076">
  <front>
    <title>Attack on Private Signature Keys of the OpenPGP Format, PGP(TM) Programs and Other Applications Compatible with OpenPGP</title>
    <author initials="V." surname="Klíma" fullname="Vlastimil Klíma">
      <organization></organization>
    </author>
    <author initials="T." surname="Rosa" fullname="Tomáš Rosa">
      <organization></organization>
    </author>
    <date year="2002"/>
  </front>
  <seriesInfo name="Cryptology ePrint Archive, Report 2002/076" value=""/>
</reference>
<reference anchor="MRLG15" >
  <front>
    <title>Format Oracles on OpenPGP</title>
    <author initials="F." surname="Maury" fullname="Florian Maury">
      <organization></organization>
    </author>
    <author initials="J.-R." surname="Reinhard" fullname="Jean-René Reinhard">
      <organization></organization>
    </author>
    <author initials="O." surname="Levillain" fullname="Olivier Levillain">
      <organization></organization>
    </author>
    <author initials="H." surname="Gilbert" fullname="Henri Gilbert">
      <organization></organization>
    </author>
    <date year="2015"/>
  </front>
  <seriesInfo name="CT-RSA 2015" value="Topics in Cryptology –- CT-RSA 2015 pp 220–236"/>
  <seriesInfo name="DOI" value="10.1007/978-3-319-16715-2_12"/>
</reference>
<reference anchor="MZ05" target="http://eprint.iacr.org/2005/033">
  <front>
    <title>An Attack on CFB Mode Encryption As Used By OpenPGP</title>
    <author initials="S." surname="Mister" fullname="Serge Mister">
      <organization></organization>
    </author>
    <author initials="R." surname="Zuccherato" fullname="Robert Zuccherato">
      <organization></organization>
    </author>
    <date year="2005" month="February" day="08"/>
  </front>
  <seriesInfo name="IACR ePrint Archive" value="Report 2005/033"/>
</reference>
<reference anchor="OPENPGPCARD" target="https://gnupg.org/ftp/specs/OpenPGP-smart-card-application-3.4.1.pdf">
  <front>
    <title>Functional Specification of the OpenPGP application on ISO Smart Card Operating Systems (version 3.4.1)</title>
    <author initials="A." surname="Pietig" fullname="Achim Pietig">
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="PAX" target="https://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html">
  <front>
    <title>IEEE Standard for Information Technology--Portable Operating System Interface (POSIX(R)) Base Specifications, Issue 7: pax - portable archive interchange</title>
    <author >
      <organization>The Open Group</organization>
    </author>
    <date year="2018"/>
  </front>
  <seriesInfo name="IEEE Standard" value="1003.1-2017"/>
  <seriesInfo name="DOI" value="10.1109/IEEESTD.2018.8277153"/>
</reference>
<reference anchor="PSSLR17" target="https://eprint.iacr.org/2017/1014">
  <front>
    <title>Attacking Deterministic Signature Schemes using Fault Attacks</title>
    <author initials="D." surname="Poddebniak">
      <organization></organization>
    </author>
    <author initials="J." surname="Somorovsky">
      <organization></organization>
    </author>
    <author initials="S." surname="Schinzel">
      <organization></organization>
    </author>
    <author initials="M." surname="Lochter">
      <organization></organization>
    </author>
    <author initials="P." surname="Rösler">
      <organization></organization>
    </author>
    <date year="2017" month="October"/>
  </front>
</reference>
<reference anchor="REGEX" >
  <front>
    <title>Mastering Regular Expressions</title>
    <author initials="J." surname="Friedl" fullname="Jeffrey Friedl">
      <organization>O'Reilly</organization>
    </author>
    <date year="2002" month="August"/>
  </front>
  <seriesInfo name="ISBN" value="0-596-00289-0"/>
</reference>


<reference anchor='RFC1991'>
  <front>
    <title>PGP Message Exchange Formats</title>
    <author fullname='D. Atkins' initials='D.' surname='Atkins'/>
    <author fullname='W. Stallings' initials='W.' surname='Stallings'/>
    <author fullname='P. Zimmermann' initials='P.' surname='Zimmermann'/>
    <date month='August' year='1996'/>
    <abstract>
      <t>This document describes the format of "PGP files", i.e., messages that have been encrypted and/or signed with PGP. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='1991'/>
  <seriesInfo name='DOI' value='10.17487/RFC1991'/>
</reference>

<reference anchor='RFC2440'>
  <front>
    <title>OpenPGP Message Format</title>
    <author fullname='J. Callas' initials='J.' surname='Callas'/>
    <author fullname='L. Donnerhacke' initials='L.' surname='Donnerhacke'/>
    <author fullname='H. Finney' initials='H.' surname='Finney'/>
    <author fullname='R. Thayer' initials='R.' surname='Thayer'/>
    <date month='November' year='1998'/>
    <abstract>
      <t>This document is maintained in order to publish all necessary information needed to develop interoperable applications based on the OpenPGP format. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='2440'/>
  <seriesInfo name='DOI' value='10.17487/RFC2440'/>
</reference>

<reference anchor='RFC4880'>
  <front>
    <title>OpenPGP Message Format</title>
    <author fullname='J. Callas' initials='J.' surname='Callas'/>
    <author fullname='L. Donnerhacke' initials='L.' surname='Donnerhacke'/>
    <author fullname='H. Finney' initials='H.' surname='Finney'/>
    <author fullname='D. Shaw' initials='D.' surname='Shaw'/>
    <author fullname='R. Thayer' initials='R.' surname='Thayer'/>
    <date month='November' year='2007'/>
    <abstract>
      <t>This document is maintained in order to publish all necessary information needed to develop interoperable applications based on the OpenPGP format. It is not a step-by-step cookbook for writing an application. It describes only the format and methods needed to read, check, generate, and write conforming packets crossing any network. It does not deal with storage and implementation questions. It does, however, discuss implementation issues necessary to avoid security flaws.</t>
      <t>OpenPGP software uses a combination of strong public-key and symmetric cryptography to provide security services for electronic communications and data storage. These services include confidentiality, key management, authentication, and digital signatures. This document specifies the message formats used in OpenPGP. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='4880'/>
  <seriesInfo name='DOI' value='10.17487/RFC4880'/>
</reference>

<reference anchor='RFC5581'>
  <front>
    <title>The Camellia Cipher in OpenPGP</title>
    <author fullname='D. Shaw' initials='D.' surname='Shaw'/>
    <date month='June' year='2009'/>
    <abstract>
      <t>This document presents the necessary information to use the Camellia symmetric block cipher in the OpenPGP protocol. This memo provides information for the Internet community.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='5581'/>
  <seriesInfo name='DOI' value='10.17487/RFC5581'/>
</reference>

<reference anchor='RFC5639'>
  <front>
    <title>Elliptic Curve Cryptography (ECC) Brainpool Standard Curves and Curve Generation</title>
    <author fullname='M. Lochter' initials='M.' surname='Lochter'/>
    <author fullname='J. Merkle' initials='J.' surname='Merkle'/>
    <date month='March' year='2010'/>
    <abstract>
      <t>This memo proposes several elliptic curve domain parameters over finite prime fields for use in cryptographic applications. The domain parameters are consistent with the relevant international standards, and can be used in X.509 certificates and certificate revocation lists (CRLs), for Internet Key Exchange (IKE), Transport Layer Security (TLS), XML signatures, and all applications or protocols based on the cryptographic message syntax (CMS). This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='5639'/>
  <seriesInfo name='DOI' value='10.17487/RFC5639'/>
</reference>

<reference anchor='RFC5869'>
  <front>
    <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
    <author fullname='H. Krawczyk' initials='H.' surname='Krawczyk'/>
    <author fullname='P. Eronen' initials='P.' surname='Eronen'/>
    <date month='May' year='2010'/>
    <abstract>
      <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications. The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='5869'/>
  <seriesInfo name='DOI' value='10.17487/RFC5869'/>
</reference>

<reference anchor='RFC6090'>
  <front>
    <title>Fundamental Elliptic Curve Cryptography Algorithms</title>
    <author fullname='D. McGrew' initials='D.' surname='McGrew'/>
    <author fullname='K. Igoe' initials='K.' surname='Igoe'/>
    <author fullname='M. Salter' initials='M.' surname='Salter'/>
    <date month='February' year='2011'/>
    <abstract>
      <t>This note describes the fundamental algorithms of Elliptic Curve Cryptography (ECC) as they were defined in some seminal references from 1994 and earlier. These descriptions may be useful for implementing the fundamental algorithms without using any of the specialized methods that were developed in following years. Only elliptic curves defined over fields of characteristic greater than three are in scope; these curves are those used in Suite B. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='6090'/>
  <seriesInfo name='DOI' value='10.17487/RFC6090'/>
</reference>

<reference anchor='RFC6637'>
  <front>
    <title>Elliptic Curve Cryptography (ECC) in OpenPGP</title>
    <author fullname='A. Jivsov' initials='A.' surname='Jivsov'/>
    <date month='June' year='2012'/>
    <abstract>
      <t>This document defines an Elliptic Curve Cryptography extension to the OpenPGP public key format and specifies three Elliptic Curves that enjoy broad support by other standards, including standards published by the US National Institute of Standards and Technology. The document specifies the conventions for interoperability between compliant OpenPGP implementations that make use of this extension and these Elliptic Curves. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name='RFC' value='6637'/>
  <seriesInfo name='DOI' value='10.17487/RFC6637'/>
</reference>


<reference anchor="SEC1" target="https://www.secg.org/sec1-v2.pdf">
  <front>
    <title>Standards for Efficient Cryptography 1 (SEC 1)</title>
    <author >
      <organization>Standards for Efficient Cryptography Group</organization>
    </author>
    <date year="2009" month="May"/>
  </front>
</reference>
<reference anchor="SHA1CD" target="https://github.com/cr-marcstevens/sha1collisiondetection">
  <front>
    <title>sha1collisiondetection</title>
    <author initials="M." surname="Stevens" fullname="Marc Stevens">
      <organization></organization>
    </author>
    <author initials="D." surname="Shumow" fullname="Dan Shumow">
      <organization></organization>
    </author>
    <date year="2017"/>
  </front>
</reference>
<reference anchor="SHAMBLES" target="https://sha-mbles.github.io/">
  <front>
    <title>Sha-1 is a shambles: First chosen-prefix collision on sha-1 and application to the PGP web of trust</title>
    <author initials="G." surname="Leurent" fullname="Gaëtan Leurent">
      <organization></organization>
    </author>
    <author initials="T." surname="Peyrin" fullname="Thomas Peyrin">
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="SP800-57" target="https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-57pt1r5.pdf">
  <front>
    <title>Recommendation on Key Management: Part 1 - General</title>
    <author >
      <organization>NIST</organization>
    </author>
    <date year="2020" month="May"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-57 Part 1 Rev. 5"/>
  <seriesInfo name="DOI" value="10.6028/NIST.SP.800-57pt1r5"/>
</reference>
<reference anchor="SP800-131A" target="https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar2.pdf">
  <front>
    <title>Transitioning the Use of Cryptographic Algorithms and Key Lengths</title>
    <author initials="E." surname="Barker">
      <organization></organization>
    </author>
    <author initials="A." surname="Roginsky">
      <organization></organization>
    </author>
    <date year="2019" month="March"/>
  </front>
  <seriesInfo name="NIST Special Publication" value="800-131A Revision 2"/>
</reference>
<reference anchor="STEVENS2013" target="https://eprint.iacr.org/2013/358">
  <front>
    <title>Counter-cryptanalysis</title>
    <author initials="M." surname="Stevens" fullname="Marc Stevens">
      <organization></organization>
    </author>
    <date year="2013" month="June"/>
  </front>
</reference>
<reference anchor="UNIFIED-DIFF" target="https://www.gnu.org/software/diffutils/manual/html_node/Detailed-Unified.html">
  <front>
    <title>Detailed Description of Unified Format</title>
    <author >
      <organization>Free Software Foundation</organization>
    </author>
    <date year="2021" month="January" day="02"/>
  </front>
</reference>


<reference anchor='RFC2978'>
  <front>
    <title>IANA Charset Registration Procedures</title>
    <author fullname='N. Freed' initials='N.' surname='Freed'/>
    <author fullname='J. Postel' initials='J.' surname='Postel'/>
    <date month='October' year='2000'/>
    <abstract>
      <t>Multipurpose Internet Mail Extensions (MIME) and various other Internet protocols are capable of using many different charsets. This in turn means that the ability to label different charsets is essential. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name='BCP' value='19'/>
  <seriesInfo name='RFC' value='2978'/>
  <seriesInfo name='DOI' value='10.17487/RFC2978'/>
</reference>

<reference anchor='CHECKOWAY'>
  <front>
    <title>A Systematic Analysis of the Juniper Dual EC Incident</title>
    <author fullname='Stephen Checkoway' initials='S.' surname='Checkoway'>
      <organization>University of Illinois at Chicago, Chicago, IL, USA</organization>
    </author>
    <author fullname='Jacob Maskiewicz' initials='J.' surname='Maskiewicz'>
      <organization>UC San Diego, La Jolla, CA, USA</organization>
    </author>
    <author fullname='Christina Garman' initials='C.' surname='Garman'>
      <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
    </author>
    <author fullname='Joshua Fried' initials='J.' surname='Fried'>
      <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
    </author>
    <author fullname='Shaanan Cohney' initials='S.' surname='Cohney'>
      <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
    </author>
    <author fullname='Matthew Green' initials='M.' surname='Green'>
      <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
    </author>
    <author fullname='Nadia Heninger' initials='N.' surname='Heninger'>
      <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
    </author>
    <author fullname='Ralf-Philipp Weinmann' initials='R.' surname='Weinmann'>
      <organization>Comsecuris, Duisburg, Germany</organization>
    </author>
    <author fullname='Eric Rescorla' initials='E.' surname='Rescorla'>
      <organization>UC San Diego, La Jolla, CA, USA</organization>
    </author>
    <author fullname='Hovav Shacham' initials='H.' surname='Shacham'>
      <organization>UC San Diego, La Jolla, CA, USA</organization>
    </author>
    <date month='October' year='2016'/>
  </front>
  <seriesInfo name='Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications' value='Security'/>
  <seriesInfo name='DOI' value='10.1145/2976749.2978395'/>
</reference>




    </references>


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

<t>To help implementing this specification a 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 type: Signature
0x0001     98                    packet length
0x0002        06                 signature version 6
0x0003           01              signature type: canonical text
0x0004              1b           pubkey algorithm: Ed25519
0x0005                 0a        hash algorithm used: SHA2-512
0x0006                    00 00  hashed subpackets length: 41
0x0008  00 29
0x000a        05                 subpkt length
0x000b           82              critical subpkt: Sig Creation Time
0x000c              63 98 a3 63   (2022-12-13T16:08:03Z)
0x0010  22                       subpkt length
0x0011     21                    subpkt type: issuer fingerprint
0x0012        06                 key version
0x0013           cb 18 6c 4f 06  v6 fingerprint
0x001a  09 a6 97 e4 d5 2d fa 6c
0x0020  72 2b 0c 1f 1e 27 c1 8a
0x0028  56 70 8f 65 25 ec 27 ba
0x0030  d9 ac c9
0x0033           00 00 00 00     unhashed subpackets length: 0
0x0037                       69  left 16 bits of signed hash
0x0038  36
0x0039     20                    salt length
0x003a        76 49 5f 50 21 88  salt
0x0040  90 f7 f5 e2 ee 3c 18 22
0x0048  51 4f 70 50 0f 55 1d 86
0x0050  e5 c9 21 e4 04 e3 4a 53
0x0058  fb ac
0x005a        27 d0 6f b8 0a a8  Ed25519 signature
0x0060  fc 5b cb 16 e1 96 31 b2
0x0068  80 74 0f 9e a6 ae d5 e0
0x0070  73 ad 00 f9 41 5a 65 3c
0x0078  40 e7 7a 6a e7 7e 69 2b
0x0080  a7 1d 06 9a 10 9f a2 4c
0x0088  58 cf d8 e3 16 d0 a0 6b
0x0090  34 ad 9a cb 8e 5c 5f 52
0x0098  15 01
]]></artwork></figure>

<t>The signature is made over the following data:</t>

<figure><artwork><![CDATA[
0x0000  76 49 5f 50 21 88 90 f7
0x0008  f5 e2 ee 3c 18 22 51 4f
0x0010  70 50 0f 55 1d 86 e5 c9
0x0018  21 e4 04 e3 4a 53 fb ac
0x0020  57 68 61 74 20 77 65 20
0x0028  6e 65 65 64 20 66 72 6f
0x0030  6d 20 74 68 65 20 67 72
0x0038  6f 63 65 72 79 20 73 74
0x0040  6f 72 65 3a 0d 0a 0d 0a
0x0048  2d 20 74 6f 66 75 0d 0a
0x0050  2d 20 76 65 67 65 74 61
0x0058  62 6c 65 73 0d 0a 2d 20
0x0060  6e 6f 6f 64 6c 65 73 0d
0x0068  0a 06 01 1b 0a 00 00 00
0x0070  29 05 82 63 98 a3 63 22
0x0078  21 06 cb 18 6c 4f 06 09
0x0080  a6 97 e4 d5 2d fa 6c 72
0x0088  2b 0c 1f 1e 27 c1 8a 56
0x0090  70 8f 65 25 ec 27 ba d9
0x0098  ac c9 06 ff 00 00 00 31
]]></artwork></figure>

<t>The same data, broken out by octet and semantics, is:</t>

<figure><artwork><![CDATA[
0x0000  76 49 5f 50 21 88 90 f7  salt
0x0008  f5 e2 ee 3c 18 22 51 4f
0x0010  70 50 0f 55 1d 86 e5 c9
0x0018  21 e4 04 e3 4a 53 fb ac
      [ message begins ]
0x0020  57 68 61 74 20 77 65 20  canonicalized message
0x0028  6e 65 65 64 20 66 72 6f
0x0030  6d 20 74 68 65 20 67 72
0x0038  6f 63 65 72 79 20 73 74
0x0040  6f 72 65 3a 0d 0a 0d 0a
0x0048  2d 20 74 6f 66 75 0d 0a
0x0050  2d 20 76 65 67 65 74 61
0x0058  62 6c 65 73 0d 0a 2d 20
0x0060  6e 6f 6f 64 6c 65 73 0d
0x0068  0a
      [ trailer begins ]
0x0069     06                    sig version
0x006a        01                 sigtype: canonical text
0x006b           1b              pubkey algorithm: Ed25519
0x006c              0a           hash algorithm: SHA2-512
0x006d                 00 00 00  hashed subpackets length
0x0070  29
0x0071     05                    subpacket length
0x0072        82                 critical subpkt: Sig Creation Time
0x0073           63 98 a3 63       (2022-12-13T16:08:03Z)
0x0077                       22  subpkt length
0x0078  21                       subpkt type: issuer fingerprint
0x0079     06                    key version
0x007a        cb 18 6c 4f 06 09  v6 fingerprint
0x0080  a6 97 e4 d5 2d fa 6c 72
0x0088  2b 0c 1f 1e 27 c1 8a 56
0x0090  70 8f 65 25 ec 27 ba d9
0x0098  ac c9
0x009a        06                 sig version
0x009b           ff              sentinel octet
0x009c              00 00 00 31  trailer length
]]></artwork></figure>

<t>The calculated SHA2-512 hash digest over this data is:</t>

<figure><artwork><![CDATA[
69365bf44a97af1f0844f1f6ab83fdf6b36f26692efaa621a8aac91c4e29ea07
e894cabc6e2f20eedfce6c03b89141a2cc7cbe245e6e7a5654addbec5000b89b
]]></artwork></figure>

</section>
<section anchor="sample-inline-signed-message"><name>Sample inline-signed message</name>

<t>This is the same message and signature as in <xref target="sample-csf-message"/>, but as inline-signed message.
The hashed data is exactly the same, and all intermediate values and annotated hex dumps are also applicable.</t>

<figure><sourcecode type="text/plain" name="inline-signed-message.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

xEYGAQobIHZJX1AhiJD39eLuPBgiUU9wUA9VHYblySHkBONKU/usyxhsTwYJppfk
1S36bHIrDB8eJ8GKVnCPZSXsJ7rZrMkBy0p1AAAAAABXaGF0IHdlIG5lZWQgZnJv
bSB0aGUgZ3JvY2VyeSBzdG9yZToKCi0gdG9mdQotIHZlZ2V0YWJsZXMKLSBub29k
bGVzCsKYBgEbCgAAACkFgmOYo2MiIQbLGGxPBgmml+TVLfpscisMHx4nwYpWcI9l
JewnutmsyQAAAABpNiB2SV9QIYiQ9/Xi7jwYIlFPcFAPVR2G5ckh5ATjSlP7rCfQ
b7gKqPxbyxbhljGygHQPnqau1eBzrQD5QVplPEDnemrnfmkrpx0GmhCfokxYz9jj
FtCgazStmsuOXF9SFQE=
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
<section anchor="sample-x25519-aead-ocb-encryption-and-decryption"><name>Sample X25519-AEAD-OCB encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> for the sample cert (see <xref target="v6-cert"/>), using AES-128 with AEAD-OCB encryption.</t>

<section anchor="sample-public-key-encrypted-session-key-packet-v6"><name>Sample public-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6pkesk-x25519.hexdump"><![CDATA[
0x0000  c1 5d 06 21 06 12 c8 3f
0x0008  1e 70 6f 63 08 fe 15 1a
0x0010  41 77 43 a1 f0 33 79 0e
0x0018  93 e9 97 84 88 d1 db 37
0x0020  8d a9 93 08 85 19 87 cf
0x0028  18 d5 f1 b5 3f 81 7c ce
0x0030  5a 00 4c f3 93 cc 89 58
0x0038  bd dc 06 5f 25 f8 4a f5
0x0040  09 b1 7d d3 67 64 18 de
0x0048  a3 55 43 79 56 61 79 01
0x0050  e0 69 57 fb ca 8a 6a 47
0x0058  a5 b5 15 3e 8d 3a b7
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c1                       packet type: PKESK
0x0001     5d                    packet length
0x0002        06                 PKESK version 6
0x0003           21              length of fingerprint
0x0004              06           Key version 6
0x0005                 12 c8 3f  Key fingerprint
0x0008  1e 70 6f 63 08 fe 15 1a
0x0010  41 77 43 a1 f0 33 79 0e
0x0018  93 e9 97 84 88 d1 db 37
0x0020  8d a9 93 08 85
0x0025                 19        algorithm: X25519
0x0026                    87 cf  Ephemeral key
0x0028  18 d5 f1 b5 3f 81 7c ce
0x0030  5a 00 4c f3 93 cc 89 58
0x0038  bd dc 06 5f 25 f8 4a f5
0x0040  09 b1 7d d3 67 64
0x0046                    18     ESK length
0x0047                       de  ESK
0x0048  a3 55 43 79 56 61 79 01
0x0050  e0 69 57 fb ca 8a 6a 47
0x0058  a5 b5 15 3e 8d 3a b7
]]></artwork></figure>

</section>
<section anchor="x25519-encryptiondecryption-of-the-session-key"><name>X25519 encryption/decryption of the session key</name>

<t>Ephemeral key:</t>

<figure><artwork><![CDATA[
  87 cf 18 d5 f1 b5 3f 81 7c ce 5a 00 4c f3 93 cc
  89 58 bd dc 06 5f 25 f8 4a f5 09 b1 7d d3 67 64
]]></artwork></figure>

<t>This ephemeral key is derived from the following ephemeral secret key material, which is never placed on the wire:</t>

<figure><artwork><![CDATA[
  af 1e 43 c0 d1 23 ef e8 93 a7 d4 d3 90 f3 a7 61
  e3 fa c3 3d fc 7f 3e da a8 30 c9 01 13 52 c7 79
]]></artwork></figure>

<t>Public key from target certificate (see <xref target="v6-cert"/>):</t>

<figure><artwork><![CDATA[
  86 93 24 83 67 f9 e5 01 5d b9 22 f8 f4 80 95 dd
  a7 84 98 7f 2d 59 85 b1 2f ba d1 6c af 5e 44 35
]]></artwork></figure>

<t>The corresponding long-lived X25519 private key material (see <xref target="v6-key"/>):</t>

<figure><artwork><![CDATA[
  4d 60 0a 4f 79 4d 44 77 5c 57 a2 6e 0f ee fe d5
  58 e9 af ff d6 ad 0d 58 2d 57 fb 2b a2 dc ed b8
]]></artwork></figure>

<t>Shared point:</t>

<figure><artwork><![CDATA[
  67 e3 0e 69 cd c7 ba b2 a2 68 0d 78 ac a4 6a 2f
  8b 6e 2a e4 4d 39 8b dc 6f 92 c5 ad 4a 49 25 14
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  f6 6d ad cf f6 45 92 23 9b 25 45 39 b6 4f f6 07
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  dd 70 8f 6f a1 ed 65 11 4d 68 d2 34 3e 7c 2f 1d
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="x25519-v2seipd-aes128-ocb.hexdump"><![CDATA[
0x0000  d2 69 02 07 02 06 61 64
0x0008  16 53 5b e0 b0 71 6d 60
0x0010  e0 52 a5 6c 4c 40 7f 9e
0x0018  b3 6b 0e fa fe 9a d0 a0
0x0020  df 9b 03 3c 69 a2 1b a9
0x0028  eb d2 c0 ec 95 bf 56 9d
0x0030  25 c9 99 ee 4a 3d e1 70
0x0038  58 f4 0d fa 8b 4c 68 2b
0x0040  e3 fb bb d7 b2 7e b0 f5
0x0048  9b b5 00 5f 80 c7 c6 f4
0x0050  03 88 c3 0a d4 06 ab 05
0x0058  13 dc d6 f9 fd 73 76 56
0x0060  28 6e 11 77 d0 0f 88 8a
0x0068  db 31 c4
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet type: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              02           AEAD mode: OCB
0x0005                 06        chunk size (2**12 octets)
0x0006                    61 64  salt
0x0008  16 53 5b e0 b0 71 6d 60
0x0010  e0 52 a5 6c 4c 40 7f 9e
0x0018  b3 6b 0e fa fe 9a d0 a0
0x0020  df 9b 03 3c 69 a2
0x0026                    1b a9  chunk #0 encrypted data
0x0028  eb d2 c0 ec 95 bf 56 9d
0x0030  25 c9 99 ee 4a 3d e1 70
0x0038  58 f4 0d fa 8b 4c 68 2b
0x0040  e3 fb bb d7 b2 7e b0 f5
0x0048  9b b5 00
0x004b           5f 80 c7 c6 f4  chunk #0 AEAD tag
0x0050  03 88 c3 0a d4 06 ab 05
0x0058  13 dc d6
0x005b           f9 fd 73 76 56  final AEAD tag (#1)
0x0060  28 6e 11 77 d0 0f 88 8a
0x0068  db 31 c4
]]></artwork></figure>

</section>
<section anchor="decryption-of-data"><name>Decryption of data</name>

<t>Starting AEAD-OCB decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  45 12 f7 14 9d 86 33 41 52 7c 65 67 d5 bf fc 42
  5f af 32 50 21 2f f9
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  45 12 f7 14 9d 86 33 41 52 7c 65 67 d5 bf fc 42
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  5f af 32 50 21 2f f9
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  5f af 32 50 21 2f f9 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>Encrypted data chunk:</t>

<figure><artwork><![CDATA[
  1b a9 eb d2 c0 ec 95 bf 56 9d 25 c9 99 ee 4a 3d
  e1 70 58 f4 0d fa 8b 4c 68 2b e3 fb bb d7 b2 7e
  b0 f5 9b b5 00 5f 80 c7 c6 f4 03 88 c3 0a d4 06
  ab 05 13 dc d6
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e c5 a2 93 07 29 91 62 81 47 d7 2c 8f 86 b7
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  5f af 32 50 21 2f f9 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-x25519-aead-ocb-encrypted-packet-sequence"><name>Complete X25519-AEAD-OCB encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6pkesk-aes128-ocb.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

wV0GIQYSyD8ecG9jCP4VGkF3Q6HwM3kOk+mXhIjR2zeNqZMIhRmHzxjV8bU/gXzO
WgBM85PMiVi93AZfJfhK9QmxfdNnZBjeo1VDeVZheQHgaVf7yopqR6W1FT6NOrfS
aQIHAgZhZBZTW+CwcW1g4FKlbExAf56zaw76/prQoN+bAzxpohup69LA7JW/Vp0l
yZnuSj3hcFj0DfqLTGgr4/u717J+sPWbtQBfgMfG9AOIwwrUBqsFE9zW+f1zdlYo
bhF30A+IitsxxA==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-aead-eax-encryption-and-decryption"><name>Sample AEAD-EAX encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> with the passphrase <spanx style="verb">password</spanx>, using AES-128 with AEAD-EAX encryption.</t>

<section anchor="sample-symmetric-key-encrypted-session-key-packet-v6"><name>Sample symmetric-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6skesk-aes128-eax.hexdump"><![CDATA[
0x0000  c3 40 06 1e 07 01 0b 03
0x0008  08 a5 ae 57 9d 1f c5 d8
0x0010  2b ff 69 22 4f 91 99 93
0x0018  b3 50 6f a3 b5 9a 6a 73
0x0020  cf f8 c5 ef c5 f4 1c 57
0x0028  fb 54 e1 c2 26 81 5d 78
0x0030  28 f5 f9 2c 45 4e b6 5e
0x0038  be 00 ab 59 86 c6 8e 6e
0x0040  7c 55
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c3                       packet type: SKESK
0x0001     40                    packet length
0x0002        06                 SKESK version 6
0x0003           1e              length through end of AEAD nonce
0x0004              07           cipher: AES128
0x0005                 01        AEAD mode: EAX
0x0006                    0b     length of S2K
0x0007                       03  S2K type: iterated+salted
0x0008  08                       S2K hash: SHA2-256
0x0009     a5 ae 57 9d 1f c5 d8  S2K salt
0x0010  2b
0x0011     ff                    S2K iterations (65011712 octets)
0x0012        69 22 4f 91 99 93  AEAD nonce
0x0018  b3 50 6f a3 b5 9a 6a 73
0x0020  cf f8
0x0022        c5 ef c5 f4 1c 57  encrypted session key
0x0028  fb 54 e1 c2 26 81 5d 78
0x0030  28 f5
0x0032        f9 2c 45 4e b6 5e  AEAD tag
0x0038  be 00 ab 59 86 c6 8e 6e
0x0040  7c 55
]]></artwork></figure>

</section>
<section anchor="starting-aead-eax-decryption-of-the-session-key"><name>Starting AEAD-EAX decryption of the session key</name>

<t>The derived key is:</t>

<figure><artwork><![CDATA[
  15 49 67 e5 90 aa 1f 92 3e 1c 0a c6 4c 88 f2 3d
]]></artwork></figure>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  c3 06 07 01
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  2f ce 33 1f 39 dd 95 5c c4 1e 95 d8 70 c7 21 39
]]></artwork></figure>

<t>Authenticated Data:</t>

<figure><artwork><![CDATA[
  c3 06 07 01
]]></artwork></figure>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  69 22 4f 91 99 93 b3 50 6f a3 b5 9a 6a 73 cf f8
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  38 81 ba fe 98 54 12 45 9b 86 c3 6f 98 cb 9a 5e
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet-1"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v2seipd-aes128-eax.hexdump"><![CDATA[
0x0000  d2 69 02 07 01 06 9f f9
0x0008  0e 3b 32 19 64 f3 a4 29
0x0010  13 c8 dc c6 61 93 25 01
0x0018  52 27 ef b7 ea ea a4 9f
0x0020  04 c2 e6 74 17 5d 4a 3d
0x0028  22 6e d6 af cb 9c a9 ac
0x0030  12 2c 14 70 e1 1c 63 d4
0x0038  c0 ab 24 1c 6a 93 8a d4
0x0040  8b f9 9a 5a 99 b9 0b ba
0x0048  83 25 de 61 04 75 40 25
0x0050  8a b7 95 9a 95 ad 05 1d
0x0058  da 96 eb 15 43 1d fe f5
0x0060  f5 e2 25 5c a7 82 61 54
0x0068  6e 33 9a
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet type: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              01           AEAD mode: EAX
0x0005                 06        chunk size (2**12 octets)
0x0005                    9f f9  salt
0x0008  0e 3b 32 19 64 f3 a4 29
0x0010  13 c8 dc c6 61 93 25 01
0x0018  52 27 ef b7 ea ea a4 9f
0x0020  04 c2 e6 74 17 5d
0x0026                    4a 3d  chunk #0 encrypted data
0x0028  22 6e d6 af cb 9c a9 ac
0x0030  12 2c 14 70 e1 1c 63 d4
0x0038  c0 ab 24 1c 6a 93 8a d4
0x0040  8b f9 9a 5a 99 b9 0b ba
0x0048  83 25 de
0x004b           61 04 75 40 25  chunk #0 AEAD tag
0x0050  8a b7 95 9a 95 ad 05 1d
0x0058  da 96 eb
0x005b           15 43 1d fe f5  final AEAD tag (#1)
0x0060  f5 e2 25 5c a7 82 61 54
0x0068  6e 33 9a
]]></artwork></figure>

</section>
<section anchor="decryption-of-data-1"><name>Decryption of data</name>

<t>Starting AEAD-EAX decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 01 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  b5 04 22 ac 1c 26 be 9d dd 83 1d 5b bb 36 b6 4f
  78 b8 33 f2 e9 4a 60 c0
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  b5 04 22 ac 1c 26 be 9d dd 83 1d 5b bb 36 b6 4f
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  78 b8 33 f2 e9 4a 60 c0
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  78 b8 33 f2 e9 4a 60 c0 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 01 06
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e ae 5b f0 cd 67 05 50 03 55 81 6c b0 c8 ff
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  78 b8 33 f2 e9 4a 60 c0 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 01 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-aead-eax-encrypted-packet-sequence"><name>Complete AEAD-EAX encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6skesk-aes128-eax.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

w0AGHgcBCwMIpa5XnR/F2Cv/aSJPkZmTs1Bvo7WaanPP+MXvxfQcV/tU4cImgV14
KPX5LEVOtl6+AKtZhsaObnxV0mkCBwEGn/kOOzIZZPOkKRPI3MZhkyUBUifvt+rq
pJ8EwuZ0F11KPSJu1q/LnKmsEiwUcOEcY9TAqyQcapOK1Iv5mlqZuQu6gyXeYQR1
QCWKt5Wala0FHdqW6xVDHf719eIlXKeCYVRuM5o=
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-aead-ocb-encryption-and-decryption"><name>Sample AEAD-OCB encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> with the passphrase <spanx style="verb">password</spanx>, using AES-128 with AEAD-OCB encryption.</t>

<section anchor="sample-symmetric-key-encrypted-session-key-packet-v6-1"><name>Sample symmetric-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6skesk-aes128-ocb.hexdump"><![CDATA[
0x0000  c3 3f 06 1d 07 02 0b 03
0x0008  08 56 a2 98 d2 f5 e3 64
0x0010  53 ff cf cc 5c 11 66 4e
0x0018  db 9d b4 25 90 d7 dc 46
0x0020  b0 72 41 b6 12 c3 81 2c
0x0028  ff fb ea 00 f2 34 7b 25
0x0030  64 11 23 f8 87 ae 60 d4
0x0038  fd 61 4e 08 37 d8 19 d3
0x0040  6c
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c3                       packet type: SKESK
0x0001     3f                    packet length
0x0002        06                 SKESK version 6
0x0003           1d              length through end of AEAD nonce
0x0004              07           cipher: AES128
0x0005                 02        AEAD mode: OCB
0x0006                    0b     length of S2K
0x0007                       03  S2K type: iterated+salted
0x0008  08                       S2K hash: SHA2-256
0x0009     56 a2 98 d2 f5 e3 64  S2K salt
0x0010  53
0x0011    ff                     S2K iterations (65011712 octets)
0x0012        cf cc 5c 11 66 4e  AEAD nonce
0x0018  db 9d b4 25 90 d7 dc 46
0x0020  b0
0x0021     72 41 b6 12 c3 81 2c  encrypted session key
0x0028  ff fb ea 00 f2 34 7b 25
0x0030  64
0x0031     11 23 f8 87 ae 60 d4  AEAD tag
0x0038  fd 61 4e 08 37 d8 19 d3
0x0040  6c
]]></artwork></figure>

</section>
<section anchor="starting-aead-ocb-decryption-of-the-session-key"><name>Starting AEAD-OCB decryption of the session key</name>

<t>The derived key is:</t>

<figure><artwork><![CDATA[
  e8 0d e2 43 a3 62 d9 3b 9d c6 07 ed e9 6a 73 56
]]></artwork></figure>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  c3 06 07 02
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  38 a9 b3 45 b5 68 0b b6 1b b6 5d 73 ee c7 ec d9
]]></artwork></figure>

<t>Authenticated Data:</t>

<figure><artwork><![CDATA[
  c3 06 07 02
]]></artwork></figure>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  cf cc 5c 11 66 4e db 9d b4 25 90 d7 dc 46 b0
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  28 e7 9a b8 23 97 d3 c6 3d e2 4a c2 17 d7 b7 91
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet-2"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v2seipd-aes128-ocb.hexdump"><![CDATA[
0x0000  d2 69 02 07 02 06 20 a6
0x0008  61 f7 31 fc 9a 30 32 b5
0x0010  62 33 26 02 7e 3a 5d 8d
0x0018  b5 74 8e be ff 0b 0c 59
0x0020  10 d0 9e cd d6 41 ff 9f
0x0028  d3 85 62 75 80 35 bc 49
0x0030  75 4c e1 bf 3f ff a7 da
0x0038  d0 a3 b8 10 4f 51 33 cf
0x0040  42 a4 10 0a 83 ee f4 ca
0x0048  1b 48 01 a8 84 6b f4 2b
0x0050  cd a7 c8 ce 9d 65 e2 12
0x0058  f3 01 cb cd 98 fd ca de
0x0060  69 4a 87 7a d4 24 73 23
0x0068  f6 e8 57
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet type: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              02           AEAD mode: OCB
0x0005                 06        chunk size (2**21 octets)
0x0006                    20 a6  salt
0x0008  61 f7 31 fc 9a 30 32 b5
0x0010  62 33 26 02 7e 3a 5d 8d
0x0018  b5 74 8e be ff 0b 0c 59
0x0020  10 d0 9e cd d6 41
0x0026                    ff 9f  chunk #0 encrypted data
0x0028  d3 85 62 75 80 35 bc 49
0x0030  75 4c e1 bf 3f ff a7 da
0x0038  d0 a3 b8 10 4f 51 33 cf
0x0040  42 a4 10 0a 83 ee f4 ca
0x0048  1b 48 01
0x004b           a8 84 6b f4 2b  chunk #0 authentication tag
0x0050  cd a7 c8 ce 9d 65 e2 12
0x0058  f3 01 cb
0x005b           cd 98 fd ca de  final AEAD tag (#1)
0x0060  69 4a 87 7a d4 24 73 23
0x0068  f6 e8 57
]]></artwork></figure>

</section>
<section anchor="decryption-of-data-2"><name>Decryption of data</name>

<t>Starting AEAD-OCB decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  71 66 2a 11 ee 5b 4e 08 14 4e 6d e8 83 a0 09 99
  eb de 12 bb 57 0d cf
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  71 66 2a 11 ee 5b 4e 08 14 4e 6d e8 83 a0 09 99
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  eb de 12 bb 57 0d cf
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  eb de 12 bb 57 0d cf 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e ae 6a a1 64 9b 56 aa 83 5b 26 13 90 2b d2
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  eb de 12 bb 57 0d cf 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 02 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-aead-ocb-encrypted-packet-sequence"><name>Complete AEAD-OCB encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6skesk-aes128-ocb.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

wz8GHQcCCwMIVqKY0vXjZFP/z8xcEWZO2520JZDX3EawckG2EsOBLP/76gDyNHsl
ZBEj+IeuYNT9YU4IN9gZ02zSaQIHAgYgpmH3MfyaMDK1YjMmAn46XY21dI6+/wsM
WRDQns3WQf+f04VidYA1vEl1TOG/P/+n2tCjuBBPUTPPQqQQCoPu9MobSAGohGv0
K82nyM6dZeIS8wHLzZj9yt5pSod61CRzI/boVw==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-aead-gcm-encryption-and-decryption"><name>Sample AEAD-GCM encryption and decryption</name>

<t>This example encrypts the cleartext string <spanx style="verb">Hello, world!</spanx> with the passphrase <spanx style="verb">password</spanx>, using AES-128 with AEAD-GCM encryption.</t>

<section anchor="sample-symmetric-key-encrypted-session-key-packet-v6-2"><name>Sample symmetric-key encrypted session key packet (v6)</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v6skesk-aes128-gcm.hexdump"><![CDATA[
0x0000  c3 3c 06 1a 07 03 0b 03
0x0008  08 e9 d3 97 85 b2 07 00
0x0010  08 ff b4 2e 7c 48 3e f4
0x0018  88 44 57 cb 37 26 b9 b3
0x0020  db 9f f7 76 e5 f4 d9 a4
0x0028  09 52 e2 44 72 98 85 1a
0x0030  bf ff 75 26 df 2d d5 54
0x0038  41 75 79 a7 79 9f
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  c3                       packet type: SKESK
0x0001     3c                    packet length
0x0002        06                 SKESK version 6
0x0003           1a              length through end of AEAD nonce
0x0004              07           cipher: AES128
0x0005                 03        AEAD mode: GCM
0x0006                    0b     length of S2K
0x0007                       03  S2K type: iterated+salted
0x0008  08                       S2K hash: SHA2-256
0x0009     e9 d3 97 85 b2 07 00  S2K salt
0x0010  08
0x0011     ff                    S2K iterations (65011712 octets)
0x0012        b4 2e 7c 48 3e f4  AEAD nonce
0x0018  88 44 57 cb 37 26
0x001e                    b9 b3  encrypted session key
0x0020  db 9f f7 76 e5 f4 d9 a4
0x0028  09 52 e2 44 72 98
0x002e                     85 1a  AEAD tag
0x0030  bf ff 75 26 df 2d d5 54
0x0038  41 75 79 a7 79 9f
]]></artwork></figure>

</section>
<section anchor="starting-aead-gcm-decryption-of-the-session-key"><name>Starting AEAD-GCM decryption of the session key</name>

<t>The derived key is:</t>

<figure><artwork><![CDATA[
  25 02 81 71 5b ba 78 28 ef 71 ef 64 c4 78 47 53
]]></artwork></figure>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  c3 06 07 03
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  7a 6f 9a b7 f9 9f 7e f8 db ef 84 1c 65 08 00 f5
]]></artwork></figure>

<t>Authenticated Data:</t>

<figure><artwork><![CDATA[
  c3 06 07 03
]]></artwork></figure>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  b4 2e 7c 48 3e f4 88 44 57 cb 37 26
]]></artwork></figure>

<t>Decrypted session key:</t>

<figure><artwork><![CDATA[
  19 36 fc 85 68 98 02 74 bb 90 0d 83 19 36 0c 77
]]></artwork></figure>

</section>
<section anchor="sample-v2-seipd-packet-3"><name>Sample v2 SEIPD packet</name>

<t>This packet contains the following series of octets:</t>

<figure><artwork name="v2seipd-aes128-ocb.hexdump"><![CDATA[
0x0000  d2 69 02 07 03 06 fc b9
0x0008  44 90 bc b9 8b bd c9 d1
0x0010  06 c6 09 02 66 94 0f 72
0x0018  e8 9e dc 21 b5 59 6b 15
0x0020  76 b1 01 ed 0f 9f fc 6f
0x0028  c6 d6 5b bf d2 4d cd 07
0x0030  90 96 6e 6d 1e 85 a3 00
0x0038  53 78 4c b1 d8 b6 a0 69
0x0040  9e f1 21 55 a7 b2 ad 62
0x0048  58 53 1b 57 65 1f d7 77
0x0050  79 12 fa 95 e3 5d 9b 40
0x0058  21 6f 69 a4 c2 48 db 28
0x0060  ff 43 31 f1 63 29 07 39
0x0068  9e 6f f9
]]></artwork></figure>

<t>The same data, broken out by octet and semantics:</t>

<figure><artwork><![CDATA[
0x0000  d2                       packet type: SEIPD
0x0001     69                    packet length
0x0002        02                 SEIPD version 2
0x0003           07              cipher: AES128
0x0004              03           AEAD mode: GCM
0x0005                 06        chunk size (2**21 octets)
0x0006                    fc b9  salt
0x0008  44 90 bc b9 8b bd c9 d1
0x0010  06 c6 09 02 66 94 0f 72
0x0018  e8 9e dc 21 b5 59 6b 15
0x0020  76 b1 01 ed 0f 9f
0x0026                    fc 6f  chunk #0 encrypted data
0x0028  c6 d6 5b bf d2 4d cd 07
0x0030  90 96 6e 6d 1e 85 a3 00
0x0038  53 78 4c b1 d8 b6 a0 69
0x0040  9e f1 21 55 a7 b2 ad 62
0x0048  58 53 1b
0x004b           57 65 1f d7 77  chunk #0 authentication tag
0x0050  79 12 fa 95 e3 5d 9b 40
0x0058  21 6f 69
0x005b           a4 c2 48 db 28  final AEAD tag (#1)
0x0060  ff 43 31 f1 63 29 07 39
0x0068  9e 6f f9
]]></artwork></figure>

</section>
<section anchor="decryption-of-data-3"><name>Decryption of data</name>

<t>Starting AEAD-GCM decryption of data, using the session key.</t>

<t>HKDF info:</t>

<figure><artwork><![CDATA[
  d2 02 07 03 06
]]></artwork></figure>

<t>HKDF output:</t>

<figure><artwork><![CDATA[
  ea 14 38 80 3c b8 a4 77 40 ce 9b 54 c3 38 77 8d
  4d 2b dc 2b
]]></artwork></figure>

<t>Message key:</t>

<figure><artwork><![CDATA[
  ea 14 38 80 3c b8 a4 77 40 ce 9b 54 c3 38 77 8d
]]></artwork></figure>

<t>Initialization vector:</t>

<figure><artwork><![CDATA[
  4d 2b dc 2b
]]></artwork></figure>

<t>Chunk #0:</t>

<t>Nonce:</t>

<figure><artwork><![CDATA[
  4d 2b dc 2b 00 00 00 00 00 00 00 00
]]></artwork></figure>

<t>Additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 03 06
]]></artwork></figure>

<t>Decrypted chunk #0.</t>

<t>Literal data packet with the string contents <spanx style="verb">Hello, world!</spanx>:</t>

<figure><artwork><![CDATA[
  cb 13 62 00 00 00 00 00 48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21
]]></artwork></figure>

<t>Padding packet:</t>

<figure><artwork><![CDATA[
  d5 0e 1c e2 26 9a 9e dd ef 81 03 21 72 b7 ed 7c
]]></artwork></figure>

<t>Authenticating final tag:</t>

<t>Final nonce:</t>

<figure><artwork><![CDATA[
  4d 2b dc 2b 00 00 00 00 00 00 00 01
]]></artwork></figure>

<t>Final additional authenticated data:</t>

<figure><artwork><![CDATA[
  d2 02 07 03 06 00 00 00 00 00 00 00 25
]]></artwork></figure>

</section>
<section anchor="complete-aead-gcm-encrypted-packet-sequence"><name>Complete AEAD-GCM encrypted packet sequence</name>

<figure><sourcecode type="application/pgp-encrypted" name="v6skesk-aes128-gcm.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----

wzwGGgcDCwMI6dOXhbIHAAj/tC58SD70iERXyzcmubPbn/d25fTZpAlS4kRymIUa
v/91Jt8t1VRBdXmneZ/SaQIHAwb8uUSQvLmLvcnRBsYJAmaUD3LontwhtVlrFXax
Ae0Pn/xvxtZbv9JNzQeQlm5tHoWjAFN4TLHYtqBpnvEhVaeyrWJYUxtXZR/Xd3kS
+pXjXZtAIW9ppMJI2yj/QzHxYykHOZ5v+Q==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
<section anchor="sample-messages-encrypted-using-argon2"><name>Sample messages encrypted using Argon2</name>

<t>These messages are the literal data "Hello, world!" encrypted using v1 SEIPD, with Argon2 and the passphrase "password", using different session key sizes.
In each example, the choice of symmetric cipher is the same in both the v4 SKESK packet and v1 SEIPD packet.
In all cases, the Argon2 parameters are t = 1, p = 4, and m = 21.</t>

<section anchor="version-4-skesk-using-argon2-with-aes-128"><name>Version 4 SKESK using Argon2 with AES-128</name>

<figure><sourcecode type="application/pgp-encrypted" name="v4skesk-argon2-aes128.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----
Comment: Encrypted using AES with 128-bit key
Comment: Session key: 01FE16BBACFD1E7B78EF3B865187374F

wycEBwScUvg8J/leUNU1RA7N/zE2AQQVnlL8rSLPP5VlQsunlO+ECxHSPgGYGKY+
YJz4u6F+DDlDBOr5NRQXt/KJIf4m4mOlKyC/uqLbpnLJZMnTq3o79GxBTdIdOzhH
XfA3pqV4mTzF
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
<section anchor="version-4-skesk-using-argon2-with-aes-192"><name>Version 4 SKESK using Argon2 with AES-192</name>

<figure><sourcecode type="application/pgp-encrypted" name="v4skesk-argon2-aes192.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----
Comment: Encrypted using AES with 192-bit key
Comment: Session key: 27006DAE68E509022CE45A14E569E91001C2955...
Comment: Session key: ...AF8DFE194

wy8ECAThTKxHFTRZGKli3KNH4UP4AQQVhzLJ2va3FG8/pmpIPd/H/mdoVS5VBLLw
F9I+AdJ1Sw56PRYiKZjCvHg+2bnq02s33AJJoyBexBI4QKATFRkyez2gldJldRys
LVg77Mwwfgl2n/d572WciAM=
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
<section anchor="version-4-skesk-using-argon2-with-aes-256"><name>Version 4 SKESK using Argon2 with AES-256</name>

<figure><sourcecode type="application/pgp-encrypted" name="v4skesk-argon2-aes256.pgp"><![CDATA[
-----BEGIN PGP MESSAGE-----
Comment: Encrypted using AES with 256-bit key
Comment: Session key: BBEDA55B9AAE63DAC45D4F49D89DACF4AF37FEF...
Comment: Session key: ...C13BAB2F1F8E18FB74580D8B0

wzcECQS4eJUgIG/3mcaILEJFpmJ8AQQVnZ9l7KtagdClm9UaQ/Z6M/5roklSGpGu
623YmaXezGj80j4B+Ku1sgTdJo87X1Wrup7l0wJypZls21Uwd67m9koF60eefH/K
95D1usliXOEm8ayQJQmZrjf6K6v9PWwqMQ==
-----END PGP MESSAGE-----
]]></sourcecode></figure>

</section>
</section>
</section>
<section anchor="upgrade-guidance"><name>Upgrade Guidance (Adapting Implementations from RFC 4880 and RFC 6637)</name>

<t>This subsection offers a concise, non-normative summary of the substantial additions to and departures from <xref target="RFC4880"/> and <xref target="RFC6637"/>.
It is intended to help implementers who are augmenting an existing implementation from those standards to this standard.
Cryptographic algorithms marked with "MTI" are mandatory to implement.</t>

<t><list style="symbols">
  <t>Public Key signing algorithms:
  <list style="symbols">
      <t>Ed25519 (<xref target="key-ed25519"/> and <xref target="sig-ed25519"/>), MTI</t>
      <t>Ed448 (<xref target="key-ed448"/> and <xref target="sig-ed448"/>)</t>
      <t>EdDSALegacy with Ed25519Legacy (<xref target="key-eddsa-legacy"/> and <xref target="sig-eddsa-legacy"/>)</t>
      <t>ECDSA with Brainpool curves (<xref target="ec-curves"/>)</t>
    </list></t>
  <t>Public Key encryption algorithms:
  <list style="symbols">
      <t>X25519 (<xref target="key-x25519"/> and <xref target="pkesk-x25519"/>), MTI</t>
      <t>X448 (<xref target="key-x448"/> and <xref target="pkesk-x448"/>)</t>
      <t>ECDH with Curve25519Legacy (<xref target="ec-curves"/>)</t>
      <t>ECDH with Brainpool curves (<xref target="ec-curves"/>)</t>
    </list></t>
  <t>AEAD Encryption:
  <list style="symbols">
      <t>Version 2 SEIPD (<xref target="version-two-seipd"/>)</t>
      <t>AEAD modes:
      <list style="symbols">
          <t>OCB mode (<xref target="aead-mode-ocb"/>), MTI</t>
          <t>EAX mode (<xref target="aead-mode-eax"/>)</t>
          <t>GCM mode (<xref target="aead-mode-gcm"/>)</t>
        </list></t>
      <t>Version 6 PKESK (<xref target="v6-pkesk"/>)</t>
      <t>Version 6 SKESK (<xref target="v6-skesk"/>)</t>
      <t>Features subpacket: add flag for SEIPDv2 (<xref target="features-subpacket"/>)</t>
      <t>Subpacket: Preferred AEAD Ciphersuites (<xref target="preferred-v2-seipd"/>)</t>
      <t>Secret key encryption: AEAD "S2K usage octet" (<xref target="s2k-usage-octet"/> and <xref target="secret-key-packet-formats"/>)</t>
    </list></t>
  <t>Version 6 Keys and Signatures:
  <list style="symbols">
      <t>Version 6 Public keys (<xref target="v6-pubkeys"/>)</t>
      <t>Version 6 Fingerprint and Key ID (<xref target="v6-key-id-fingerprint"/>)</t>
      <t>Version 6 Secret keys (<xref target="secret-key-packet-formats"/>)</t>
      <t>Version 6 Signatures (<xref target="version-four-and-six-sig"/>)</t>
      <t>Version 6 One-Pass Signatures (<xref target="one-pass-sig"/>)</t>
    </list></t>
  <t>Certificate (Transferable Public Key) Structure:
  <list style="symbols">
      <t>Preferences subpackets in Direct-Key Signatures (<xref target="self-sigs"/>)</t>
      <t>Self-verifying revocation certificate (<xref target="v6-revocation-certificate"/>)</t>
      <t>User ID is explicitly optional (<xref target="v6-certificate-structures"/>)</t>
    </list></t>
  <t>S2K: Argon2 (<xref target="s2k-argon2"/>)</t>
  <t>Subpacket: Intended Recipient Fingerprint (<xref target="intended-recipient-fingerprint"/>)</t>
  <t>Digest algorithms: SHA3-256 and SHA3-512 (<xref target="hash-algos"/>)</t>
  <t>Packet: Padding (<xref target="padding-packet"/>)</t>
  <t>Message structure: Packet Criticality (<xref target="packet-criticality"/>)</t>
  <t>Deprecations:
  <list style="symbols">
      <t>Public Key Algorithms:
      <list style="symbols">
          <t>Avoid RSA weak keys (<xref target="rsa-notes"/>)</t>
          <t>Avoid DSA (<xref target="dsa-notes"/>)</t>
          <t>Avoid ElGamal (<xref target="elgamal-notes"/>, <xref target="pkesk-elgamal"/>)</t>
          <t>For Version 6 Keys: Avoid EdDSA25519Legacy, Curve25519Legacy (<xref target="ec-curves"/>)</t>
        </list></t>
      <t>Digest Algorithms:
      <list style="symbols">
          <t>Avoid MD5, SHA1, RIPEMD160 (<xref target="hash-algos"/>)</t>
        </list></t>
      <t>Symmetric Key Algorithms:
      <list style="symbols">
          <t>Avoid IDEA, TripleDES, CAST5 (<xref target="symmetric-algos"/>)</t>
        </list></t>
      <t>S2K Specifier:
      <list style="symbols">
          <t>Avoid Simple S2K (<xref target="s2k-simple"/>)</t>
        </list></t>
      <t>Secret Key protections (a.k.a. S2K Usage):
      <list style="symbols">
          <t>Avoid MalleableCFB (<xref target="secret-key-encryption"/>)</t>
        </list></t>
      <t>Packet Types:
      <list style="symbols">
          <t>Avoid Symmetrically-Encrypted Data (<xref target="sed"/>, <xref target="ciphertext-malleability"/>)</t>
        </list></t>
      <t>Literal Data packet metadata:
      <list style="symbols">
          <t>Avoid Filename and Date fields (<xref target="lit"/>)</t>
          <t>Avoid Special <spanx style="verb">_CONSOLE</spanx> "filename" (<xref target="for-eyes-only"/>)</t>
        </list></t>
      <t>Packet Versions:
      <list style="symbols">
          <t>Avoid Version 3 Public Keys (<xref target="v3-pubkeys"/>)</t>
          <t>Avoid Version 3 Signatures (<xref target="signature-packet"/>)</t>
        </list></t>
      <t>Signature Types:
      <list style="symbols">
          <t>Avoid Reserved Signature Type ID 0xFF (<xref target="sigtype-reserved"/>, <xref target="sig-computation-notes"/>)</t>
        </list></t>
      <t>Signature Subpackets:
      <list style="symbols">
          <t>For Version 6 Signatures: Avoid Issuer Key ID (<xref target="issuer-keyid-subpacket"/>)</t>
          <t>Avoid Revocation Key (<xref target="revocation-key"/>)</t>
        </list></t>
      <t>ASCII Armor:
      <list style="symbols">
          <t>Ignore, do not emit CRC (<xref target="optional-crc24"/>)</t>
          <t>Do not emit "Version" armor header (<xref target="armor-header-key-version"/>)</t>
        </list></t>
      <t>Cleartext Signature Framework:
      <list style="symbols">
          <t>Ignore, avoid emitting unnecessary Hash: headers (<xref target="armor-header-key-hash"/>)</t>
        </list></t>
    </list></t>
</list></t>

<section anchor="terminology-changes"><name>Terminology Changes</name>

<t>Note that some of the words used in previous revisions of the OpenPGP standard have been improved in this document.</t>

<t>In previous revisions, the following terms were used:</t>

<t><list style="symbols">
  <t>"Radix-64" was used to refer to OpenPGP's ASCII Armor base64 encoding (<xref target="base64"/>).</t>
  <t>"Old packet format" was used to refer to the Legacy packet format (<xref target="legacy-packet-format"/>) predating <xref target="RFC2440"/>.</t>
  <t>"New packet format" was used to refer to the OpenPGP packet format (<xref target="openpgp-packet-format"/>) introduced in <xref target="RFC2440"/>.</t>
  <t>"Certificate" was used ambiguously to mean multiple things.
In this document, it is used to mean "Transferable Public Key" exclusively.</t>
  <t>"Preferred Symmetric Algorithms" was the old name for the "Preferred Symmetric Ciphers for v1 SEIPD" subpacket (<xref target="preferred-v1-seipd"/>)</t>
  <t>"Modification Detection Code" or "MDC" was originally described as a distinct packet (packet type ID 19), and its corresponding flag in the Features subpacket (<xref target="features-subpacket"/>) was known as "Modification Detection".
It is now described as an intrinsic part of v1 SEIPD (<xref target="version-one-seipd"/>), and the same corresponding flag is known as "Symmetrically Encrypted Integrity Protected Data packet version 1".</t>
  <t>"Packet Tag" was used to refer to the Packet Type ID (<xref target="packet-types"/>), or sometimes to the encoded Packet Type ID (<xref target="packet-headers"/>).</t>
</list></t>

</section>
</section>
<section anchor="acknowledgements"><name>Acknowledgements</name>

<t>Thanks to the openpgp design team for working on this document to prepare it for working group consumption: Stephen Farrell, Daniel Kahn Gillmor, Daniel Huigens, Jeffrey Lau, Yutaka Niibe, Justus Winter and Paul Wouters.</t>

<t>Thanks to Werner Koch for the early work on rfc4880bis and Andrey Jivsov for <xref target="RFC6637"/>.</t>

<t>This document also draws on much previous work from a number of other authors, including: Derek Atkins, Charles Breed, Dave Del Torto, Marc Dyksterhouse, Gail Haspert, Gene Hoffman, Paul Hoffman, Ben Laurie, Raph Levien, Colin Plumb, Will Price, David Shaw, William Stallings, Mark Weaver, and Philip R. Zimmermann.</t>

</section>
<section anchor="errata-listing"><name>Errata addressed by this document</name>

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

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

</section>


  </back>

<!-- ##markdown-source:
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
yVXdMYgrOFF3aXVo4qgjeWa+pjFYrsbv0P5Md+Tlasblv7HyDtp0sbbu/cOU
EjkkPX9GZ+eDx/f0JdpuLga1X9pXFpSH3MckUawv0ebprBlMgBcCMOMzC3nD
aq6WLviETTPnIOhjPhl/TgdSvCpIoP5dxVAJc4RFLViXdyRGcNlvi/zNDL6K
kz4Ys0ucg1GYF3nTSJ/WPJkAIwXRWTRBaAQzGa2q5Xys2dSY4+oz1QEFmpSq
sNRuJUV5Td5KANocvW0xm8PPYs2KFSmFa4afsLYueztbZLgGU3Oi0nr0klG8
Yp2Lkkkw6OLwp+yDVH9GiZ3FdrhDoGrxB1spGZ7t8QsgCkB93w9hVWF4OqBX
vqRy7oZyH5t3U+hQNWPwGdd4/tZXUlb4XJymRwjSh157LC+M9jhxqXZH/qnb
XomN0yqqmIReFVOnxDNulnxJsWCCUBdfKEi/c61Qy7Ucns2ptoKmoUUVuqhD
k4GP1RoArHm07K3LKVtgjADcM1BXQEbvsdYZXSGcAHmGGWxyeb0ovHvPjMid
Gm6PwNwaSxuvLbErB7pcZJhS6Wa1wkjbfAHovrZRb4CtN+oNq2hK7Wow41Mt
zZwCGIA36/AC+HISUKC9RR5VdbwT+pIHwL5a5OAYhcVBXCipZnt3Q60yleG/
jXm4jVEtXPywnPG3k1wK1ZMbnyu1zRxjJWbpNhrRGbgbToilZ+DPXc00UJEH
QmX/5LNiscCqSTNJz2fPN3CWhQleYSM3D14+d8IFBgE/J6ZKZw5SQzs6QITX
DQdZ2alqMWKpmAzZrZqrynBNXH/alH0dC+KhlOot0GgsHSiMHZji56P5RGqt
TfM3ZDSWa2xULLAWnXwpuCkwCzjYhPs4uUuCd0Bg+LaARhXbWruYfOkIrKfc
qWREBJb2YB+ZHR351WQU8RzSUmX8MDlkJMuCaq9wwUSsElXgkmt53RsMioWw
2+Kt3wNfUNnbsWe09VisUQEOg0jqOEo6UYFvXFJFX0Sd5WKSN8v01DqMmUJf
YMEUhHPIrlblGFOy50z1VLEBATHCGRAPhHAdZBAw3le+eExsZ4WIGPQsNI8f
9o+Lg66jVzpVFDjScPAqwcQyNfnC3PHa/TEaYXQeRqUbhAfitsxF0ki6IgaW
M6prGg+GwnywghOJavOCgATzMcW0zTmsEPuQkfsynL/qwHm9g4RzRrVhkiRA
MN3mKj3BcmbrZ+Fkg5GFM3QyXNP15K92glEGotDLOajXtOaWVcaEl6L/COVN
aIyKoDRUmQ4K2DSV7MTonWrOzJ1uHQVcdVyMdEbCU1LhY+wDB2FR0Zd2MecS
vBh9Vi4xHtCkUstGw2WF6dDqvHT/rPgXvbZtDW9UkeZu1W+uOchegqo4dErG
e7ufHfkhB+Cyt/tdMxsP9FJ9TJQaMu2Zj3CptJ5Kb+vE3RElSWXVP1c5wbF4
hqLF42BG4Fq+qfBlAkXHejHLklETIarXSbJYVuUxOsnxf397WdwytKIXInq9
3j+0OuJxCZIarq99QRv4AVQPCONfZPjXw6Ubs7tFirgq49/8wkFv93ac/ix4
9x92IOe4wfrfTdvn1x+VFIoWvGubZ7P6P7AIvYTM8nmtWFrtIBLKAtCL+Lw7
UqQf2GkeyUsqRETwD3yfdTg1SCL90E8NTG5y2WXEotT2IJjekkqYiwp6o1kn
wPFPEHeMjgRHWLsubpg+tJYuuPrgAb3YCz/DN+gChTqkgCNBFevx6QWvpwHi
D76uPTc96vwY6FdrGWAVCMZvC8frZLknAP0OmogHTZEEPQIljJqVxsLywTrl
sICAPbCGsiwvQA6w0GeWGUgp0FyH7JoJOSR8+AasBIRNBZhxVMsJGCEdKErs
oahVCrnWcehov2486ckDgcSMogUA2VGg8ZgoClYkAvRFVA3AagGYpsq1b3Hm
LPEQEKe3XeARwJDN1WxV5QgKHq7qMM1W13FOMkxGHPOT+Jzygr81MLl/3M/l
HL/5rTnSb8SADuWocugt6oubnHSueF+yNQvBd6pVgNlqiQVmUBYatI/Ch7uL
UUGQ4jK1Piqf2ypFRG93EdV5yOQSFLujF/VZb4vW2BRCxCHa9g17gw/rsxyv
VCB9efK/fzh7eXLs64/YCSZYYZIBD5sY8FAZcI2NDJvYSBODaGYuF3cKoCv1
EeKtEk18yUUVYaN62SvGV8IbZsFhaHBPbZsBGG64DbCf1bLICWt6P0u/xoY0
U3K1PpQUFmMzF/4Yc51dXLaNuM1uI7cBr7zfhM0YTib85G/r2U2CufxGp59s
RUo1vIysNLyM8DQ01cldDEjqPH4yHERvQ/94rjDvit8k6yKmysrcw/dsjsSP
u6kE8E38LWBqoa2siD+AIdYWqASfj+ZqzAnMX7oLK7fSkdTUivl0ihlI6G2j
vFqMXZtiLKX/lZWBmtYiONIY1M/5LUl2YMGvTKkRsQ8ZQ6CKTahBzwwkAaF7
ajtt1hCxBLJi4QbdA2ao1BiV6C+2D4diVeXDSulnyrbHhDLmucy58e+M1g9a
cD3nCYW0O5YJETgOpRKgJwpUnikugx2rKOXwnp8zfYJQwmu/YiAHGqzgRuJp
YHOBx14TShW9U+196OXB4J2lumic7itgrmAa1PMgGHpSZEkqeUaNM4ydr3KI
u6Fvg30dV5O6vdQEPCwLs5qV/0TMlXHpBrjCVKFi8U0WwNdRQUJccTp2VBci
n+FlX0wBpdsxHoj245LLWmc+19FqwjtVf8qspdsyAfGPC1KdlSvCmYsrDhQa
yj83R8yt+HV5weUggTdOp44BOapUPE9Yh4CtyMXhlzzAIPVKlNrHcPPj39P1
OUrTf40bypfqB4Q6WG4varwgRqDFCDTcb2LDd2xMtQUvI3asDPgMK/w64baj
zkwublxUSifzDGgLqwaAVdXd7JfiiQxoFcEPsH60ge4tJUqNobWh7pT0vvUX
Mo4rJYoRirNmE0Se3JVI5tatQZ0v2VCe/gZmbsE71+/9p+1wra8NNnorPTO7
h/ob88LLRVFg3uISaoa8MygSvLg1AETDnHFXaQHg0ZQLu5UIdO9nSdWm42mJ
8qNjAi0BZf3AKApYmtHQsUxOcpLkP8uraj4qKTHU6O3h7pCwLB/TJDp0uCWY
xTUFNsYgoVJM25OO3kBYE52Y9VhQ3CuTN72c33QnxW0xsbRP/idrjKJrFHm4
lsuD28xJ5aCJSHbmXSAwmCTh8D4MryoEaqJaNfxV6DanH/F2ojpoV3MAuwMY
z3KkooyWHpe+kD+j7oFWXMoDKXtFz68ZzqoTSwvxAHTuPIq23JLBNqnYYs8c
8Pj4qAl4t3fv5s36JauTbAjym4U7AUJEdZ921zEb0GSK4uoPKC+IWmcSLFcX
PEXOPF2r8UGtov7DdjRy7l9qO4XzYBUVqcUat4FakOajVc2tGlW7rdDhyHZh
jTF5E+iMva2XCX3R1AYgRxKcGAaSz2t74Y0/KGrhsFDHZ0MA0NAccm9RSaRd
8cOustsyd1+YccDM/VJTnYPQjJemArxB1T6uNTMkNtq6lKcFoNqX1ZQyGi4B
+zm/grofADaQQxUKtwn55K4qVbjl37vyO8q4QHnT/F05XU1rjpIOL1pC8C+5
2C2Km0s77Gi0IdSX1PYwkUruOipvSinK7IujyobTjhmlAb2nDIhfrUZg1QNI
5GTtStnCoLzhqHACJTremgQ9Ph1q76SZpxQb1irYXdlCkCj07rYZOoD3sGF5
YM/rY+gaXuTjP5jjWpx5473mVnBhVMCOXGPoPvQcVLHq4COihprnzsSArPXc
cZieeO4Cg0S4zP5NwU5AGQttL037oYU6oYyiRp4QDAH9swrvWQssVdZMD7Hc
yasetoEqjqKdm17ni2SnVBpXC/tpdIJBxy753DStB85H7xKJiYBfvS0a4VvW
lsxInYNIc4m13zlFggRmDX/zc1nonMp2kt1PgT3MUrKivVrO3c5zgGzxbokg
3WOPW90w+6biXqPrOQRwgPd7WoonOxi+u8sR6gA7LGsEZzd7hCgXMzEJNQ5l
yxjcJKIpqLlpaoPoRiNheHFSaJFrVwcqcKiSk+OcXO4UQNbCYtZZq9O2eEWM
JgNSuYmWI9nsFmQ8aOAiX2Stv39oqxhVBTVY2l/7cyzVRr/ubn1tQpnl579/
iMuSul+OfNKe+fUJQ7Y/1QqEifewG/M7hke/ED4YNUFvy4/hqwDpjY8Nd/bD
P+fMSviVA2NgJkGi/bq3uQMNW6TVcb+4VuyDDvwLXta2cJT4elOUuJlHMKhN
g8npU9tnwx7i2/UBB8/d2J/Piu4Lp8fEG42tBQ9JbnnBcm9EQR23rVavjz8A
wTDRwb3twgwahgiD5zt1coe3am34ibbiYcttrMP8bezUYHz9YfZ24d6E3v22
IPRP7eSAVXalr39MjZJBjjgEp6OBdrYCF3DnbW6nGG/Dl3eIVGMTwKPqZhhq
ekzR+CQzSQz9oJF6YRL3pEOQAEW95wye1LidvcYxNKdjbDIGx6+73S4F65Zg
qXO3BKapw6/5+jO8bhoBjcngJaEbxx8zQdsaRh3d1yR51NyV7ckCi0MVC6q/
Kq40gDdDnY7qmQWwVViKk0ORQUFZcHn7OAINq9P7BOi4KY6zpBlcAKJGji1d
wl897Uvr3D+GFkqsLEqxAFGr6T0h3JjSbFAQPSkw+GA9Rg+WDi+KuzmbMMwg
13aAmCJcbgvmHy4MyYe1EQSBdKJsI2IT19vmqYmiw/KBxpQ6gQl0uc8YbieV
pxEGAfoA6Rzk9wkX64XDEsU4HHp4vSNTP8y1GEX1VzaIFXy0IDguJwj9BoWk
SUWmiKAFqwUT1csJnJYNsBLLTUVWZuBLRy1xNfMv0/A0t+BHCTZ1dFa7E4Ft
KjSNBKF3JT71Ixa8BtRkLTOdJxqplyUK7HtYX4SC9wCBXCL1zvXnin+OCn4B
Sv/Zi2N8oyhvxvDhTX43medj5MC4kgFXou3ld7yLyYCmnZ9we9waWx/QaY0p
dNAjNDNfXV3XC7fX/I7QnkYnMhJTeeN4ANaEg20s2FCg3rIw+Nc6V0EQ8VHf
HHyeWG7mgQE3CICj/RrQCjb51K1x2VHN7S7XgkFheUg7pCPCIE2xnRHPwgQJ
KQ+4DMBGaBWCEj0pLbNi0VKiJdh6JpiQdvg9rmrrOH6fH2gYsZr0UnAnGVRA
gPgxOxu/6qY9WTUxXfgAFFoXCkPBZUHBMItzDNB9oyvCe3G7H/Tc4la1SWyv
DRHmTVNJLCb6ApZc2JTrhooqb9iKmmmiKcqNRPM1VadmFMKm090PqMAGrwyo
RXAVKCMEc7JiFd3Ml6SJTe4wEc6pIXjRJmbDxnPC359S3spdPYBezx/tnh2G
zoVQGZs3zoTHx6fReyD4Wk6ePqxFJlCDenv7JWQe3HDxosHVJj3UO6BoKl5w
HZ+vvwgWYaiJCxPd/j+Au85j2P4zt/uvguTb23qOC7EAq0TgHJHDZpI/lJUm
gsEtZv0XmFbF973Ozuv+GYlaZFJy4w6BG2utxpecBcfQe42ThKQ3k+P4o2eb
NemV6OlDZt7xXCPSlR1dtUoUgdpNX1hFPHxdt83CcWBCZHhdfci67v8dxRNR
twy4FEL9zWvvK9G7H2+HXblo4cmub+V2t3vjn7hmlFvAQ5pL1wkbXb2GP69l
R6tbel5N08u386DpfdP0ftD0vml6P246ceS4kjJxtqabFKq6QYkF4H2py1h5
KO9qlMGyyT28RiQzGX7vv6LY75QcJoK1teAGELNhGigoSPw1JyXZkeU2pPzu
Roopc3nDxDSMx7InoYrsBuV8MJQAa76/km8MfilIL6+/7Y6l24eJybSO3+F4
Ih6BMTBy0Pwcc6soZsEHpQLpQvVsH9iCJsHEPBPmHG/IkGbArApUx2ZoXGu4
EidcanhuxALZwR6j7VKhotrFhn5kXiTQM6QtU6xYSAYYN2WR2WwWcbPq5kdy
XljkwmA8fFnGX6dGPBiyyoQWX2Va6RTvpc0uMnMLPGY/gN+kFPvns9TM+889
UesIP9R33j96/uK8/mONeafAxPAvW7vCEsltQJxrN+CEkLEm9AXP/i97b7rd
NpalC/7XU6AdP0JaJmUAnJ03u5uiqMGyZFmUbMtZtSJAAqBocQqC1BDOqGe5
z9JP1mdPZwBBSY6Mqupeq5SxnBIJnHGfffb47TzVEX+uMtf9z2moajekZKFF
WS22euvhmfaAB9eFNdsN1p9vsL6pQU6XsRDzKW+G138yykgmsiq6Zob6NJfW
6cQcAem6ncizhhALVNg2WVAkjryUC7cp0QuG2iXGUHIxZXgmSp0vGVO0SJsW
3GRu8qsU5H8zA5F7AOO0xbuOESGzMrBx9c4rSRO3nP2vckGYENYAaXETr78C
Fxoqy0b1SEf40JTF6RGjjIB4Bl8Zt7+33pcOp0QUa3hcgv0LxkXSNDAWCh/Z
HLGFeU+x9thAHKB4y9AgCTxNA92TQ9zaIdds/TI7NUwf5EDHV4/58vjJj1u0
81jrHZOc+LixCq9VFAj9sFL2KDMlgZ5q19vudjo77HRug2FjQaYNzlIXZRwg
0dn+rdWf799PPuy9P778igH2Z1ZmLTytRnEzi4ssCjqbmW4jsujgQC1LDEdr
Q3BKSpmhVs3GkrcHBVBKWk2hztyEcYh+hSOkSMFOd4CxWbU58mWleKH1GE36
nEf5wlTRCSIZpPIJV+ZwiliZ8pJQCYux8xFksGT+BEREOkb6o1oYvPobR4q9
vDcl59fqlRb3loNChx5zUOfSaw7O/BVX1sCe7TlwnxLAJg+YbvmBfDEqLhKG
xcc2VTcl6zedSKtC1ipbT+zWNWTchBO0qpgSEVihkmuB/WGdlNEUOcxojLgi
bNsqKkZBfBeLPnMUnX3IjARlSm5yTCw0w2HkUs6vtLZRBF1Oeyzx6PR74eOC
pe4aUVhO/CCFre3BvMojqr/ieuUmztDIvrgtJiGAyMKBd+e3RcS3XrVKE9kp
BXSeuOJBrtaErh1q10wAM7Ip9AMJC8KvaFcR4YKT0XJVdDiEDlozhSE4cpte
ltTZosqzeu80pDRzZaitQOFsUo6CnufGFE3hxZHEjJPJTgSTL69D7W5GipnS
t2t5dBC/ntFrWKJdeo50WXWEo3UtHLlyHOuL7BSnKFhtS8Jl8CbrdRvKiQtI
vC2Gv7UgkrkEAuDnef/2z3/7p/dA//eISEt6EOruAqTk87VSBQC5R2/oj56q
MkveFey0iMxsKsMuqaZBhG+UpSDQto2dvMNUQdH10yVC8KWGEjLOrt3z/g51
tf4JM1T/qEuZ7vIHPDYcZWeVsBIlHxs/Vy9vP5S8R64gibGcitvIiJj0+lDJ
dBqPFCkz0cHD4DApz8mlK97q+NsqW6I6qOEMTCUu4uRPPyPBY8VfmkJd0uNU
CTCJol3CwmefGtUNIB+QqGdY2EpXC+Oijpolc9KRLmKE2S26zqS2lCBLI2eA
VWGSKkeyh02T0hnRzXPkkCcloQwEVZt4Fpj2y+lBka4ihbmQwlwW1brqHDKQ
7TZ8lMKV8teJKUDGpShx0ZgkRizdYeEj4OAYngilyJAl8m2cPMh01NKdqnkM
lYawQEfKxBjUqbYGo9fgoJCx8xKf6ZKoRRx9a+sQt8ZET5hd41hrLpFpFYeD
JTSehQVnqOGicA3qzKsFNWCPZM5Az5JVaQZGnpNxSl6jEaw9LLCbOemn5AV+
rYVPmxoz8GHYoCZcqYiWKqxXTPvrpaXMZU6fFBTyMg75yLk7LUpxS9e5VVbU
qsAYYFXeeg1aHXUw9W2ILyIrde4kGJmpHyMdMKOlktxCn1ZqGuQpT8XNCV+i
xxa3h2vhsTJpCBvIcoqb/1hCdRETG0kTtorEoZSQwA2mw2iRvpgMKfvWFQBQ
5+4dtd+/p4JYGnIMr22Dt2LLTvnSsXiLm5gcVziw7nOUJHLSgYgMrPbAwtun
m4+gO5gnIytAVIysgln5TiPNfyJLvpHrwKTMaF4p1WpJ8uph5ZwC0YtK6uRl
L7QbIIoUrglV88H8elcMGzhqo5NCaIUu56zOGGQ5hdDLHQ5KWOqtnkrdLkrJ
1ZK1cANbuBuZuFFLztva47RVRTZmOedQKGxBPjulUY5nj7AHJQoIYN4I4R6m
hhvOGGomzyPIl0TBDMsUZWaNUZJjkU3A2dCISxI4NkjxxYrhQaolV2DKSvkr
Xhdtlhnl7ny6uwc3sxFpJvZNqeXYgjBs7TCVSmqb5UYmEanLmJcaCwjFEhsv
Abrqn94+alakUKyJjUV1dllcNKWy4IjQHyV7DWS5yIiWXyyqe/b9+2Q+UrKg
jt6B9cEWnU/U6pGEQMy3JG5SjPzIbmYLSGKz6YzBHcZc6QXYHigdHAA2wogh
zjyBgcjWlDjEnBKmOYzbFtr6iPmGJ5+lW7salpqIruB1ZgrdPzMb76xkCn8R
RAw+jZeA0UWm7nT4IZGx8X0RqhXz+IDf9qjDNTnKGTSzDj40cmDcALVnlTVY
TTbw0QKLWORuAeUdr0whzgUkJqNGCjehmBBlEBHZGdHaWnIWzbE25GrCOrap
zPtVDW/7zCq99mXnV04W/PXsVxH0dAiejkqz3kBPj7WFu1t5O2uq7mFaVnch
vW3svuZ2vyP9f/kV9Un0UeEl/qvvQ9XibtcLWp7v/8qxcC/Rlyk8MZu9xUaC
ttMOxEEIS8ZumfFYV5LihgkpsnQqfs4A0IUnBRyTw/nkVUfqALYKSkXGz27D
P2Ed08gAlz1os77E8S86XcamESWLlC3atoZIw1+Ac0CjG6DPtwjuD5kD0Ayn
a9BADV6qs89q/HpzwO61FBXehHoo1WtOSLPdnFmgYJVwkYCoOK0L8u8VpfwG
V4makDrSDjFgGbZsBxpvq/4wwa+mLWRqNZe8MPAyrg1nI48f4Z3ObG64GIou
3PS2jQEDuDw0LoFx1jilYLVd5Cg94oEoAWAeqZuAeErOYiEM62lGw3wJnPbk
KWX0VNu+EtHBLvOG9B8htX3BF6VcIsxbbKqlu9swkBGdAqNbqYdZhkaN3LTL
nn7VLmfYgdhkCE8AF52qzChjIkvm82qL5waAo4gZ6btPmNH6JUFsobTOlhhR
14xd2N+LGRApg26/tWJu+APc6H4BpZGna2xEzZH4T3gAtJ573+FCJEMt8Nq9
1+s5WhpZzboHtymSqLEk4Q2Nvssd1MimL2Va1Qbk8fp+eFASzUvrBnldS3Xp
PEAD3aEJQN0sZwLGSQUL8SxPYu6BRYfBWKKN1Zpk4JgoblTIdLg+Mxrv3YML
5L8tB14Nv2wfem8+Xq1T7o6Hd6jesV+RS0O3V5kUIYcDFgv4CbMaBFwDb16a
2kzaBEAv+UCAd24yAikVYVNBf0OaITOsFqaVyGIZVvDytxxUm62IpC1BqMB+
gt4gWOwDLnwABulbqZ5JX+maCNsn+wc7iIsnaHiY0mxA3TuWpZ1E+Y7ON5U0
qYI+ve02zBPKObZNspkX7Gi0+lq9/ccfhsihJINbrkHcroX1umaYd0BAfuoZ
gS5jhkA1m0eU44T0+TidzSHzmTdPKyHsaoNgc7T9UMgIVWsHHwEwPrRcQ5xm
qn3QEaNASLovUQiBVYORS2s7zpSyAl1eQy6468J8b4pcHFYum60WAy1nGMMU
w3e9eaP+0chRGSzntvdFyR17I7hBz8GR6u38zXp2Ol8t3zK1fSFr7uOO+R5f
9MrcWzZCdzTbvdSFql42z95Yz7rPrC0B1sczb9K4ynI21wrUGweweaedAfo2
MxAa5v/6O41BHurA/i+Wlr3ji45UsuTXt6bRr3s/583h/B1atylpFRt48KDe
JR4i4HbqRXzyK5hPH2iBT+F3LEq2Daxfteb8G8C/6nn1r7Mvi2S5Wkx5SuMk
XU5m2ZL4r1rG0z2Hsaj3mWfAyYkt7VVXtyeD72QOI18vRP+FAuQt/1yP3fHV
3RBrNR906n7LF+aiOMH+kVVlbRvsRDso38Q3jAdmTlPkxGWTHQzc0vujNB0l
5aNkPJ5EU8vTrQ6POkyAk6xY5U1E0Q9ghykx+ILFvcxbLP4S5dlvSRaTVAxm
pK2YG9M5UtKUrp9K9K5f4k6WBPRtB/Aj20YZTirTTHQ21qUdXVc85c42GGlL
5KvHhXTOv4Sea05sG8iMTC48B5jLW0+CFdA5vVD3DXKOZAJGo8TgGpldmmCp
I0m4QpdkhKeLaSdVpDNDBhuUNK0ZWz5SjVqLstmbshx04mFuyRh42wrpMA0R
143IpBDzAuaeFux5bUsZOPfQGqxZTQsWIlKjj8CWsdE/lNnRhM+4biRwEmT4
42mK0gWLPs72ocDSXhsAhzxQ4BEFBGhPv4xCu0XY/MYojeijgTYhbox5mOWF
MNPGPkr09OVNUshZrW5dDmD5tf5GUzDdFdrm8g1QJBxXO5U2nl0Gd6ft/SBU
rgEpjUSTdloxtaRlJycmg4+71uv/lfXM/iZmVR9b9R8ODtjowjWrQUBOV2gk
xoQ9DL8srXdCCgUVc/vhl92bVK29CU3h41XwkrNZWo4vSBwShga8MfeQeHMk
BtmIhH/jKvZ4CfyBD1FYSoabH/obr/ary4Ny0whiEgNNp+lXpShPHydQ/qKX
gNT9//xv+t+v1jmxrnOJfKkGXr3r1Q/g30bLq+/D742a16jAUGoVr17DB6rw
SyOED+W/lxIr6R66jpwM3KDWWJEpjAeSRzO0Y5m1mAumVqYFLnaG0p0HhgS3
jJ2gKDL1Z2aV84/XCx/XDjRmtOQ9zxv68sxaYwbIgeccSTsYh1D4IgvVmnOT
aohZzGzHOD9LXi0wX2R5T6ftz6zV7AfXHKY5p2jOUcqeT/W+UiOgmbzLkx2c
+WnUDZyRzR00uZkJ1usbJsiO1ucnqB6qN/7VOfKOFok4ozWIYSXgVSqtKsUw
8IZb+Q3O6RcqRSaB1y/weRfsTSmT3ZMdxKRxRQSrIyv+EVhG2VAYcw+6cZGD
cIqEnBqjVCF5dk/sGu/EFEwE8lphlHa350TpndhLRPnOhYnzjhwQgd9XcBC1
4deZIBhGJAEE3hqBniW3V8G+lNiQYaE45W4gunmoxNdNUsjZNXjlosTlW+4x
VR3DJbb5fgR4QPLX66QlCurd2ZW2Lfl2l9ihsSINbpLBrZINzSHQz5aMYRe/
KXxIW3OV0LkazxQDrlXqRK+cnkKKi/gvMRo6doNLmJTX6ThstpqKgODUTr0m
j3i4iKbgHsfcDtdQSMUfK8/jxehk4ilQEJoh7DlZplkjWyBP5Eo+VT93RXGw
jd/ybn3vNvB2d3e920rgZb6XBZ5fs/9j/Ddiy7foBYNHJTZlOmNacbZChG1+
LSOJRbVtvfDEXlogDnZYE2M90cNTrm4z66erbCAU63BIzTxyLCKvNeHBQugZ
15CbcS0kMo1P3ePrRAytLYA1RoCLAiclBsRUaG1so6+Eu0M7sL1B2CzRL62Q
nuZNR2ENPCZKoeK0X04upe4g9JDyfezIXnRcLiFfiZwuz/ECjtvPwcw9TZib
pLmRpIIQAFkRxDxnFOaXvpjStcmbgKbWhWmvmKDruf+epGkELPxLKHs3VxLk
ryYoRR5BlYZU//80QeFqa1ucxUQhKneUsbx3P2NFh7H6OJuFBUYxd+ek4GR+
k0wQjcs52dqQs2aUYURoSa3h1jVBreleMCwlQtPI8AL8MBWRX3MmzXrWJFgT
p7Vhef5m+XiUMEiOq6d0MtQRrjCENFQi7SbV5tmOS1x5Qoe/ypXFN55L9vbB
xXPiGAIxnN06qLAWmYeEp4kODnN/tMzWRdlnh4rQ+y6tVkKgRGq52tTEKQjn
2DrfDDAoPlt/jWn+b3ZynA0W7dhfaGyWXMaFVNcN6rpbx6KuCK2PyWEolhjE
YLUBRs+zDCIX8MqhXdxRjkZJIP+Ba1A682jhfb8reZ/+fnf4BzmvoVh5Yh8X
sln3vL97dxdIcxP1K3D5XxTL+kXp8Rhfbu86fqCvdfxrfjvIar8wR8JWULH4
5cPx/i9KuQWTP/m+1B/b+qsdfJLs0n/PvUGdyEfcC67CL2oMztj8Cv9/QP+v
lItfwHyhH1Dyu7zAzFLdap/B9IBfbzYA0Pd6G36xdHEc+leenNAz0qPwdatX
Yzsxfdvb8VW1gV6UXonatLwo1mMd9ZhpYNv7qgRcD5UggB63SBBe+jyaJ8yD
J7MFa1XMVeF+L3l3RLpfDbDIOKGaGIbbEjPNoMFP4GkYsLeDqOZTkacDSZpu
gW1wgX/a26F1hL3v8O+dHb4vjP1BuP9oSiEn7hWC53LX8XbahhBcXE3z24vS
xY5iDDDXIoN9/1Hj1KNrBkUKOAKLT/DP3aEEde0f0UaQW2jLRIxzmSO0klkl
4+RZJIKcJ4E8AkXykzys2FE0z3BUyBoONCY6c1MLTsbkVYn5HomMSrWjkYs1
MQpwfSKm1sr7A0AdnqKneD8mXXrqfl1KML3lvDBRo6DMq5GClmxU7Ce71H4M
1bzY+cQKkhtAQfcAy7OiOtnPjELWsPrcGhpl/gdXkV/EZH0MTs5Le2i/cAwI
bnQpzBaGjqDl6jFDbm5kaXxTvo3T8m1ya9kxrNBSihH6J7kCTfcWzKdVgX1D
SlJRjlJ5y8of+KdxkP9TZM4ty87E39OvLIpuGcOTfF/DqvEsnW7lbE/FneTt
UYU95QxUxd2tZSAU9rdlJXC0DZ18/wmk/6w8m5YN9WAIqHd+0un9FOjAYDvu
+vtPcD+WRdr4Q1KSJUgJctgySYMEcuO2jC+/e9otw4dB+S74pUZJE6e9tvWZ
5d0nA8wYob9JBNJVkpcY62nahdgjwHIfmrCQeQTVlC7XsKYQr2KVCSfLI1qA
StFXJyPDyCL0p6A6iAFUswG+P+fKrE5YgrqE4mhugTRD0JF6iNfgLtwNJJ8z
aIAGaf1hAVZbUeQwC4CenCBTI/z8JRYNkHVVPIH3Zhezr5cE9odDx2Iud+aS
oQJwJLiPsL6WpNeO07K5T3X4K7EoWLtMr4nGsloZUAO2wdPq6yes/eI8Infr
y92zzof9LrjCJ0kZyAo+L9c4PQ/hWSHYYmvr1vv7FrlpN4XXomsADGQr6OsU
n7e4cV/7QFFRz8dTc6uT9yCtUDQb/A7xEbde2QvAPkxigBpMl1oX+9VEIHA3
t3sLqSdQI/qt98oMiqq0vFLfBbvee3oSJVG4xr3jlIbwf/IISqKNrrdA6vxy
NldNhbuOPO0M6Lxnj0m1ih2UvYrotDzqeZas4ll5oZqdTSzgFgx0NHGO6DVB
86eJhVVdSCV6neSajIY3S+M5qexakVCKPfRKLBox2BIJchTuKWYBtYMUHTjN
L7siKWdSEnSebUk1PdgujCHGGJIHP8T4kR7/hZ+eqmFVd0XQ654WU+t+t5ha
KZzPotYXEohFUg69rj1oUY8lYWLR8VdORCHEisiYf0HmqpvUpWC0quiuIYV9
rBOMSxnu/rMUqHfOsmzJ6r9w8Y9tMBCOQk3hZQ3NgjLqTfIQqakqZjg2DmFf
F9dgA8kPvh/K+7rOLTWAjK24R6ywLAuqZoPM/hRdUTwU50Q40dxG75fzvLan
1nnuJZwNBVZHoDh8Anw+xscjYuOAOO8iwTgrSIlgtJvIy3eRQy3BzzTRO1cx
knsWWfQuN36BvSFOsCjVFAhmQMcYZEkJndcua0n509Dj6gigrAdo41HOXa+m
RE6qG+BWZLLMnrwL3PdpmXfN8XziclBPJcgU4QmQCjD3eVM/6wdcWN4S2niN
XJvLSsEHjuvdBWbe716Y9bkkb5MgjxPdDUhvVpfzaqENiYUr+ufvKZy7cJus
6LL6m/dKL0uei3Aj8CzmVAFv6nHug7rh2vM5V67OhavOXP7PJl1GgsNnaQWO
SLc94hjB7dMdiuE83rzr2foUSq9efJFeaf8Z6G1k+4deJEynZMapBOvemRLu
YB9ptGI5cYdFBj016Pdq/VHTJVFKXZn4IMdW63hw6JguxHHCZMXvFBHlJV2v
akGIiv+XTYgy65fvn70c1aflCveaSFiwWIp8wUPcyFIPDl4oSzSNHFErliPs
Zbx8SpbYcBE+ITkE65cXrHg9LzlYaqoJ+zw3EEIcPVJgPJnrhzAWFHJ/4gRs
PUiAwBWM+mbX8bohrD9C984EA3nE9Q5XyIjXamdJGZ35LMswco/TaUx7phgo
10Eq2fm1ZkI5T1h7DPEG+mVWQ+kuMBEOCFITwaP/9/1scburGNwrzADuRBPI
OY7I3XN5P0tH2Y1xAkFTha3czCbJ7mwBErWxrHGlILhC9TwR78BGdJpxhXAp
OvdzVli1m1ZVxiD+naveZdnE/VuhFRRQwP7E5IHwihEwzjra9MQyoq94R9X5
tFTgkSnwR4SrpjKOaH9JbDGN89RxvjT/Imh9A3inx43asl4TToyhngVqefwo
Pk41fSoA6LbLnaerBR446j+HYWkBRVJ+1d0IbNUu3LltT0ANudrE5AUkp8sF
UOI+GKYyzMLHkWzaht0iwNdcCn7RSdTRZegLdg20P2f2QYV9ZLBRNw7KraCr
3y6sLpCOoJ4R0N+IciPMSCD6mCzZZFAGWxkHnBtseE3L+ai6LG9m3kyv2u9K
2XUWh3E6xUWZlpPJHMJDLtfnAgefzIePbnW9+Whw6zkVrHll7fZJG1inWUiu
ZDHW0jnWWBaQ9vRnlvc1/ry1QoXLz5ZPad+WRwCqL3rkcuFAN/fRYprju3qh
IOJ9NpjhZa54iiIJRd5jKk/usMhsNUdcVXwT+WVJ4gJZWi6sv2fyVCIEw9KX
gc4VtJMOc/agTJNKRuj5nJ8G3Ber/wL/hMWHB9FFOLWXWgNl0zV+vN9tWzGl
fE7won1msWEBM09zCMBjgAOC3SHk+xQbL5sOtegKm6ALfIziBBGJZddGS94s
wQUaQ6mN5GGpWICmOKUtvprLF68YogQYiJjLsQokhkXYcBa67AYDTIqFC1D8
nwf5ML2LSc9UZ1zD7zdgODz72CpsI7DdsF+m4MXfYO5wQIifObW+zIvjEcJQ
LnUG5WpqOhnzOxRThFXbkIlvEGDoyyLBJSN64qw9k3P7tLhTohWVQpVExo8S
0G4LPYXyzqWuGw2hD8hOEpJGqbYvpTzhmKEeHJ4gC6JhEsUYRbdaSlEPNjxL
rSEECTczlIAaLWtqOQgJr2O95qyarldduHBFeZ8uHU2fvqCsS+kugQQUPM1X
FsSZt+3v/HmJ5JK6hIgFq0ldGAuOksHnywhxx1w+6qSMR5B1mJMI8DVJnuHu
IsWdGJBx0x5QyXt849/+8fX4fDvYKTlzVVP9t3/ncgaMFMkQAhyPqvZevWd3
wIQEGB0bk3CFgzprgEeULxFrXZUQg7MfZe4WAQex52XH1xIEvD2RPPuye36a
g0U2SQBfWRv0v8a7CudAgvSGwlyKDZkRlGEE/wr7siazxr9+Iu/hJgVM8Oz5
oOsQ6TU3OFyEMzBxmZip4ZQFjZKn9GG+yGh/GVcekGwYkyiSFxYRwkVTEvf9
zYyEepYV+/zqo90L6x1obXNlc2JRHFsaGbGDsN9Wc5DxR0MlSo5tFOUkIm/U
NBnOliOxF13erDJUVkht4zLNUupbDQfAjZTiCMPcm/UF/cBVI8nrpw5tRoR2
Q4GutAC5FcVjpFr6OctTHvji1+Yr04S+we6KZwpEDfUUxl3l7wijfhL8Ealt
2i9arLe5Y/zvUt7g3r3otb3vPy2yqIyWTs4QtSyyYsjIBhDYUqJDz2hE8LK1
FJug0Eps6R5TIvgioVsxFhYJahXsHdp0NRiz6kOixYJK0Ob8h8380qpYreMy
YICE6Gxd2hZtPM4TkkrhQcD3Ln+g8vNqVPARB/Xip6ZIcpbwm4SCKyMm9eQV
ZmGNo2H2aq2YuFVUHkTdFWHELy2kEUJPpDMJwaUgddJwaE5jDBscLbmCtMPL
n+CtA3TxUhHiiOIVUcNoX1sV90bLp9XXtVUFDoZxW8bfUPEbIYMjbYz4sMJY
SrgmukTGIycR/NkO8lEyP9586FebG5unIisk/2eWrrKSYi7QsFUX+onRy1pY
EURCSKK06DBocTgjSMzMu0+iW0rzU9fSQlDXAKAfj3JsHWX4ZNPRU9IawwNT
rRD0dujD5+KJP3Py1ilk35y7J3apcHOsVxHIZxiB6fb7Twn99mfYlDRiDv5/
L6daXy8Z4fNrJvFfjJrqvPcnKFYasKj2P4EyEXkU9jC2qbM9trA+6REr+Iul
jYU6LQvAO0GhF2xw4Fcr6Z1A+UCihRbJb6uRtiVBiNswyayIel2aR/LjKDIf
oIbKcCUn8Q45QUluXIFA4pTCsDNn1SYvVtOBk9duKrdy15gxitF4FEn+t+LH
OEaGB6ae76tmJ2aErNXmFklitSl56i1jTFkI7hYQvbGkY+osw55ig6Z8s4ZW
eDVX830lj3rb5+pPfJbrRcJiaSq4AXDUaeZuBR6qaWLXYsVLLY+saFXnMRhp
sTSc3TAkOroWTIwSrYrlVMXQLxmka48tynOk5SkR/j0DgCLUGhySVwi//CAO
p1eYpMLjlVdGdqkLlMPAQCkuKgE+sFphaUvyFoyiAGj6SgDjL8zhsPJKnKqE
ZGtEfu1kQeR9NToTSI0zXY1FPqYKgnqXHHZR8h4TkRMxDE3pyXKYwHaOFjqL
x4D5CFyHhD1qG+hFr7A2guQmaBaLmuBW6gkUoBJwkLN+hCLYyy6wwZfWbjX0
tsNgJxd7AZ0brCQbtcAEGqO3C8MosmQSgQaiRVhOgUEJLIMQVjg5YF1asK/1
yWEppaC7f6SGVdlhPxIQ5XZYBRfyeZETQpcohoAGxEDQF9/37vvD9mn7PYTs
GeWK1aLCRTnehyZD315zc6fpLl4W2Ywi46brZfNFZoYqDHXvffe4c9Q922ur
fy8ErqZzsOedgnr9/adB2i9PKLQJFr9D9smDJIn7Sob2ttWjO3izWFBcNnjm
yFFABCWnvluh5F+6nyvNtiYt6DtLhvgyymm/Zohk52TJ9sezwa2Ti8OG0+3R
brJb8qaISw9N4dAo/kIHX1hvM8fgWhXnXAwGgJwV44FSK1PQn+2Q+V54olkX
UK6pP2T0CtBDqFbpVQb2Uwa8Kn5kNAFuyZCDusApGhIUoweadDlNLhFRCkTA
PQi6B58ButEgFNMLKFgpCHz2etIkCZvJmiUKBufu8Aqaq2NrnJr/dGOG0jHg
QFekV+c6Gtp8+vzi+FP7sutd9bomy6so574ZhCj5Wsp1zpRomXQHqmdgstJN
RuNUV9qEUx5RF8fIi+P2Wbss47KgGxAMH+3RQyilalUSV1syHE0hS2kMaEFo
xs+WyYRI6VSJI2Uo9q10RcE2T4muIsyHU2drAs8MnGcAY7mcyDN/oB/Muryp
njmtR0TqqWUChhOpJME4KxsonhIaSbVUMAOfSW7FMMAC3h8uogEsGIZrYa0v
8pxZlthIre+9uvPZ6oN3rGT4wcLOZxlERlPxHyXijiPLUwIMkaz2P2e5OIS8
RHKQMEvN1o+XWuDPiRQzJlOQJKBBjp3aMrA067xDMz+4dufrCwQ6t6ltCfPL
FfkpeglZCpS7UI/b9TRVP9p7WbAy+j5czXWJOTNXpB/GuEdxnzOQGXR2HBm8
pvsbBqQCDjbVl+quhFGavaCIbhgpoW04A2N+mhsCZPpt6JOMFXYT7gBKbu8m
D2WRfEPQXCxvpu6BFcaw507I958y/iZ3LjADrC037FTNPRncTGfj2RCL783G
GMRu49JbnGEGzk4KrMfYarowSHxgozEVOJ3p6MWEgiYc8QEvOLxJjLBHgTVs
vF2N4b5lVENw1CyXijIgqgkcqrMNI+J5QmWySMMFr1xzJnAOoDRSt6DYHjig
KYTlTkI3FGdYwXVjWBah0T+yfRl6Ag8L+RIJl430ZOxuqtibNQXHHwEIF8Vw
tlauvVNMTu/PKMEY8WOKwUEfT2w7y3X5NQ0NiGyGZSjne8iEw5xnqEiHNScw
OA0oxpgV5pjEgcwEKzJgpYdEJpF4p/uUbtI7apeDnMk3K9pZ/AiU6Cl4GSCn
YoTl7cfjkdRZlSLglnaAPkeYuNufa5skf0zm1DTYJsHMjjEkjJFTIEc5Hsbc
TxUr4KoC98StZ0c8qRuBXOTGDs/lsgWUCmuY4CIPHr1tgzexo3NihtjdthEd
d3A71QIpBYMTiQEwxQKNUbcr5ghSLj846vqJGhsLNVXpHOQdAguVMGrrOpjG
OfQLXMwrKQXnzsKKuZGaEwxFA8U0Z6sF3OqaAlyTBt4O6K7WvAXWnuMMyJ9B
WIDMK0EOxfQbK+TU0qg8KDFLwqGVzRPdR4K/m2AFI1O1OFmw4YNBWbl7zT/Q
Xw3NUBSeRh20HURmf9Hao/YCBoL2cUs9YfsSOszVGX+0O7QPgTVsfJbUQqxw
ust8WKiVgCrR8Tt9tMwZkXb1lzzrV9idXG8lKn9FRR/1+0poofgjsNYuF1yy
YYDRFyZFKrpNTMQATh3MNgm7cwg4U0Zql4Bewp5nq1SxshGpkLwSGsuZSx6j
uWOK0bqf0YwDPBRCozIKFWDrycKq50P59oa+wAeVwAWlhAbMHOwBEwWlAjkc
sVJMvm+YPHxIBdMXt7Z3Svgc31w87SUUhJSQubnVKI0QjG9q61CdEuYxVjQ4
ztxSKWv8PhGPCLg+QaYqL5IxVbrTKXQ2O4LEMGBktpKJN59DyRHFueXDt9DO
l+k4EVDxkU4EZn19mABt2p8NV46IKDV3RALVZbzlzknApocV2RAMcUAeNwJ+
WwvMIicisAvoIrPC0+kk5XyaRzDfnh3UdQqVkZY6sE+//7OedG66ZHFUH5/S
zI9+xiuEmhmQf3lqZuV4r0irxYbZA42FbHASP9urBHi4P9vtHzmoEPemVjl2
NFqulsJZ4ArEekAkSh7BBXv0s8cXCc6fTie2hCZWrP1UwspPd3hhEscle5CJ
vMGdtw0HWNBKvSHBMlQbNsc8kFQViT3OVni19lejccxGdNuDDXCCLFw7kZF4
OiXQKLIiM+QKcRi7k5DKrFsb9NLZjIBbHE5sqIOrD0hIgDsMMJEngCeD3r6y
R9VUdIaJXIMWj56QOl1kcjEyjJLdx4+/Y/aKLiQBG6exDg1wkVj9Lz9/ODju
HXnkfs+IO4qMihAeUaa0eHN7oLqiQx11j+hGNd22uz28kdyQscwEiEtgltIz
ITJQMX+sOsgmywlt9NQbk/VLscOFF/qQt/VOkUYUl7yTaPk7XTA9JXkmEGWE
zBD8BwT3YwLCiB1BPDzFkLmRx6Z0thayUKrgPQEfR16F/v793UnPx+qsKBvh
hlAvDM8mDJDvb5sdkBALLII9yB6L8TM67gRtzSVm1LJMk9kqMzGPVuqC1IPk
zmAwl3bnaP9aiSAAj2JPUeamh80W0UCqegPTmaXLZFoUGEsd6KnSdWGVVsNo
BxCG0TiHdvcJ8DJOsUZ+QX4d/UDZfoBdO6MpSYs4tinV7MWquwlcJAB7BVVj
WDHlodAUMfxaHTP0sKxbdjlTAyXzjgj0UFKdzZRKHb2JgkH8BzosctYo9drp
3vtuDzwWsCbUDLuO1rDEtL6gblHIkokc/PqNxn8xc4DpQd0BCVWwhvrwVp/W
nSjshRQA9ryRnuG4AZQUbiB4MvSlmH0riaBuQ7VawB+o+GHXu1s9rLsMVmyG
1dowD7xTF+rouD2XqFgHGGjYbmfCcWhyoFdJ5g8ewUztJhhGM0p7pax+ZKej
7BY2F6A0KGuur7jVLVpX0SECxKckPjo9UtY8EdVM79BT2wGxGQCHPJkvxVyg
rmHUuDnGiZxgkO45utW15yMuwqL70MyBbb36So2TsSIxrltPNhOjZlDbM+Yi
ViKd5DeSlq4NC4hsAzF16yuyzbXnCZh0ikHMZDlDNqPErcGSUxD1mDkTa4fN
GxK0pBu1QsHx4GHpg0iybZQEMOuvsnw6CKCHfO9ddj91z3qhH1Qc/2gkiaXs
4YVziVAUGH0IVhQwSyXjcZnWN7eTvMrg7QDK4dvO63gYO5jziwFzBKPFCArf
OAXuoRIRHPegsy8eknZ8p04whryqEfTU9Ql0ZFQtxTnkj3Kmvi2THUvJ4YqX
fKrbWpm28XnwoDbokueb0qFlYdFlQVgumSC5iNPXcerBDmA03l193adLuRvr
ebpsEso0S1UC9gJKsw7GAMUPxEDLKQEMMA4sMgtxTKKYaymT0G6UEKH2ivJZ
9K2xB4aMMW8mmZQJaICWAFX6aHBjtQYyoiV3xaIwiKvEmpyuLWl6Bosxqm94
d2nwaJQ+ub2BVnn5siwbM1PJ8qwnPETMUrfij5dW7rilt2tLFW8nJSWi106o
UVS3W1CL9CKvQQ6jWhqBaesVUfmxku2VuB1N1ASzV7kLiegF9LwFEmkE4a1K
yJCsyPwR0XvObJ1IyEwPLtYYblBw3Krrh4yKoF9Ky2UtzlCDttVdbKK8HoZv
CbFzWUXcCuKJzp2ADIZT+6F+D7nM5CKFQEo19CTSKIgoa+P6yyytZ2EcFHgH
eQI6cp1xULQ+5gTf5gBagQJg1GIi1POxE5oVnQ04CkHqxRWOB5VxBtyXiy6o
mxxXdTVTudIo4/wAI0xS9UpZXkVAlDDt2IX6cnosw9Oj1NCzdyRX31qfVhmA
vnhJm5sTPk3uxNN8sdAzrKIQBYwU7+cx3z+I97nAywy8ljNjD4NdwFhIq64s
AuWD4LOiQHOsjLOI0aiGgfwZ9c6BJhjgb7O3bgeD7kBsO+/13l8Q8E7nZjbL
XsyCnIy46axgBRh4mcUKLgQ6Wo6GEaEVgESm1kBi6NwyrIBe2lGq0hQsM1AY
ZlAGnas84M+gxiY8w39rXoyxs6I4iSSC4iIGCWGEE6nAPzuQTHItsCGWLzxw
l4/JmJ5TCfTeiHbglP2lfqd2d6QNTJMl5QIlizuwpjA2OEZZmeZBaZ7msSLR
SQsKijoFUJmFStFKHrL0YtWOlggE2m3ElAI0Mlgh1zeTFSykIgcq86ZNj0b1
0bZGFo+wUuXCqId8hEkFycgfLMzEDhgiG0YajcZk21yg8a6spOGpXcfBmlK+
xDPSpKwpqrRpNFBn9JTIjN5hs2ThcuFQ4TjdYmQzDHVKDvxHNrriIsWYyE+8
TCBEMNatI0XWILJTwwDGMxDpbRAKjhS9UPROooP3cQWpnx10wH1AGlJk/ht8
WEavXJkICzF01GQxkEmp+LWS0hEXYDUD3DxCLbmY9UGy/boaqDdVfzOSsruK
l4GAuUiAiyaEbjJHoRovUjrq2muOIXU4AHILvgLauQu8Xvf4fJ8sCd197dzl
A6Ix/EVNJjWAVeP7mYXEAJfvowSmkHXu+/fTr36NQlHBk4WLcY8BhezYJ8az
QPV+aVJ8bbjSPJALhU+x7kbJdqyXqMmiWRvA7Oc3CwRzzjATQmlhPQvFPpP7
wHI4G+cPDlMH6+OxjiMMW0Jjl1C6tZR4zYwmxC4YbsbW4o3xnB7nxVUX5Yyz
l6xrLje9u1HE5r3ZhPgvsxYSVChCdRHNRzFqUMyklVC/IDfg/iiLiFjzg2Zn
amYZUQRwEXZSde+kwKIflWpK5mDtHedqZC2/uGCsmiS4DaW1sfDVrhF/dbQp
MMQStDsySfQQyEJEY9InIYKHZOM8DSj5mxc/r6OT4ijmSXs45POMRBqyQrBN
TUYCUx5o9906FVuUy0yQa6xK/DQuKa3RXUgHUUc05NfYBNnpLVlfRra+cLSl
lF1de9UKFnbgoGlBhqtIyQbLxIGTIIsDoJq5hR8ucyNgLrHBQoZxVkboJx+F
0qtnYGXcaDY7KDxOZELVpTLpWitxjaGNFjbWZ8GKAsv+XslnmXcA7FQAIJHH
MOajBp8yof7qEQnz35Yb+KJnp27jTTw+xEQB8ylW0dgxpuMnQilY1NEoUJHE
qdhHnq6s4WpEqpqDa5XRBTFjE0uOfyL7AZE1bwhVA3+zJvlQp/AKyLJrNEMC
7ezeuBCcYHkXD3wtApNQt6SqjJEdmH0Zix5oMaCGkQ6m1TgYFoXpCfjkKovA
WgAKiVKp4GYuuXCwYE6lQnhs8KWgufUECcpg5YBw4Z+8zGSLm0jhax4NWYGg
hJ+i9uUT6WHG6EcjKbGtqORJeCO5OWVTCaxbCsaYEBixqo2mUvc6E/At2w7u
RiWDkzsj3yNdWfbRYsGaMM5IlzEEIhYJGD2aJ8crDfw8YxA2E61A1yCanlJW
e+yof64qY5aXiVMRJVi44P9JMjEXMz+xzdnFeHVz6pBNkorfWA0aORWB1dCt
L1KKC+EspW44GtuFyVfklJGKmxKqM51nza4dJfXZdWawmSi33/aK4rQIZJTF
J51YIjRLsTBK083Ixz5+zM2DaGFtKkj3tAL23sM2mrjA2ZKNuCO0hUSYhovw
M3gdWcGLtJOG082jx/EsionTHlg29atMwGa//2TZ2ssr+Vwj664HXlnPZ0Tv
d5j8jJml2jqIRbW3k93hLqD8q5Myozbg8gM70ffvmE6wKNvd60hLUwxA5NOy
9lnab/zxxw5nYjn8gfsljYxQoaXY3U5R4DqBB2QzLYHY/gdUCKaUrm1bBqSY
R5w8kPMM3AoA0AFZJqyj0FtoxLCSahYc7qUWWD3P24w32CSaQrC53T3Gfirt
nZRVzo0zwoRkFqrLPQHH2wEavI2UZzXFbnZ0/mvqokw/iKEyhUqt3u2S8Oq9
qu8gqGGaN4BJkrK6mIGqimCew8VsNUfuom7XBT9IXaibdKnOCaQhi4KHyiW+
ggZT8mmsoO4qHD+5sijcUoQtUwOD01gp9sCYAOJVHzwuu0Z7UIS9BHYIBVum
IrdjuV7sjEwamC1NGS4DCAKw1h+MP0rwUqLEcjGby7Xq6AgcAhmxRDnKnBUc
TXVpXxCIcKvBUwkeG5iytbTWJrBsZ8oD2htE1nZSaEC8mg7F6UELKJgAZIRT
2juI4e2lLi7ibdME6Wa/q/6ceUEd68fb3cApA1brnIuM2gR7mCDHcKdg6Vgh
06Wgbu6CUhk3+elI5FVtw0WAfJ7gmwa5A6FEmmmWskJu7Q6xWMFZY4+8STGW
4Hs+YroVvBntLcaofIfJoS5FM+NyKbbRnWQ7zthWhMyY16YAN1Gq5QoYMQQS
qSeK4SnuPk5iMAYnDwxkOIfS1SNGzsC+y6YaNIinrpdUykXqWAwtaVhOQ8m2
o5tHw+ENdPtRLE4z9J7nNpxi1NzYRuSYA9TtttQqdwknezlT7AVDFgy2uWqX
uhlNy+qZ8ng2myPzcs4tXLPsxANLU4nFcmRQlDQvIZumGLujRnSM6nJqqRuQ
ULRBEcGgeUvjMQZJLnP86Ji+ITpT4vj6VB9u6cREwEIDw8cAfQF7EiwGK6Dl
FY9inLzadfP7WOtA5WAxkiy9R44ytzUQvJB1O5ZSCZeOg16HKJ7ggCpMNJtB
lJvBS8sKwhxGdtiAvIdMTstZeJcMGD6+j/nOQA5ZQm1lid3DPaYV3iltnBxl
exxAUMwewCcVcUKNXJsCh0VsGG0PGPM4HZA91VoYs72ZvmE2ciIk7zsKbNZa
t8jeYD6GSZMCOJ8n0SLTzg7uDjcbk+EErQbkS3R0kyjuRCCiPURL1uvJydkK
1baSzcysQw0yNlZIEuujRYo0Utt8YzHFG3A3cOixgDCfs8CuW7PM5dIebyy7
rQBScYQlNzE8yZjubDU118L3792D9vF7EgNPL94fBmiZpOJvpuRlu9vez1m9
NNp2LsZuGQ3RsJMZGakQ/U1nKP5LC4itFC3fppR7TZJZIU1icMcAfEIJqW80
DKQY/N4aQQ4bRq8O2a5gyQSaAJ4hvYF5qDpA8Ix7hqKFurHuMFIPa3jQKot3
m3rMOIpcstrBtP7sdol/U2+ZRdJLypQHUQ7SJkXqVAccAN516dLV9JbiA+hO
f/S2WdnZYcckPJEJQY4II09ph7AUxdv/zDqj6YJEFtcntNZT4Y6wD4JKlmBU
fRKhvpmCFx+YMkMIvoQ3QEHeGYgHJN0tDbjAKGPjJqYWtKeaaZiCPA5/TgS2
UfdIgm8RJZroS6zc11bXnMYTRn3B1LW0ELIyDQ1IGSOfR5ASgneWIQip8IGH
6PGHMLqMKUW7ARIb/ottupQjMH3UonKwcfDHmlGda5N5bhjcSBlK9wrWoWXT
EbUQ8pWN/GJC+DpgbtFSGBo71NKvDTH8K4YI9X4LhljAJGeUXEZnCzkm2lhy
6zudbTiOevg9BAgpm5qm7CXUo7cQRHTcCxIJvueWoS7aYdsNxNtbYoQxtjDo
Ss5kCNXdsQ8ELeswcgRuL3ufdMHI7VOhfMwhB8Yf3a8Zot5aC6mUhRHyzjBf
VllvMFqkdt2uqpSlbrcEwVzmbQh1YWMWnmX75Yq3DRzVeRtZbMGuohFO0mTs
0ETgbqOFEpQp5KMQ5RGZgWTsmwSbnLuJhQaKnqJgi/WT7SRXIc8H5Zqj78y+
ZMaS3U8441en0WmHpI0i7ESJ6qLaxkvqIvBYtzTc9aoPXUSG2NM6XDImkS1I
8bCiRJl2jlPOcJeweYSL0uyUQ0zJ5KfPNVPmnz3eGj7YpMjqHH51kDgTOrNt
Zjt4ljHqgGrd4UZQrNR6K/hwwSU5kGD9e1I9UsHKdZYg07MWf5ncBU9hHLtw
RVH+3V293FZSn9WlPm1P9j11xA3e+pkpAxwZX7tea4zi2qUimuKuLBtvahE3
G3HRZ2KFWN6Z7NH8QQ/xS6QLk49sWuU6lkZsgpXaBpyHFQ6deI1iBTtid5CY
ZSzTRQaMhXZbF4I2WzKgvXDQK0TBrwusRamD5NeQKCxmSLZSDDbFe0XMtq3d
MkObXFq1Q4olWs44JNOCOVdhMRW33imIooEMqhU7yuzAUKBcUiKtYC/eOvaZ
M3FY+ynQPd+/n3w4754p1kd6yckFpVVsHRt8Gx3ibNxGuH3bmg5RvyraQDA/
zQnFnopfoP0ElaZsviDiu0LTMMz3otv5cHraPdtXHA4daEMqnzTjjcPsAfJ4
X5nIKj0KLjkO13P5IoEF4eMvee4g0eAjcBEv4An2q2YUUJwruAm2oNxJ2yh+
WDXnDb+kjMg15YCdVRZOMxXsxpBECM5D05rFAISfgZmIHYGjhc2wUcLuP1rB
IRgNKF4iPXoaXYKaD5UjMpl+djgeChm7UnOIwrMiCTYw+PIsklgwAGo8FPHE
CiDQbiY6A6xHDtkcBfspI0bzAZPlyHkNof7fo7uksAuDaE7SvBLlSSAl46Fz
teElOppH7Lvh6EuMr9UxVZipM8DGbyhw9YZiLGFLdOIl9W+F3VnmIUyXncCl
rwPY8OjJrmCIr6wdTMyExur25ciDkW6UWM5DR9NBln0BJKQvcjhjDDGv49oY
McUmJV2XXr7jxe4/2sGKfEzK+pwIBAnn30GksjHjLJIJV1q3Oto25RsNie+s
DU3ogeLBgSPkpCw6KBqNfjmb7YIwTn7pSBe+MIeOzxQfML4N8haDpycJOcXM
XNfbp0xNh+QtT2vR3NyoaxgYV1PfJjWfs3uJH0QCUUW2CqQ4XbJDrAs7uAZs
rHXB96Rqjb3nccwqp1QJh6oHFFeYse2ZqpdQhH6UJhCCA9Iox7daRgzEfYnE
vTGT8Dxeb8YX0Avr0cL2KQBqynH8bMFEfyUHgSyidLljmWsXyUxJ5InUtqdN
SOKRBh1ATQ2yItEYbiVQo5NQZ0wvb+CAeTqoXq5uLqG5lEIMioLH/dkDb2VJ
wKIlthO4KXrII5e9F+03xPyNyTwOQbVESslE6RDwqy4zJWtqLMbe3UgpCpOf
FRsac5oq8mpKU6XcwvwjcginBrbQ8BjCaGMusWFr6EArJXeKnMXs64ari6qA
s6yE55U1GDsL8jhnxY4Wibn9Y8nZhbeORe+50Mtqe+y3X+AKtzSEe0rXhvFb
ESTM9Rj6j9iuwaWhKlpqdI+G++VPEHqacxu2sNjvaLlheXdF73oJ22HbEUU7
l8fRoxXz/AwYQ84tZ/MUilpOFo57zYS4WqSQZOBjowxeKQ0h/VOuPSSbWc2t
N0GUQUmknG/RTxijgcsiEf+wWUo0BjqyGEqfmsutmPb5T42/0BBoKvlGhhlT
8BpHdnIB92iCqZPkdsfsRZI+aQgG8+TpnUJpvOCUaKmOnfMyyfVDNkSEE8z/
v5mpkefG89T9snYogcioUJwG13/RXW6IaTWNOZdEElT4ZRgNbr0ExGAPT5Ei
QpRqfG9UvoQbElaoKCOcCg0ARRpdk6CECsNFWWHRKdBsRtGmeIfmdCdutEix
eq0/gb3TmiNcWaDfJQ9zcGfrRUC4taLpz1hS1i7KhY7yHiKaxAqCVzEWAlIg
V+xFXt8lPko2taABnXOu+FLwOPiBU6wyxX8GN1zHcY6YpAkUSilcS8vILoED
wqgQQ8KKJpB7RscpJBiD4DTv5SN7JTGpgB1ude9waxjymElE4MxGGJrDqY0i
EkfsCJyaAnM5GYQRKPLn8CU8d0aVwniWXHwRmZvi6c8LKLoDkmhWU8DFQwZq
yUPRlNEWrCt7zabz9DCBiY1ROJ7Z0QVu5XRwi0hAABL/aJmqVbITG0nyM4F8
hM5b1iERiCm5HGG0zCYbCeoaGHr6Ii7Dt5oVhG0nLdEtd8+V7xCuBpUcA3xh
Yh7s4GsNSjAfz0j+0FxNia+maISemaOytQugfMCQIx40fZ0SLygaAHTDJ9WK
KLCuqoyrSlkBJ7zcu479SVftQzmHIoedxbU4qpxCAtpgOwCMkAAAE4idH8WR
lJ4h8BGBdknuORNOEQMmRl3o8EQ3lTrhB8omfpHAmHUVqJLUTwO6vGcYFooG
JdeeGvUiZlA40irEigVt3iYaJgcGbwL5DSAMBBZZRU1ihquhSF9TqlYvbdFc
LBQ1A7DqP4R+Cf5toiXYf6j4dKwhnp1hY0eM3ZTQZW4KrFFcE0yA8EKAXm8Q
4xM5Oy3cbm4q8oLGE7K2z0ue2gxQPwAjAJkyEisa/JOJpIEoEVh965bEYcsv
MVGzg3aSqtZGnIogUnCUom11sr1GyX96qJrpW3B71oNgJ3Ys+fnY2B3t3zC1
xtCyieBLEeYiREsuOYLSuW57uXG5MdgWs3eQadEMiD1iGpFQj42hZeuSigPQ
FfcGsJSAgsej6S0pASZJzyqOxtaVtdEIpiMfihGnO1pxrdZ81sx9M8Lw4r7c
EpTrnRQthpRoxNBFSfNmuxpf4sLC0DqcMvwOkhXb/dD0jnfVyCpgay3ERM9f
rwjhCBVCkzCSICAWrtEqgXgQppS6jX9/ipYQTwPnBb2vpurUjhiEoCx1qp3Q
Ua0eAyIdCv8kbiOWEmQIp+PovvSC08nCS4TgHRSVUPygDrQGPURdQwBHSwHD
qJVkOf4jWoo+kEwyJb64UfXCDHHL3Af0LKSF6sl4rC4qtJ9bFoZnJ7RIOJKN
80nJKHxGUXpcjVospj2mz+8/dXrnF2eHf0Bp+VwNishVZdhkg/Q0z5JVPGOz
M8cBGrfVNrW5g15QdKhyQj6aXHTICYcFKl4I4c0ZG2eFMwJoJslIYkaNvF+V
NE6dbu/8Cu8P0OY+9d4rofwB7oS93r5GALmxCgjEhMwsmV/bTkY2J1rD3buj
cbWwvIxa1ZxjgwsLai2WprqW/2MX3yNbsZJBTf48ok4iSmkUA1r7cs0SP+ov
IkxjooJPpGXr4EPW+tLobkY+JriSIVwRkrIBw0Wg5ZC0FiA4rqZgMM8AinQG
2MMUaulDdRyzBVoEYdY8NFQDfJv2Gz0MwG2dqhv8JXmtyJu+SBLLSWGQFJEh
496+Zawy4mPjx7Lw6nSUjONMb/10RrEAx58gg5eYniQ4iXuTUm+i8TIrcatk
Nyiz64yGbazya/JeLn5gtljrAidGBSjslBXyTav5c79gv0EBRNyIFKKm6djU
9gSGbdYYAj25LAIqCZCTwygZhtR02DQrIRz8ZGtdrFRYKTfwYArBkX3Jwhbs
ZthlpmHCB0f+jXWiGShJ+0gYYJKTJmQ0o6WYaZyC4bbBlo+N7C01vHEYOkyJ
xsP30iLpPwpODYLlaVLBzcJ8BLWaLkFEJrxcoMj+r85Rt3Py4XP7+u/7H453
A383CKq1N2GrUW9UW7vq/5uVFgV3rmtRcO/zWQFU74Wt6XLQMcn8HI7OuX3a
u6dDwWmqyO115Ym1A/T00SEmf6n4CkhBbbgAsxGoAEv6qBzxR39w+HDGeYxO
pJ06pLqCEZvUJVPPgLjomGkMj7XTvtzsc7uwrBPEI8lkZFnDVgbGfqVRdjX4
mKFkdcdzBiinl2umreQcTXAmHlKbjSm5g6yXBptQDcIOMGUgsV8fk+xXSA0E
hkWgBKRX/DqdwecaqmBHS0nGPL3gUszCGtzwmfKLw2do2ccaHrfQXEixFJDF
GTlANNoSpleCol3FfGHwWpkIrFjySw7LwA0gpF0KDblLcpWVxeeiOp1yvNoE
07qtAbkTsDy7u1xY0n3IGoftBb6ju8+JnuOplgRSH3nErI81NxYas5LOOZSL
QKrdZmeQA+2+jBCIbjbZycMCDVdSvBASrpZWeLs9ugyHMSJ8S54LirKAh0YL
j2DhBoaogI9E8bdVtlw7a2gVW6EtSwB6EcBAHLKRd86XkuhjlLTOV1VZR1Zx
yAUAIM+XkNq3ygDHFMozkOCX2V9BMQ3+6g+TbqA5+KxP+Mo2XhJiGIAoS9ki
aG9D6z/YOA3EWWLVI19KxoO15CtBALYRzAz2YP/R0Kw+BYg5vVjqHZ0kxjeX
846XTGgfegL7s/hRI59LaY6ZG00h9uVdN2d6VLiXa2nZL3CNFVTqeJG7jPb0
iPDR7rJd72rKYGk9aQfx9OSPMmdslUWuU3vbhczF9eJlaA4BpTIzLYEdTvE+
szLcHGUoikM44ZRG/do2rMArHhi/8mqHconuEqv+gFVOFGukMXwYYpdhuzco
+uVEYysqkxMHOB4KWX6sbkhwvWuRbYb1UM0BGs+IMbPZFzFDxdVpcMoNopl7
6+gSFOuEAKxRO2ujAgOF5xSbW5KF0oRimOcA5QaRnjGNT/AoEegrcUzw9kum
eMnMO8ZEZZfkHEJ7MpF5Rwyw7hZKQfP1BIXscaoe5/TwpzsXK33CZjf0Jk3d
jiARjM2qZAFYMY3oSEJjkEQFkPQ9Co3LVkm8toU91rjt6jNoVWKwE7cMSOHs
GXVu4/EfTllPn+RaI6wOJApyC5EImUwZja9wCXZdqou4GjcQLIbvUc5gtoK8
ZHdrtf2ofBeaEDcUTOIRoLijRydXUUjigjPLOEVl4/lWMuWIaHZWKDLF2N2F
TuYRmoU3pBbxlS3KnTV8XR2kkCrIEQueGympaEufVsy55p4QamFd2yAGqAVF
DkSXwsyKa7Rcr9bh5Rh7LgmKjsi50dageJXcVWvpId9/koSPcn826UPWpmt+
A9sgKAqRUxj+txXpQ+RUBVt5JvOlQuV2HkkJPUsSyYAeLNAklJzJ6PNgYsjz
KcA2oTcokcygrpAlB3cdnTv4m9WdYHERaC7Grapv1AIOQB+6UR9QDwRtS4Om
h7UDbMlOQlL8pPpskWFIw2OsWYyIEjj8DspdLgBQkjBEXpVo7RhRZCD4vshC
MfUv5vAiS495Ms2bTzgi1ZGepPNeCxeJVW5rmc2WSRltBDnRIQBbP+XtrG6t
J0G24IMwyhhq2KBFEcTUMiOXx3juMKo1WDCdA/hIqJdcC82Tol2sX35AjARU
AFkCGIjCA5lYlBuGv649kC50mjFGcd4lD2S6hxxLxAaz3gCqWkk6OCEhQnAo
LtkNlJS5M6FxJjpMPKfIl4ez5QCEBdL6YlCX0ZO+Jv2ry0Oma9UoszwHVN9T
nZr76DFzTRogC6GxSOzvWqi0o+xpWYzM5OTlb+toVdCwjvepQpBbUQO1pCiP
Kc6Z2FKho//oAO3CAAhaGLgsBrshzjju9IwdTADxU8JZUGGhTGc+R/aA4fWM
Kqm6orOTS2AqUxRPFZdUmxq0sWq1pIOkUVdE93Eg1q36EUgtCxquwBW7IQdY
fl7ee289DsEdRH5UC9laHdI7JGuUQ1IQiozqToC8oM4PhVxFGEG1r6e5Kd/b
wWQxq7KaAyUiAC4RqBV5AbNnKTabFQenUFycwK/iC+RnHhFPy4cUUMJbr3N8
rNZrMltwbtpsTuguJnrCgvan+ESZlwiyFNcEno07bVABmFgqt43HcQLwDGBP
Li9nZaMCSaoPz0z0/kVimX1I8sqvIUkILJp5fXVDQBhtH7HdiV1bjAI9ON4r
SJt6pefFxsc8cnq+iMfG5BOy1MlaRASsbkdlYrSaBWQL244+PnvRnTqDXq48
blbU/UxqQJKzVJYQbhM8PoQd6kaeEK/JbTZ8b6KlMqw8QaYXdMXkV5wQ2Hil
UcaFhsDsgqsuUAEMVwdIAwsGQgW9asM66oFaaSfWKPWSsYzAZeKs20dKN+M3
ZCIdl6XUVG4KWPdHDXlWWOTU0Hn59Pi0S36PSlCrYxFY8quwN5U9X0TCapj2
kFEnKehc0LcNR2ItGjeIk/ckuk5jnQwwtuc9JbBr6RczEb9/p7x2tuSU6WM1
WIw3pLqk6BWmpjJsi3WeVxDP4DT3yhQURNHe6WrFAZv5KYGZnQQuXKywWvWp
XMsH7Fp95PQqRbY0kefmAyL7fDhfmxCO2BQFtUd8KQEjN7rcr1WEQirc0sAI
O5rZIQ6JTNo2lsgyVzKJazdLfIJ6i/fC1lp7irFxvWFIx1E3dsaq5KYbALc+
HT0gOAGaBXUIxJI4KJbhszVj7oMqngsOfDqi3MVKaGHk5uGMcjri9++cDNZp
X+yrKXM14swLfWnEIHWT7cNFbNosARdhUEyiuY4NKxqdFUk7sJYZ/XoWJhFC
GkDICqpcuqic/UoyvRstZlOu15SZWhpOvJSE/q2PA/mRAbwklsqOBlfIKlJZ
8XqNqPwCxYlvmhTrCaRlQ3xjNAaBmyvX5pGJoH9LENByFXJgg2StDdkWbD+4
FkcESJlfKxwJKRTts3axGqGZkFLEZ1AoJ7OPitK64E2GDCSDOkhLVIOXEmqH
EO4gy2M5g0jv0opA7gCaIFjtF4fhqGc4XiGZgpT56nyhRLpH7xBQzc6l3Kai
yp1X6DhBR84hiiaq0VdMsq+2aNz9FaRmU8YbZwLgaKnCmwsQ7qDLah8RxnYo
qUJ/gGLQq93c4ukyZNitWSFUECNTkuyp6bhdSEF29LtLSLk1fCsSdOn9erNc
zrO3b97c39/vjqJptDtbDN+oGSq5BK+FN8RxpTj3m193nOVC5XoBK64jTt3B
EAQYKqzAoq8u3mf6dFqDkopq7ttK3ySgkmjBCKsoPIL0E01p9eiYYPowQR8e
XV6eexU/2DGmfB1kgb2zaUlGow4roJ5xehGtvkZ/RDQnkGsilgitIbOjjkDN
kOJkUXKzELLUb5IkRHRKSZhX2G28VXxoFkTRRAaKrfaWwKJAVAbtD1KIFRHw
yDBa8VXBE94lhM29oggpojEEPOYKFEsAzcrC2zJG15WlNcoDfsmguIo99vLm
MhpmuSHZ3z89Cr7f/+xAIJfYay8lkJM7dMaSe0Q7PV4yOojqL6sLbGFM3WtD
fcFIj7GeygHJJGsDcEZLj5rhdqeDGdrq6O2nh4t1W2i8Cb/HktMPLi0QUo98
pOeG9XZ1zffcoIsfPxgjYRQPOKMRQ/g4OWPLxoJcTuHNHxzyBcaP47m1Yt02
Drn4cUCzeWbEFKcOy2qFS5cBdfjHaALWDFfo6WV96SL+mSXL2Q8FOyM3Cg2p
8ZKhaLyO/HiK2SKzQu/7T9RiXDY8d9MiWnfmKyvyoK2LXlrj17YoO+RBMR3E
rMDy3y9YMrtDHafxw31mjxPpk175wZ47lrH4R/q1jMx/vnPwHv9Qr7q8+p/q
zkSobmaWm5bZlIXbyLE33tGQvAvESGm8LyFGepIED6XkPHqvzpSowdffJ4ag
NKPGkOHlbNJXmsc0oQwnC4kkjhNd72qtRiqJWAa+WKOg8QK8VQow2BruGaDf
Srrl+TwzOI36oWXuIZWEAekpX8JVq2C231/4GgYL6z3UPZXo22PCD7G0ZmIq
r0zY0ynHbGwaK1UaKdrENq7h959wLV+wgeq53HLmBdVNW4FhqBYqTjcHbnOF
M/gAWvSOOJPIPGKhg5m4BJc+y9b6IeXnWtBUvi6N2K+ecZgCORfNYdKf0w2U
b7sMhImodPRbweXykl6KB241njui3HAxjbjtwNqNYicYITe8vCDFNOQ2YwQm
fKgsUC+5ttpozTtSh0KdhvfganVaQWNf+Qa/Lo/V10++D9Pb/Drl0zlvQ00o
KmL2gZfliiE0rEagntlMrQgi8mxswST+fQbgepIps/WWANaeJce1fXfvAu8Y
XaOAvU263kWvbWeXsXe8e9prU+2N8l3wS03Ho7k9T7KojDeHmslavxjDYO6g
3Bqq1dt435S9ZzlLbiDyuJgfhfvl293M7NbP6/Ot5UrWnWMdsKc2qoyQHk/u
Vr4MHhUtE61ivUWqavZ0k1JsAGZ+0j1RaykWg3xz8U35Nk4VUd9aZoVNNzHx
kPMZGOqSbAO/BguNZVBydPONl6Z1FfbOu53jg+NO+/L4w5l30f14dXzR3Xft
U3MYwqNU9umxyaG6WwdKvjjoNIMQHAH6Kk4eIBbZwmSxBgc+aLE+L9JBWQrM
2FfTHyUyPLC5iLq3q4NSNieZ+SDZ5S4aSwVBTsGMOZPXrkotnkoOFYNkSI5E
Hi2wdSQAwS9yY95tuwu8BC4P8FOYZBK2QzqVMwhAbQWR5Bi+GCeKGMZWaFYu
kVlyyaC6BFTMgXfy5vGRnbOuqMW98xHmBZDEDjpmM5UAt2GlKeu08K4XAnFa
KiSLaL1UuSaRhkMibwlpz7oMtay1vdH0sfM0X7FbeJat7Gy+Tu12nrxNd17E
P+3mXsI+d/Dk7xv67SL9ZrRDa3TNLjOT+3F/k3CEAln37J2C0aCbe3mTOAku
mOtuk42uHMvhRBA7njfm24coK+pMSr1SYfg8jds+SW2bXPM3LnU6L6XngNNq
RAjlYKpfaYsrnuKcTXrDwHa3HMZKKePRWICu4GSCTyZJZGoDgDZcjCJ2uIse
QGCOGvoJ+qHymEuIpBH7bnEgAHiXEUQTEU0QPBzDdXVdiIxtrnKiTBSd46nB
EtmSCMyUJuZb2s0CXogkI8G3uxspi9UewvmSUN3v38GLUh44zhC0+qjXIjTX
wBUAcRbEnQluR5aJC+NkeW0up7/8hKdTDhHH0MdJSjdoZGteNuoAIUxS6onF
wnQ554TXhumjuDKk1fbbl4gopefEbqll9JxsDtM2chyUp5eiVOoqxAuTK724
mDhcBkVsIEbYIwKw8wp3txgvDuZoPYiRGivKSR1xRpBd/ZmKy2L1nIiCHAac
WD8VFooSF6vXkXFLUc1HbMnU+LK2hi8jncaLXejqSXxRZgK/5gybQNjEj03r
t1be2F7Py5lR3amtRB4e4MNwoBAKDIiD162E5xQUDMKHIzKSduSi26Rl0NtY
DIs973Yr+XS6JzQMDs5PTXA+SJvUvC1yGmlSCzDz2Rw9p7qT54VPjhW1xr2d
7XDmL4eNSbQHHkrT9tOSN7C9F0jTnNtiDEDSCYU9cWE62XFteiy7pkfmGrJV
hnGYjFEOSJZcTCyVKzF0dYSgDcIm1UkilFBduU0CnCKTnE7v9LEi1nSGPblc
ktaOC8nJGuNjNIwbAtjRsW5mPILFYhOPfUocWBar6DCDw4gIp0vNAQgvxmBv
HgfUOkKeoOfM4MqSxmuPxSprA6T5JazVghYu2ZdqtQkt3CtuJbnkHOICte2w
DQCX0NUccUtzZtWNOwk6scUQtpEIN5tYd0z9EJuJWJCPhMwF5ADqulTSzAY3
CYZxQnounCp8g+KcMEF58cj0/5SiXi5jtCzEE1xC1ca7BJLHiS9hmLEWfkaC
kuqW36NQ3ildWXeJrkQnkgYXobenhimbnLxGD99V1XO4PxykozZnS1KFBBRZ
MxkchfQzIjz0/bdeEDX7QZr6NUXK1WYSNPtpzQ/q9UG9Xo36flhJoobv+5W4
0YxbSTVIa41aM2oFcbPmp8043No60xhWSys6CYD488PAItWc4mxmqUujmgSC
Sw7dhYQficUFJHY/qJb9ZlkRZFB9Gzbfhg0Dc7vMYWLkatRTFgzOGn86rVrL
29vfa3sH7UrotcODptdqBzXPq+zVG16zc7DvdYMw8FqNVt2rtVttWlq9J8bO
RHOy2LWAnUD/p+fHEvNE5i/kHTgORVhvvbDv1/3Ar/pBHFUbfuoH8NVvb72q
X0n9VrPVqvbjuBXU1fb4tUqghlOpJtWo2Rg0/UalEim25sf1MG2qVlqtMKlW
kqTSD6t+nQZMSfd2TI0BGYGFM0vSanqViudXvVrFSyteLfX8vhfUPc9vqWF6
ft3zA/ha/RtHXrUh7/kpfqH+a0BZwUoKLzRbqkHFQ2MvbkEjagfVd6rloCXv
NVpepeolVS9qeo2B1/S9RsWrRJ7i1PBHXPfCFH4JfK+lRpDIe9WKp4TCSt8L
1VjqgnY9SXTCcK5QH4YrliV8E1NLkBK+v/UoRwM9m+Az/Puru2o5oTNVZg8a
49mrX1/9sfUf//EfNuoWBpOApAosoVze6x4en3kYPHC19/64o67xa2/v/YfO
CX69tfXw7bR79eYs7Txcvzu5v97bax9FF/fNvfbHuH1+P3k3fl/5erAK2lcP
49rZh94sPd77/cPNSTsYvW53392utj6+rjbeta//Tv11z/af6E2N9UluoQ3s
vII2ZIocOgd8G1q5lQRo+IwIH8OwTKwIndNa2W+V1bYH4duw+lZt+9Vlxz2r
DidA7i+YDnJOJ+oQpA2/XqsnNb/aqPnqlCjW5DcVP6r7NV9NJm3Bf35VMTD6
GQD2uoy5d9QOy1AeMXe5PBKIBmVwDBUDx+7UYUzrYehHlbRRazSDalodhEGj
nqb9fr3Z9/2w2hrE1cEgHvi11qDar1SjuNkI0orfDxpVX51DLAw4wKTnFGlv
jdFxLLbMFFZEjwZuCXkER7R469XqacsfDKJWMwkDP6xXGv241aykcT+oD4JK
EKdx2EjiZthPq3Gc1Op+PfHjRq0eJXGlUq9DM9lbL/bVgNMoCGphI/UrzcRX
fDxVk1V8PEzDJAoHLb9SCeu1NKoPkn612UqatWo/SupBv+pXHVZi5rGJkzSb
Xi1BVuHD2feb8IsPnKTm+aFXq3lpC/hLq4ZfRJqTtOCwNwdeqlTXwEPu6yn2
69UirxWp7fHCEN5IU7Uwqg39npL/IuBfSQgNhHWv0gDWgywt9WJkY4PAqyjO
pf4MNQdSBNAE3pZWvVh1WfPqvldPVIOx11B/RMC2FE+sE+vz5b1YcaSBIk4v
Cjx1ZahrKFV8r+l5iRpbzWukOM4AG08tzhWF3qDl+RUIYK2rRYi8+sBL+oql
qcsn8Zo1r9r3osSrB15fLV51jbf9RazN+NbgLJcl30F9vIHHGV6RY3S948Oz
9uXVRZc53Oig2m3vXR+329cH7fGX2pfaVbszvP347bxyc/w1+fx5vgiPh/tv
Pt3dnj7Ov426nevK3dfhm/Chv3cav+ltpcvhonVWGV8fVs/iz4vlaXi91z7r
DC7r3U/v3rSr1fNPb46HR9fvH+ujx4+nj1/TeVb3R8nN1Wp13f/YdTljbnh5
llj3OlYe5PYGxIcd7/tPd/UypEz+sbV1pCtXbQKIYPhllGlSKr4FXTH35Set
gkvyAIX+eet5qPLAF6cBpyqJPJLRh/0RQQPkeLySjCaQzoBpq9G6zPRrZy9o
1jvVA8VfW+16q9Gt7tfC/YN2vdMIwz2/ExwE3bDRCZrtWr3hNw/qtbDW7YSN
vfZ+q93ptH41xq+NfQRhp1lR7SjOflCvqEa6QS1oV4NGo1ppBweKDTVafrdV
6bZajWa12dwP9vcqjeZ+u9VSTzdr0EchfdfLnIWDW/UX3dij2eF1NX5Tfcja
6mf4+iqcrvxvnzuTo/HXyt5vX6/Tj6cPk6+rWvjucDi8ff9b2P20X6mOo/NO
9vE63Tq8n6n39jp71+++3VTefGvfZ+/27q8+dYbV4/328ed2+6Tfvj9OOr3j
m70su+53m4edKPpSO7tavp48PG6d3N+nR6N0bzT+ev8tvBo3Okk9jH5/t9cb
vGsPBx0YVvvEnx3vtV+//+KP0mx/EjRr3UGchXfN8f3W8PEqvO0MriYn6d3e
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
bcxcCs9ogc1iEqEB2FpgdzpQSutE3ZPqN0ahIkWruYlwwkK9miWH4p+XKFot
JpzCDd2saLX0Iq5JLN56H/9V4gv99ZTqmD+nfZuQ8vpHgfLRz7NqIykVKx+O
j97yfW1vcIqxix68YBs99LYL7WkPPT35L3jouYEf9NA/49SmaMofdWtfHH9q
X3bX/dpX2Z/0a5+2D7+c7G0lDyevB0f1sy/BTVa7Obs53vP9y8W7ySwb3lUm
wyAeLcfZ+xSd4EU+8K0fcYIX+Xq3fsQJXuQD3/oRJ3iRD3yr2Akevy9yghf5
wLfyTvB2Nxh2blu1y6uLypeDZNQfvlm9WX66rkdv3gS/+WefO8GX14+rUeVD
WAWH+dYmj/kPLWKRx/ylDvOtTR7zlzrMt57xmBfT70tc5nZETpHLnGwXTkQ1
ROlDBYkf4Tn0To71aGxgKwQao58tbz2BlC7dcG2Nd6ca4dFoTLYsm98sIHuP
ojLRYgX6Y3sxnE1DKTdqHuNxEFpnhghaHKKHqzaAirOAc94H+ELAxlhGahFe
yId43n8VO7o+/rNhNq13w9vO1kH7Iu63BoPpcLw8WkQXSVhbHa0eV+2PHz8t
T0bzd/7rRe3b+2ocDQ4/99o3Sefz+fz48nr0mD4efzjvbVWGx/uPw2baUAsV
Bx/2qq/ff82ubgbH3z6czj8dDSej6zfHq+W729V4msz2ru8X3cOjBzp9H4ef
O1t0/E7fdz4ODg4+zj502vedg2G7M7k/7RwNb0fHH/vvDw8fzveGk8n49eWn
9+k8G4yy06OH6vT+ev55a3DcGr9L7qer5SR7/Hg17Xw8PmoPof3O8qTT/ng+
ClrH00a7tkw/XBwd9c8Wb94Njk/HZ/P29ODdaLrVuP8U3h+9/q169fkga9zu
Z3vvXj+ch6Nm57T7edQ4iprL8/GXw/nXi+rVYtW9TG6CyU33/fG32lVy2rx8
s+X//ro2+xJcHK2C4Fuz//X3g/33X1rJZTb8EH9uXx4Nh1+Rfx9+hEF1Dm8f
e/tf30zH7U9h7fjum781fPclnld71+lj8PWm371bLQ+yRVDrnqX+RE3naq9d
u7k5HM7DWRTdDeuTg6svg4PT+729vatVt/lbutX6MLh9/XC/yuLXh+3heG9R
e//pcfFmvJpXHh4+3h19Oeh9+9YOb6Iv6eys/nB1eBHvd4+O669Xyd3Jt08X
W3e1WfthuGok7+bRl7NvavWvr+n6aWf6+plnp8ej7uHjw012eX/9bj5Pb4Ne
pd4/Ol5s7e81k3fNw5NP0875196X7F1j8XVxeosscq/dHc5Xt9f9r8HXs/Tx
vPb59Or3/tW0dziPrnr7tWV4Mto6iwbz5v7tXmf89SIKB5X26cffe/tfota3
w5vr3x++/f6pX8sGR/u/X95+e7z4+vkivvyteVUH0nz95vXJcmuxumlOGl9m
YXLT6x08fr7orS57X5PacvLm5Mvw+vDlDBKCgaDizmKSxFg6EkOCIBboPbGW
c7brnEjiSC88KccJAFvHhhVJUoodPagNVc1K2I/Dej2MaoOwH9aCJKmkg2YY
JYNKtRU16vVBVKu0/KDWbPpBpeL7YVKLwqBVV1Jkf5DSSNspZPIdnewfcJU1
pxKgzmFBlmdXZU83D6yVVBqDflhvNBtppZEEzbgfNMJGqzaoDsJWo1bz40or
UiOtBUHcitLqoNnw63G/HjUaaVwLzB1jp2fJAuJInlyYQc2v1ytN1VhSCfoU
nR76aUvtc6Pfrzbjuh/Vg6RWb6huo3qt2Yj9SiVotVr9fitutraCSKma1TCJ
4ma1Vq3EabNViyov3FkSPdc31bljZPwskuqhp40qRIE3GxU1hFaSBpWoEkdq
sfxaq9FQow/DStWPg1oSqeda8cBPm0mqtKpKbVBvDOK/Yk/zY6oM6v6gX6+E
zVpaD9VuVeKk2mpWao1mPfWDYJDW1Yd+vZXWg7ASDuKGorY0raVxJUjqfuUH
tjPf9aBh7WRLdrJZb1XCarNSb6StpKboW90/YZg202rTb9VitctNNb5GGsZb
tVaz1g/CtB/FgToOaS2pViu1vKbT0cX6elQeTHAIvv9EyRflQZaWuTiGo+a4
5cQoFwtrj2J4nm7Wyj+AVCVMcN/+/l0/YNQZLKl1vBS5CUs6j6xUfCfmD2FJ
ty2RCspx5ZLCZGhQBV4D5sSQXZdkg2gO4oxqwfkAyvPEq4SKoxgMvg3Bv+4k
lDwmRUSWD0uWT+DbN/NxpG7KgiD27r532u312ocSyY7o5PeUqGmgV4eL2YBk
pRkmaZS9shphusJf7pJhgvUaM/xzOpsB5u7WczHz9/PhYfuCRImTj0qQr42+
XT/+GSH+8DY8Pvr67kvQvhm926+0kvcrJW+Mrq5a91ft1qej6/74sXd0u/fh
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
uwEtwZBYsRJ6yfwftGyoVLsEBQA=

-->

</rfc>

