<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version  (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-koch-librepgp-06" category="info" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.16.0 -->
  <front>
    <title>LibrePGP Message Format</title>
    <seriesInfo name="Internet-Draft" value="draft-koch-librepgp-06"/>
    <author initials="W." surname="Koch" fullname="Werner Koch">
      <organization>g10 Code GmbH</organization>
      <address>
        <postal>
          <country>Germany</country>
        </postal>
        <email>wk@gnupg.org</email>
      </address>
    </author>
    <author initials="R. H." surname="Tse" fullname="Ronald Henry Tse">
      <organization>Ribose</organization>
      <address>
        <postal>
          <country>Hong Kong</country>
        </postal>
        <email>ronald.tse@ribose.com</email>
      </address>
    </author>
    <date year="2026" month="September" day="07"/>
    <area>sec</area>
    <workgroup>Network Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document specifies the message formats used in LibrePGP.
LibrePGP is an extension of the OpenPGP format which
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
LibrePGP 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 is based on: RFC 4880 (OpenPGP), RFC 5581 (Camellia in
OpenPGP), and RFC 6637 (Elliptic Curves in OpenPGP).</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>This document provides information on the message-exchange packet
formats used by LibrePGP 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>LibrePGP is fully compatible to the OpenPGP specification as specified
by: RFC 4880 (OpenPGP), RFC 5581 (Camellia cipher), and RFC 6637 (ECC
for OpenPGP).</t>
      <section anchor="terms">
        <name>Terms</name>
        <ul spacing="normal">
          <li>LibrePGP - This is a term for security software that is based on
OpenPGP with updates for a few newer algorithms and an advertency
to long-term stability and critical deployments.  It is formalized
in this document.</li>
          <li>OpenPGP - This term was used or security software that uses PGP 5
as a basis.  The IETF decided in 2024 to publish <xref target="RFC9580"/> as a
successor of OpenPGP which breaks with many concepts of former
versions.</li>
          <li>PGP - Pretty Good Privacy.  PGP is a family of software systems
developed by Philip R. Zimmermann from which OpenPGP is based.</li>
          <li>PGP 2 - This version of PGP has many variants; where necessary a
more detailed version number is used here.  PGP 2 uses only RSA,
MD5, and IDEA for its cryptographic transforms.  An informational
RFC, RFC 1991, was written describing this version of PGP.</li>
          <li>PGP 5 - This version of PGP is formerly known as "PGP 3" in the
community.  It has new formats and corrects a number of problems
in the PGP 2 design.  It is referred to here as PGP 5 because that
software was the first release of the "PGP 3" code base.</li>
          <li>GnuPG - GNU Privacy Guard, also called GPG, is the leading Open
Source implementation of LibrePGP and OpenPGP and has been
developed along with the OpenPGP standard since 1997.</li>
          <li>RNP - LibrePGP and OpenPGP implementation by Ribose.  Relied upon
by the mail client Thunderbird for secure email.</li>
        </ul>
        <t>"PGP" is a trademark of CA, INC.  The use of this, or any other, marks
is solely for identification purposes.  The terms "OpenPGP" and
"LibrePGP" refer to the protocol described in this and related
documents.</t>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <xref target="RFC2119"/>.</t>
        <t>The key words "PRIVATE USE", "EXPERT REVIEW", "SPECIFICATION
REQUIRED", "RFC REQUIRED", and "IETF REVIEW" that appear in this
document when used to describe namespace allocation are to be
interpreted as described in  <xref target="RFC8126"/>.</t>
      </section>
    </section>
    <section anchor="general-functions">
      <name>General functions</name>
      <t>LibrePGP provides data integrity services for messages and data files
by using these core technologies:</t>
      <ul spacing="normal">
        <li>digital signatures</li>
        <li>encryption</li>
        <li>compression</li>
        <li>radix-64 conversion</li>
      </ul>
      <t>In addition, LibrePGP provides key management and certificate services,
but many of these are beyond the scope of this document.</t>
      <section anchor="confidentiality-via-encryption">
        <name>Confidentiality via Encryption</name>
        <t>LibrePGP combines symmetric-key encryption and public-key encryption to
provide confidentiality.  When made confidential, 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>
        <ol spacing="normal" type="1"><li>The sender creates a message.</li>
          <li>The sending LibrePGP generates a random number to be used as a
session key for this message only.</li>
          <li>The session key is encrypted using each recipient's public key.
These "encrypted session keys" start the message.</li>
          <li>The sending LibrePGP encrypts the message using the session key,
which forms the remainder of the message.  Note that the message is
also usually compressed.</li>
          <li>The receiving LibrePGP decrypts the session key using the recipient's
private key.</li>
          <li>The receiving LibrePGP decrypts the message using the session key.  If
the message was compressed, it will be decompressed.</li>
        </ol>
        <t>With symmetric-key encryption, an object may be encrypted with a
symmetric key derived from a passphrase (or other shared secret), or a
two-stage mechanism similar to the public-key method described above
in which a session key is itself encrypted with a symmetric algorithm
keyed 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 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 hash code or message digest algorithm,
and a public-key signature algorithm.  The sequence is as follows:</t>
        <ol spacing="normal" type="1"><li>The sender creates a message.</li>
          <li>The sending software generates a hash code of the message.</li>
          <li>The sending software generates a signature from the hash code using
the sender's private key.</li>
          <li>The binary signature is attached to the message.</li>
          <li>The receiving software keeps a copy of the message signature.</li>
          <li>The receiving software generates a new hash code for the received
message and verifies it using the message's signature.  If the
verification is successful, the message is accepted as authentic.</li>
        </ol>
      </section>
      <section anchor="compression">
        <name>Compression</name>
        <t>LibrePGP implementations SHOULD compress the message after applying the
signature but before encryption.</t>
        <t>If an implementation does not implement compression, its authors
should be aware that most OpenPGP and LibrePGP messages in the world are
compressed.  Thus, it may even be wise for a space-constrained
implementation to implement decompression, but not compression.</t>
        <t>Furthermore, compression has the added side effect that some types of
attacks can be thwarted by the fact that slightly altered, compressed
data rarely uncompresses without severe errors.  This is hardly
rigorous, but it is operationally useful.  These attacks can be
rigorously prevented by implementing and using Modification Detection
Codes as described in sections following.</t>
      </section>
      <section anchor="conversion-to-radix-64">
        <name>Conversion to Radix-64</name>
        <t>LibrePGP's underlying native representation for encrypted messages,
signature certificates, and keys is a stream of arbitrary octets.  Some
systems only permit the use of blocks consisting of seven-bit,
printable text.  For transporting LibrePGP's native raw binary octets
through channels that are not safe to raw binary data, a printable
encoding of these binary octets is needed.  LibrePGP provides the
service of converting the raw 8-bit binary octet stream to a stream of
printable ASCII characters, called Radix-64 encoding or ASCII Armor.</t>
        <t>Implementations SHOULD provide Radix-64 conversions.</t>
      </section>
      <section anchor="signature-only-applications">
        <name>Signature-Only Applications</name>
        <t>LibrePGP is designed for applications that use both encryption and
signatures, but there are a number of problems that are solved by 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.</t>
      </section>
    </section>
    <section anchor="data-element-formats">
      <name>Data Element Formats</name>
      <t>This section describes the data elements used by LibrePGP.</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="multiprecision-integers">
        <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 are in hexadecimal)</t>
        <t>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].</t>
        <t>Unused bits of an MPI MUST be zero.</t>
        <t>Also note that when an MPI is encrypted, the length refers to the
plaintext MPI.  It may be ill-formed in its ciphertext.</t>
      </section>
      <section anchor="simple-octet-strings">
        <name>Simple Octet Strings</name>
        <t>Simple Octet Strings (also called SOSs) are used to convey arbitrary octet
strings with a length of up to 8191 octets.</t>
        <t>An SOS consists of two pieces: a two-octet scalar that is the length
of the octet string measured in bits followed by an opaque string of
octets of this length.  An SOS is compatible to the format of a
well-formed MPI.  However if the value of an SOS starts with a zero
byte it does not represent a well-format MPI and in this case the
length is measured as 8-times the number of octets.</t>
        <t>The entire size of an SOS is always ((SOS.length + 7) / 8) + 2 octets.</t>
      </section>
      <section anchor="key-ids">
        <name>Key IDs</name>
        <t>A Key ID is an eight-octet scalar that identifies a
key.  Implementations SHOULD NOT assume that Key IDs are unique.  The
section "Enhanced Key Formats" below describes how Key IDs 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-specifiers">
        <name>String-to-Key (S2K) Specifiers</name>
        <t>String-to-key (S2K) specifiers are used to convert passphrase strings
into symmetric-key encryption/decryption keys.  They are used in two
places, currently: to encrypt the secret part of private keys in the
private keyring, and to convert passphrases to encryption keys for
symmetrically encrypted messages.</t>
        <section anchor="string-to-key-s2k-specifier-types">
          <name>String-to-Key (S2K) Specifier Types</name>
          <t>There are three types of S2K specifiers currently supported, and some
reserved values:</t>
          <table>
            <thead>
              <tr>
                <th align="right">ID</th>
                <th align="left">S2K Type</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="right">0</td>
                <td align="left">Simple S2K</td>
              </tr>
              <tr>
                <td align="right">1</td>
                <td align="left">Salted S2K</td>
              </tr>
              <tr>
                <td align="right">2</td>
                <td align="left">Reserved value</td>
              </tr>
              <tr>
                <td align="right">3</td>
                <td align="left">Iterated and Salted S2K</td>
              </tr>
              <tr>
                <td align="right">100 to 110</td>
                <td align="left">Private/Experimental S2K</td>
              </tr>
            </tbody>
          </table>
          <t>These are described in the following Sections.</t>
          <section anchor="simple-s2k">
            <name>Simple S2K</name>
            <t>This directly hashes the string to produce the key data.  See below for
how this hashing is done.</t>
            <artwork><![CDATA[
   Octet 0:        0x00
   Octet 1:        hash algorithm
]]></artwork>
            <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 will depend on the cipher used) 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="salted-s2k">
            <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>
            <artwork><![CDATA[
   Octet 0:        0x01
   Octet 1:        hash algorithm
   Octets 2-9:     8-octet salt value
]]></artwork>
            <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="iterated-and-salted-s2k">
            <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 hashed repeatedly.  This
further increases the amount of work an attacker must do to try
dictionary attacks.</t>
            <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>
            <t>The count is coded into a one-octet number using the following
formula:</t>
            <artwork><![CDATA[
   #define EXPBIAS 6
       count = ((Int32)16 + (c & 15)) << ((c >> 4) + EXPBIAS);
]]></artwork>
            <t>The above formula is in C, where "Int32" is a type for a 32-bit
integer, and the variable "c" is the coded count, Octet 10.</t>
            <t>Iterated-Salted S2K hashes the passphrase and salt data multiple
times.  The total number of octets to be hashed is specified in the
encoded count in the S2K specifier.  Note that the resulting count
value is an octet count of how many octets will be hashed, not an
iteration count.</t>
            <t>Initially, one or more hash contexts are set up as with the other S2K
algorithms, depending on how many octets of key data are needed.  Then
the salt, followed by the passphrase data, is repeatedly hashed until
the number of octets specified by the octet count has been hashed.  The
one exception is that if the octet count is less than the size of the
salt plus passphrase, the full salt plus passphrase will be hashed
even though that is greater than the octet count.  After the hashing is
done, the data is unloaded from the hash context(s) as with the other
S2K algorithms.</t>
          </section>
        </section>
        <section anchor="string-to-key-usage">
          <name>String-to-Key Usage</name>
          <t>Implementations SHOULD use salted or iterated-and-salted S2K
specifiers, as simple S2K specifiers are more vulnerable to dictionary
attacks.</t>
          <section anchor="secret-key-encryption">
            <name>Secret-Key Encryption</name>
            <t>An S2K specifier can be stored in the secret keyring to specify how to
convert the passphrase to a key that unlocks the secret data.  Older
versions of PGP just stored a cipher algorithm octet preceding the
secret data or a zero to indicate that the secret data was
unencrypted.  The MD5 hash function was always used to convert the
passphrase to a key for the specified cipher algorithm.</t>
            <t>For compatibility, when an S2K specifier is used, the special value
253, 254, or 255 is stored in the position where the hash algorithm octet
would have been in the old data structure.  This is then followed
immediately by a one-octet algorithm identifier, and then by the S2K
specifier as encoded above.</t>
            <t>Therefore, preceding the secret data there will be one of these
possibilities:</t>
            <artwork><![CDATA[
   0:                 secret data is unencrypted (no passphrase)
   255, 254, or 253:  followed by algorithm octet and S2K specifier
   Cipher alg:        use Simple S2K algorithm using MD5 hash
]]></artwork>
            <t>This last possibility, the cipher algorithm number with an implicit
use of MD5 and IDEA, is provided for backward compatibility; it MAY be
understood, but SHOULD NOT be generated, and is deprecated.</t>
            <t>These are followed by an Initial Vector of the same length as the
block size of the cipher for the decryption of the secret values, if
they are encrypted, and then the secret-key values themselves.</t>
          </section>
          <section anchor="symmetric-key-message-encryption">
            <name>Symmetric-Key Message Encryption</name>
            <t>LibrePGP 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>PGP 2 always used IDEA with Simple string-to-key conversion when
encrypting a message with a symmetric algorithm.  This is deprecated,
but MAY be used for backward-compatibility.</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="packet-syntax">
      <name>Packet Syntax</name>
      <t>This section describes the packets used by LibrePGP.</t>
      <section anchor="overview">
        <name>Overview</name>
        <t>An LibrePGP message is constructed from a number of records that are
traditionally called packets. A packet is a chunk of data that has a
tag specifying its meaning.  An LibrePGP message, keyring, certificate,
and so forth consists of a number of packets.  Some of those packets
may contain other LibrePGP packets (for example, a compressed data
packet, when uncompressed, contains LibrePGP packets).</t>
        <t>Each packet consists of a packet header, followed by the packet body.
The packet header is of variable length.</t>
      </section>
      <section anchor="packet-headers">
        <name>Packet Headers</name>
        <t>The first octet of the packet header is called the "Packet Tag".  It
determines the format of the header and denotes the packet
contents.  The remainder of the packet header is the length of the
packet.</t>
        <t>Note that the most significant bit is the leftmost bit, called bit
7. A mask for this bit is 0x80 in hexadecimal.</t>
        <artwork><![CDATA[
          +---------------+
     PTag |7 6 5 4 3 2 1 0|
          +---------------+
     Bit 7 -- Always one
     Bit 6 -- New packet format if set
]]></artwork>
        <t>PGP 2.6.x only uses old format packets.  Thus, software that
interoperates with those versions of PGP must only use old format
packets.  If interoperability is not an issue, the new packet format is
RECOMMENDED.  Note that old format packets have four bits of packet
tags, and new format packets have six; some features cannot be used
and still be backward-compatible.</t>
        <t>Also note that packets with a tag greater than or equal to 16 MUST use
new format packets.  The old format packets can only express tags less
than or equal to 15.</t>
        <t>Old format packets contain:</t>
        <artwork><![CDATA[
     Bits 5-2 -- packet tag
     Bits 1-0 -- length-type
]]></artwork>
        <t>New format packets contain:</t>
        <artwork><![CDATA[
     Bits 5-0 -- packet tag
]]></artwork>
        <section anchor="old-format-packet-lengths">
          <name>Old Format Packet Lengths</name>
          <t>The meaning of the length-type in old 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.  In general, an implementation
SHOULD NOT use indeterminate-length packets except where the end
of the data will be clear from the context, and even then it is
better to use a definite length, or a new format header.  The new
format headers described below have a mechanism for precisely
encoding data of indeterminate length.</t>
            </dd>
          </dl>
        </section>
        <section anchor="new-format-packet-lengths">
          <name>New Format Packet Lengths</name>
          <t>New format packets have four possible ways of encoding length:</t>
          <ol spacing="normal" type="1"><li>A one-octet Body Length header encodes packet lengths of up to
191 octets.</li>
            <li>A two-octet Body Length header encodes packet lengths of 192
to 8383 octets.</li>
            <li>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.)</li>
            <li>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.</li>
          </ol>
          <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>
            <artwork><![CDATA[
   bodyLen = 1st_octet;
]]></artwork>
          </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>
            <artwork><![CDATA[
   bodyLen = ((1st_octet - 192) << 8) + (2nd_octet) + 192
]]></artwork>
          </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>
            <artwork><![CDATA[
   bodyLen = (2nd_octet << 24) | (3rd_octet << 16) |
             (4th_octet << 8)  | 5th_octet
]]></artwork>
            <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>
            <artwork><![CDATA[
   partialBodyLen = 1 << (1st_octet & 0x1F);
]]></artwork>
            <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
MUST NOT 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 MAY use Partial Body Lengths for data packets, be
they literal, compressed, or encrypted.  The first partial length MUST
be at least 512 octets long.  Partial Body Lengths MUST NOT be used for
any other packet types.</t>
          </section>
        </section>
        <section anchor="packet-length-examples">
          <name>Packet Length Examples</name>
          <t>These examples show ways that new format packets might encode the
packet lengths.</t>
          <t>A packet with length 100 may have its length encoded in one octet:
0x64.  This is followed by 100 octets of data.</t>
          <t>A packet 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 with length 100000 may have its length encoded in five
octets: 0xFF, 0x00, 0x01, 0x86, 0xA0.</t>
          <t>It might also be encoded in the following octet stream: 0xEF, first
32768 octets of data; 0xE1, next two octets of data; 0xE0, next one
octet of data; 0xF0, next 65536 octets of data; 0xC5, 0xDD, last 1693
octets of data.  This is just one possible encoding, and many
variations are possible on the size of the Partial Body Length
headers, as long as a regular Body Length header encodes the last
portion of the data.</t>
          <t>Please note that in all of these explanations, the total length of the
packet is the length of the header(s) plus the length of the body.</t>
        </section>
      </section>
      <section anchor="packet-tags">
        <name>Packet Tags</name>
        <t>The packet tag denotes what type of packet the body holds.  Note that
old format headers can only have tags less than 16, whereas new format
headers can have tags as great as 63.  The defined tags (in decimal)
are as follows:</t>
        <table>
          <thead>
            <tr>
              <th align="right">Tag</th>
              <th align="left">Packet Type</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">0</td>
              <td align="left">Reserved - a packet tag MUST NOT have this value</td>
            </tr>
            <tr>
              <td align="right">1</td>
              <td align="left">Public-Key Encrypted Session Key Packet</td>
            </tr>
            <tr>
              <td align="right">2</td>
              <td align="left">Signature Packet</td>
            </tr>
            <tr>
              <td align="right">3</td>
              <td align="left">Symmetric-Key Encrypted Session Key Packet</td>
            </tr>
            <tr>
              <td align="right">4</td>
              <td align="left">One-Pass Signature Packet</td>
            </tr>
            <tr>
              <td align="right">5</td>
              <td align="left">Secret-Key Packet</td>
            </tr>
            <tr>
              <td align="right">6</td>
              <td align="left">Public-Key Packet</td>
            </tr>
            <tr>
              <td align="right">7</td>
              <td align="left">Secret-Subkey Packet</td>
            </tr>
            <tr>
              <td align="right">8</td>
              <td align="left">Compressed Data Packet</td>
            </tr>
            <tr>
              <td align="right">9</td>
              <td align="left">Symmetrically Encrypted Data Packet</td>
            </tr>
            <tr>
              <td align="right">10</td>
              <td align="left">Marker Packet</td>
            </tr>
            <tr>
              <td align="right">11</td>
              <td align="left">Literal Data Packet</td>
            </tr>
            <tr>
              <td align="right">12</td>
              <td align="left">Trust Packet</td>
            </tr>
            <tr>
              <td align="right">13</td>
              <td align="left">User ID Packet</td>
            </tr>
            <tr>
              <td align="right">14</td>
              <td align="left">Public-Subkey Packet</td>
            </tr>
            <tr>
              <td align="right">17</td>
              <td align="left">User Attribute Packet</td>
            </tr>
            <tr>
              <td align="right">18</td>
              <td align="left">Sym. Encrypted and Integrity Protected Data Packet</td>
            </tr>
            <tr>
              <td align="right">19</td>
              <td align="left">Modification Detection Code Packet</td>
            </tr>
            <tr>
              <td align="right">20</td>
              <td align="left">OCB Encrypted Data Packet</td>
            </tr>
            <tr>
              <td align="right">21</td>
              <td align="left">Reserved</td>
            </tr>
            <tr>
              <td align="right">26</td>
              <td align="left">Reserved (CMS Encrypted Session Key Packet)</td>
            </tr>
            <tr>
              <td align="right">42</td>
              <td align="left">Reserved (Label Packet)</td>
            </tr>
            <tr>
              <td align="right">60 to 63</td>
              <td align="left">Private or Experimental Values</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
    <section anchor="packet-types">
      <name>Packet Types</name>
      <section anchor="public-key-encrypted-session-key-packets-tag-1">
        <name>Public-Key Encrypted Session Key Packets (Tag 1)</name>
        <t>A Public-Key Encrypted Session Key (PKESK) packet holds the session key used
to encrypt a message.  Zero or more Public-Key Encrypted Session Key
packets and/or Symmetric-Key Encrypted Session Key packets may precede
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 Symmetrically Encrypted Data Packet is preceded by
one Public-Key Encrypted Session Key packet for each LibrePGP 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 consists of:</t>
        <ul spacing="normal">
          <li>A one-octet number giving the version number of the packet
type.  The currently defined value for packet version is 3.</li>
          <li>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.</li>
          <li>A one-octet number giving the public-key algorithm used.</li>
          <li>
            <t>A string of octets that is the encrypted session key.  This string
takes up the remainder of the packet, and its contents are dependent
on the public-key algorithm used.  </t>
            <t>
Algorithm Specific Fields for RSA encryption:  </t>
            <ul spacing="normal">
              <li>Multiprecision integer (MPI) of RSA encrypted value m^e mod n.</li>
            </ul>
            <t>
Algorithm Specific Fields for Elgamal encryption:  </t>
            <ul spacing="normal">
              <li>MPI of Elgamal (Diffie-Hellman) value g^k mod p.</li>
              <li>MPI of Elgamal (Diffie-Hellman) value m * y^k mod p.</li>
            </ul>
            <t>
Algorithm-Specific Fields for ECDH encryption:  </t>
            <ul spacing="normal">
              <li>SOS of an EC point representing an ephemeral public key.</li>
              <li>a one-octet scalar octet count of the following symmetric key
encoded using the method described in <xref target="ecdh-algorithm"/>.</li>
            </ul>
            <t>
Algorithm-Specific Fields for ML-KEM (Kyber) encryption:  </t>
            <ul spacing="normal">
              <li>SOS of an EC point representing an ephemeral public key.</li>
              <li>A four-octet scalar octet count of the following ML-KEM
ciphertext.  The value for the count is 1088 for ML-KEM-768
and 1568 for ML-KEM-1024.</li>
              <li>A one-octet algorithm identifier which must indicate one of
the AES algorithms (7, 8, or 9) to be used for the session
key.</li>
              <li>a one-octet scalar octet count of the following symmetric key
wrapped using the method described in <xref target="kyber-algorithm"/>.</li>
            </ul>
          </li>
        </ul>
        <t>The value "m" in the above formulas is derived from the session key as
follows.  First, the session key is prefixed with a one-octet algorithm
identifier that specifies the symmetric encryption algorithm used to
encrypt the following Symmetrically Encrypted Data Packet.  Then a
two-octet checksum is appended, which is equal to the sum of the
preceding session key octets, not including the algorithm identifier,
modulo 65536.  This value is then encoded as described in PKCS#1 block
encoding EME-PKCS1-v1_5 in Section 7.2.1 of <xref target="RFC3447"/> to form the "m"
value used in the formulas above.  See <xref target="pkcs1-encoding-in-librepgp"/>
of this document for notes on LibrePGP's use of PKCS#1.</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 MUST make a new PKCS#1 encoding for each key.</t>
        <t>An implementation MAY accept or use a Key ID of zero as a "wild card"
or "speculative" Key ID.  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>
        <t>Note that the confidentiality of a message is only post-quantum secure
when encrypting to multiple recipients iff only ML-KEM algorithms are
used for all recipients.</t>
      </section>
      <section anchor="signature-packet-tag-2">
        <name>Signature Packet (Tag 2)</name>
        <t>A Signature packet describes a binding between some public key and
some data.  The most common signatures are a signature of a file or a
block of text, and a signature that is a certification of a User ID.</t>
        <t>Three versions of Signature packets are defined.  Version 3 provides
basic signature information, while versions 4 and 5 provide an expandable
format with subpackets that can specify more information about the
signature.  PGP 2.6.x only accepts version 3 signatures.</t>
        <t>Implementations MUST generate version 5 signatures when using a
version 5 key. Implementations SHOULD generate V4
signatures with version 4 keys.  Implementations MUST NOT create
version 3 signatures; they MAY accept version 3 signatures.</t>
        <section anchor="signature-types">
          <name>Signature Types</name>
          <t>There are a number of possible meanings for a signature, which are
indicated in a signature type octet in any given signature.  Please
note that the vagueness of these meanings is not a flaw, but a feature
of the system.  Because LibrePGP 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"/>, "Computing Signatures", for detailed
information on how to compute and verify signatures of each type.</t>
          <t>These meanings are as follows:</t>
          <dl>
            <dt>0x00</dt>
            <dd>
              <t>Signature of a binary document.  This means the signer owns it,
created it, or certifies that it has not been modified.</t>
            </dd>
            <dt>0x01</dt>
            <dd>
              <t>Signature of a canonical text document.  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>
            </dd>
            <dt>0x02</dt>
            <dd>
              <t>Standalone signature.  This signature is a signature of only
its own subpacket contents.  It is calculated identically to
a signature over a zero-length binary document.  Note that it
doesn't make sense to have a V3 standalone signature.</t>
            </dd>
            <dt>0x08</dt>
            <dd>
              <t>Reserved (Label signatures).</t>
            </dd>
            <dt>0x09</dt>
            <dd>
              <t>Reserved (Label signatures).</t>
            </dd>
            <dt>0x10</dt>
            <dd>
              <t>Generic certification of a User ID and Public-Key
packet.  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>
            </dd>
            <dt>0x11</dt>
            <dd>
              <t>Persona certification of a User ID and Public-Key
packet.  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>
            </dd>
            <dt>0x12</dt>
            <dd>
              <t>Casual certification of a User ID and Public-Key packet.  The
issuer of this certification has done some casual
verification of the claim of identity.</t>
            </dd>
            <dt>0x13</dt>
            <dd>
              <t>Positive certification of a User ID and Public-Key packet.  The
issuer of this certification has done substantial verification
of the claim of identity.
</t>
              <t>Most LibrePGP implementations make their "key signatures" as 0x10
certifications.  Some implementations can issue 0x11-0x13
certifications, but few differentiate between the types.</t>
            </dd>
            <dt>0x16</dt>
            <dd>
              <t>Attested Key Signature.  This signature is issued by the primary
key over itself and its User ID (or User Attribute).  It MUST
contain an "Attested Certifications" subpacket and a "Signature
Creation Time" subpacket.  This type of key signature does not
replace or override any standard certification (0x10-0x13).
Only the most recent Attestation Key Signature is valid for any
given &lt;key,userid&gt; pair.  If more than one Certification
Attestation Key Signature is present with the same Signature
Creation Time, the set of attestations should be treated as the
union of all "Attested Certifications" subpackets from all such
signatures with the same timestamp.
</t>
              <t>Note that this class is deprecated due to the deprecation of the
"Attested Certifications" subpacket.</t>
            </dd>
            <dt>0x18</dt>
            <dd>
              <t>Subkey Binding Signature. 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 MUST 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>
            </dd>
            <dt>0x19</dt>
            <dd>
              <t>Primary Key Binding Signature. This signature is a statement
by a signing subkey, indicating that it is owned by the
primary key and subkey.  This signature is calculated the
same way as a 0x18 signature: directly on the primary key
and subkey, and not on any User ID or other packets.</t>
            </dd>
            <dt>0x1F</dt>
            <dd>
              <t>Signature directly on a key. 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 Revocation Key subpacket.  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>
            </dd>
            <dt>0x20</dt>
            <dd>
              <t>Key revocation signature. 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 an authorized revocation key, should be
considered valid revocation signatures.</t>
            </dd>
            <dt>0x28</dt>
            <dd>
              <t>Subkey revocation signature. The signature is calculated
directly on 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 an
authorized revocation key, should be considered valid
revocation signatures.</t>
            </dd>
            <dt>0x30</dt>
            <dd>
              <t>Certification revocation signature. 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 an authorized revocation key.  The signature is computed
over the same data as the certificate that it revokes, and
should have a later creation date than that certificate.</t>
            </dd>
            <dt>0x40</dt>
            <dd>
              <t>Timestamp signature.  This signature is only meaningful for
the timestamp contained in it.</t>
            </dd>
            <dt>0x50</dt>
            <dd>
              <t>Third-Party Confirmation signature.  This signature is a
signature over some other LibrePGP Signature packet(s).  It is
analogous to a notary seal on the signed data. A third-party
signature SHOULD include Signature Target subpacket(s) to
give easy identification.  Note that we really do mean
SHOULD.  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>
            </dd>
          </dl>
        </section>
        <section anchor="version-3-signature-packet-format">
          <name>Version 3 Signature Packet Format</name>
          <t>The body of a version 3 Signature Packet contains:</t>
          <ul spacing="normal">
            <li>One-octet version number (3).</li>
            <li>One-octet length of following hashed material.  MUST be 5.</li>
            <li>One-octet signature type.</li>
            <li>Four-octet creation time.</li>
            <li>Eight-octet Key ID of signer.</li>
            <li>One-octet public-key algorithm.</li>
            <li>One-octet hash algorithm.</li>
            <li>Two-octet field holding left 16 bits of signed hash value.</li>
            <li>
              <t>One or more multiprecision integers comprising the signature.
This portion is algorithm specific, as described below.  </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>
              <ul spacing="normal">
                <li>Multiprecision integer (MPI) of RSA signature value m^d mod n.</li>
              </ul>
              <t>
Algorithm-Specific Fields for DSA and ECDSA signatures:  </t>
              <ul spacing="normal">
                <li>MPI of DSA or ECDSA value r.</li>
                <li>MPI of DSA or ECDSA value s.</li>
              </ul>
            </li>
          </ul>
          <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.</t>
          <t>With RSA signatures, the hash value is encoded using PKCS#1 encoding
type EMSA-PKCS1-v1_5 as described in Section 9.2 of RFC 3447.  This
requires inserting the hash value as an octet string into an ASN.1
structure.  The object identifier for the type of hash being used is
included in the structure.  The hexadecimal representations for the
currently defined hash algorithms are as follows:</t>
          <artwork><![CDATA[
 - MD5:        0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05

 - RIPEMD-160: 0x2B, 0x24, 0x03, 0x02, 0x01

 - SHA-1:      0x2B, 0x0E, 0x03, 0x02, 0x1A

 - SHA2-224:   0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x04

 - SHA2-256:   0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01

 - SHA2-384:   0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02

 - SHA2-512:   0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03
]]></artwork>
          <t>The ASN.1 Object Identifiers (OIDs) are as follows:</t>
          <artwork><![CDATA[
 - MD5:        1.2.840.113549.2.5

 - RIPEMD-160: 1.3.36.3.2.1

 - SHA-1:      1.3.14.3.2.26

 - SHA2-224:   2.16.840.1.101.3.4.2.4

 - SHA2-256:   2.16.840.1.101.3.4.2.1

 - SHA2-384:   2.16.840.1.101.3.4.2.2

 - SHA2-512:   2.16.840.1.101.3.4.2.3
]]></artwork>
          <t>The full hash prefixes for these are as follows:</t>
          <artwork><![CDATA[
 - MD5:        0x30, 0x20, 0x30, 0x0C, 0x06, 0x08, 0x2A, 0x86,
               0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, 0x05, 0x00,
               0x04, 0x10

 - RIPEMD-160: 0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2B, 0x24,
               0x03, 0x02, 0x01, 0x05, 0x00, 0x04, 0x14

 - SHA-1:      0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2b, 0x0E,
               0x03, 0x02, 0x1A, 0x05, 0x00, 0x04, 0x14

 - SHA2-224:   0x30, 0x2D, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86,
               0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x04, 0x05,
               0x00, 0x04, 0x1C

 - SHA2-256:   0x30, 0x31, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86,
               0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01, 0x05,
               0x00, 0x04, 0x20

 - SHA2-384:   0x30, 0x41, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86,
               0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02, 0x05,
               0x00, 0x04, 0x30

 - SHA2-512:   0x30, 0x51, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86,
               0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03, 0x05,
               0x00, 0x04, 0x40
]]></artwork>
          <t>DSA signatures MUST use hashes that are equal in size to the number of
bits of q, the group generated by the DSA key's generator value.</t>
          <t>If the output size of the chosen hash is larger than the number of
bits of q, the hash result is truncated to fit by taking the number of
leftmost bits equal to the number of bits of q.  This (possibly
truncated) hash function result is treated as a number and used
directly in the DSA signature algorithm.</t>
        </section>
        <section anchor="version-4-and-5-signature-packet-formats">
          <name>Version 4 and 5 Signature Packet Formats</name>
          <t>The body of a V4 and V5 Signature packet contains:</t>
          <ul spacing="normal">
            <li>One-octet version number.  This is 4 for V4 signatures
and 5 for V5 signatures.</li>
            <li>One-octet signature type.</li>
            <li>One-octet public-key algorithm.</li>
            <li>One-octet hash algorithm.</li>
            <li>Two-octet scalar octet count for following hashed subpacket data.
Note that this is the length in octets of all of the hashed
subpackets; a pointer incremented by this number will skip over
the hashed subpackets.</li>
            <li>Hashed subpacket data set (zero or more subpackets).</li>
            <li>Two-octet scalar octet count for the following unhashed subpacket
data.  Note that this is the length in octets of all of the
unhashed subpackets; a pointer incremented by this number will
skip over the unhashed subpackets.</li>
            <li>Unhashed subpacket data set (zero or more subpackets).</li>
            <li>Two-octet field holding the left 16 bits of the signed hash
value.</li>
            <li>
              <t>One or more multiprecision integers comprising the signature.
This portion is algorithm specific:  </t>
              <t>
Algorithm-Specific Fields for RSA signatures:  </t>
              <ul spacing="normal">
                <li>Multiprecision integer (MPI) of RSA signature value m^d mod n.</li>
              </ul>
              <t>
Algorithm-Specific Fields for DSA or ECDSA signatures:  </t>
              <ul spacing="normal">
                <li>MPI of DSA or ECDSA value r.</li>
                <li>MPI of DSA or ECDSA value s.</li>
              </ul>
              <t>
Algorithm-Specific Fields for EdDSA signatures:  </t>
              <ul spacing="normal">
                <li>MPI of an EC point r.</li>
                <li>EdDSA value s, in MPI, in the little endian representation.</li>
              </ul>
            </li>
          </ul>
          <t>The format of R and S for use with EdDSA is described in <xref target="RFC8032"/>.
A version 3 signature MUST NOT be created and MUST NOT be used with
EdDSA.</t>
          <t>The concatenation of the data being signed and the signature data from
the version number through the hashed subpacket data (inclusive) is
hashed.  The resulting hash value is what is signed.  The high 16 bits
(first two octets) of the hash are included in the Signature packet to
provide a way to reject some invalid signatures without performing a
signature verification.</t>
          <t>There are two fields consisting of Signature subpackets.  The first
field is hashed with the rest of the signature data, while the second
is unhashed.  The second set of subpackets is not cryptographically
protected by the signature and should include only advisory
information.</t>
          <t>The difference between a V4 and V5 signature is that the latter
includes additional meta data.</t>
          <t>The algorithms for converting the hash function result to a signature
are described in a section below.</t>
          <section anchor="signature-subpacket-specification">
            <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
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>
            <ul spacing="normal">
              <li>the subpacket length (1, 2, or 5 octets),</li>
              <li>the subpacket type (1 octet),</li>
            </ul>
            <t>and is followed by the subpacket-specific data.</t>
            <t>The length includes the type octet but not this length.  Its format is
similar to the "new" format packet header lengths, but cannot have
Partial Body Lengths.  That is:</t>
            <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>
            <t>The value of the subpacket type octet may be:</t>
            <table>
              <thead>
                <tr>
                  <th align="right">Type</th>
                  <th align="left">Description</th>
                </tr>
              </thead>
              <tbody>
                <tr>
                  <td align="right">0</td>
                  <td align="left">Reserved</td>
                </tr>
                <tr>
                  <td align="right">1</td>
                  <td align="left">Reserved</td>
                </tr>
                <tr>
                  <td align="right">2</td>
                  <td align="left">Signature Creation Time</td>
                </tr>
                <tr>
                  <td align="right">3</td>
                  <td align="left">Signature Expiration Time</td>
                </tr>
                <tr>
                  <td align="right">4</td>
                  <td align="left">Exportable Certification</td>
                </tr>
                <tr>
                  <td align="right">5</td>
                  <td align="left">Trust Signature</td>
                </tr>
                <tr>
                  <td align="right">6</td>
                  <td align="left">Regular Expression</td>
                </tr>
                <tr>
                  <td align="right">7</td>
                  <td align="left">Revocable</td>
                </tr>
                <tr>
                  <td align="right">8</td>
                  <td align="left">Reserved</td>
                </tr>
                <tr>
                  <td align="right">9</td>
                  <td align="left">Key Expiration Time</td>
                </tr>
                <tr>
                  <td align="right">10</td>
                  <td align="left">Placeholder for backward compatibility</td>
                </tr>
                <tr>
                  <td align="right">11</td>
                  <td align="left">Preferred Symmetric Algorithms</td>
                </tr>
                <tr>
                  <td align="right">12</td>
                  <td align="left">Revocation Key</td>
                </tr>
                <tr>
                  <td align="right">13 to 15</td>
                  <td align="left">Reserved</td>
                </tr>
                <tr>
                  <td align="right">16</td>
                  <td align="left">Issuer</td>
                </tr>
                <tr>
                  <td align="right">17 to 19</td>
                  <td align="left">Reserved</td>
                </tr>
                <tr>
                  <td align="right">20</td>
                  <td align="left">Notation Data</td>
                </tr>
                <tr>
                  <td align="right">21</td>
                  <td align="left">Preferred Hash Algorithms</td>
                </tr>
                <tr>
                  <td align="right">22</td>
                  <td align="left">Preferred Compression Algorithms</td>
                </tr>
                <tr>
                  <td align="right">23</td>
                  <td align="left">Key Server Preferences</td>
                </tr>
                <tr>
                  <td align="right">24</td>
                  <td align="left">Preferred Key Server</td>
                </tr>
                <tr>
                  <td align="right">25</td>
                  <td align="left">Primary User ID</td>
                </tr>
                <tr>
                  <td align="right">26</td>
                  <td align="left">Policy URI</td>
                </tr>
                <tr>
                  <td align="right">27</td>
                  <td align="left">Key Flags</td>
                </tr>
                <tr>
                  <td align="right">28</td>
                  <td align="left">Signer's User ID</td>
                </tr>
                <tr>
                  <td align="right">29</td>
                  <td align="left">Reason for Revocation</td>
                </tr>
                <tr>
                  <td align="right">30</td>
                  <td align="left">Features</td>
                </tr>
                <tr>
                  <td align="right">31</td>
                  <td align="left">Signature Target</td>
                </tr>
                <tr>
                  <td align="right">32</td>
                  <td align="left">Embedded Signature</td>
                </tr>
                <tr>
                  <td align="right">33</td>
                  <td align="left">Issuer Fingerprint</td>
                </tr>
                <tr>
                  <td align="right">34</td>
                  <td align="left">Preferred Encryption Modes</td>
                </tr>
                <tr>
                  <td align="right">35</td>
                  <td align="left">Intended Recipient Fingerprint</td>
                </tr>
                <tr>
                  <td align="right">37</td>
                  <td align="left">Attested Certifications (deprecated)</td>
                </tr>
                <tr>
                  <td align="right">38</td>
                  <td align="left">Key Block</td>
                </tr>
                <tr>
                  <td align="right">39</td>
                  <td align="left">Reserved</td>
                </tr>
                <tr>
                  <td align="right">40</td>
                  <td align="left">Literal Data Meta Hash</td>
                </tr>
                <tr>
                  <td align="right">41</td>
                  <td align="left">Trust Alias</td>
                </tr>
                <tr>
                  <td align="right">100 to 110</td>
                  <td align="left">Private or  experimental</td>
                </tr>
              </tbody>
            </table>
            <t>An implementation SHOULD ignore any subpacket of a type that it does
not recognize.</t>
            <t>Bit 7 of the subpacket type is the "critical" bit.  If set, it denotes
that the subpacket is one that is critical for the evaluator of the
signature to recognize.  If a subpacket is encountered that is marked
critical but is unknown to the evaluating software, the evaluator
SHOULD consider the signature to be in error.</t>
            <t>An evaluator may "recognize" a subpacket, but not implement it.  The
purpose of the critical bit is to allow the signer to tell an
evaluator that it would prefer a new, unknown feature to generate an
error than be ignored.</t>
            <t>Implementations SHOULD implement the four preferred algorithm
subpackets (11, 21, 22, and 34), as well as the "Reason for Revocation"
subpacket.  Note, however, that if an implementation chooses not to
implement some of the preferences, it is required to behave in a
polite manner to respect the wishes of those users who do implement
these preferences.</t>
          </section>
          <section anchor="signature-subpacket-types">
            <name>Signature Subpacket Types</name>
            <t>A number of subpackets are currently defined.  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.</t>
          </section>
          <section anchor="notes-on-self-signatures">
            <name>Notes on Self-Signatures</name>
            <t>A self-signature is a binding signature made by the key to which the
signature refers.  There are three types of self-signatures, the
certification signatures (types 0x10-0x13), the direct-key signature
(type 0x1F), and the subkey binding signature (type 0x18).  For
certification self-signatures, each User ID may have a self-
signature, and thus different subpackets in those self-signatures.  For
subkey binding signatures, each subkey in fact has a self-signature.
Subpackets that appear in a certification self-signature apply to the
user name, and subpackets that appear in the subkey self-signature
apply to the subkey.  Lastly, subpackets on the direct-key signature
apply to the entire key.</t>
            <t>Implementing software should interpret a self-signature's preference
subpackets as narrowly as possible.  For example, suppose a key has two
user names, Alice and Bob.  Suppose that Alice prefers the symmetric
algorithm AES-256, and Bob prefers Camellia-256 or AES-128.  If the software
locates this key via Alice's name, then the preferred algorithm is
AES-256; if software locates the key via Bob's name, then the preferred
algorithm is Camellia-256.  If the key is located by Key ID, the algorithm of
the primary User ID of the key provides the preferred symmetric
algorithm.</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 the "Reason for Revocation" subpacket (<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 SHOULD allow the user to rewrite the
self-signature, and important information in it, such as preferences
and key expiration.</t>
            <t>It is good practice to verify that a self-signature imported into an
implementation doesn't advertise features that the implementation
doesn't support, rewriting the signature as appropriate.</t>
            <t>An implementation that encounters multiple self-signatures on the same
object may resolve the ambiguity in any way it sees fit, but it is
RECOMMENDED that priority be given to the most recent self-signature.</t>
          </section>
          <section anchor="signature-creation-time">
            <name>Signature Creation Time</name>
            <t>(4-octet time field)</t>
            <t>The time the signature was made.</t>
            <t>MUST be present in the hashed area.</t>
          </section>
          <section anchor="issuer">
            <name>Issuer</name>
            <t>(8-octet Key ID)</t>
            <t>The LibrePGP Key ID of the key issuing the signature.  If the version
of that key is greater than 4, this subpacket MUST NOT be included in
the signature.</t>
          </section>
          <section anchor="key-expiration-time">
            <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.  If this is not present or
has a value of zero, the key never expires.  This is found only on a
self-signature.</t>
          </section>
          <section anchor="preferred-symmetric-algorithms">
            <name>Preferred Symmetric Algorithms</name>
            <t>(array of one-octet values)</t>
            <t>Symmetric algorithm numbers that indicate which algorithms the key
holder prefers to use.  The subpacket body is an ordered list of octets
with the most preferred listed first.  It is assumed that only
algorithms listed are supported by the recipient's software.  Algorithm
numbers are in <xref target="constants"/>.  This is only found on a self-signature.</t>
          </section>
          <section anchor="preferred-encryption-modes">
            <name>Preferred Encryption Modes</name>
            <t>(array of one-octet values)</t>
            <t>This is a deprecated subpacket with
encryption mode numbers to indicate which modes the key
holder prefers to use with OCB Encrypted Data Pakets.  Implementations
SHOULD ignore this subpacket and assume OCB.
The subpacket body is an ordered list of
octets with the most preferred listed first.  It is assumed that only
modes listed are supported by the recipient's software.
Mode numbers are in <xref target="encryption-modes"/>.  This is only
found on a self-signature.  Note that support for the OCB Encrypted
Data packet in the general is indicated by a Feature Flag.</t>
          </section>
          <section anchor="preferred-hash-algorithms">
            <name>Preferred Hash Algorithms</name>
            <t>(array of one-octet values)</t>
            <t>Message digest algorithm numbers that indicate which algorithms the
key holder prefers to receive.  Like the preferred symmetric
algorithms, the list is ordered.  Algorithm numbers are in
<xref target="hash-algorithms"/>.  This is only found on a self-signature.</t>
          </section>
          <section anchor="preferred-compression-algorithms">
            <name>Preferred Compression Algorithms</name>
            <t>(array of one-octet values)</t>
            <t>Compression algorithm numbers that indicate which algorithms the key
holder prefers to use.  Like the preferred symmetric algorithms, the
list is ordered.  Algorithm numbers are in
<xref target="compression-algorithms"/>.  If this subpacket is not included, ZIP
is preferred.  A zero denotes that uncompressed data is preferred; the
key holder's software might have no compression software in that
implementation.  This is only found on a self-signature.</t>
          </section>
          <section anchor="signature-expiration-time">
            <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>
          </section>
          <section anchor="exportable-certification">
            <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>
          </section>
          <section anchor="revocable">
            <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">
            <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, i.e., that
it 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 SHOULD emit values of 60 for
partial trust and 120 for complete trust.</t>
          </section>
          <section anchor="regular-expression">
            <name>Regular Expression</name>
            <t>(null-terminated regular expression)</t>
            <t>Used in conjunction with Trust Signature packets (of level &gt; 0) to
limit the scope of trust that is extended.  Only signatures by the
target key on User IDs that match the regular expression in the body
of this packet have trust extended by the trust Signature
subpacket.  The regular expression uses the same syntax as the Henry
Spencer's "almost public domain" regular expression <xref target="REGEX"/> package. A
description of the syntax is found in <xref target="regular-expressions"/> below.</t>
          </section>
          <section anchor="trust-alias">
            <name>Trust Alias</name>
            <t>(String)</t>
            <t>This subpacket allows a keyholder to state an alias for a mail address
in the User ID.  The value is expected to be the UTF-8 encoded
addr-spec part of a mail address.</t>
            <t>If used in conjunction with a Trust Signature subpacket of level &gt; 0
and a Regular Expression subpacket the User ID is not considered and
the trust is only extended if at least one Trust Alias matches the
regular expression.</t>
            <t>If this subpacket is found on a self-signature, a signature done with
a Trust Signature subpacket of level &gt; 0 and a Regular Expression
subpacket is computed over the User ID, an octet 0x00, and the value
of the Trust Alias subpacket.  If more than one Trust Alias subpacket
exists all those subpackets are first sorted using binary ordering and
then concatenated using an octet 0x00 as separator.</t>
            <t>This subpacket is useful to handle the common case that mails with and
without subdomains are used. For example alice@example.org is her
canonical address but she receives mail also under the address
alice@lab.example.org.  All other properties are identical for the
second address and thus a second User ID packet is not useful here.</t>
          </section>
          <section anchor="revocation-key">
            <name>Revocation Key</name>
            <t>(1 octet of class, 1 octet of public-key algorithm ID, 20 or 32 octets
of fingerprint)</t>
            <t>V4 keys SHOULD use the full 20 octet fingerprint; V5 keys use the full
32 octet fingerprint.</t>
            <t>Authorizes the specified key to issue revocation signatures for this
key.  Class octet must have bit 0x80 set.  If the bit 0x40 is set,
then this means that the revocation information is sensitive.  Other
bits are for future expansion to other kinds of authorizations.  This
is only found on a direct-key self-signature (type 0x1f).  The use on
other types of self-signatures is unspecified.</t>
            <t>If the "sensitive" flag is set, the keyholder feels this subpacket
contains private trust information that describes a real-world
sensitive relationship.  If this flag is set, implementations SHOULD
NOT 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>
            <artwork><![CDATA[
   (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)
]]></artwork>
            <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 MUST be zero.  Defined flags are as follows:</t>
            <artwork><![CDATA[
   First octet: 0x80 = human-readable.  This note value is text.
   Other octets: none.
]]></artwork>
            <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 MUST NOT
contain the "@" character (0x40).  This is a tag for the user
namespace.</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 MUST NOT 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 MAY 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>
            <t>The following subsections define a set of standard notations.</t>
            <section anchor="the-charset-notation">
              <name>The 'charset' Notation</name>
              <t>The "charset" notation is a description of the character set used to
encode the signed plaintext.  The default value is "UTF-8".  If used,
the value MUST be encoded as human readable and MUST be present in the
hashed subpacket section of the signature.  This notation is useful
for cleartext signatures in cases where it is not possible to encode
the text in UTF-8.  By having the used character set a part of the
signed data, attacks exploiting different representation of code
points will be mitigated.</t>
            </section>
            <section anchor="the-manu-notation">
              <name>The 'manu' Notation</name>
              <t>The "manu" notation is a string that declares the device
manufacturer's name.  The certifier key is asserting this string
(which may or may not be related to the User ID of the certifier's
key).</t>
            </section>
            <section anchor="the-make-notation">
              <name>The 'make' Notation</name>
              <t>This notation defines the product make.  It is a free form string.</t>
            </section>
            <section anchor="the-model-notation">
              <name>The 'model' Notation</name>
              <t>This notation defines the product model name/number.  It is a free form string.</t>
            </section>
            <section anchor="the-prodid-notation">
              <name>The 'prodid' Notation</name>
              <t>This notation contains the product identifier.  It is a free form string.</t>
            </section>
            <section anchor="the-pvers-notation">
              <name>The 'pvers' Notation</name>
              <t>This notation defines the product version number (which could be a
release number, year, or some other identifier to differentiate
different versions of the same make/model).  It is a free form string.</t>
            </section>
            <section anchor="the-lot-notation">
              <name>The 'lot' Notation</name>
              <t>This notation defines the product lot number (which is an indicator of
the batch of product).  It is a free form string.</t>
            </section>
            <section anchor="the-qty-notation">
              <name>The 'qty' Notation</name>
              <t>This notation defines the quantity of items in this package.  It is a
decimal integer representation with no punctuation, e.g. "10", "1000",
"10000", etc.</t>
            </section>
            <section anchor="the-loc-and-dest-notations">
              <name>The 'loc' and 'dest' Notations</name>
              <t>The "loc" and 'dest' notations declare a GeoLocation as defined by RFC
5870 <xref target="RFC5870"/> but without the leading "geo:" header.  For example,
if you had a GeoLocation URI of "geo:13.4125,103.8667" you would
encode that in these notations as "13.4125,103.8667".</t>
              <t>The 'loc' notation is meant to encode the geo location where the
signature was made.  The 'dest' notation is meant to encode the geo
location where the device is "destined" (i.e., a "destination" for the
device).</t>
            </section>
            <section anchor="the-hash-notation">
              <name>The 'hash' Notation</name>
              <t>A 'hash' notation is a means to include external data in the contents
of a signature without including the data itself.  This is done by
hashing the external data separately and then including the data's
name and hash in the signature via this notation.  This is useful, for
example, to have an external "manifest," "image," or other data that
might not be vital to the signature itself but still needs to be
protected and authenticated without requiring a second signature.</t>
              <t>The 'hash' notation has the following structure:</t>
              <ul spacing="normal">
                <li>A single byte specifying the length of the name of the hashed data.</li>
                <li>A UTF-8 string of the name of the hashed data.</li>
                <li>A single byte specifying the hash algorithm (see section 9.4).</li>
                <li>The binary hash output of the hashed data using the specified
algorithm.  (The length of this data is implicit based on the
algorithm specified).</li>
              </ul>
              <t>Due to its nature a 'hash' notation is not human readable and MUST NOT
be marked as such when used.</t>
            </section>
          </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 MUST be zero.</t>
            <t>First octet: 0x80 = No-modify</t>
            <artwork><![CDATA[
The key holder requests that this key only be modified or updated
by the key holder or an administrator of the key server.

If No-modify is set on the most recent self-sig over a User ID,
then a keyserver should only redistribute those third-party
certifications over that User ID that have been attested to in the
most recent Attestation Key Signature packet (see "Attested
Certifications" below).
]]></artwork>
            <t>This is found only on a self-signature.</t>
          </section>
          <section anchor="preferred-key-server">
            <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 ftp, http,
finger, etc.</t>
          </section>
          <section anchor="primary-user-id">
            <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, etc. 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 RECOMMENDED 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">
            <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 MUST NOT
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>
            <t>First octet:</t>
            <artwork><![CDATA[
0x01 - This key may be used to certify other keys.

0x02 - This key may be used to sign data.

0x04 - This key may be used to encrypt communications.

0x08 - This key may be used to encrypt storage.

0x10 - The private component of this key may have been split by a
       secret-sharing mechanism.

0x20 - This key may be used for authentication.

0x80 - The private component of this key may be in the possession
       of more than one person.
]]></artwork>
            <t>Second octet:</t>
            <artwork><![CDATA[
0x04 - This key may be used to encrypt communications or storage.

0x08 - This key may be used for timestamping.
]]></artwork>
            <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" (1st,0x10) and "group key" (1st,0x80) flags are
placed on a self-signature only; they are meaningless on a
certification signature.  They SHOULD be placed only on a direct-key
signature (type 0x1F) or a subkey signature (type 0x18), one that
refers to the key the flag applies to.</t>
            <t>The "restricted encryption key" (2nd,0x04) does not take part in any
automatic selection of encryption keys.  It is only found on a subkey
signature (type 0x18), one that refers to the key the flag applies to.</t>
          </section>
          <section anchor="signers-user-id">
            <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
certificate was revoked.</t>
            <t>The first octet contains a machine-readable code that denotes the
reason for the revocation:</t>
            <table>
              <thead>
                <tr>
                  <th align="right">Code</th>
                  <th align="left">Reason</th>
                </tr>
              </thead>
              <tbody>
                <tr>
                  <td align="right">0</td>
                  <td align="left">No reason specified (key revocations or cert revocations)</td>
                </tr>
                <tr>
                  <td align="right">1</td>
                  <td align="left">Key is superseded (key revocations)</td>
                </tr>
                <tr>
                  <td align="right">2</td>
                  <td align="left">Key material has been compromised (key revocations)</td>
                </tr>
                <tr>
                  <td align="right">3</td>
                  <td align="left">Key is retired and no longer used (key revocations)</td>
                </tr>
                <tr>
                  <td align="right">32</td>
                  <td align="left">User ID information is no longer valid (cert revocations)</td>
                </tr>
                <tr>
                  <td align="right">100-110</td>
                  <td align="left">Private Use</td>
                </tr>
              </tbody>
            </table>
            <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, that is, of zero length.  The length
of the subpacket is the length of the reason string plus one.  An
implementation SHOULD 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 revocation SHOULD
include a 0x20 code.</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">
            <name>Features</name>
            <t>(N octets of flags)</t>
            <t>The Features subpacket denotes which advanced LibrePGP features a
user's implementation supports.  This is so that as features are added
to LibrePGP 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 SHOULD NOT use a feature listed when sending to a
user who does not state that they can use it.</t>
            <t>Defined features are as follows:</t>
            <t>First octet:</t>
            <artwork><![CDATA[
0x01 - Modification Detection (packets 18 and 19)

0x02 - OCB Encrypted Data Packet (packet 20) and version 5
       Symmetric-Key Encrypted Session Key Packets (packet 3)

0x04 - Version 5 Public-Key Packet format and corresponding new
       fingerprint format
]]></artwork>
            <t>If an implementation implements any of the defined features, it SHOULD
implement the Features subpacket, too.</t>
            <t>An implementation may freely infer features from other suitable
implementation-dependent mechanisms.</t>
          </section>
          <section anchor="signature-target">
            <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 MUST be the size of the hash of the
signature.  For example, a target signature with a SHA-1 hash MUST
have 20 octets of hash data.</t>
          </section>
          <section anchor="embedded-signature">
            <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-tag-2"/> above.  It is useful when one signature
needs to refer to, or be incorporated in, another signature.</t>
          </section>
          <section anchor="issuer-fingerprint">
            <name>Issuer Fingerprint</name>
            <t>(1 octet key version number, N octets of fingerprint)</t>
            <t>The LibrePGP Key fingerprint of the key issuing the signature.  This
subpacket SHOULD be included in all signatures.  If the version of the
issuing key is 4 and an Issuer subpacket is also included in the
signature, the key ID of the Issuer subpacket MUST 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 5 key N is 32.</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 LibrePGP Key fingerprint of the intended recipient primary key.  If
one or more subpackets of this type are included in a signature, it
SHOULD 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.</t>
            <t>A standalone revocation signature issued by a designated revoker may
use this subpacket to indicate the to-be-revoked certificate.</t>
            <t>Note that the length N of the fingerprint for a version 4 key is 20
octets; for a version 5 key N is 32.</t>
          </section>
          <section anchor="attested-certifications">
            <name>Attested Certifications</name>
            <t>(N octets of certification digests)</t>
            <t>Due to general problems with the concept of public keyservers,
implementations SHOULD NOT implement or consider this subpacket.  This
subpacket was specified for experimental purposes to mitigate problems
with the keyserver but it merely increases the complexity for no good
benefit.</t>
            <t>This subpacket MUST only appear as a hashed subpacket of an
Attestation Key Signature.  It has no meaning in any other signature
type.  It is used by the primary key to attest to a set of third-party
certifications over the associated User ID or User Attribute.  This
enables the holder of an LibrePGP primary key to mark specific
third-party certifications as re-distributable with the rest of the
Transferable Public Key (see the "No-modify" flag in "Key Server
Preferences", above).  Implementations MUST include exactly one
Attested Certification subpacket in any generated Attestation Key
Signature.</t>
            <t>The contents of the subpacket consists of a series of digests using
the same hash algorithm used by the signature itself.  Each digest is
made over one third-party signature (any Certification, i.e.,
signature type 0x10-0x13) that covers the same Primary Key and User ID
(or User Attribute).  For example, an Attestation Key Signature made
by key X over User ID U using hash algorithm SHA256 might contain an
Attested Certifications subpacket of 192 octets (6*32 octets) covering
six third-party certification Signatures over &lt;X,U&gt;.  They SHOULD be
ordered by binary hash value from low to high (e.g., a hash with
hexadecimal value 037a... precedes a hash with value 0392..., etc).
The length of this subpacket MUST be an integer multiple of the length
of the hash algorithm used for the enclosing Attestation Key
Signature.</t>
            <t>The listed digests MUST be calculated over the third-party
certification's Signature packet as described in the "Computing
Signatures" section, but without a trailer: the hash data starts with
the octet 0x88, followed by the four-octet length of the Signature,
and then the body of the Signature packet. (Note that this is an
old-style 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>If an implementation encounters more than one such subpacket in an
Attestation Key Signature, it MUST treat it as a single Attested
Certifications subpacket containing the union of all hashes.</t>
            <t>The Attested Certifications subpacket in the most recent Attestation
Key Signature over a given User ID supersedes all Attested
Certifications subpackets from any previous Attestation Key Signature.
However, note that if more than one Attestation Key Signatures has the
same (most recent) Signature Creation Time subpacket, implementations
MUST consider the union of the attestations of all Attestation Key
Signatures (this allows the keyholder to attest to more third-party
certifications than could fit in a single Attestation Key Signature).</t>
            <t>If a keyholder Alice has already attested to third-party
certifications from Bob and Carol and she wants to add an attestation
to a certification from David, she should issue a new Attestation Key
Signature (with a more recent Signature Creation timestamp) that
contains an Attested Certifications subpacket covering all three
third-party certifications.</t>
            <t>If she later decides that she does not want Carol's certification to
be redistributed with her certificate, she can issue a new Attestation
Key Signature (again, with a more recent Signature Creation timestamp)
that contains an Attested Certifications subpacket covering only the
certifications from Bob and David.</t>
            <t>Note that Certification Revocation Signatures are not relevant for
Attestation Key Signatures.  To rescind all attestations, the primary
key holder needs only to publish a more recent Attestation Key
Signature with an empty Attested Certifications subpacket.</t>
          </section>
          <section anchor="key-block">
            <name>Key Block</name>
            <t>(1 octet with value 0, N octets of key data)</t>
            <t>This subpacket MAY be used to convey key data along with a signature
of class 0x00, 0x01, or 0x02.  It MUST contain the key used to create
the signature; either as the primary key or as a subkey.  The key
SHOULD contain a primary or subkey capable of encryption and the
entire key must be a valid LibrePGP key including at least one User ID
packet and the corresponding self-signatures.</t>
            <t>Implementations MUST ignore this subpacket if the first octet does not
have a value of zero or if the key data does not represent a valid
transferable public key.</t>
          </section>
          <section anchor="literal-data-meta-hash">
            <name>Literal Data Meta Hash</name>
            <t>(1 octet with value 0, 32 octets hash value)</t>
            <t>This subpacket MAY be used to protect the meta data from the Literal
Data Packet with V4 signatures. The hash is computed using SHA2-256
from this data:</t>
            <ul spacing="normal">
              <li>the one-octet content format,</li>
              <li>the file name as a string (one octet length, followed by the file name),</li>
              <li>a four-octet number that indicates a date.</li>
            </ul>
            <t>These three data items need to mirror the corresponding values of the
Literal Data packet.  Implementations encountering this subpacket must
re-create the hash from the received Literal Data packet and compare
them.  If the hash values do not match or if this packet is used in a
V5 signature the signature MUST be deemed as invalid.</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>For binary document signatures (type 0x00), the document data is
hashed directly.  For text document signatures (type 0x01), the
document is canonicalized by converting line endings to &lt;CR&gt;&lt;LF&gt;, and
the resulting data 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 body
of the key packet; when a V5 signature is made over a key, the hash
data starts with the octet 0x9a for V5, followed by a four-octet length of
the key, and then body of the key packet.  A subkey binding signature
(type 0x18) or primary key binding signature (type 0x19) then hashes
the subkey using the same format as the main key (also using 0x99 or
0x9a as the first octet).  Primary key revocation signatures (type
0x20) hash only the key being revoked.  Subkey revocation signature
(type 0x28) hash first the primary key and then the subkey being
revoked.</t>
          <t>A certification signature (type 0x10 through 0x13) hashes the User ID
being bound to the key into the hash context after the above data. A
V3 certification hashes the contents of the User ID or attribute
packet packet, without any header. A V4 or V5 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>An Attestation Key Signature (0x16) hashes the same data body that a
standard certification signature does: primary key, followed by User
ID or User Attribute.</t>
          <t>When a signature is made over a Signature packet (type 0x50,
"Third-Party Confirmation signature"), the hash data starts with the
octet 0x88, followed by the four-octet length of the signature, and
then the body of the Signature packet. (Note that this is an old-style
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>
          <ul spacing="normal">
            <li>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 time.</li>
            <li>
              <t>A V4 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:  </t>
              <ul spacing="normal">
                <li>the signature version (0x04),</li>
                <li>the signature type,</li>
                <li>the public-key algorithm,</li>
                <li>the hash algorithm,</li>
                <li>the hashed subpacket length,</li>
                <li>the hashed subpacket body,</li>
                <li>the two octets 0x04 and 0xFF,</li>
                <li>
                  <t>a four-octet big-endian number that is the length
of the hashed data from the Signature packet
stopping right before the 0x04, 0XFF octets.      </t>
                  <t>
The four-octet big-endian number is considered to be an unsigned
integer modulo 2^32.</t>
                </li>
              </ul>
            </li>
            <li>
              <t>A V5 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:  </t>
              <ul spacing="normal">
                <li>the signature version (0x05),</li>
                <li>the signature type,</li>
                <li>the public-key algorithm,</li>
                <li>the hash algorithm,</li>
                <li>the hashed subpacket length,</li>
                <li>the hashed subpacket body,</li>
                <li>
                  <t>Only for document signatures (type 0x00 or 0x01) the following
three data items are hashed here:
                  </t>
                  <ul spacing="normal">
                    <li>the one-octet content format,</li>
                    <li>the file name as a string (one octet length, followed by
the file name),</li>
                    <li>a four-octet number that indicates a date,</li>
                  </ul>
                </li>
                <li>the two octets 0x05 and 0xFF,</li>
                <li>a eight-octet big-endian number that is the length
of the hashed data from the Signature packet
stopping right before the 0x05, 0XFF octets.</li>
              </ul>
              <t>
The three data items hashed for document signatures need to mirror
the values of the Literal Data packet.  Note that for a detached
signatures this means to hash 6 0x00 octets and for a cleartext
signature this means to hash a 't' followed by 5 0x00 octets.</t>
            </li>
          </ul>
          <t>After all this has been hashed in a single hash context, the resulting
hash field is used in the signature algorithm and placed at the end of
the Signature packet.</t>
          <section anchor="subpacket-hints">
            <name>Subpacket Hints</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 SHOULD use the last subpacket in the
signature, but MAY 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 subpacket for each key, as a way of explicitly tying those keys
to the signature.</t>
          </section>
        </section>
      </section>
      <section anchor="symmetric-key-encrypted-session-key-packets-tag-3">
        <name>Symmetric-Key Encrypted Session Key Packets (Tag 3)</name>
        <t>The Symmetric-Key Encrypted Session Key packet holds the symmetric-key
encryption of a session key used to encrypt a message.  Zero or more
Public-Key Encrypted Session Key packets and/or Symmetric-Key
Encrypted Session Key packets may precede 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 or the Symmetric-Key Encrypted
Session Key packet.</t>
        <t>If the Symmetrically Encrypted Data packet 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.  This packet type is new and is not generated by
PGP 2 or PGP version 5.0.</t>
        <t>A version 4 Symmetric-Key Encrypted Session Key packet consists of:</t>
        <ul spacing="normal">
          <li>A one-octet version number with value 4.</li>
          <li>A one-octet number describing the symmetric algorithm used.</li>
          <li>A string-to-key (S2K) specifier, length as defined above.</li>
          <li>Optionally, the encrypted session key itself, which is
decrypted with the string-to-key object.</li>
        </ul>
        <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 Symmetrically Encrypted Data packet, followed by the session
key octets themselves.</t>
        <t>Note: because an all-zero IV is used for this decryption, the S2K
specifier MUST use a salt value, either a Salted S2K or an
Iterated-Salted S2K.  The salt value will ensure that the decryption
key is not repeated even if the passphrase is reused.</t>
        <t>A version 5 Symmetric-Key Encrypted Session Key packet consists of:</t>
        <ul spacing="normal">
          <li>A one-octet version number with value 5.</li>
          <li>A one-octet cipher algorithm.</li>
          <li>A one-octet encryption mode number which MUST be 2 to indicate
OCB.</li>
          <li>A string-to-key (S2K) specifier, length as defined above.</li>
          <li>A starting initialization vector of size specified by the
mode.</li>
          <li>The encrypted session key itself, which is decrypted with the
string-to-key object using the given cipher and encryption mode.</li>
          <li>An authentication tag for the encryption mode.</li>
        </ul>
        <t>The encrypted session key is encrypted using the encryption
mode specified for the OCB Encrypted Packet.  Note that no
chunks are used and that there is only one authentication tag.  The
Packet Tag in new format encoding (bits 7 and 6 set, bits 5-0 carry
the packet tag), the packet version number, the cipher algorithm
octet, and the mode octet are given as additional data.  For
example, the additional data used with OCB and AES-128 consists of the
octets 0xC3, 0x05, 0x07, and 0x02.</t>
      </section>
      <section anchor="one-pass-signature-packets-tag-4">
        <name>One-Pass Signature Packets (Tag 4)</name>
        <t>The One-Pass Signature packet precedes the signed data and contains
enough information to allow the receiver to begin calculating any
hashes needed to verify the signature.  It allows the Signature packet
to be placed at the end of the message, so that the signer can compute
the entire signed message in one pass.</t>
        <t>A One-Pass Signature does not interoperate with PGP 2.6.x or earlier.</t>
        <t>The body of this packet consists of:</t>
        <ul spacing="normal">
          <li>A one-octet version number.  The currently specified version is 3.</li>
          <li>A one-octet signature type.  Signature types are described in
<xref target="signature-types"/>.</li>
          <li>A one-octet number describing the hash algorithm used.</li>
          <li>A one-octet number describing the public-key algorithm used.</li>
          <li>An eight-octet number holding the Key ID of the signing key.</li>
          <li>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.</li>
        </ul>
        <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-packet">
        <name>Key Material Packet</name>
        <t>A key material packet contains all the information about a public or
private key.  There are four variants of this packet type, and two
major versions.  Consequently, this section is complex.</t>
        <section anchor="key-packet-variants">
          <name>Key Packet Variants</name>
          <section anchor="public-key-packet-tag-6">
            <name>Public-Key Packet (Tag 6)</name>
            <t>A Public-Key packet starts a series of packets that forms an LibrePGP
key (sometimes called an LibrePGP certificate).</t>
          </section>
          <section anchor="public-subkey-packet-tag-14">
            <name>Public-Subkey Packet (Tag 14)</name>
            <t>A Public-Subkey packet (tag 14) has exactly the same format as a
Public-Key packet, but denotes a subkey.  One or more subkeys may be
associated with a top-level key.  By convention, the top-level key
provides signature services, and the subkeys provide encryption
services.</t>
            <t>Note: in PGP version 2.6, tag 14 was intended to indicate a comment packet.
This tag was selected for reuse because no previous version of PGP
ever emitted comment packets but they did properly ignore
them.  Public-Subkey packets are ignored by PGP version 2.6 and do not cause
it to fail, providing a limited degree of backward compatibility.</t>
          </section>
          <section anchor="secret-key-packet-tag-5">
            <name>Secret-Key Packet (Tag 5)</name>
            <t>A Secret-Key packet contains all the information that is found in a
Public-Key packet, including the public-key material, but also
includes the secret-key material after all the public-key fields.</t>
          </section>
          <section anchor="secret-subkey-packet-tag-7">
            <name>Secret-Subkey Packet (Tag 7)</name>
            <t>A Secret-Subkey packet (tag 7) is the subkey analog of the Secret Key
packet and has exactly the same format.</t>
          </section>
        </section>
        <section anchor="public-key-packet-formats">
          <name>Public-Key Packet Formats</name>
          <t>There are three versions of key-material packets.  Version 3 packets were
first generated by PGP version 2.6.  Version 4 keys first appeared in PGP 5
and are the preferred key version for LibrePGP.</t>
          <t>LibrePGP implementations MUST create keys with either version 4 or
version 5 format. V3 keys are deprecated; an implementation MUST NOT
generate a V3 key, but MAY accept it.</t>
          <t>A version 3 public key or public-subkey packet contains:</t>
          <ul spacing="normal">
            <li>A one-octet version number (3).</li>
            <li>A four-octet number denoting the time that the key was created.</li>
            <li>A two-octet number denoting the time in days that this key is
valid.  If this number is zero, then it does not expire.</li>
            <li>A one-octet number denoting the public-key algorithm of this
key.</li>
            <li>
              <t>A series of multiprecision integers comprising the key
material:  </t>
              <ul spacing="normal">
                <li>a multiprecision integer (MPI) of RSA public modulus n;</li>
                <li>an MPI of RSA public encryption exponent e.</li>
              </ul>
            </li>
          </ul>
          <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 below for
a fuller discussion of Key IDs and fingerprints.</t>
          <t>V2 keys are identical to the deprecated V3 keys except for the version
number.  An implementation MUST NOT generate them and MAY accept or
reject them as it sees fit.</t>
          <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 the section "Enhanced
Key Formats".</t>
          <t>A version 4 packet contains:</t>
          <ul spacing="normal">
            <li>A one-octet version number (4).</li>
            <li>A four-octet number denoting the time that the key was created.</li>
            <li>A one-octet number denoting the public-key algorithm of this
key.</li>
            <li>A series of values comprising the key material.  This is
algorithm-specific and described in <xref target="algorithm-specific-parts-of-keys"/>.</li>
          </ul>
          <t>The version 5 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 algoritm.  In addition, fingerprints
of version 5 keys are calculated differently from version 4 keys, as
described in the section "Enhanced Key Formats".</t>
          <t>A version 5 packet contains:</t>
          <ul spacing="normal">
            <li>A one-octet version number (5).</li>
            <li>A four-octet number denoting the time that the key was created.</li>
            <li>A one-octet number denoting the public-key algorithm of this
key.</li>
            <li>A four-octet scalar octet count for the following public key material.</li>
            <li>A series of values comprising the public key material.  This is
algorithm-specific and described in <xref target="algorithm-specific-parts-of-keys"/>.</li>
          </ul>
        </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>
          <ul spacing="normal">
            <li>A Public-Key or Public-Subkey packet, as described above.</li>
            <li>One octet indicating string-to-key usage conventions.  Zero
indicates that the secret-key data is not encrypted.  255 or
254 indicates that a string-to-key specifier is being given.
Any other value is a symmetric-key encryption algorithm
identifier.  A version 5 packet MUST NOT use the value 255.</li>
            <li>Only for a version 5 packet, a one-octet scalar octet count of the
next 4 optional fields.</li>
            <li>[Optional] If string-to-key usage octet was 255, 254, or 253, a
one-octet symmetric encryption algorithm.</li>
            <li>[Optional] If string-to-key usage octet was 253, an octet with
the values 0x02 to indicate the OCB encryption mode.</li>
            <li>[Optional] If string-to-key usage octet was 255, 254, or 253, a
string-to-key specifier.  The length of the string-to-key
specifier is implied by its type, as described above.</li>
            <li>[Optional] If secret data is encrypted (string-to-key usage
octet not zero), an Initial Vector (IV) of the same length as the
cipher's block size.  If string-to-key usage octet was 253 the IV
is used as the nonce for the OCB mode.  If the OCB mode requires a
shorter nonce, the high-order bits of the IV are used and the
remaining bits MUST be zero.</li>
            <li>Only for a version 5 packet, a four-octet scalar octet count for
the following secret key material.  This includes the encrypted
SHA-1 hash or OCB tag if the string-to-key usage octet is 254 or
253.</li>
            <li>Plain or encrypted series of values comprising the secret key
material.  This is algorithm-specific and described in section
<xref target="algorithm-specific-parts-of-keys"/>.  Note that if the
string-to-key usage octet is 254, 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 253, then the OCB authentication tag is part of that data.</li>
            <li>If the string-to-key usage octet is zero or 255, then a
two-octet checksum of the plaintext of the algorithm-specific
portion (sum of all octets, mod 65536).</li>
          </ul>
          <t>Note that the version 5 packet format adds two count values
to help parsing packets with unknown S2K or public key algorithms.</t>
          <t>Secret MPI values can be encrypted using a passphrase.  If a string-
to-key specifier is given, that describes the algorithm for converting
the passphrase to a key, else a simple MD5 hash of the passphrase is
used.  Implementations MUST use a string-to-key specifier; the simple
hash is for backward compatibility and is deprecated, though
implementations MAY 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 in CFB mode using the
key created from the passphrase and the Initial Vector from the
packet.  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
(i.e., 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 V5 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 encrypted MPI values are
encrypted as one combined plaintext using OCB mode.  Note that no
chunks are used and that there is only one authentication tag.  The
Packet Tag in new format encoding (bits 7 and 6 set, bits 5-0 carry
the packet tag), the cipher algorithm octet, an octet with value 0x02
(to indicate OCB mode), followed by the public-key packet fields,
starting with its packet version number are given as additional data.
For example, the additional data used with AES-128 in a Secret-Key
Packet of version 4 consists of the octets 0xC5, 0x07, 0x02, 0x04,
followed by the creation time field up to the last value of the
public-key material; in a Secret-Subkey Packet the first octet would
be 0xC7.</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 SHOULD NOT 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 OCB mode follows.</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="algorithm-specific-part-for-rsa-keys">
          <name>Algorithm-Specific Part for RSA Keys</name>
          <t>The public key is this series of multiprecision integers:</t>
          <ul spacing="normal">
            <li>MPI of RSA public modulus n;</li>
            <li>MPI of RSA public encryption exponent e.</li>
          </ul>
          <t>The secret key is this series of multiprecision integers:</t>
          <ul spacing="normal">
            <li>MPI of RSA secret exponent d;</li>
            <li>MPI of RSA secret prime value p;</li>
            <li>MPI of RSA secret prime value q (p &lt; q);</li>
            <li>MPI of u, the multiplicative inverse of p, mod q.</li>
          </ul>
        </section>
        <section anchor="algorithm-specific-part-for-dsa-keys">
          <name>Algorithm-Specific Part for DSA Keys</name>
          <t>The public key is this series of multiprecision integers:</t>
          <ul spacing="normal">
            <li>MPI of DSA prime p;</li>
            <li>MPI of DSA group order q (q is a prime divisor of p-1);</li>
            <li>MPI of DSA group generator g;</li>
            <li>MPI of DSA public-key value y (= g^x mod p where x is secret).</li>
          </ul>
          <t>The secret key is this single multiprecision integer:</t>
          <ul spacing="normal">
            <li>MPI of DSA secret exponent x.</li>
          </ul>
        </section>
        <section anchor="algorithm-specific-part-for-elgamal-keys">
          <name>Algorithm-Specific Part for Elgamal Keys</name>
          <t>The public key is this series of multiprecision integers:</t>
          <ul spacing="normal">
            <li>MPI of Elgamal prime p;</li>
            <li>MPI of Elgamal group generator g;</li>
            <li>MPI of Elgamal public key value y (= g^x mod p where x is secret).</li>
          </ul>
          <t>The secret key is this single multiprecision integer:</t>
          <ul spacing="normal">
            <li>MPI of Elgamal secret exponent x.</li>
          </ul>
        </section>
        <section anchor="algorithm-specific-part-for-ecdsa-keys">
          <name>Algorithm-Specific Part for ECDSA Keys</name>
          <t>The public key is this series of values:</t>
          <ul spacing="normal">
            <li>a variable-length field containing a curve OID, formatted as: a
one-octet size of the following field with values 0 and 0xFF
reserved for future extensions and the octets representing a
curve OID, defined in <xref target="ecc-curve-oid"/>;</li>
            <li>a SOS of an EC point representing a public key.</li>
          </ul>
          <t>The secret key is this single multiprecision integer:</t>
          <ul spacing="normal">
            <li>a SOS of the secret key, which is a
scalar of the public EC point.</li>
          </ul>
        </section>
        <section anchor="algorithm-specific-part-for-eddsa-keys">
          <name>Algorithm-Specific Part for EdDSA Keys</name>
          <t>The public key is this series of values:</t>
          <ul spacing="normal">
            <li>a variable-length field containing a curve OID, formatted as: a
one-octet size of the following field with values 0 and 0xFF
reserved for future extensions and the octets representing a
curve OID, defined in <xref target="ecc-curve-oid"/>;</li>
            <li>a SOS with an EC point representing a public key Q as described
under EdDSA Point Format below.</li>
          </ul>
          <t>The secret key is this single multiprecision integer:</t>
          <ul spacing="normal">
            <li>a SOS representing the secret key, which is a
scalar of the public EC point.</li>
          </ul>
        </section>
        <section anchor="algorithm-specific-part-for-ecdh-keys">
          <name>Algorithm-Specific Part for ECDH Keys</name>
          <t>The public key is this series of values:</t>
          <ul spacing="normal">
            <li>a variable-length field containing a curve OID, formatted as: a
one-octet size of the following field with values 0 and 0xFF
reserved for future extensions and the octets representing a
curve OID, defined in <xref target="ecc-curve-oid"/>;</li>
            <li>a SOS with an EC point representing a public key;</li>
            <li>
              <t>a variable-length field containing KDF parameters,
formatted as follows:  </t>
              <ul spacing="normal">
                <li>a one-octet size of the following fields; values 0
and 0xff are reserved for future extensions;</li>
                <li>a one-octet value 1, reserved for future extensions;</li>
                <li>a one-octet hash function ID used with a KDF;</li>
                <li>a one-octet algorithm ID for the symmetric algorithm
used to wrap the symmetric key used for the message
encryption; see <xref target="ecdh-algorithm"/> for details.</li>
              </ul>
            </li>
          </ul>
          <t>Observe that an ECDH public key is composed of the same sequence of
fields that define an ECDSA key, plus the KDF parameters field.</t>
          <t>The secret key is this single multiprecision integer:</t>
          <ul spacing="normal">
            <li>a SOS representing the secret key, which is a scalar of the public
EC point.</li>
          </ul>
        </section>
        <section anchor="algorithm-specific-part-for-ml-kem-keys">
          <name>Algorithm-Specific Part for ML-KEM Keys</name>
          <t>The public key is this series of values:</t>
          <ul spacing="normal">
            <li>a variable-length field containing a curve OID, formatted as: a
one-octet size of the following field with values 0 and 0xFF
reserved for future extensions and the octets representing a
curve OID, defined in <xref target="ecc-curve-oid"/>.  For Curve25519 the
alternative OID (1.3.102.110) MUST be used;</li>
            <li>a SOS with an EC point representing a public key;</li>
            <li>A four-octet scalar octet count of the following octet string
containing the ML-KEM public key.  Valid octet counts are 1184 for
ML-KEM-768 and 1568 for ML-KEM-1024.</li>
          </ul>
          <t>The secret key is this series of values:</t>
          <ul spacing="normal">
            <li>a SOS representing the secret key, which is a scalar of the public
EC point;</li>
            <li>A four-octet scalar octet count of the follwoing octet string
containing the ML-KEM secret key. Valid octet counts are 2400 for
ML-KEM-768 and 3168 for ML-KEM-1024.</li>
          </ul>
        </section>
      </section>
      <section anchor="compressed-data-packet-tag-8">
        <name>Compressed Data Packet (Tag 8)</name>
        <t>The Compressed Data packet contains compressed data.  Typically, this
packet is found as the contents of an encrypted packet, or following a
Signature or One-Pass Signature packet, and contains a literal data
packet.</t>
        <t>The body of this packet consists of:</t>
        <ul spacing="normal">
          <li>One octet that gives the algorithm used to compress the packet.</li>
          <li>Compressed data, which makes up the remainder of the packet.</li>
        </ul>
        <t>A Compressed Data Packet's body contains an block that compresses some
set of packets.  See section "Packet Composition" for details on how
messages are formed.</t>
        <t>ZIP-compressed packets are compressed with raw RFC 1951 <xref target="RFC1951"/>
DEFLATE blocks.  Note that PGP V2.6 uses 13 bits of compression.  If an
implementation uses more bits of compression, PGP V2.6 cannot
decompress it.</t>
        <t>ZLIB-compressed packets are compressed with RFC 1950 <xref target="RFC1950"/>
ZLIB-style blocks.</t>
        <t>BZip2-compressed packets are compressed using the BZip2 <xref target="BZ2"/>
algorithm.</t>
      </section>
      <section anchor="symmetrically-encrypted-data-packet-tag-9">
        <name>Symmetrically Encrypted Data Packet (Tag 9)</name>
        <t>The Symmetrically Encrypted Data packet contains data encrypted with a
symmetric-key algorithm.  When it has been decrypted, it contains other
packets (usually a literal data packet or compressed data packet, but
in theory other Symmetrically Encrypted Data packets or sequences of
packets that form whole LibrePGP messages).</t>
        <t>This packet is obsolete.  An implementation MUST NOT create this
packet.  An implementation MAY process such a packet but it MUST
return a clear diagnostic that a non-integrity protected packet has
been processed.  The implementation SHOULD also return an error in
this case and stop processing.</t>
        <t>The body of this packet consists of:</t>
        <ul spacing="normal">
          <li>Encrypted data, the output of the selected symmetric-key cipher
operating in LibrePGP's variant of Cipher Feedback (CFB) mode.</li>
        </ul>
        <t>The symmetric cipher used may be specified in a Public-Key or
Symmetric-Key Encrypted Session Key packet that precedes the
Symmetrically Encrypted Data packet.  In that case, the cipher
algorithm octet is prefixed to the session key before it is
encrypted.  If no packets of these types precede the encrypted data,
the IDEA algorithm is used with the session key calculated as the MD5
hash of the passphrase, though this use is deprecated.</t>
        <t>The data is encrypted in CFB mode, with a CFB shift size equal to the
cipher's block size.  The Initial Vector (IV) is specified as all
zeros.  Instead of using an IV, LibrePGP prefixes a string of length
equal to the block size of the cipher plus two to the data before it
is encrypted.  The first block-size octets (for example, 8 octets for
a 64-bit block length) are random, and the following two octets are
copies of the last two octets of the IV.  For example, in an 8-octet
block, octet 9 is a repeat of octet 7, and octet 10 is a repeat of
octet 8.  In a cipher of length 16, octet 17 is a repeat of octet 15
and octet 18 is a repeat of octet 16.  As a pedantic clarification, in
both these examples, we consider the first octet to be numbered 1.</t>
        <t>After encrypting the first block-size-plus-two octets, 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 16 bits in the random data prefixed to the message
allows the receiver to immediately check whether the session key is
incorrect.  See the "Security Considerations" section for hints on the
proper use of this "quick check".</t>
      </section>
      <section anchor="marker-packet-obsolete-literal-packet-tag-10">
        <name>Marker Packet (Obsolete Literal Packet) (Tag 10)</name>
        <t>An experimental version of PGP used this packet as the Literal packet,
but no released version of PGP generated Literal packets with this
tag.  With PGP 5, this packet has been reassigned and is reserved
for use as the Marker packet.</t>
        <t>The body of this packet consists of:</t>
        <ul spacing="normal">
          <li>The three octets 0x50, 0x47, 0x50 (which spell "PGP" in UTF-8).</li>
        </ul>
        <t>Such a packet MUST be ignored when received.  It may be placed at the
beginning of a message that uses features not available in PGP
version 2.6 in order to cause that version to report that newer software is
necessary to process the message.</t>
      </section>
      <section anchor="literal-data-packet-tag-11">
        <name>Literal Data Packet (Tag 11)</name>
        <t>A Literal Data packet contains the body of a message; data that is not
to be further interpreted.</t>
        <t>The body of this packet consists of:</t>
        <ul spacing="normal">
          <li>
            <t>A one-octet field that describes how the data is formatted.  </t>
            <t>
If it is a <tt>b</tt> (0x62), then the Literal packet contains binary
data.  If it is a <tt>t</tt> (0x74), then it contains text data, and thus
may need line ends converted to local form, or other text-mode
changes.  The tag <tt>u</tt> (0x75) means the same as <tt>t</tt>, but also
indicates that implementation believes that the literal data
contains UTF-8 text.  If it is a <tt>m</tt> (0x6d), then it contains a
MIME message body part <xref target="RFC2045"/>.  </t>
            <t>
Early versions of PGP also defined a value of <tt>l</tt> as a 'local'
mode for machine-local conversions.  RFC 1991 <xref target="RFC1991"/>
incorrectly stated this local mode flag as <tt>1</tt> (ASCII numeral
one).  Both of these local modes are deprecated.</t>
          </li>
          <li>
            <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 MAY consider the file name in the Literal
packet to be a more authoritative name than the actual file name.  </t>
            <t>
If the special name "_CONSOLE" is used, 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>
          </li>
          <li>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.</li>
          <li>
            <t>The remainder of the packet is literal data.  </t>
            <t>
Text data is stored with &lt;CR&gt;&lt;LF&gt; text endings (i.e.,
network-normal line endings).  These should be converted to
native line endings by the receiving software.</t>
          </li>
        </ul>
        <t>Note that V3 and V4 signatures do not include the formatting octet,
the file name, and the date field of the literal packet in a signature
hash and thus are not protected against tampering in a signed
document.  In contrast V5 signatures include them.</t>
      </section>
      <section anchor="trust-packet-tag-12">
        <name>Trust Packet (Tag 12)</name>
        <t>The Trust packet is used only within keyrings and is not normally
exported.  Trust packets contain data that record the user's
specifications of which key holders are trustworthy introducers, along
with other information that implementing software uses for trust
information.  The format of Trust packets is defined by a given
implementation.</t>
        <t>Trust packets SHOULD NOT be emitted to output streams that are
transferred to other users, and they SHOULD be ignored on any input
other than local keyring files.</t>
      </section>
      <section anchor="user-id-packet-tag-13">
        <name>User ID Packet (Tag 13)</name>
        <t>A User ID packet consists of UTF-8 text that is intended to represent
the name and email address of the key holder.  By convention, it
includes an RFC 2822 <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-tag-17">
        <name>User Attribute Packet (Tag 17)</name>
        <t>The User Attribute packet is a variation of the User ID packet.  It is
capable of storing more types of data than the User ID packet, which
is limited to text.  Like the User ID packet, a User Attribute packet
may be certified by the key owner ("self-signed") or any other key
owner who cares to certify it.  Except as noted, a User Attribute
packet may be used anywhere that a User ID packet may be used.</t>
        <t>While User Attribute packets are not a required part of the LibrePGP
standard, implementations SHOULD 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>
        <ul spacing="normal">
          <li>the subpacket length (1, 2, or 5 octets)</li>
          <li>the subpacket type (1 octet)</li>
        </ul>
        <t>and is followed by the subpacket specific data.</t>
        <t>The following table lists the currently known subpackets:</t>
        <table>
          <thead>
            <tr>
              <th align="right">Type</th>
              <th align="left">Attribute Subpacket</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">1</td>
              <td align="left">Image Attribute Subpacket</td>
            </tr>
            <tr>
              <td align="right">[TBD1]</td>
              <td align="left">User ID Attribute Subpacket</td>
            </tr>
            <tr>
              <td align="right">100-110</td>
              <td align="left">Private/Experimental Use</td>
            </tr>
          </tbody>
        </table>
        <t>An implementation SHOULD ignore any subpacket of a type that it
does not recognize.</t>
        <section anchor="the-image-attribute-subpacket">
          <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>
          <t>The fourth octet of a version 1 image header designates the encoding
format of the image.  The only currently defined encoding format is the
value 1 to indicate JPEG.  Image format types 100 through 110 are
reserved for private or experimental use.  The rest of the version 1
image header is made up of 12 reserved octets, all of which MUST be
set to 0.</t>
          <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 MAY 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 anchor="user-id-attribute-subpacket">
          <name>User ID Attribute Subpacket</name>
          <t>A User ID Attribute subpacket has type [IANA --- assignment TBD1].</t>
          <t>A User ID Attribute subpacket, just like 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 RFC 2822 <xref target="RFC2822"/>
mail name-addr, but there are no restrictions on its content.  For
devices using LibrePGP for device certificates, it may just be the
device identifier.  The packet length in the header specifies the
length of the User ID.</t>
          <t>Because User Attribute subpackets can be used anywhere a User ID
packet can be used, implementations MAY choose to trust a signed User
Attribute subpacket that includes a User ID Attribute subpacket.</t>
        </section>
      </section>
      <section anchor="sym-encrypted-integrity-protected-data-packet-tag-18">
        <name>Sym. Encrypted Integrity Protected Data Packet (Tag 18)</name>
        <t>The Symmetrically Encrypted Integrity Protected Data packet is a
variant of the Symmetrically Encrypted Data packet.  This feature
addresses the problem of detecting a modification to encrypted
data. It is used in combination with a Modification Detection Code
packet.  This feature was introduced in the year 2000 by PGP and GnuPG
and later specified by RFC-4880.</t>
        <t>There is a corresponding feature in the features Signature subpacket
that denotes that an implementation can properly use this packet type.
An implementation MUST support decrypting these packets and SHOULD
prefer generating them to the older Symmetrically Encrypted Data
packet when possible.  Since this data packet protects against
modification attacks, this standard encourages its
proliferation.  While blanket adoption of this data packet would create
interoperability problems, rapid adoption is nevertheless
important.  An implementation SHOULD specifically denote support for
this packet, but it MAY infer it from other mechanisms.</t>
        <t>For example, an implementation might infer from the use of a cipher
such as Advanced Encryption Standard (AES) or Twofish that a user
supports this feature.  It might place in the unhashed portion of
another user's key signature a Features subpacket.  It might also
present a user with an opportunity to regenerate their own self-
signature with a Features subpacket.</t>
        <t>This packet contains data encrypted with a symmetric-key algorithm and
protected against modification by the SHA-1 hash algorithm.  When it
has been decrypted, it will typically contain other packets (often a
Literal Data packet or Compressed Data packet).  The last decrypted
packet in this packet's payload MUST be a Modification Detection Code
packet.</t>
        <t>The body of this packet consists of:</t>
        <ul spacing="normal">
          <li>A one-octet version number.  The only defined value is 1.  There
won't be any future versions of this packet because the MDC system
has been superseded by the OCB Encrypted Data packet.</li>
          <li>Encrypted data, the output of the selected symmetric-key cipher
operating in Cipher Feedback mode with shift amount equal to
the block size of the cipher (CFB-n where n is the block size).</li>
        </ul>
        <t>The symmetric cipher used MUST be specified in a Public-Key or
Symmetric-Key Encrypted Session Key packet that precedes the
Symmetrically Encrypted Data packet.  In either case, the cipher
algorithm octet is prefixed to the session key before it is encrypted.</t>
        <t>The data is encrypted in CFB mode, with a CFB shift size equal to the
cipher's block size.  The Initial Vector (IV) is specified as all
zeros.  Instead of using an IV, LibrePGP prefixes an octet string to
the data before it is encrypted.  The length of the octet string equals
the block size of the cipher in octets, plus two.  The first octets in
the group, of length equal to the block size of the cipher, are
random; the last two octets are each copies of their 2nd preceding
octet.  For example, with a cipher whose block size is 128 bits or 16
octets, the prefix data will contain 16 random octets, then two more
octets, which are copies of the 15th and 16th octets,
respectively.  Unlike the Symmetrically Encrypted Data Packet, no
special CFB resynchronization is done after encrypting this prefix
data.  See "LibrePGP CFB Mode" below for more details.</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.</t>
        <t>The plaintext of the data to be encrypted is passed through the SHA-1
hash function, and the result of the hash is appended to the plaintext
in a Modification Detection Code packet.  The exact input to the hash
function is in this order: the prefix data as described above (the
size is the cipher block size plus two octets), all of the plaintext,
and finally two octets of values 0xD3, 0x14.  The latter two octets
represent the encoding of a Modification Detection Code packet tag and
length field of 20 octets.</t>
        <t>The resulting hash value is stored in a Modification Detection Code
(MDC) packet, which MUST use the two octet encoding just given to
represent its tag and length field.  The body of the MDC packet is the
20-octet output of the SHA-1 hash.</t>
        <t>The Modification Detection Code packet is appended to the plaintext
and encrypted along with the plaintext using the same CFB context.</t>
        <t>During decryption, the plaintext data should be hashed with SHA-1,
including the prefix data as well as the packet tag and length field
of the Modification Detection Code packet.  The body of the MDC packet,
upon decryption, is compared with the result of the SHA-1 hash.</t>
        <t>Any failure of the MDC indicates that the message has been modified
and MUST be treated as a security problem.  Failures include a
difference in the hash values, but also the absence of an MDC packet,
or an MDC packet in any position other than the end of the
plaintext.  Any failure SHOULD be reported to the user.</t>
        <artwork><![CDATA[
  NON-NORMATIVE EXPLANATION

  The MDC system, as packets 18 and 19 are called, were created to
  provide an integrity mechanism that is less strong than a
  signature, yet stronger than bare CFB encryption.

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

  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.

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

  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.

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

  Note also that unlike nearly every other LibrePGP 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 RIPE-MD/160, for example.)

  However, no update will be needed because the MDC will be
  replaced by the OCB encryption described in this document.
]]></artwork>
      </section>
      <section anchor="modification-detection-code-packet-tag-19">
        <name>Modification Detection Code Packet (Tag 19)</name>
        <t>The Modification Detection Code packet contains a SHA-1 hash of
plaintext data, which is used to detect message modification.  It is
only used with a Symmetrically Encrypted Integrity Protected Data
packet.  The Modification Detection Code packet MUST be the last packet
in the plaintext data that is encrypted in the Symmetrically Encrypted
Integrity Protected Data packet, and MUST appear in no other place.</t>
        <t>A Modification Detection Code packet MUST have a length of 20 octets.</t>
        <t>The body of this packet consists of:</t>
        <ul spacing="normal">
          <li>A 20-octet SHA-1 hash of the preceding plaintext data of the
Symmetrically Encrypted Integrity Protected Data packet,
including prefix data, the tag octet, and length octet of the
Modification Detection Code packet.</li>
        </ul>
        <t>Note that the Modification Detection Code packet MUST always use a new
format encoding of the packet tag, and a one-octet encoding of the
packet length.  The reason for this is that the hashing rules for
modification detection include a one-octet tag and one-octet length in
the data hash.  While this is a bit restrictive, it reduces complexity.</t>
      </section>
      <section anchor="ocb-encrypted-data-packet-tag-20">
        <name>OCB Encrypted Data Packet (Tag 20)</name>
        <t>The OCBED packet contains data encrypted with an authenticated
encryption and additional data (AEAD) construction.  When it has been
decrypted, it will typically contain other packets (often a Literal
Data packet or Compressed Data packet).</t>
        <t>The body of this packet consists of:</t>
        <ul spacing="normal">
          <li>A one-octet version number.  The only currently defined value
is 1.</li>
          <li>A one-octet cipher algorithm.</li>
          <li>A one-octet encryption mode octet with the fixed value 0x02.  If
decryption using the EAX mode is supported this octet may have the
value 0x01.</li>
          <li>A one-octet chunk size.</li>
          <li>A starting initialization vector of size specified by the
encryption mode (15 octets for OCB).</li>
          <li>Encrypted data, the output of the selected symmetric-key cipher
operating in the given encryption mode.</li>
          <li>A final, summary authentication tag for the encryption mode (16 octets
for OCB).</li>
        </ul>
        <t>An OCB Encrypted Data packet consists of one or more chunks of data.
The plaintext of each chunk is of a size specified using the chunk size
octet using the method specified below.</t>
        <t>The encrypted data consists of the encryption of each chunk of
plaintext, followed immediately by the relevant authentication tag.  If
the last chunk of plaintext is smaller than the chunk size, the
ciphertext for that data may be shorter; it is nevertheless followed by
a full authentication tag.</t>
        <t>For each chunk, the AEAD construction is given the Packet Tag in new
format encoding (bits 7 and 6 set, bits 5-0 carry the packet tag),
version number, cipher algorithm octet, encryption mode octet, chunk
size octet, and an eight-octet, big-endian chunk index as additional
data.  The index of the first chunk is zero.  For example, the
additional data of the first chunk using OCB and AES-128 with a chunk
size of 64 kiByte consists of the octets 0xD4, 0x01, 0x07, 0x02, 0x0A,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, and 0x00.</t>
        <t>After the final chunk, the encryption mode 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.  Please
note that the big-endian number representing the chunk index in the
additional data is increased accordingly, although it's not really a
chunk.</t>
        <t>The chunk size octet specifies the size of chunks using the following
formula (in C), where c is the chunk size octet:</t>
        <artwork><![CDATA[
    chunk_size = ((uint64_t)1 << (c + 6))
]]></artwork>
        <t>To facilitate interoperability between a wide variety of
implementations, from constrained to large compute environments, a
chunk size maximum is specified: An implementation MUST accept chunk
size octets with values from 0 to 16. An implementation MUST NOT
create data with a chunk size octet value larger than 16 (4 MiB
chunks).</t>
        <t>A new random initialization vector MUST be used for each message.
Failure to do so for each message will lead to a catastrophic failure
depending on the used encryption mode.</t>
        <section anchor="eax-mode">
          <name>EAX Mode</name>
          <t>The EAX algorithm can only use block ciphers with 16-octet
blocks.  The starting initialization vector and authentication tag are
both 16 octets long.</t>
          <t>The starting initialization vector for this mode MUST be unique and
unpredictable.</t>
          <t>The nonce for EAX mode is computed by treating the starting
initialization vector as a 16-octet, big-endian value and
exclusive-oring the low eight octets of it with the chunk index.</t>
          <t>The security of EAX requires that the nonce is never reused, hence the
requirement that the starting initialization vector be unique.</t>
          <t>EAX mode is deprecated due to the far better properties of the OCB
mode.  Implementations may use EAX mode only for decryption of
existing data.</t>
        </section>
        <section anchor="ocb-mode">
          <name>OCB Mode</name>
          <t>The OCB Authenticated-Encryption Algorithm used in this document is
defined in <xref target="RFC7253"/>.</t>
          <t>OCB usage requires specification of the following parameters:</t>
          <ul spacing="normal">
            <li>a blockcipher that operate on 128-bit (16-octet) blocks</li>
            <li>an authentication tag length of 16 octets</li>
            <li>a nonce of 15 octets long (which is the longest nonce allowed
specified by <xref target="RFC7253"/>)</li>
            <li>an initialization vector of at least 15 octets long</li>
          </ul>
          <t>In the case that the initialization vector is longer than 15 octets
(such as in <xref target="secret-key-packet-tag-5"/>, only the 15
leftmost octets are used in calculations; the remaining octets MUST be
considered as zero.</t>
          <t>The nonce for OCB mode is computed by the exclusive-oring of the
initialization vector as a 15-octet, big endian value, against the
chunk index.</t>
          <t>Security of OCB mode depends on the non-repeated nature of nonces used
for the same key on distinct plaintext <xref target="RFC7253"/>. Therefore the
initialization vector per message MUST be distinct, and OCB mode
SHOULD only be used in environments when there is certainty to
fulfilling this requirement.</t>
        </section>
      </section>
    </section>
    <section anchor="radix-64-conversions">
      <name>Radix-64 Conversions</name>
      <t>As stated in the introduction, LibrePGP'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 LibrePGP data
structures.  The LibrePGP standard specifies one such printable encoding
scheme to ensure interoperability.</t>
      <t>LibrePGP's Radix-64 encoding is composed of two parts: a base64
encoding of the binary data and a checksum.  The base64 encoding is
identical to the MIME base64 content-transfer-encoding <xref target="RFC2045"/>.</t>
      <t>The checksum is a 24-bit Cyclic Redundancy Check (CRC) converted to
four characters of radix-64 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 radix-64,
rather than on the converted data. A sample implementation of this
algorithm is in the next section.</t>
      <t>The checksum with its leading equal sign MAY appear on the first line
after the base64 encoded data.</t>
      <t>Rationale for CRC-24: The size of 24 bits fits evenly into printable
base64.  The nonzero initialization can detect more errors than a zero
initialization.</t>
      <section anchor="an-implementation-of-the-crc-24-in-c">
        <name>An Implementation of the CRC-24 in "C"</name>
        <sourcecode markers="true"><![CDATA[
  #define CRC24_INIT 0xB704CEL
  #define CRC24_POLY 0x864CFBL

  typedef 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 ^= CRC24_POLY;
          }
      }
      return crc & 0xFFFFFFL;
  }
  ]]></sourcecode>
      </section>
      <section anchor="forming-ascii-armor">
        <name>Forming ASCII Armor</name>
        <t>When LibrePGP encodes data into ASCII Armor, it puts specific headers
around the Radix-64 encoded data, so LibrePGP can reconstruct the data
later.  An LibrePGP implementation MAY use ASCII armor to protect raw
binary data.  LibrePGP 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>
        <ul spacing="normal">
          <li>An Armor Header Line, appropriate for the type of data</li>
          <li>Armor Headers</li>
          <li>A blank line</li>
          <li>The ASCII-Armored data</li>
          <li>An Armor Checksum</li>
          <li>The Armor Tail, which depends on the Armor Header Line</li>
        </ul>
        <t>An Armor Header Line consists of the appropriate header line text
surrounded by five (5) dashes (<tt>-</tt>, 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>
        <dl>
          <dt>BEGIN PGP MESSAGE</dt>
          <dd>
            <t>Used for signed, encrypted, or compressed files.</t>
          </dd>
          <dt>BEGIN PGP PUBLIC KEY BLOCK</dt>
          <dd>
            <t>Used for armoring public keys.</t>
          </dd>
          <dt>BEGIN PGP PRIVATE KEY BLOCK</dt>
          <dd>
            <t>Used for armoring private keys.</t>
          </dd>
          <dt>BEGIN PGP MESSAGE, PART X/Y</dt>
          <dd>
            <t>Used for multi-part messages, where the armor is split amongst Y
parts, and this is the Xth part out of Y.</t>
          </dd>
          <dt>BEGIN PGP MESSAGE, PART X</dt>
          <dd>
            <t>Used for multi-part messages, where this is the Xth part of an
unspecified number of parts.  Requires the MESSAGE-ID Armor Header
to be used.</t>
          </dd>
          <dt>BEGIN PGP SIGNATURE</dt>
          <dd>
            <t>Used for detached signatures, LibrePGP/MIME signatures, and
cleartext signatures.  Note that PGP 2 uses BEGIN PGP MESSAGE for
detached signatures.</t>
          </dd>
        </dl>
        <t>Note that all these Armor Header Lines are to consist of a complete
line.  That is to say, there is always a line ending preceding the
starting five dashes, and following the ending five dashes.  The header
lines, therefore, MUST start at the beginning of a line, and MUST NOT
have text other than whitespace --- space (0x20), tab (0x09) or carriage
return (0x0d) --- following them on the same line.  These
line endings are considered a part of the Armor Header Line for the
purposes of determining the content they delimit.  This is particularly
important when computing a cleartext signature (see below).</t>
        <t>The Armor Headers are pairs of strings that can give the user or the
receiving LibrePGP 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
(<tt>:</tt> 0x38) and a single space (0x20) separate the key and
value.  LibrePGP should consider improperly formatted Armor Headers to
be corruption of the ASCII Armor.  Unknown keys should be reported to
the user, but LibrePGP should 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 Radix-64 data
(<xref target="encoding-binary-in-radix-64"/>), 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>
        <ul spacing="normal">
          <li>"Version", which states the LibrePGP implementation and version
used to encode the message.</li>
          <li>"Comment", a user-defined comment.  LibrePGP 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.</li>
          <li>"Hash", a comma-separated list of hash algorithms used in this
message.  This is used only in cleartext signed messages.</li>
          <li>
            <t>"MessageID", a 32-character string of printable characters.
The string must be the same for all parts of a multi-part
message that uses the "PART X" Armor Header.  MessageID strings
should be unique enough that the recipient of the mail can
associate all the parts of a message with each other.  A good
checksum or cryptographic hash function is sufficient.  </t>
            <t>
The MessageID SHOULD NOT appear unless it is in a multi-part
message.  If it appears at all, it MUST be computed from the
finished (encrypted, signed, etc.) message in a deterministic
fashion, rather than contain a purely random value.  This is to
allow the legitimate recipient to determine that the MessageID
cannot serve as a covert means of leaking cryptographic key
information.</t>
          </li>
          <li>"Charset", a description of the character set that the
plaintext is in.  Please note that LibrePGP 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
MAY override the UTF-8 default by using this header key.  An
implementation MAY implement this key and any translations it
cares to; an implementation MAY ignore it and assume all text
is UTF-8.</li>
        </ul>
        <t>The blank line can either be zero-length or contain only whitespace,
that is spaces (0x20), tabs (0x09) or carriage returns (0x0d).</t>
        <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 anchor="encoding-binary-in-radix-64">
        <name>Encoding Binary in Radix-64</name>
        <t>The encoding process represents 24-bit groups of input bits as output
strings of 4 encoded characters.  Proceeding from left to right, a
24-bit input group is formed by concatenating three 8-bit input
groups.  These 24 bits are then treated as four concatenated 6-bit
groups, each of which is translated into a single digit in the
Radix-64 alphabet.  When encoding a bit stream with the Radix-64
encoding, the bit stream must be presumed to be ordered with the most
significant bit first.  That is, the first bit in the stream will be
the high-order bit in the first 8-bit octet, and the eighth bit will
be the low-order bit in the first 8-bit octet, and so on.</t>
        <artwork><![CDATA[
     +--first octet--+-second octet--+--third octet--+
     |7 6 5 4 3 2 1 0|7 6 5 4 3 2 1 0|7 6 5 4 3 2 1 0|
     +-----------+---+-------+-------+---+-----------+
     |5 4 3 2 1 0|5 4 3 2 1 0|5 4 3 2 1 0|5 4 3 2 1 0|
     +--1.index--+--2.index--+--3.index--+--4.index--+
]]></artwork>
        <t>Each 6-bit group is used as an index into an array of 64 printable
characters from the table below.  The character referenced by the index
is placed in the output string.</t>
        <artwork><![CDATA[
 Value Encoding  Value Encoding  Value Encoding  Value Encoding
     0 A            17 R            34 i            51 z
     1 B            18 S            35 j            52 0
     2 C            19 T            36 k            53 1
     3 D            20 U            37 l            54 2
     4 E            21 V            38 m            55 3
     5 F            22 W            39 n            56 4
     6 G            23 X            40 o            57 5
     7 H            24 Y            41 p            58 6
     8 I            25 Z            42 q            59 7
     9 J            26 a            43 r            60 8
    10 K            27 b            44 s            61 9
    11 L            28 c            45 t            62 +
    12 M            29 d            46 u            63 /
    13 N            30 e            47 v
    14 O            31 f            48 w         (pad) =
    15 P            32 g            49 x
    16 Q            33 h            50 y
]]></artwork>
        <t>The encoded output stream must be represented in lines of no more than
76 characters each.</t>
        <t>Special processing is performed if fewer than 24 bits are available at
the end of the data being encoded.  There are three possibilities:</t>
        <artwork><![CDATA[
1.  The last data group has 24 bits (3 octets).  No special
    processing is needed.

2.  The last data group has 16 bits (2 octets).  The first two
    6-bit groups are processed as above.  The third (incomplete)
    data group has two zero-value bits added to it, and is
    processed as above. A pad character (=) is added to the
    output.

3.  The last data group has 8 bits (1 octet).  The first 6-bit
    group is processed as above.  The second (incomplete) data
    group has four zero-value bits added to it, and is processed
    as above.  Two pad characters (=) are added to the output.
]]></artwork>
      </section>
      <section anchor="decoding-radix-64">
        <name>Decoding Radix-64</name>
        <t>In Radix-64 data, characters other than those in the table, line
breaks, and other white space probably indicate a transmission error,
about which a warning message or even a message rejection might be
appropriate under some circumstances.  Decoding software must ignore
all white space.</t>
        <t>Because it is used only for padding at the end of the data, the
occurrence of any "=" characters may be taken as evidence that the end
of the data has been reached (without truncation in transit).  No such
assurance is possible, however, when the number of octets transmitted
was a multiple of three and no "=" characters are present.</t>
      </section>
      <section anchor="examples-of-radix-64">
        <name>Examples of Radix-64</name>
        <artwork><![CDATA[
Input data:  0x14FB9C03D97E
Hex:     1   4    F   B    9   C     | 0   3    D   9    7   E
8-bit:   00010100 11111011 10011100  | 00000011 11011001 01111110
6-bit:   000101 001111 101110 011100 | 000000 111101 100101 111110
Decimal: 5      15     46     28       0      61     37     62
Output:  F      P      u      c        A      9      l      +
Input data:  0x14FB9C03D9
Hex:     1   4    F   B    9   C     | 0   3    D   9
8-bit:   00010100 11111011 10011100  | 00000011 11011001
                                                pad with 00
6-bit:   000101 001111 101110 011100 | 000000 111101 100100
Decimal: 5      15     46     28       0      61     36
                                                   pad with =
Output:  F      P      u      c        A      9      k      =
Input data:  0x14FB9C03
Hex:     1   4    F   B    9   C     | 0   3
8-bit:   00010100 11111011 10011100  | 00000011
                                       pad with 0000
6-bit:   000101 001111 101110 011100 | 000000 110000
Decimal: 5      15     46     28       0      48
                                            pad with =      =
Output:  F      P      u      c        A      w      =      =
]]></artwork>
      </section>
      <section anchor="example-of-an-ascii-armored-message">
        <name>Example of an ASCII Armored Message</name>
        <artwork><![CDATA[
-----BEGIN PGP MESSAGE-----
Version: OpenPrivacy 0.99

yDgBO22WxBHv7O8X7O/jygAEzol56iUKiXmV+XmpCtmpqQUKiQrFqclFqUDBovzS
vBSFjNSiVHsuAA==
=njUN
-----END PGP MESSAGE-----
]]></artwork>
        <t>Note that this example has extra indenting; an actual armored message
would have no leading whitespace.</t>
      </section>
    </section>
    <section anchor="cleartext-signature-framework">
      <name>Cleartext Signature Framework</name>
      <t>It is desirable to be able to sign a textual octet stream without
ASCII armoring the stream itself, so the signed text is still readable
without special software.  In order to bind a signature to such a
cleartext, this framework is used, which follows the same basic format
and restrictions as the ASCII armoring described above in "Forming
ASCII Armor" (<xref target="forming-ascii-armor"/>). (Note that this framework is
not intended to be reversible.  RFC 3156 <xref target="RFC3156"/> defines another
way to sign cleartext messages for environments that support MIME.)</t>
      <t>The cleartext signed message consists of:</t>
      <ul spacing="normal">
        <li>The cleartext header <tt>-----BEGIN PGP SIGNED MESSAGE-----</tt> on a
single line,</li>
        <li>One or more "Hash" Armor Headers,</li>
        <li>Exactly one blank line not included into the message digest,</li>
        <li>The dash-escaped cleartext that is included into the message
digest,</li>
        <li>The ASCII armored signature(s) including the
<tt>-----BEGIN PGP SIGNATURE-----</tt> Armor Header and Armor Tail Lines.</li>
      </ul>
      <t>If the "Hash" Armor Header is given, the specified message digest
algorithm(s) are used for the signature.  If there are no such headers,
MD5 is used.  If MD5 is the only hash used, then an implementation MAY
omit this header for improved V2.x compatibility.  If more than one
message digest is used in the signature, the "Hash" armor header
contains a comma-delimited list of used message digests.</t>
      <t>Current message digest names are described below with the algorithm
IDs.</t>
      <t>An implementation SHOULD add a line break after the cleartext, but MAY
omit it if the cleartext ends with a line break.  This is for visual
clarity.</t>
      <section anchor="dash-escaped-text">
        <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 dash <tt>-</tt> (0x2D) is prefixed by the sequence dash <tt>-</tt>
(0x2D) and space ` ` (0x20).  This prevents the parser from recognizing
armor headers of the cleartext itself.  An implementation MAY
dash-escape any line, SHOULD dash-escape lines commencing "From"
followed by a space, and MUST dash-escape any line commencing in a
dash.  The message digest is computed using the cleartext itself, not
the dash-escaped form.</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.  The line ending (i.e., the &lt;CR&gt;&lt;LF&gt;) before the
<tt>-----BEGIN PGP SIGNATURE-----</tt> line that terminates the signed text
is not considered part of the signed text.</t>
        <t>When reversing dash-escaping, an implementation MUST strip the string
"- " if it occurs at the beginning of a line, and SHOULD warn on "-"
and any character other than a space at the beginning of a line.</t>
        <t>Also, any trailing whitespace --- spaces (0x20), tabs (0x09) or
carriage returns (0x0d) --- at the end of any line is removed when
the cleartext signature is generated and verified.</t>
      </section>
    </section>
    <section anchor="regular-expressions">
      <name>Regular Expressions</name>
      <t>A regular expression is zero or more branches, separated by <tt>|</tt>.  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 <tt>*</tt>, <tt>+</tt>, or <tt>?</tt>.  An atom
followed by <tt>*</tt> matches a sequence of 0 or more matches of the
atom.  An atom followed by <tt>+</tt> matches a sequence of 1 or more matches
of the atom.  An atom followed by <tt>?</tt> 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), <tt>.</tt> (matching any single
character), <tt>^</tt> (matching the null string at the beginning of the
input string), <tt>$</tt> (matching the null string at the end of the input
string), a <tt>\</tt> followed by a single character (matching that
character), or a single character with no other significance (matching
that character).</t>
      <t>A range is a sequence of characters enclosed in <tt>[]</tt>.  It normally
matches any single character from the sequence.  If the sequence begins
with <tt>^</tt>, it matches any single character not from the rest of the
sequence.  If two characters in the sequence are separated by <tt>-</tt>, this
is shorthand for the full list of ASCII characters between them (e.g.,
<tt>[0-9]</tt> matches any decimal digit).  To include a literal <tt>]</tt> in the
sequence, make it the first character (following a possible <tt>^</tt>).  To
include a literal <tt>-</tt>, make it the first or last character.</t>
    </section>
    <section anchor="constants">
      <name>Constants</name>
      <t>This section describes the constants used in LibrePGP.</t>
      <t>Note that these tables are not exhaustive lists; an implementation MAY
implement an algorithm not on these lists, so long as the algorithm
numbers are chosen from the private or experimental algorithm range.</t>
      <t>See the section "Notes on Algorithms" below for more discussion of the
algorithms.</t>
      <section anchor="public-key-algorithms">
        <name>Public-Key Algorithms</name>
        <table>
          <thead>
            <tr>
              <th align="right">ID</th>
              <th align="left">Algorithm</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">1</td>
              <td align="left">RSA (Encrypt or Sign) <xref target="HAC"/></td>
            </tr>
            <tr>
              <td align="right">2</td>
              <td align="left">RSA Encrypt-Only <xref target="HAC"/></td>
            </tr>
            <tr>
              <td align="right">3</td>
              <td align="left">RSA Sign-Only <xref target="HAC"/></td>
            </tr>
            <tr>
              <td align="right">8</td>
              <td align="left">Kyber <xref target="FIPS203"/></td>
            </tr>
            <tr>
              <td align="right">9</td>
              <td align="left">Reserved for Dilithium (FIPS204)</td>
            </tr>
            <tr>
              <td align="right">16</td>
              <td align="left">Elgamal (Encrypt-Only) <xref target="ELGAMAL"/> <xref target="HAC"/></td>
            </tr>
            <tr>
              <td align="right">17</td>
              <td align="left">DSA (Digital Signature Algorithm) <xref target="FIPS186"/> <xref target="HAC"/></td>
            </tr>
            <tr>
              <td align="right">18</td>
              <td align="left">ECDH public key algorithm</td>
            </tr>
            <tr>
              <td align="right">19</td>
              <td align="left">ECDSA public key algorithm <xref target="FIPS186"/></td>
            </tr>
            <tr>
              <td align="right">20</td>
              <td align="left">Reserved (formerly Elgamal Encrypt or Sign)</td>
            </tr>
            <tr>
              <td align="right">21</td>
              <td align="left">Reserved for Diffie-Hellman (X9.42, as defined for IETF-S/MIME)</td>
            </tr>
            <tr>
              <td align="right">22</td>
              <td align="left">EdDSA  <xref target="RFC8032"/></td>
            </tr>
            <tr>
              <td align="right">23</td>
              <td align="left">Reserved for AEDH</td>
            </tr>
            <tr>
              <td align="right">24</td>
              <td align="left">Reserved for AEDSA</td>
            </tr>
            <tr>
              <td align="right">25</td>
              <td align="left">Reserved for X25519 according to RFC9580</td>
            </tr>
            <tr>
              <td align="right">27</td>
              <td align="left">Reserved for ED25519 according to RFC9580</td>
            </tr>
            <tr>
              <td align="right">30</td>
              <td align="left">Reserved for ML-DSA-65+ED25529 according to RFC9980</td>
            </tr>
            <tr>
              <td align="right">31</td>
              <td align="left">Reserved for ML-DSA-87+Ed448 according to RFC9980</td>
            </tr>
            <tr>
              <td align="right">35</td>
              <td align="left">Reserved for ML-KEM-768+X25519 according to RFC9980</td>
            </tr>
            <tr>
              <td align="right">36</td>
              <td align="left">Reserved for ML-KEM-1024+X448  according to RFC9980</td>
            </tr>
            <tr>
              <td align="right">37</td>
              <td align="left">Reserved for ML-KEM-768+ECDH-NIST-P-384 according to RFC9980bis</td>
            </tr>
            <tr>
              <td align="right">38</td>
              <td align="left">Reserved for ML-KEM-1024+ECDH-NIST-P-521 according to RFC9980bis</td>
            </tr>
            <tr>
              <td align="right">39</td>
              <td align="left">Reserved for ML-KEM-768+ECDH-brainpoolP384r1 according to RFC9980bis</td>
            </tr>
            <tr>
              <td align="right">40</td>
              <td align="left">Reserved for ML-KEM-1024+ECDH-brainpoolP512r1 according to RFC9980bis</td>
            </tr>
            <tr>
              <td align="right">29</td>
              <td align="left">Experimental use as described by FIPS.203.ipd</td>
            </tr>
            <tr>
              <td align="right">100--110</td>
              <td align="left">Private/Experimental algorithm</td>
            </tr>
          </tbody>
        </table>
        <t>Implementations MUST implement RSA (1) and ECDSA (19) for signatures,
and RSA (1) and ECDH (18) for encryption.  Implementations SHOULD
implement EdDSA (22) keys.</t>
        <t>RSA Encrypt-Only (2) and RSA Sign-Only (3) are deprecated and SHOULD
NOT be generated, but may be interpreted.  See <xref target="rsa"/>.  See
<xref target="reserved-algorithm-numbers"/> for notes on Elgamal Encrypt or Sign
(20), and X9.42 (21).  Implementations MAY implement any other
algorithm.</t>
        <t>Note that implementations conforming to previous versions of this
standard (RFC-4880) have DSA (17) and Elgamal (16) as its only
MUST-implement algorithm.</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-algorithm"/>
this document.</t>
      </section>
      <section anchor="ecc-curve-oid">
        <name>ECC Curve OID</name>
        <t>The parameter curve OID is an array of octets that define a named
curve.  The table below specifies the exact sequence of bytes for each
named curve referenced in this document:</t>
        <table>
          <thead>
            <tr>
              <th align="left">ASN.1 Object Identifier</th>
              <th align="left">OID len</th>
              <th align="left">Curve OID bytes in hexadecimal representation</th>
              <th align="left">Curve name</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">1.2.840.10045.3.1.7</td>
              <td align="left">8</td>
              <td align="left">2A 86 48 CE 3D 03 01 07</td>
              <td align="left">NIST P-256</td>
            </tr>
            <tr>
              <td align="left">1.3.132.0.34</td>
              <td align="left">5</td>
              <td align="left">2B 81 04 00 22</td>
              <td align="left">NIST P-384</td>
            </tr>
            <tr>
              <td align="left">1.3.132.0.35</td>
              <td align="left">5</td>
              <td align="left">2B 81 04 00 23</td>
              <td align="left">NIST P-521</td>
            </tr>
            <tr>
              <td align="left">1.3.36.3.3.2.8.1.1.7</td>
              <td align="left">9</td>
              <td align="left">2B 24 03 03 02 08 01 01 07</td>
              <td align="left">brainpoolP256r1</td>
            </tr>
            <tr>
              <td align="left">1.3.36.3.3.2.8.1.1.11</td>
              <td align="left">9</td>
              <td align="left">2B 24 03 03 02 08 01 01 0B</td>
              <td align="left">brainpoolP384r1</td>
            </tr>
            <tr>
              <td align="left">1.3.36.3.3.2.8.1.1.13</td>
              <td align="left">9</td>
              <td align="left">2B 24 03 03 02 08 01 01 0D</td>
              <td align="left">brainpoolP512r1</td>
            </tr>
            <tr>
              <td align="left">1.3.6.1.4.1.11591.15.1</td>
              <td align="left">9</td>
              <td align="left">2B 06 01 04 01 DA 47 0F 01</td>
              <td align="left">Ed25519</td>
            </tr>
            <tr>
              <td align="left">1.3.6.1.4.1.3029.1.5.1</td>
              <td align="left">10</td>
              <td align="left">2B 06 01 04 01 97 55 01 05 01</td>
              <td align="left">Curve25519</td>
            </tr>
            <tr>
              <td align="left">1.3.101.112</td>
              <td align="left">3</td>
              <td align="left">2B 65 70</td>
              <td align="left">Ed25519(1)</td>
            </tr>
            <tr>
              <td align="left">1.3.101.110</td>
              <td align="left">3</td>
              <td align="left">2B 65 6E</td>
              <td align="left">Curve25519(1)</td>
            </tr>
            <tr>
              <td align="left">1.3.101.113</td>
              <td align="left">3</td>
              <td align="left">2B 65 71</td>
              <td align="left">Ed448</td>
            </tr>
            <tr>
              <td align="left">1.3.101.111</td>
              <td align="left">3</td>
              <td align="left">2B 65 6F</td>
              <td align="left">X448</td>
            </tr>
          </tbody>
        </table>
        <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 alternative OIDs for Ed25519 and Curve25519 marked with (1) SHOULD
only be used with v5 keys.</t>
      </section>
      <section anchor="symmetric-key-algorithms">
        <name>Symmetric-Key Algorithms</name>
        <table>
          <thead>
            <tr>
              <th align="right">ID</th>
              <th align="left">Algorithm</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">0</td>
              <td align="left">Plaintext or unencrypted data</td>
            </tr>
            <tr>
              <td align="right">1</td>
              <td align="left">IDEA <xref target="IDEA"/></td>
            </tr>
            <tr>
              <td align="right">2</td>
              <td align="left">TripleDES (DES-EDE, <xref target="SCHNEIER"/> <xref target="HAC"/> - 168 bit key derived from 192)</td>
            </tr>
            <tr>
              <td align="right">3</td>
              <td align="left">CAST5 (128 bit key, as per <xref target="RFC2144"/>)</td>
            </tr>
            <tr>
              <td align="right">4</td>
              <td align="left">Blowfish (128 bit key, 16 rounds) <xref target="BLOWFISH"/></td>
            </tr>
            <tr>
              <td align="right">5</td>
              <td align="left">Reserved</td>
            </tr>
            <tr>
              <td align="right">6</td>
              <td align="left">Reserved</td>
            </tr>
            <tr>
              <td align="right">7</td>
              <td align="left">AES with 128-bit key <xref target="AES"/></td>
            </tr>
            <tr>
              <td align="right">8</td>
              <td align="left">AES with 192-bit key</td>
            </tr>
            <tr>
              <td align="right">9</td>
              <td align="left">AES with 256-bit key</td>
            </tr>
            <tr>
              <td align="right">10</td>
              <td align="left">Twofish with 256-bit key <xref target="TWOFISH"/></td>
            </tr>
            <tr>
              <td align="right">11</td>
              <td align="left">Camellia with 128-bit key <xref target="RFC3713"/></td>
            </tr>
            <tr>
              <td align="right">12</td>
              <td align="left">Camellia with 192-bit key</td>
            </tr>
            <tr>
              <td align="right">13</td>
              <td align="left">Camellia with 256-bit key</td>
            </tr>
            <tr>
              <td align="right">100--110</td>
              <td align="left">Private/Experimental algorithm</td>
            </tr>
          </tbody>
        </table>
        <t>Implementations MUST implement AES-128.  Implementations SHOULD
implement AES-256.  Implementations that interoperate with RFC-4880
implementations need to support TripleDES and CAST5.  Implementations
that interoperate with PGP 2.6 or earlier need to support IDEA, as
that is the only symmetric cipher those versions use.  Implementations
MAY implement any other algorithm.</t>
      </section>
      <section anchor="compression-algorithms">
        <name>Compression Algorithms</name>
        <table>
          <thead>
            <tr>
              <th align="right">ID</th>
              <th align="left">Algorithm</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">0</td>
              <td align="left">Uncompressed</td>
            </tr>
            <tr>
              <td align="right">1</td>
              <td align="left">ZIP <xref target="RFC1951"/></td>
            </tr>
            <tr>
              <td align="right">2</td>
              <td align="left">ZLIB <xref target="RFC1950"/></td>
            </tr>
            <tr>
              <td align="right">3</td>
              <td align="left">BZip2 <xref target="BZ2"/></td>
            </tr>
            <tr>
              <td align="right">100--110</td>
              <td align="left">Private/Experimental algorithm</td>
            </tr>
          </tbody>
        </table>
        <t>Implementations MUST implement uncompressed data.  Implementations
SHOULD implement ZLIB.  For interoperability reasons implementations
SHOULD be able to decompress using ZIP.  Implementations MAY implement
any other algorithm.</t>
      </section>
      <section anchor="hash-algorithms">
        <name>Hash Algorithms</name>
        <table>
          <thead>
            <tr>
              <th align="right">ID</th>
              <th align="left">Algorithm</th>
              <th align="left">Text Name</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">1</td>
              <td align="left">MD5 <xref target="HAC"/></td>
              <td align="left">"MD5"</td>
            </tr>
            <tr>
              <td align="right">2</td>
              <td align="left">SHA-1 <xref target="FIPS180"/></td>
              <td align="left">"SHA1"</td>
            </tr>
            <tr>
              <td align="right">3</td>
              <td align="left">RIPE-MD/160 <xref target="HAC"/></td>
              <td align="left">"RIPEMD160"</td>
            </tr>
            <tr>
              <td align="right">4</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="right">5</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="right">6</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="right">7</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="right">8</td>
              <td align="left">SHA2-256 <xref target="FIPS180"/></td>
              <td align="left">"SHA256"</td>
            </tr>
            <tr>
              <td align="right">9</td>
              <td align="left">SHA2-384 <xref target="FIPS180"/></td>
              <td align="left">"SHA384"</td>
            </tr>
            <tr>
              <td align="right">10</td>
              <td align="left">SHA2-512 <xref target="FIPS180"/></td>
              <td align="left">"SHA512"</td>
            </tr>
            <tr>
              <td align="right">11</td>
              <td align="left">SHA2-224 <xref target="FIPS180"/></td>
              <td align="left">"SHA224"</td>
            </tr>
            <tr>
              <td align="right">12</td>
              <td align="left">SHA3-256 <xref target="FIPS202"/></td>
              <td align="left">"SHA3-256"</td>
            </tr>
            <tr>
              <td align="right">13</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="right">14</td>
              <td align="left">SHA3-512 <xref target="FIPS202"/></td>
              <td align="left">"SHA3-512"</td>
            </tr>
            <tr>
              <td align="right">100--110</td>
              <td align="left">Private/Experimental algorithm</td>
              <td align="left"> </td>
            </tr>
          </tbody>
        </table>
        <t>Implementations MUST implement SHA2-256.  Implementations MAY implement
other algorithms.  Implementations SHOULD NOT create messages which
require the use of SHA-1 with the exception of computing version 4 key
fingerprints and for purposes of the MDC packet.  Implementations
SHOULD NOT use MD5 or RIPE-MD/160.</t>
      </section>
      <section anchor="encryption-modes">
        <name>Encryption Modes</name>
        <table>
          <thead>
            <tr>
              <th align="right">ID</th>
              <th align="left">Mode</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">1</td>
              <td align="left">EAX <xref target="EAX"/></td>
            </tr>
            <tr>
              <td align="right">2</td>
              <td align="left">OCB <xref target="RFC7253"/></td>
            </tr>
            <tr>
              <td align="right">3</td>
              <td align="left">Reserved for GCM</td>
            </tr>
          </tbody>
        </table>
        <t>Implementations MUST implement OCB if they support the packet 20 (OCB
Encrypted Data Packet).  Implementations MAY implement EAX only for
decryption and only for backward compatibility with former drafts of
this specification.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>LibrePGP is highly parameterized, and consequently there are a number
of considerations for allocating parameters for extensions.  This
section describes how IANA should look at extensions to the protocol
as described in this document.</t>
      <!-- FIXME: Also add forward references, like
  "The list of S2K specifier types is maintained by IANA as described in
   Section 10." -->

<section anchor="new-string-to-key-specifier-types">
        <name>New String-to-Key Specifier Types</name>
        <t>LibrePGP S2K specifiers contain a mechanism for new algorithms to turn
a string into a key.  This specification creates a registry of S2K
specifier types.  The registry includes the S2K type, the name of the
S2K, and a reference to the defining specification.  The initial
values for this registry can be found in
<xref target="string-to-key-s2k-specifier-types"/>.  Adding a new S2K specifier
MUST be done through the SPECIFICATION REQUIRED method, as described
in <xref target="RFC8126"/>.</t>
      </section>
      <section anchor="new-packets">
        <name>New Packets</name>
        <t>Major new features of LibrePGP are defined through new packet types.
This specification creates a registry of packet types.  The registry
includes the packet type, the name of the packet, and a reference to
the defining specification.  The initial values for this registry can
be found in <xref target="packet-tags"/>.  Adding a new packet type MUST be done
through the RFC REQUIRED method, as described in <xref target="RFC8126"/>.</t>
        <section anchor="user-attribute-types">
          <name>User Attribute Types</name>
          <t>The User Attribute packet permits an extensible mechanism for other
types of certificate identification.  This specification creates a
registry of User Attribute types.  The registry includes the User
Attribute type, the name of the User Attribute, and a reference to the
defining specification.  The initial values for this registry can be
found in <xref target="user-attribute-packet-tag-17"/>.  Adding a new User
Attribute type MUST be done through the SPECIFICATION REQUIRED method,
as described in <xref target="RFC8126"/>.</t>
          <t>This document requests that IANA register the User ID Attribute Type
found in <xref target="user-id-attribute-subpacket"/>:</t>
          <table>
            <thead>
              <tr>
                <th align="right">Value</th>
                <th align="left">Attribute</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="right">1</td>
                <td align="left">Image</td>
                <td align="left">This Document</td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="image-format-subpacket-types">
          <name>Image Format Subpacket Types</name>
          <t>Within User Attribute packets, there is an extensible mechanism for
other types of image-based User Attributes.  This specification
creates a registry of Image Attribute subpacket types.  The registry
includes the Image Attribute subpacket type, the name of the Image
Attribute subpacket, and a reference to the defining specification.
The initial values for this registry can be found in
<xref target="the-image-attribute-subpacket"/>.  Adding a new Image Attribute
subpacket type MUST be done through the SPECIFICATION REQUIRED method,
as described in <xref target="RFC8126"/>.</t>
        </section>
        <section anchor="new-signature-subpackets">
          <name>New Signature Subpackets</name>
          <t>LibrePGP signatures contain a mechanism for signed (or unsigned) data
to be added to them for a variety of purposes in the Signature
subpackets as discussed in <xref target="signature-subpacket-specification"/>.
This specification creates a registry of Signature subpacket types.
The registry includes the Signature subpacket type, the name of the
subpacket, and a reference to the defining specification.  The initial
values for this registry can be found in
<xref target="signature-subpacket-specification"/>.  Adding a new Signature
subpacket MUST be done through the SPECIFICATION REQUIRED method, as
described in <xref target="RFC8126"/>.</t>
          <section anchor="signature-notation-data-subpackets">
            <name>Signature Notation Data Subpackets</name>
            <t>LibrePGP signatures further contain a mechanism for extensions in
signatures.  These are the Notation Data subpackets, which contain a
key/value pair.  Notations contain a user space that is completely
unmanaged and an IETF space.</t>
            <t>This specification creates a registry of Signature Notation Data
types.  The registry includes the Signature Notation Data type, the
name of the Signature Notation Data, its allowed values, and a
reference to the defining specification.  The initial values for this
registry can be found in <xref target="notation-data"/>.  Adding a new Signature
Notation Data subpacket MUST be done through the SPECIFICATION REQUIRED
method, as described in <xref target="RFC8126"/>.</t>
            <t>This document requests IANA register the following Signature
Notation Data types:</t>
            <table>
              <thead>
                <tr>
                  <th align="left">Allowed Values</th>
                  <th align="left">Name</th>
                  <th align="left">Type</th>
                  <th align="left">Reference</th>
                </tr>
              </thead>
              <tbody>
                <tr>
                  <td align="left">A String</td>
                  <td align="left">charset</td>
                  <td align="left">Character Set</td>
                  <td align="left">This Doc <xref target="the-charset-notation"/></td>
                </tr>
                <tr>
                  <td align="left">Any String</td>
                  <td align="left">manu</td>
                  <td align="left">Manufacturer Name</td>
                  <td align="left">This Doc <xref target="the-manu-notation"/></td>
                </tr>
                <tr>
                  <td align="left">Any String</td>
                  <td align="left">make</td>
                  <td align="left">Product Make</td>
                  <td align="left">This Doc <xref target="the-make-notation"/></td>
                </tr>
                <tr>
                  <td align="left">Any String</td>
                  <td align="left">model</td>
                  <td align="left">Product Model</td>
                  <td align="left">This Doc <xref target="the-model-notation"/></td>
                </tr>
                <tr>
                  <td align="left">Any String</td>
                  <td align="left">prodid</td>
                  <td align="left">Product ID</td>
                  <td align="left">This Doc <xref target="the-prodid-notation"/></td>
                </tr>
                <tr>
                  <td align="left">Any String</td>
                  <td align="left">pvers</td>
                  <td align="left">Product Version</td>
                  <td align="left">This Doc <xref target="the-pvers-notation"/></td>
                </tr>
                <tr>
                  <td align="left">Any String</td>
                  <td align="left">lot</td>
                  <td align="left">Product Lot Number</td>
                  <td align="left">This Doc <xref target="the-lot-notation"/></td>
                </tr>
                <tr>
                  <td align="left">Decimal Integer String</td>
                  <td align="left">qty</td>
                  <td align="left">Package Quantity</td>
                  <td align="left">This Doc <xref target="the-qty-notation"/></td>
                </tr>
                <tr>
                  <td align="left">A geo: URI without the "geo:"</td>
                  <td align="left">loc</td>
                  <td align="left">Current Geolocation Latitude/Longitude</td>
                  <td align="left">This Doc <xref target="the-loc-and-dest-notations"/></td>
                </tr>
                <tr>
                  <td align="left">A geo: URI without the "geo:"</td>
                  <td align="left">dest</td>
                  <td align="left">Destination Geolocation Latitude/Longitude</td>
                  <td align="left">This Doc <xref target="the-loc-and-dest-notations"/></td>
                </tr>
                <tr>
                  <td align="left">Hash Notation data</td>
                  <td align="left">hash</td>
                  <td align="left">The Hash of external data</td>
                  <td align="left">This Doc <xref target="the-hash-notation"/></td>
                </tr>
              </tbody>
            </table>
          </section>
          <section anchor="signature-notation-data-subpacket-notation-flags">
            <name>Signature Notation Data Subpacket Notation Flags</name>
            <t>This specification creates a new registry of Signature Notation Data
Subpacket Notation Flags.  The registry includes the columns "Flag",
"Description", "Security Recommended", "Interoperability Recommended",
and "Reference".  The initial values for this registry can be found in
<xref target="notation-data"/>.  Adding a new item MUST be done through the
SPECIFICATION REQUIRED method, as described in <xref target="RFC8126"/>.</t>
          </section>
          <section anchor="key-server-preference-extensions">
            <name>Key Server Preference Extensions</name>
            <t>LibrePGP signatures contain a mechanism for preferences to be specified
about key servers.  This specification creates a registry of key server
preferences.  The registry includes the key server preference, the name
of the preference, and a reference to the defining specification.  The
initial values for this registry can be found in <xref target="key-server-preferences"/>.
Adding a new key server preference MUST be done through the
SPECIFICATION REQUIRED method, as described in <xref target="RFC8126"/>.</t>
          </section>
          <section anchor="key-flags-extensions">
            <name>Key Flags Extensions</name>
            <t>LibrePGP signatures contain a mechanism for flags to be specified about
key usage.  This specification creates a registry of key usage
flags.  The registry includes the key flags value, the name of the
flag, and a reference to the defining specification.  The initial
values for this registry can be found in <xref target="key-flags"/>.  Adding a
new key usage flag MUST be done through the SPECIFICATION REQUIRED
method, as described in <xref target="RFC8126"/>.</t>
          </section>
          <section anchor="reason-for-revocation-extensions">
            <name>Reason for Revocation Extensions</name>
            <t>LibrePGP signatures contain a mechanism for flags to be specified about
why a key was revoked.  This specification creates a registry of
"Reason for Revocation" flags.  The registry includes the "Reason for
Revocation" flags value, the name of the flag, and a reference to the
defining specification.  The initial values for this registry can be
found in <xref target="reason-for-revocation"/>.  Adding a new feature flag MUST be done
through the SPECIFICATION REQUIRED method, as described in <xref target="RFC8126"/>.</t>
          </section>
          <section anchor="implementation-features">
            <name>Implementation Features</name>
            <t>LibrePGP signatures contain a mechanism for flags to be specified
stating which optional features an implementation supports.  This
specification creates a registry of feature-implementation flags.  The
registry includes the feature-implementation flags value, the name of
the flag, and a reference to the defining specification.  The initial
values for this registry can be found in <xref target="features"/>.  Adding a
new feature-implementation flag MUST be done through the SPECIFICATION
REQUIRED method, as described in <xref target="RFC8126"/>.</t>
            <t>Also see <xref target="meta-considerations-for-expansion"/> for more information
about when feature flags are needed.</t>
          </section>
        </section>
        <section anchor="new-packet-versions">
          <name>New Packet Versions</name>
          <t>The core LibrePGP packets all have version numbers, and can be revised
by introducing a new version of an existing packet.  This
specification creates a registry of packet types.  The registry
includes the packet type, the number of the version, and a reference
to the defining specification.  The initial values for this registry
can be found in <xref target="packet-types"/>.  Adding a new packet version MUST
be done through the RFC REQUIRED method, as described in <xref target="RFC8126"/>.</t>
        </section>
      </section>
      <section anchor="new-algorithms">
        <name>New Algorithms</name>
        <t><xref target="constants"/> lists the core algorithms that LibrePGP uses.  Adding in a new
algorithm is usually simple.  For example, adding in a new symmetric
cipher usually would not need anything more than allocating a constant
for that cipher.  If that cipher had other than a 64-bit or 128-bit
block size, there might need to be additional documentation describing
how LibrePGP-CFB mode would be adjusted.  Similarly, when DSA was
expanded from a maximum of 1024-bit public keys to 3072-bit public
keys, the revision of FIPS 186 contained enough information itself to
allow implementation.  Changes to this document were made mainly for
emphasis.</t>
        <section anchor="public-key-algorithms-1">
          <name>Public-Key Algorithms</name>
          <t>LibrePGP specifies a number of public-key algorithms.  This
specification creates a registry of public-key algorithm
identifiers.  The registry includes the algorithm name, its key sizes
and parameters, and a reference to the defining specification.  The
initial values for this registry can be found in <xref target="public-key-algorithms"/>.
Adding a new public-key algorithm MUST be done through the
SPECIFICATION REQUIRED method, as described in <xref target="RFC8126"/>.</t>
          <t>This document requests IANA register the following new public-key algorithm:</t>
          <table>
            <thead>
              <tr>
                <th align="right">ID</th>
                <th align="left">Algorithm</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="right">22</td>
                <td align="left">EdDSA public key algorithm</td>
                <td align="left">This doc, <xref target="eddsa"/></td>
              </tr>
              <tr>
                <td align="right">23</td>
                <td align="left">Reserved for AEDH</td>
                <td align="left">This doc</td>
              </tr>
              <tr>
                <td align="right">24</td>
                <td align="left">Reserved for AEDSA</td>
                <td align="left">This doc</td>
              </tr>
            </tbody>
          </table>
          <t>[Notes to RFC-Editor: Please remove the table above on publication.
    It is desirable not to reuse old or reserved algorithms because
    some existing tools might print a wrong description.  A higher
    number is also an indication for a newer algorithm.  As of now
    22 is the next free number.]</t>
        </section>
        <section anchor="symmetric-key-algorithms-1">
          <name>Symmetric-Key Algorithms</name>
          <t>LibrePGP specifies a number of symmetric-key algorithms.  This
specification creates a registry of symmetric-key algorithm
identifiers.  The registry includes the algorithm name, its key sizes
and block size, and a reference to the defining specification.  The
initial values for this registry can be found in <xref target="symmetric-key-algorithms"/>.
Adding a new symmetric-key algorithm MUST be done through the
SPECIFICATION REQUIRED method, as described in <xref target="RFC8126"/>.</t>
        </section>
        <section anchor="hash-algorithms-1">
          <name>Hash Algorithms</name>
          <t>LibrePGP specifies a number of hash algorithms.  This specification
creates a registry of hash algorithm identifiers.  The registry
includes the algorithm name, a text representation of that name, its
block size, an OID hash prefix, and a reference to the defining
specification.  The initial values for this registry can be found in
<xref target="hash-algorithms"/> for the algorithm identifiers and text names, and
<xref target="ecc-curve-oid"/> for the OIDs and expanded signature prefixes.  Adding a
new hash algorithm MUST be done through the SPECIFICATION REQUIRED
method, as described in <xref target="RFC8126"/>.</t>
          <t>This document requests IANA register the following hash algorithms:</t>
          <table>
            <thead>
              <tr>
                <th align="right">ID</th>
                <th align="left">Algorithm</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="right">12</td>
                <td align="left">SHA3-256</td>
                <td align="left">This doc</td>
              </tr>
              <tr>
                <td align="right">13</td>
                <td align="left">Reserved</td>
                <td align="left"> </td>
              </tr>
              <tr>
                <td align="right">14</td>
                <td align="left">SHA3-512</td>
                <td align="left">This doc</td>
              </tr>
            </tbody>
          </table>
          <t>[Notes to RFC-Editor: Please remove the table above on publication.
    It is desirable not to reuse old or reserved algorithms because
    some existing tools might print a wrong description.  The ID 13
    has been reserved so that the SHA3 algorithm IDs align nicely with
    their SHA2 counterparts.]</t>
        </section>
        <section anchor="compression-algorithms-1">
          <name>Compression Algorithms</name>
          <t>LibrePGP specifies a number of compression algorithms.  This
specification creates a registry of compression algorithm
identifiers.  The registry includes the algorithm name and a reference
to the defining specification.  The initial values for this registry
can be found in <xref target="compression-algorithms"/>.
 Adding a new compression key algorithm MUST be done through the
SPECIFICATION REQUIRED method, as described in <xref target="RFC8126"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="packet-composition">
      <name>Packet Composition</name>
      <t>LibrePGP 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>
      <section anchor="transferable-public-keys">
        <name>Transferable Public Keys</name>
        <t>LibrePGP users may transfer public keys.  The essential elements of a
transferable public key are as follows:</t>
        <ul spacing="normal">
          <li>One Public-Key packet</li>
          <li>Zero or more revocation signatures</li>
          <li>One or more User ID packets</li>
          <li>After each User ID packet, one or more Signature packets
(certifications and attestation key signatures)</li>
          <li>Zero or more User Attribute packets</li>
          <li>After each User Attribute packet, one or more Signature packets
(certifications and attestation key signatures)</li>
          <li>Zero or more Subkey packets</li>
          <li>After each Subkey packet, one Signature packet, plus optionally a
revocation</li>
        </ul>
        <t>The Public-Key packet occurs first.  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.</t>
        <t>Immediately following each User ID packet, there are one 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.
Intermixed with these certifications may be Attestation Key Signature
packets issued by the primary key over the same User ID and Public Key
packet. The most recent of these is used to attest to third-party
certifications over the associated 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 one or more Signature packets calculated on the
immediately preceding User Attribute packet and the initial Public-Key
packet.</t>
        <t>User Attribute packets and User ID packets may be freely intermixed in
this section, so long as the signatures that follow them are
maintained on the proper User Attribute or User ID packet.</t>
        <t>After the User ID packet or Attribute packet, there may be zero or
more Subkey packets.  In general, subkeys are provided in cases where
the top-level public key is a signature-only key.  However, any V4 or
V5 key may have subkeys, and the subkeys may be encryption-only keys,
signature-only keys, or general-purpose keys. V3 keys MUST NOT have
subkeys.</t>
        <t>Each Subkey packet MUST 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 MUST
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>Transferable public-key packet sequences may be concatenated to allow
transferring multiple public keys in one operation.</t>
      </section>
      <section anchor="transferable-secret-keys">
        <name>Transferable Secret Keys</name>
        <t>LibrePGP 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 are used instead of the public
key and public-subkey packets.  Implementations SHOULD include self-
signatures on any User IDs and subkeys, as this allows for a complete
public key to be automatically extracted from the transferable secret
key.  Implementations MAY choose to omit the self-signatures,
especially if a transferable public key accompanies the transferable
secret key.</t>
      </section>
      <section anchor="librepgp-messages">
        <name>LibrePGP Messages</name>
        <t>An LibrePGP 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>
        <artwork><![CDATA[
LibrePGP Message :- Encrypted Message | Signed Message |
                   Compressed Message | Literal Message.

Compressed Message :- Compressed Data Packet.

Literal Message :- Literal Data Packet.

ESK :- Public-Key Encrypted Session Key Packet |
       Symmetric-Key Encrypted Session Key Packet.

ESK Sequence :- ESK | ESK Sequence, ESK.

Encrypted Data :- OCB Encrypted Data Packet |
    Symmetrically Encrypted Data Packet |
    Symmetrically Encrypted Integrity Protected Data Packet

Encrypted Message :- Encrypted Data | ESK Sequence, Encrypted Data.

One-Pass Signed Message :- One-Pass Signature Packet,
            LibrePGP Message, Corresponding Signature Packet.

Signed Message :- Signature Packet, LibrePGP Message |
                  One-Pass Signed Message.
]]></artwork>
        <t>In addition, decrypting a Symmetrically Encrypted Data packet or a
Symmetrically Encrypted Integrity Protected Data packet as well as
decompressing a Compressed Data packet must yield a valid LibrePGP
Message.</t>
      </section>
      <section anchor="detached-signatures">
        <name>Detached Signatures</name>
        <t>Some LibrePGP 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 a Signature packet stored separately from the
data for which they are a signature.</t>
      </section>
    </section>
    <section anchor="enhanced-key-formats">
      <name>Enhanced Key Formats</name>
      <section anchor="key-structures">
        <name>Key Structures</name>
        <t>The format of a deprecated V3 key is as follows.  Entries in square
brackets are optional and ellipses indicate repetition.</t>
        <artwork><![CDATA[
RSA Public Key
   [Revocation Self Signature]
    User ID [Signature ...]
   [User ID [Signature ...] ...]
]]></artwork>
        <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. Implementations MUST NOT generate new V3 keys, but
MAY continue to use existing ones.</t>
        <t>The format of an LibrePGP V4 key that uses multiple public keys is
similar except that the other keys are added to the end as "subkeys"
of the primary key.</t>
        <artwork><![CDATA[
Primary-Key
   [Revocation Self Signature]
   [Direct Key Signature...]
   User ID [Signature ...]
   [User ID [Signature ...] ...]
   [User Attribute [Signature ...] ...]
   [[Subkey [Binding-Signature-Revocation]
           Primary-Key-Binding-Signature] ...]
]]></artwork>
        <t>Note that User Attributes may preceed or be intermixed with User IDs.</t>
        <t>A subkey always has a single signature after it that is issued using
the primary key to tie the two keys together.  This binding signature
may be in either V3 or V4 format, but SHOULD be V4.  Subkeys that can
issue signatures MUST have a V4 binding signature due to the REQUIRED
embedded primary key binding signature.</t>
        <t>In the above diagram, if the binding signature of a subkey has been
revoked, the revoked key may be removed, leaving only one key.</t>
        <t>In a V4 key, the primary key SHOULD be a key capable of
certification.  There are cases, such as device certificates, where
the primary key may not be capable of certification. A primary key
capable of making signatures SHOULD be accompanied by either a
certification signature (on a User ID or User Attribute) or a
signature directly on the key.</t>
        <t>Implementations SHOULD accept encryption-only primary keys without a
signature.  It also SHOULD allow importing any key accompanied either by
a certification signature or a signature on itself.  It MAY accept
signature-capable primary keys without an accompanying signature.</t>
        <t>The subkeys may be keys of any other type.  There may be
other constructions of V4 keys, too.  For example, there may be a
single-key RSA key in V4 format, a DSA primary key with an RSA
encryption key, or RSA primary key with an Elgamal subkey, etc.</t>
        <t>It is also possible to have a signature-only subkey.  This permits a
primary key that collects certifications (key signatures), but is used
only for certifying subkeys that are used for encryption and
signatures.</t>
        <t>Implementations with no need for a user ID MAY create a key without
any User ID or User Attribute but must be aware that other LibrePGP
implementations may not accept such a key.</t>
      </section>
      <section anchor="key-ids-and-fingerprints">
        <name>Key IDs and Fingerprints</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>
        <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 a DSA key:</t>
        <artwork><![CDATA[
a.1) 0x99 (1 octet)

a.2) two-octet scalar octet count of (b)-(e)

b) version number = 4 (1 octet);

c) timestamp of key creation (4 octets);

d) algorithm (1 octet): 17 = DSA (example);

e) Algorithm-specific fields.

Algorithm-Specific Fields for DSA keys (example):

e.1) MPI of DSA prime p;

e.2) MPI of DSA group order q (q is a prime divisor of p-1);

e.3) MPI of DSA group generator g;

e.4) MPI of DSA public-key value y (= g^x mod p where x is secret).
]]></artwork>
        <t>A V5 fingerprint is the 256-bit SHA2-256 hash of the octet 0x9A, 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 a DSA key:</t>
        <artwork><![CDATA[
a.1) 0x9A (1 octet)

a.2) four-octet scalar octet count of (b)-(f)

b) version number = 5 (1 octet);

c) timestamp of key creation (4 octets);

d) algorithm (1 octet): 17 = DSA (example);

e) four-octet scalar octet count for the following key material;

f) algorithm-specific fields.

Algorithm-Specific Fields for DSA keys (example):

f.1) MPI of DSA prime p;

f.2) MPI of DSA group order q (q is a prime divisor of p-1);

f.3) MPI of DSA group generator g;

f.4) MPI of DSA public-key value y (= g^x mod p where x
     is secret).
]]></artwork>
        <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 V5 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 (V3 and V4 key) or
0x9A (V5 key) as the first octet (even though this is not a valid
packet ID for a public subkey).</t>
      </section>
    </section>
    <section anchor="elliptic-curve-cryptography">
      <name>Elliptic Curve Cryptography</name>
      <t>This section descripes algorithms and parameters used with Elliptic
Curve Cryptography (ECC) keys.  A thorough introduction to ECC can be
found in <xref target="KOBLITZ"/>.</t>
      <section anchor="supported-ecc-curves">
        <name>Supported ECC Curves</name>
        <t>This document references six named prime field curves, defined in
<xref target="FIPS186"/> as "Curve P-256", "Curve P-384", and "Curve P-521"; and
defined in <xref target="RFC5639"/> as "brainpoolP256r1" "brainpoolP384r1", and
"brainpoolP512r1".  Further curves "Curve25519" and "Curve448", defined in
<xref target="RFC7748"/> are referenced for use with Ed25519/Ed448 (EdDSA signing) and
X25519/X448 (ECDH encryption).</t>
        <t>The named curves are referenced as a sequence of bytes in this
document, called throughout, curve OID.  <xref target="ecc-curve-oid"/> describes
in detail how this sequence of bytes is formed.</t>
      </section>
      <section anchor="ecdsa-and-ecdh-conversion-primitives">
        <name>ECDSA and ECDH Conversion Primitives</name>
        <t>This document defines the uncompressed point format for ECDSA and ECDH
and a custom compression format for certain curves. The point is
encoded in the Simple Octet String (SOS) format.</t>
        <t>For an uncompressed point the content of the SOS is:</t>
        <artwork><![CDATA[
B = 04 || x || y
]]></artwork>
        <t>where x and y are coordinates of the point P = (x, y), each 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
that is rounded up to the nearest 8-bit boundary.  This encoding is
compatible with the definition given in <xref target="SEC1"/>.</t>
        <t>For a custom compressed point the content of the MPI is:</t>
        <artwork><![CDATA[
B = 40 || x
]]></artwork>
        <t>where x is the x coordinate of the point P encoded to the rules
defined for the specified curve.  This format is used for ECDH keys
based on curves expressed in Montgomery form.</t>
        <t>Therefore, the exact size of the SOS payload is 515 bits for "Curve
P-256", 771 for "Curve P-384", 1059 for "Curve P-521", and 263 for
Curve25519.</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 SHALL NOT appear in data structures defined in this
document.</t>
        <t>If other conversion methods are defined in the future, a compliant
application MUST NOT use a new format when in doubt that any recipient
can support it.  Consider, for example, that while both the public key
and the per-recipient ECDH data structure, respectively defined in
<xref target="algorithm-specific-part-for-ecdh-keys"/> and
<xref target="public-key-encrypted-session-key-packets-tag-1"/>, contain an
encoded point field, the format changes to the field in
<xref target="public-key-encrypted-session-key-packets-tag-1"/> only affect a
given recipient of a given message.</t>
      </section>
      <section anchor="eddsa-point-format">
        <name>EdDSA Point Format</name>
        <t>The EdDSA algorithm defines two different point formats.</t>
        <t>The classic format is used with the curve Ed25519 and uses a dedicated
prefix octet to make sure that the key can be represented in the
Multiprecision Integer (MPI) format.  For this the octet string
specifying the point is prefixed with the octet 0x40.  Note that this
encoding is an extension of the encoding given in <xref target="SEC1"/> which uses
0x04 to indicate an uncompressed point.  For example, the length of a
public key for the curve Ed25519 is 263 bit: 7 bit to represent the
0x40 prefix octet and 32 octets for the native value of the public
key.</t>
        <t>The newer format is specified to use an SOS instead of an MPI and thus
does not use a prefix octet.  This format is currently only used with
curve Ed448 and uses 57 octets as per <xref target="RFC8032"/>.</t>
      </section>
      <section anchor="key-derivation-function">
        <name>Key Derivation Function</name>
        <t>A key derivation function (KDF) is necessary to implement the 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 REQUIRED.  See
<xref target="compatibility-profiles"/> for the details regarding the choice of
the hash function.</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>
        <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>
        <t>Note that ZB in the KDF description above is the compact
representation of X, defined in Section 4.2 of <xref target="RFC6090"/>.</t>
      </section>
      <section anchor="ecdh-algorithm">
        <name>ECDH Algorithm</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"/>
MUST be implemented with the following restrictions: the ECC CDH
primitive employed by this method is modified to always assume the
cofactor as 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, compatible with the
definition of the OtherInfo bitstring <xref target="SP800-56A"/>:</t>
        <ul spacing="normal">
          <li>
            <t>a variable-length field containing a curve OID, formatted as
follows:  </t>
            <ul spacing="normal">
              <li>a one-octet size of the following field</li>
              <li>the octets representing a curve OID, defined in <xref target="ecc-curve-oid"/></li>
            </ul>
          </li>
          <li>a one-octet public key algorithm ID defined in <xref target="public-key-algorithms"/></li>
          <li>
            <t>a variable-length field containing KDF parameters, identical to
the corresponding field in the ECDH public key, formatted as
follows:  </t>
            <ul spacing="normal">
              <li>a one-octet size of the following fields; values 0 and 0xff
are reserved for future extensions</li>
              <li>a one-octet value 01, reserved for future extensions</li>
              <li>a one-octet hash function ID used with the KDF</li>
              <li>a one-octet algorithm ID for the symmetric algorithm used to
wrap the symmetric key for message encryption; see
<xref target="ecdh-algorithm"/> for details</li>
            </ul>
          </li>
          <li>20 octets representing the UTF-8 encoding of the string
"Anonymous Sender    ", 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</li>
          <li>20 octets representing a recipient encryption subkey or a master
key fingerprint, identifying the key material that is needed for
the decryption.  For version 5 keys the 20 leftmost octets of the
fingerprint are used.</li>
        </ul>
        <t>The size of the KDF parameters sequence, defined above, is either 54
for the NIST curve P-256, 51 for the curves P-384 and P-521, or
56 for Curve25519.</t>
        <t>The key wrapping method is described in <xref target="RFC3394"/>.  KDF produces a
symmetric key that is used as a key-encryption key (KEK) as specified
in <xref target="RFC3394"/>.  Refer to <xref target="security-considerations"/> for the
details regarding the choice of the KEK algorithm, which SHOULD be one
of three AES algorithms.  Key wrapping and unwrapping is performed
with the default initial value of <xref target="RFC3394"/>.</t>
        <t>The input to the key wrapping method is the value "m" derived from the
session key, as described in
<xref target="public-key-encrypted-session-key-packets-tag-1"/>, "Public-Key
Encrypted Session Key Packets (Tag 1)", except that the PKCS #1.5
padding step is omitted.  The result is padded using the method
described in <xref target="PKCS5"/> to the 8-byte granularity.  For example, the
following AES-256 session key, in which 32 octets are denoted from k0
to k31, is composed to form the following 40 octet sequence:</t>
        <artwork><![CDATA[
09 k0 k1 ... k31 c0 c1 05 05 05 05 05
]]></artwork>
        <t>The octets c0 and c1 above denote the checksum.  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 MAY use 21, 13, and 5 bytes 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 fields:</t>
        <ul spacing="normal">
          <li>a one-octet encoding the size in octets of the result of the key
wrapping method; the value 255 is reserved for future extensions;</li>
          <li>up to 254 octets representing the result of the key wrapping
method, applied to the 8-byte padded session key, as described
above.</li>
        </ul>
        <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 the 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>
        <artwork><![CDATA[
Obtain the authenticated recipient public key R
Generate an ephemeral key pair {v, V=vG}
Compute the shared point S = vR;
m = symm_alg_ID || session key || checksum || pkcs5_padding;
curve_OID_len = (byte)len(curve_OID);
Param = curve_OID_len || curve_OID || public_key_alg_ID || 03
|| 01 || KDF_hash_ID || KEK_alg_ID for AESKeyWrap || "Anonymous
Sender    " || recipient_fingerprint;
Z_len = the key size for the KEK_alg_ID used with AESKeyWrap
Compute Z = KDF( S, Z_len, Param );
Compute C = AESKeyWrap( Z, m ) as per [RFC3394]
VB = convert point V to the octet string
Output (MPI(VB) || len(C) || C).
]]></artwork>
        <t>The decryption is the inverse of the method given.  Note that the
recipient obtains the shared secret by calculating</t>
        <artwork><![CDATA[
S = rV = rvG, where (r,R) is the recipient's key pair.
]]></artwork>
        <t>Consistent with <xref target="ocb-encrypted-data-packet-tag-20"/>, "OCB
Encrypted Data Packet (Tag 20)" and
<xref target="sym-encrypted-integrity-protected-data-packet-tag-18"/>,
"Sym. Encrypted Integrity Protected Data Packet (Tag 18)", OCB
encryption or a Modification Detection Code (MDC) MUST be used anytime
the symmetric key is protected by ECDH.</t>
        <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 v4 keys, the following algorithms SHOULD be used depending on the
curve.  An implementation SHOULD only use an AES algorithm as a KEK
algorithm.</t>
          <t>For v5 keys, the following algorithms MUST be used depending on the
curve.  An implementation MUST NOT generate a v5 ECDH key over any
listed curve that uses different KDF or KEK parameters.  An
implementation MUST NOT encrypt any message to a v5 ECDH key over a
listed curve that announces a different KDF or KEK parameter.</t>
          <table>
            <thead>
              <tr>
                <th align="right">Curve</th>
                <th align="left">Hash algorithm</th>
                <th align="left">Symmetric algorithm</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="right">NIST P-256</td>
                <td align="left">SHA2-256</td>
                <td align="left">AES-128</td>
              </tr>
              <tr>
                <td align="right">NIST P-384</td>
                <td align="left">SHA2-384</td>
                <td align="left">AES-192</td>
              </tr>
              <tr>
                <td align="right">NIST P-521</td>
                <td align="left">SHA2-512</td>
                <td align="left">AES-256</td>
              </tr>
              <tr>
                <td align="right">brainpoolP256r1</td>
                <td align="left">SHA2-256</td>
                <td align="left">AES-128</td>
              </tr>
              <tr>
                <td align="right">brainpoolP384r1</td>
                <td align="left">SHA2-384</td>
                <td align="left">AES-192</td>
              </tr>
              <tr>
                <td align="right">brainpoolP512r1</td>
                <td align="left">SHA2-512</td>
                <td align="left">AES-256</td>
              </tr>
              <tr>
                <td align="right">Curve25519</td>
                <td align="left">SHA2-256</td>
                <td align="left">AES-128</td>
              </tr>
              <tr>
                <td align="right">X448</td>
                <td align="left">SHA2-512</td>
                <td align="left">AES-256</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
    </section>
    <section anchor="post-quantum-cryptography">
      <name>Post-Quantum Cryptography</name>
      <t>This section describes algorithms and parameters used with
post-quantum cryptography.  Specifically, it defines composite
public-key encryption based on ECC-KEM and ML-KEM.  According to
<xref target="RFC9794"/> this is also known as a PQ/T hybrid Key Encapsulation
Mechanism.</t>
      <section anchor="kyber-algorithm">
        <name>Kyber Algorithm</name>
        <t>ML-KEM <xref target="FIPS203"/>, which is also known as CRYSTALS-Kyber, is based
on the hardness of solving the learning-with-errors problem in module
lattices (MLWE).  The scheme is believed to provide security against
cryptanalytic attacks by classical as well as quantum computers.  This
specification defines ML-KEM only in composite combination with
ECC-based encryption schemes in order to provide a pre-quantum
security fallback.  This scheme is built according to the
following principal design:</t>
        <ul spacing="normal">
          <li>The encapsulation algorithm of an ECC-based KEM, is invoked to
create an ECC ciphertext together with an ECC symmetric key share.</li>
          <li>The ML-KEM encapsulation algorithm is invoked to create a ML-KEM
ciphertext together with a ML-KEM symmetric key share.</li>
          <li>A Key-Encryption-Key (KEK) is computed as the output of a
Key-Combiner that receives as input both of the above created
symmetric key shares and the protocol binding information.</li>
          <li>The session key for content encryption is then wrapped as
described in <xref target="RFC3394"/> using AES-256 as algorithm and the KEK
as key.</li>
          <li>The PKESK package's algorithm-specific parts are made up of the
ML-KEM ciphertext, the ECC ciphertext, the session key algorithm
id, and the wrapped session key.</li>
        </ul>
        <t>Valid combinations of ECC curve and ML-KEM version along with the to
be used functions are:</t>
        <table>
          <thead>
            <tr>
              <th align="right">Curve</th>
              <th align="left">ML-KEM</th>
              <th align="left">ECC-KEM</th>
              <th align="left">SHAFunc</th>
              <th align="left">Requirement</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">X25519</td>
              <td align="left">768</td>
              <td align="left">XKem</td>
              <td align="left">SHA3-256</td>
              <td align="left">SHOULD</td>
            </tr>
            <tr>
              <td align="right">X448</td>
              <td align="left">768</td>
              <td align="left">XKem</td>
              <td align="left">SHA3-512</td>
              <td align="left">MAY</td>
            </tr>
            <tr>
              <td align="right">X25519</td>
              <td align="left">1024</td>
              <td align="left">XKem</td>
              <td align="left">SHA3-256</td>
              <td align="left">MAY</td>
            </tr>
            <tr>
              <td align="right">X448</td>
              <td align="left">1024</td>
              <td align="left">XKem</td>
              <td align="left">SHA3-512</td>
              <td align="left">SHOULD</td>
            </tr>
            <tr>
              <td align="right">brainpoolP256r1</td>
              <td align="left">768</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-256</td>
              <td align="left">SHOULD</td>
            </tr>
            <tr>
              <td align="right">brainpoolP384r1</td>
              <td align="left">768</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-512</td>
              <td align="left">MAY</td>
            </tr>
            <tr>
              <td align="right">brainpoolP512r1</td>
              <td align="left">768</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-512</td>
              <td align="left">MAY</td>
            </tr>
            <tr>
              <td align="right">brainpoolP256r1</td>
              <td align="left">1024</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-256</td>
              <td align="left">MAY</td>
            </tr>
            <tr>
              <td align="right">brainpoolP384r1</td>
              <td align="left">1024</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-512</td>
              <td align="left">SHOULD</td>
            </tr>
            <tr>
              <td align="right">brainpoolP512r1</td>
              <td align="left">1024</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-512</td>
              <td align="left">MAY</td>
            </tr>
            <tr>
              <td align="right">NIST P-256</td>
              <td align="left">768</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-256</td>
              <td align="left">MAY</td>
            </tr>
            <tr>
              <td align="right">NIST P-384</td>
              <td align="left">768</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-512</td>
              <td align="left">MAY</td>
            </tr>
            <tr>
              <td align="right">NIST P-521</td>
              <td align="left">768</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-512</td>
              <td align="left">MAY</td>
            </tr>
            <tr>
              <td align="right">NIST P-256</td>
              <td align="left">1024</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-256</td>
              <td align="left">MAY</td>
            </tr>
            <tr>
              <td align="right">NIST P-384</td>
              <td align="left">1024</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-512</td>
              <td align="left">MAY</td>
            </tr>
            <tr>
              <td align="right">NIST P-521</td>
              <td align="left">1024</td>
              <td align="left">ecdhKem</td>
              <td align="left">SHA3-512</td>
              <td align="left">MAY</td>
            </tr>
          </tbody>
        </table>
        <section anchor="ecc-kem-for-curves-x25519-and-kem-x448">
          <name>ECC-KEM for curves X25519 and KEM-X448</name>
          <t>The encapsulation and decapsulation operations of XKem are described
using the functions and encodings defined in <xref target="RFC7748"/>.  With the
definitions:</t>
          <artwork><![CDATA[
XFunc         = X25519() for curve X25519 or X448() for curve X448.
SHAFunc       = See table above.
U(P)          = u-coordinate of the base point of the curve.
r             = eccSecretKey.
R             = eccPublicKey = XFunc (r, U(P))
v             = ephemeral secret key
eccCipherText = ephemeral public key = XFunc(v,U(P)),
X             = shared coordinate
eccKeyShare   = SHAFunc(X || eccCipherText || R).
]]></artwork>
          <t>The operation XKem.Encaps() is defined as follows:</t>
          <ul spacing="normal">
            <li>Create a random scalar v as ephemeral secret key,</li>
            <li>Generate the ephemeral public key:  eccCipherText = XFunc(v,U(P)),</li>
            <li>Compute the shared coordinate:  X = XFunc(v, R),</li>
            <li>Compute the key share: <br/>
  eccKeyShare = SHAFunc(X || eccCipherText || R).</li>
            <li>Output eccKeyShare and eccCipherText.</li>
          </ul>
          <t>The operation XKem.Decaps() is defined as follows:</t>
          <ul spacing="normal">
            <li>Compute the shared coordinate:  X = XFunc(r, eccCipherText),</li>
            <li>Output the key share: <br/>
  eccKeyShare = SHAFunc(X || eccCipherText || R).</li>
          </ul>
        </section>
        <section anchor="ecc-kem-for-weierstrass-curves">
          <name>ECC-KEM for Weierstrass curves</name>
          <t>The encapsulation and decapsulation operations of ecdhKEM are
described using the functions and encodings defined in <xref target="SP800-186"/> and
<xref target="RFC5639"/>.  With the defintions:</t>
          <artwork><![CDATA[
SHAFunc       = See table above.
G             = base point of the curve.
r             = eccSecretKey.
R             = eccPublicKey R = rG.
v             = ephemeral secret key.
V             = ephemeral public key V = vG.
S             = shared point S = vR or S = rV
S_x           = x-coordinate of S
eccPublicKey  = SEC1_encoding(R)
eccCipherText = SEC1_encoding(V)
eccKeyShare   = SHAFunc(S_x || eccCipherText || eccPublicKey).
]]></artwork>
          <t>The operation ecdhKem.Encaps() is defined as follows:</t>
          <ul spacing="normal">
            <li>Create a random scalar v as ephemeral secret key,</li>
            <li>Generate an ephemeral public key:  V = vG,</li>
            <li>Compute the shared point:  S = vR,</li>
            <li>Output the eccCipherText as the <xref target="SEC1"/> encoding of V,</li>
            <li>Output the key share: <br/>
    eccKeyShare = SHAFunc(S_x || eccCipherText || eccPublicKey)</li>
          </ul>
          <t>The operation ecdhKem.Decaps() is defined as follows:</t>
          <ul spacing="normal">
            <li>Compute the shared point:  S = rV</li>
            <li>Output the key share: <br/>
  eccKeyShare = SHAFunc(S_x || eccCipherText || eccPublicKey)</li>
          </ul>
        </section>
        <section anchor="ml-kem">
          <name>ML-KEM</name>
          <t>The ML-KEM operations ML-KEM.Encaps and ML-KEM.Decaps as well as the
encodings are defined in <xref target="FIPS203"/>.  The artifact lengths in octets
are given by this table:</t>
          <table>
            <thead>
              <tr>
                <th align="right">ML-KEM</th>
                <th align="left">Public Key</th>
                <th align="left">Secret Key</th>
                <th align="left">Ciphertext</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="right">ML-KEM-768</td>
                <td align="left">1184</td>
                <td align="left">2400</td>
                <td align="left">1088</td>
              </tr>
              <tr>
                <td align="right">ML-KEM-1024</td>
                <td align="left">1568</td>
                <td align="left">3168</td>
                <td align="left">1568</td>
              </tr>
            </tbody>
          </table>
          <t>The operation ML-KEM.Encaps() is defined as follows:</t>
          <ul spacing="normal">
            <li>Invoke (mlkemCipherText, mlkemKeyShare) = <br/>
  ML-KEM.Encaps(mlkemPublicKey),</li>
            <li>Output mlkemCipherText as the ML-KEM ciphertext,</li>
            <li>Output mlkemKeyShare as the ML-KEM symmetric key share.</li>
          </ul>
          <t>The operation ML-KEM.Decaps() is defined as follows:</t>
          <ul spacing="normal">
            <li>Invoke mlkemKeyShare = <br/>
  ML-KEM.Decaps(mlkemCipherText, mlkemSecretKey),</li>
            <li>Output mlkemKeyShare as the ML-KEM symmetric key share.</li>
          </ul>
        </section>
        <section anchor="kem-key-combiner">
          <name>KEM Key Combiner</name>
          <t>For the composite KEM schemes the following procedure MUST be used to
compute the KEK that wraps a session key.  The construction is a
one-step key derivation function compliant to <xref target="SP800-56C"/> Section
4, based on KMAC256 <xref target="SP800-185"/> and approved by <xref target="SP800-227"/>
Section 4.6.2.  It is given by the following algorithm:</t>
          <artwork><![CDATA[
multiKeyCombine (eccKeyShare, eccCipherText,
                 mlkemKeyShare, mlkemCipherText,
                 fixedInfo, oBits)

Input:
eccKeyShare     - the ECC key share encoded as an octet string
eccCipherText   - the ECC ciphertext encoded as an octet string
mlkemKeyShare   - the ML-KEM key share encoded as an octet string
mlkemCipherText - the ML-KEM ciphertext encoded as an octet string
fixedInfo       - the fixed information octet string (see below)
oBits           - the size of the output keying material in bits

Constants:
domSeparation       - the UTF-8 encoding of the string
                      "OpenPGPCompositeKeyDerivationFunction"
counter             - the four-octet big-endian value 0x00000001
customizationString - the UTF-8 encoding of the string "KDF"

eccData = eccKeyShare || eccCipherText
mlkemData = mlkemKeyShare || mlkemCipherText
encData = counter || eccData || mlkemData || fixedInfo

result = KMAC256 (domSeparation, encData, oBits, customizationString)
]]></artwork>
          <t>The fixedinfo is used to provide a binding between the KEK and the
communication parties.  It is the concatenation of</t>
          <ul spacing="normal">
            <li>A one octet algorithm ID describing the symmetric algorithm used
for the bulk data in the in the SEIPD (packet 18) or the OCBED
(packet 20).</li>
            <li>The 32 octet version 5 fingerprint of the public key.  Note that
the fingerprint covers the packet format and all other parameters
of the public key.</li>
          </ul>
        </section>
        <section anchor="kem-encryption-procedure">
          <name>KEM Encryption Procedure</name>
          <t>The procedure to perform public-key encryption with a ML-KEM + ECC
composite scheme is as follows:</t>
          <ul spacing="normal">
            <li>Extract the eccPublicKey and mlkemPublicKey component from the
algorithm specific data of the public key packet.</li>
            <li>Compute (eccCipherText, eccKeyShare) := ECC-Kem.Encaps(eccPublicKey)</li>
            <li>Compute (mlkemCipherText, mlkemKeyShare) := ML-KEM.Encaps(mlkemPublicKey)</li>
            <li>Prepare fixedInfo as specified above</li>
            <li>Compute KEK := multiKeyCombine(eccKeyShare, eccCipherText,
mlkemKeyShare, mlkemCipherText, fixedInfo, 256) as defined in
Section <xref target="kem-key-combiner"/>.</li>
            <li>Compute C := AESKeyWrap(KEK, sessionKey) with AES-256 as per
<xref target="RFC3394"/> that includes a 64 bit integrity check</li>
            <li>Output eccCipherText, mlkemCipherText, sessionKeyAlgo, and C as
specified in the Kyber specific part of the PKESK (packet 1).</li>
          </ul>
          <t>Depending on the curve either XKem.Encaps() or ecdhKem.Encaps() is
used for ECC-Kem.Encaps().</t>
        </section>
        <section anchor="kem-decryption-procedure">
          <name>KEM Decryption Procedure</name>
          <t>The decryption procedure is the inverse of the method given above for
encryption.  Implementations MAY check that the session key algorithm
is the same as actually used but there is no security related need for
it because the algorithm ID is covered by the key combining process.</t>
          <t>Depending on the curve either XKem.Decaps() or ecdhKem.Decaps() is
used for ECC-Kem.Decaps().</t>
        </section>
      </section>
    </section>
    <section anchor="notes-on-algorithms">
      <name>Notes on Algorithms</name>
      <section anchor="pkcs1-encoding-in-librepgp">
        <name>PKCS#1 Encoding in LibrePGP</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="RFC3447"/>.  RFC 3447
should be treated as the ultimate authority on PKCS#1 for LibrePGP.
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-v15-encode">
          <name>EME-PKCS1-v1_5-ENCODE</name>
          <artwork><![CDATA[
Input:

k = the length in octets of the key modulus.

M = message to be encoded, an octet string of length mLen,
    where mLen <= k - 11.

Output:

EM = encoded message, an octet string of length k.

Error: "message too long".

 1. Length checking: If mLen > k - 11, output "message too long"
    and stop.

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

 3. Concatenate PS, the message M, and other padding to form an
    encoded message EM of length k octets as

    EM = 0x00 || 0x02 || PS || 0x00 || M.

 4. Output EM.
]]></artwork>
        </section>
        <section anchor="eme-pkcs1-v15-decode">
          <name>EME-PKCS1-v1_5-DECODE</name>
          <artwork><![CDATA[
Input:

EM = encoded message, an octet string

Output:

M = message, an octet string,

Error: "decryption error",
]]></artwork>
          <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>
          <artwork><![CDATA[
 EM = 0x00 || 0x02 || PS || 0x00 || M.
]]></artwork>
          <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 the security note in <xref target="security-considerations"/>
regarding differences in reporting between a decryption error and a
padding error.</t>
        </section>
        <section anchor="emsa-pkcs1-v15">
          <name>EMSA-PKCS1-v1_5</name>
          <t>This encoding method is deterministic and only has an encoding
operation.</t>
          <artwork><![CDATA[
Option:

Hash - a hash function in which hLen denotes the length in octets
       of the hash function output.

Input:

M = message to be encoded.

emLen = 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.

Output:

EM = encoded message, an octet string of length emLen.

Errors: "message too long";
        "intended encoded message length too short".
]]></artwork>
          <t>Steps:</t>
          <artwork><![CDATA[
 1. Apply the hash function to the message M to produce a hash
    value H:

    H = Hash(M).

    If the hash function outputs "message too long," output
    "message too long" and stop.

 2. Using the list in Section [](#version-3-signature-packet-format),
    "Version 3 Signature Packet Format", 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.

 3. If emLen < tLen + 11, output "intended encoded message length
    too short" and stop.

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

 5. Concatenate PS, the hash prefix T, and other padding to form
    the encoded message EM as

        EM = 0x00 || 0x01 || PS || 0x00 || T.

 6. Output EM.
]]></artwork>
        </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 MUST-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 (RFC-4880) have TripleDES as its
only MUST-implement algorithm.</t>
        <t>An implementation MUST NOT 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
MUST-implement algorithm, AES-128, ensures that the intersection is
not null.  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 SHOULD decrypt the
message anyway, but MUST warn the keyholder that the protocol has been
violated.  For example, suppose that Alice, above, has software that
implements all algorithms in this specification.  Nonetheless, she
prefers subsets for work or home.  If she is sent a message encrypted
with IDEA, which is not in her preferences, the software warns her
that someone sent her an IDEA-encrypted message, but it would ideally
decrypt it anyway.</t>
      </section>
      <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>Compression has been an integral part of PGP since its first days.
LibrePGP and all previous versions of PGP have offered compression.  In
this specification, the default is for messages to be compressed,
although an implementation is not required to do so.  Consequently, the
compression preference gives a way for a keyholder to request that
messages not be compressed, presumably because they are using a
minimal implementation that does not include
compression.  Additionally, this gives a keyholder a way to state that
it can support alternate algorithms.</t>
          <t>Like the algorithm preferences, an implementation MUST NOT use an
algorithm that is not in the preference vector.  If the preferences are
not present, then they are assumed to be [ZIP(1), Uncompressed(0)].</t>
          <t>Additionally, an implementation MUST implement this preference to the
degree of recognizing when to send an uncompressed message. A robust
implementation would satisfy this requirement by looking at the
recipient's preference and acting accordingly. A minimal
implementation can satisfy this requirement by never generating a
compressed message, since all implementations can handle messages that
have not been compressed.</t>
        </section>
        <section anchor="hash-algorithm-preferences">
          <name>Hash Algorithm Preferences</name>
          <t>Typically, the choice of a hash algorithm is something the signer
does, rather than the verifier, because a signer rarely knows who is
going to be verifying the signature.  This preference, though, allows a
protocol based upon digital signatures ease in negotiation.</t>
          <t>Thus, if Alice is authenticating herself to Bob with a signature, it
makes sense for her to use a hash algorithm that Bob's software uses.
This preference allows Bob to state in his key which algorithms Alice
may use.</t>
          <t>Since SHA2-256 is the MUST-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="plaintext">
        <name>Plaintext</name>
        <t>Algorithm 0, "plaintext", may only be used to denote secret keys that
are stored in the clear.  Implementations MUST NOT use plaintext in
Symmetrically Encrypted Data packets; they must use Literal Data
packets to encode unencrypted or literal data.</t>
      </section>
      <section anchor="rsa">
        <name>RSA</name>
        <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 SHOULD NOT create
such a key, but MAY interpret it.</t>
        <t>An implementation SHOULD NOT implement RSA keys of size less than 1024
bits.</t>
      </section>
      <section anchor="dsa">
        <name>DSA</name>
        <t>An implementation SHOULD NOT implement DSA keys of size less than 1024
bits.  It MUST NOT implement a DSA key with a q size of less than 160
bits.  DSA keys MUST also be a multiple of 64 bits, and the q size MUST
be a multiple of 8 bits.  The Digital Signature Standard (DSS)
<xref target="FIPS186"/> specifies that DSA be used in one of the following ways:</t>
        <ul spacing="normal">
          <li>1024-bit key, 160-bit q, SHA-1, SHA2-224, SHA2-256, SHA2-384, or
SHA2-512 hash</li>
          <li>2048-bit key, 224-bit q, SHA2-224, SHA2-256, SHA2-384, or SHA2-512
hash</li>
          <li>2048-bit key, 256-bit q, SHA2-256, SHA2-384, or SHA2-512 hash</li>
          <li>3072-bit key, 256-bit q, SHA2-256, SHA2-384, or SHA2-512 hash</li>
        </ul>
        <t>The above key and q size pairs were chosen to best balance the
strength of the key with the strength of the hash.  Implementations
SHOULD use one of the above key and q size pairs when generating DSA
keys.  If DSS compliance is desired, one of the specified SHA hashes
must be used as well. <xref target="FIPS186"/> is the ultimate authority on DSS, and
should be consulted for all questions of DSS compliance.</t>
        <t>Note that earlier versions of this standard only allowed a 160-bit q
with no truncation allowed, so earlier implementations may not be able
to handle signatures with a different q size or a truncated hash.</t>
      </section>
      <section anchor="elgamal">
        <name>Elgamal</name>
        <t>An implementation SHOULD NOT implement Elgamal keys of size less than
1024 bits.</t>
      </section>
      <section anchor="eddsa">
        <name>EdDSA</name>
        <t>Although the EdDSA algorithm allows arbitrary data as input, its use
with LibrePGP requires that a digest of the message is used as input
(pre-hashed).  See section <xref target="computing-signatures"/>, "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>
      </section>
      <section anchor="reserved-algorithm-numbers">
        <name>Reserved Algorithm Numbers</name>
        <t>A number of algorithm IDs have been reserved for algorithms that would
be useful to use in an LibrePGP implementation, yet there are issues
that prevent an implementer from actually implementing the
algorithm.  These are marked in <xref target="public-key-algorithms"/>,
"Public-Key Algorithms", as "reserved for".</t>
        <t>The reserved public-key algorithm X9.42 (21) does not have the
necessary parameters, parameter order, or semantics defined.  The same
is currently true for reserved public-key algorithms AEDH (23) and
AEDSA (24).</t>
        <t>Previous versions of LibrePGP permitted Elgamal <xref target="ELGAMAL"/> signatures
with a public-key identifier of 20.  These are no longer permitted.  An
implementation MUST NOT generate such keys.  An implementation MUST NOT
generate Elgamal signatures.  See <xref target="BLEICHENBACHER"/>.</t>
      </section>
      <section anchor="librepgp-cfb-mode">
        <name>LibrePGP CFB Mode</name>
        <t>LibrePGP does symmetric encryption using a variant of Cipher Feedback
mode (CFB mode).  This section describes the procedure it uses in
detail.  This mode is what is used for Symmetrically Encrypted Data
Packets; the mechanism used for encrypting secret-key material is
similar, and is described in the sections above.</t>
        <t>In the description below, the value BS is the block size in octets of
the cipher.  Most ciphers have a block size of 8 octets.  The AES and
Twofish have a block size of 16 octets.  Also note that the description
below assumes that the IV and CFB arrays start with an index of 1
(unlike the C language, which assumes arrays start with a zero index).</t>
        <t>LibrePGP CFB mode uses an initialization vector (IV) of all zeros, and
prefixes the plaintext with BS+2 octets of random data, such that
octets BS+1 and BS+2 match octets BS-1 and BS.  It does a CFB
resynchronization after encrypting those BS+2 octets.</t>
        <t>Thus, for an algorithm that has a block size of 8 octets (64 bits),
the IV is 10 octets long and octets 7 and 8 of the IV are the same as
octets 9 and 10.  For an algorithm with a block size of 16 octets (128
bits), the IV is 18 octets long, and octets 17 and 18 replicate octets
15 and
16.  Those extra two octets are an easy check for a correct key.</t>
        <t>Step by step, here is the procedure:</t>
        <ol spacing="normal" type="1"><li>The feedback register (FR) is set to the IV, which is all zeros.</li>
          <li>FR is encrypted to produce FRE (FR Encrypted).  This is the
encryption of an all-zero value.</li>
          <li>FRE is xored with the first BS octets of random data prefixed to
the plaintext to produce C[1] through C[BS], the first BS octets
of ciphertext.</li>
          <li>FR is loaded with C[1] through C[BS].</li>
          <li>FR is encrypted to produce FRE, the encryption of the first BS
octets of ciphertext.</li>
          <li>The left two octets of FRE get xored with the next two octets of
data that were prefixed to the plaintext.  This produces C[BS+1]
and C[BS+2], the next two octets of ciphertext.</li>
          <li>(The resynchronization step) FR is loaded with C[3] through
C[BS+2].</li>
          <li>FRE is xored with the first BS octets of the given plaintext, now
that we have finished encrypting the BS+2 octets of prefixed data.
This produces C[BS+3] through C[BS+(BS+2)], the next BS octets of
ciphertext.</li>
          <li>FR is encrypted to produce FRE.</li>
          <li>FR is loaded with C[BS+3] to C[BS + (BS+2)] (which is C11-C18 for
an 8-octet block).</li>
          <li>FR is encrypted to produce FRE.</li>
          <li>FRE is xored with the next BS octets of plaintext, to produce the
next BS octets of ciphertext.  These are loaded into FR, and the
process is repeated until the plaintext is used up.</li>
        </ol>
      </section>
      <section anchor="private-or-experimental-parameters">
        <name>Private or Experimental Parameters</name>
        <t>S2K specifiers, Signature subpacket types, User Attribute types, image
format types, and algorithms described in <xref target="constants"/> all reserve the
range 100 to 110 for private and experimental use.  Packet types
reserve the range 60 to 63 for private and experimental use.  These are
intentionally managed with the PRIVATE USE method, as described in
<xref target="RFC8126"/>.</t>
        <t>However, implementations need to be careful with these and promote
them to full IANA-managed parameters when they grow beyond the
original, limited system.</t>
      </section>
      <section anchor="meta-considerations-for-expansion">
        <name>Meta-Considerations for Expansion</name>
        <t>If LibrePGP 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
SHOULD 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
SHOULD be rejected.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <ul spacing="normal">
        <li>As with any technology involving cryptography, you should check
the current literature to determine if any algorithms used here
have been found to be vulnerable to attack or have been found to
be too weak.</li>
        <li>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.</li>
        <li>Certain operations in this specification involve the use of random
numbers.  An appropriate entropy source should be used to generate
these numbers (see <xref target="RFC4086"/>).</li>
        <li>The MD5 hash algorithm has been found to have weaknesses, with
collisions found in a number of cases.  MD5 is deprecated for use in
LibrePGP.  Implementations MUST NOT generate new signatures using MD5
as a hash function.  They MAY continue to consider old signatures
that used MD5 as valid.</li>
        <li>SHA2-224 and SHA2-384 require the same work as SHA2-256 and SHA2-512,
respectively.  In general, there are few reasons to use them outside
of DSS compatibility.  You need a situation where one needs more
security than smaller hashes, but does not want to have the full
256-bit or 512-bit data length.</li>
        <li>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.  If
you as an implementer promote dual-use keys, you should at least be
aware of this controversy.</li>
        <li>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.</li>
        <li>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.</li>
        <li>
          <t>In late summer 2002, Jallad, Katz, and Schneier published an
interesting attack on the LibrePGP 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 random oracle, and can often decrypt the message.  </t>
          <t>
Compressing data can ameliorate this attack.  The incorrectly
decrypted data nearly always decompresses in ways that defeat the
attack.  However, this is not a rigorous fix, and leaves open some
small vulnerabilities.  For example, if an implementation does not
compress a message before encryption (perhaps because it knows it
was already compressed), then that message is vulnerable.  Because of
this happenstance --- that modification attacks can be thwarted by
decompression errors --- an implementation SHOULD treat a
decompression error as a security problem, not merely a data
problem.  </t>
          <t>
This attack can be defeated by the use of modification detection,
provided that the implementation does not let the user naively
return the data to the attacker.  The modification detection is
prefereabble implemented by using the OCB Encrypted Data Packet
and only if the recipients don't supports this by use of the
Symmmetric Encrypted and Integrity Protected Data Packet.  An
implementation MUST treat an authentication or MDC failure as a
security problem, not merely a data problem.  </t>
          <t>
In either case, the implementation SHOULD NOT allow the user
access to the erroneous data, and MUST warn the user as to
potential security problems should that data be returned to the
sender.  </t>
          <t>
While this attack is somewhat obscure, requiring a special set of
circumstances to create it, it is nonetheless quite serious as it
permits someone to trick a user to decrypt a message.  Consequently,
it is important that:  </t>
          <ol spacing="normal" type="1"><li>Implementers treat authentication errors, MDC errors,
decompression failures or no use of MDC or AEAD as security
problems.</li>
            <li>Implementers implement OCB with all due speed and encourage
its spread.</li>
            <li>Users migrate to implementations that support OCB
encryption with all due speed.</li>
          </ol>
        </li>
        <li>PKCS#1 has been found to be vulnerable to attacks in which a system
that reports errors in padding differently from errors in decryption
becomes a random oracle that can leak the private key in mere
millions of queries.  Implementations must be aware of this attack
and prevent it from happening.  The simplest solution is to report a
single error code for all variants of decryption errors so as not to
leak information to an attacker.</li>
        <li>Some technologies mentioned here may be subject to government
control in some countries.</li>
        <li>
          <t>In winter 2005, Serge Mister and Robert Zuccherato from Entrust
released a paper describing a way that the "quick check" in LibrePGP
CFB mode can be used with a random oracle to decrypt two octets of
every cipher block <xref target="MZ05"/>.  They recommend as prevention not using
the quick check at all.  </t>
          <t>
Many implementers have taken this advice to heart for any data that
is symmetrically encrypted and for which the session key is
public-key encrypted.  In this case, the quick check is not needed as
the public-key encryption of the session key should guarantee that
it is the right session key.  In other cases, the implementation
should use the quick check with care.  </t>
          <t>
On the one hand, there is a danger to using it if there is a random
oracle that can leak information to an attacker.  In plainer
language, there is a danger to using the quick check if timing
information about the check can be exposed to an attacker,
particularly via an automated service that allows rapidly repeated
queries.  </t>
          <t>
On the other hand, it is inconvenient to the user to be informed
that they typed in the wrong passphrase only after a petabyte of
data is decrypted.  There are many cases in cryptographic engineering
where the implementer must use care and wisdom, and this is one.</t>
        </li>
        <li>Refer to <xref target="FIPS186"/>, B.4.1, for the method to generate a
uniformly distributed ECC private key.</li>
        <li>
          <t>This document explicitly discourages the use of algorithms other
than AES as a KEK algorithm because backward compatibility of the
ECDH format is not a concern.  The KEK algorithm is only used within
the scope of a Public-Key Encrypted Session Key Packet, which
represents an ECDH key recipient of a message.  Compare this with
the algorithm used for the session key of the message, which MAY be
different from a KEK algorithm.  </t>
          <t>
Compliant applications SHOULD implement, advertise through key
preferences, and use the strongest algorithms specified in this
document.  </t>
          <t>
Note that the symmetric algorithm preference list may make it
impossible to use the balanced strength of symmetric key algorithms
for a corresponding public key.  For example, the presence of the
symmetric key algorithm IDs and their order in the key preference
list affects the algorithm choices available to the encoding side,
which in turn may make the adherence to the table above infeasible.
Therefore, compliance with this specification is a concern
throughout the life of the key, starting immediately after the key
generation when the key preferences are first added to a key.  It is
generally advisable to position a symmetric algorithm ID of strength
matching the public key at the head of the key preference list.  </t>
          <t>
Encryption to multiple recipients often results in an unordered
intersection subset.  For example, if the first recipient's set is
{A, B} and the second's is {B, A}, the intersection is an unordered
set of two algorithms, A and B.  In this case, a compliant
application SHOULD choose the stronger encryption algorithm.  </t>
          <t>
Resource constraints, such as limited computational power, is a
likely reason why an application might prefer to use the weakest
algorithm.  On the other side of the spectrum are applications that
can implement every algorithm defined in this document.  Most
applications are expected to fall into either of two categories.  A
compliant application in the second, or strongest, category SHOULD
prefer AES-256 to AES-192.  </t>
          <t>
SHA-1 MUST NOT be used with the ECDSA or the KDF in the ECDH method.  </t>
          <t>
MDC MUST be used when a symmetric encryption key is protected by
ECDH.  None of the ECC methods described in this document are
allowed with deprecated V3 keys.  A compliant application MUST only
use iterated and salted S2K to protect private keys, as defined in
<xref target="iterated-and-salted-s2k"/>, "Iterated and Salted S2K".  </t>
          <t>
Side channel attacks are a concern when a compliant application's
use of the LibrePGP format can be modeled by a decryption or signing
oracle model, 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>
        </li>
        <li>Although technically possible, the EdDSA algorithm MUST NOT be
used with a digest algorithms weaker than SHA2-256.</li>
      </ul>
      <t>LibrePGP was designed with security in mind, with many smart,
intelligent people spending a lot of time thinking about the
ramifications of their decisions.  Removing the requirement for
self-certifying User ID (and User Attribute) packets on a key means
that someone could surreptitiously add an unwanted ID to a key and
sign it.  If enough "trusted" people sign that surreptitious identity
then other people might believe it.  The attack could wind up sending
encrypted mail destined for alice to some other target, bob, because
someone added "alice" to bob's key without bob's consent.</t>
      <t>In the case of device certificates the device itself does not have any
consent.  It is given an identity by the device manufacturer and the
manufacturer can insert that ID on the device certificate, signing it
with the manufacturer's key.  If another people wants to label the
device by another name, they can do so.  There is no harm in multiple
IDs, because the verification is all done based on who has signed
those IDs.</t>
      <t>When a key can self-sign, it is still suggested to self-certify IDs,
even if it no longer required by this modification to LibrePGP.  This
at least signals to recipients of keys that yes, the owner of this key
asserts that this identity belongs to herself.  Note, however, that
mallet could still assert that he is 'alice' and could even
self-certify that.  So the attack is not truly different.  Moreover,
in the case of device certificates, it's more the manufacturer than
the device that wants to assert an identity (even if the device could
self-certify).</t>
      <t>There is no signaling whether a key is using this looser-requirement
key format.  An attacker could therefore just remove the
self-signature off a published key.  However one would hope that wide
publication would result in another copy still having that signature
and it being returned quickly.  However, the lack of signaling also
means that a user with an application following RFC 4880 directly
would see a key following this specification as "broken" and may not
accept it.</t>
      <t>On a different note, including the "geo" notation could leak
information about where a signer is located.  However it is just an
assertion (albeit a signed assertion) so there is no verifiable truth
to the location information released.  Similarly, all the rest of the
signature notations are pure assertions, so they should be taken with
the trustworthiness of the signer.</t>
      <t>Combining the User ID with the User Attribute means that an ID and
image would not be separable.  For a person this is probably not good,
but for a device it's unlikely the image will change so it makes sense
to combine the ID and image into a single signed packet with a single
signature.</t>
    </section>
    <section anchor="compatibility-profiles">
      <name>Compatibility Profiles</name>
      <section anchor="librepgp-ecc-profile">
        <name>LibrePGP ECC Profile</name>
        <t>A compliant application MUST implement NIST curve P-256, SHOULD
implement NIST curve P-521, SHOULD implement brainpoolP256r1 and
brainpoolP512r1, SHOULD implement Ed25519, SHOULD implement
Curve25519, MAY implement NIST curve P-384, and MAY implement
brainpoolP384r1, as defined in <xref target="ecc-curve-oid"/>.</t>
        <t>A compliant application MUST implement SHA2-256 and SHOULD implement
SHA2-384 and SHA2-512.  A compliant application MUST implement AES-128
and SHOULD implement AES-256.</t>
        <t>A compliant application SHOULD follow <xref target="security-considerations"/>
regarding the choice of the following algorithms for each curve:</t>
        <ul spacing="normal">
          <li>the KDF hash algorithm,</li>
          <li>the KEK algorithm,</li>
          <li>the message digest algorithm and the hash algorithm used in the
key certifications,</li>
          <li>the symmetric algorithm used for message encryption.</li>
        </ul>
        <t>It is recommended that the chosen symmetric algorithm for message
encryption be no less secure than the KEK algorithm.</t>
      </section>
    </section>
    <section anchor="implementation-nits">
      <name>Implementation Nits</name>
      <t>This section is a collection of comments to help an implementer,
particularly with an eye to backward compatibility.  Previous
implementations of PGP are not LibrePGP compliant.  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>
      <ul spacing="normal">
        <li>When exporting a private key, PGP 2 generates the header
"BEGIN PGP SECRET KEY BLOCK" instead of "BEGIN PGP PRIVATE KEY
BLOCK".  All previous versions ignore the implied data type,
and look directly at the packet data type.</li>
        <li>PGP versions 2.0 through 2.5 generated V2 Public-Key packets.  These are
identical to the deprecated V3 keys except for the version
number.  An implementation MUST NOT generate them and may
accept or reject them as it sees fit.  Some older PGP versions
generated V2 PKESK packets (Tag 1) as well.  An implementation
may accept or reject V2 PKESK packets as it sees fit, and MUST
NOT generate them.</li>
        <li>PGP version 2.6 will not accept key-material packets with versions
greater than 3.</li>
        <li>There are many ways possible for two keys to have the same key
material, but different fingerprints (and thus Key IDs).
Perhaps the most interesting is an RSA key that has been
"upgraded" to V4 format, but 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.</li>
        <li>If an implementation is using zlib to interoperate with
PGP 2, then the "windowBits" parameter should be set to -13.</li>
        <li>The 0x19 back signatures were not required for signing subkeys
until relatively recently.  Consequently, there may be keys in
the wild that do not have these back signatures.  Implementing
software may handle these keys as it sees fit.</li>
        <li>LibrePGP 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 LibrePGP implementations may also
use different upper bounds for public key sizes, and so care
should be taken when choosing sizes to maintain
interoperability.  As of 2007 most implementations have an
upper bound of 4096 bits for RSA, DSA, and Elgamal</li>
        <li>ASCII armor is an optional feature of LibrePGP.  The LibrePGP
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 "MUST" feature for an implementation.  For
example, an implementation that is using LibrePGP as a mechanism
for file signatures may find ASCII armor unnecessary.  LibrePGP
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.</li>
      </ul>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="AES" target="http://csrc.nist.gov/publications/fips/fips197/fips-197.{ps,pdf}">
          <front>
            <title>FIPS PUB 197, Advanced Encryption Standard (AES)</title>
            <author>
              <organization>NIST</organization>
            </author>
            <date year="2001" month="November"/>
          </front>
        </reference>
        <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/>
            </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/>
            </author>
            <date year="2010"/>
          </front>
        </reference>
        <reference anchor="EAX">
          <front>
            <title>A Conventional Authenticated-Encryption Mode</title>
            <author initials="M." surname="Bellare">
              <organization/>
            </author>
            <author initials="P." surname="Rogaway">
              <organization/>
            </author>
            <author initials="D." surname="Wagner">
              <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/>
            </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="FIPS180" target="http://dx.doi.org/10.6028/NIST.FIPS.180-4">
          <front>
            <title>Secure Hash Standard (SHS), FIPS 180-4</title>
            <author>
              <organization>National Institute of Standards and Technology, U.S. Department of Commerce</organization>
            </author>
            <date year="2015" month="August"/>
          </front>
        </reference>
        <reference anchor="FIPS186" target="http://dx.doi.org/10.6028/NIST.FIPS.186-4">
          <front>
            <title>Digital Signature Standard (DSS), FIPS 186-4</title>
            <author>
              <organization>National Institute of Standards and Technology, U.S. Department of Commerce</organization>
            </author>
            <date year="2013" month="July"/>
          </front>
        </reference>
        <reference anchor="FIPS202" target="http://dx.doi.org/10.6028/NIST.FIPS.202">
          <front>
            <title>SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions, FIPS 202</title>
            <author>
              <organization>National Institute of Standards and Technology, U.S. Department of Commerce</organization>
            </author>
            <date year="2015" month="August"/>
          </front>
        </reference>
        <reference anchor="FIPS203" target="https://doi.org/10.6028/NIST.FIPS.203">
          <front>
            <title>Module-Lattice-Based Key-Encapsulation Mechanism Standard</title>
            <author>
              <organization>National Institute of Standards and Technology, U.S. Department of Commerce</organization>
            </author>
            <date year="2024" month="August"/>
          </front>
        </reference>
        <reference anchor="HAC">
          <front>
            <title>Handbook of Applied Cryptography</title>
            <author initials="A. J." surname="Menezes" fullname="Alfred J. Menezes">
              <organization/>
            </author>
            <author initials="P." surname="v Oorschot" fullname="Paul van Oorschot">
              <organization/>
            </author>
            <author initials="S." surname="Vanstone" fullname="Scott Vanstone">
              <organization/>
            </author>
            <date year="1996"/>
          </front>
        </reference>
        <reference anchor="IDEA">
          <front>
            <title>On the design and security of block ciphers</title>
            <author initials="X." surname="Lai">
              <organization/>
            </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">
          <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="1993" month="May"/>
          </front>
          <seriesInfo name="ISO" value="Standard 10646-1"/>
        </reference>
        <reference anchor="JFIF">
          <front>
            <title>JPEG File Interchange Format (Version 1.02).</title>
            <author initials="E. H. M." surname="CA" fullname="Eric Hamilton, Milpitas, CA">
              <organization>C-Cube Microsystems</organization>
            </author>
            <date year="1996" month="September"/>
          </front>
        </reference>
        <reference anchor="PKCS5">
          <front>
            <title>PKCS #5 v2.0: Password-Based Cryptography Standard</title>
            <author>
              <organization>RSA Laboratories</organization>
            </author>
            <date year="1999" month="March" day="25"/>
          </front>
        </reference>
        <reference anchor="RFC1950">
          <front>
            <title>ZLIB Compressed Data Format Specification version 3.3</title>
            <author fullname="P. Deutsch" initials="P." surname="Deutsch"/>
            <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="RFC2045">
          <front>
            <title>Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="N. Borenstein" initials="N." surname="Borenstein"/>
            <date month="November" year="1996"/>
            <abstract>
              <t>This initial document specifies the various headers used to describe the structure of MIME messages. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2045"/>
          <seriesInfo name="DOI" value="10.17487/RFC2045"/>
        </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="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="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="October" year="2002"/>
            <abstract>
              <t>The purpose of this document is to make the AES Key Wrap algorithm 
conveniently available to the Internet community. The United States 
of America has adopted AES as the new encryption standard. The AES 
Key Wrap algorithm will probably be adopted by the USA for 
encryption of AES keys. The authors took most of the text in this 
document from the draft AES Key Wrap posted by NIST.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3394"/>
          <seriesInfo name="DOI" value="10.17487/RFC3394"/>
        </reference>
        <reference anchor="RFC3447">
          <front>
            <title>Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.1</title>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <date month="February" year="2003"/>
            <abstract>
              <t>This memo represents a republication of PKCS #1 v2.1 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series, and change control is retained within the PKCS process. The body of this document is taken directly from the PKCS #1 v2.1 document, with certain corrections made during the publication process. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3447"/>
          <seriesInfo name="DOI" value="10.17487/RFC3447"/>
        </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="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="RFC5870">
          <front>
            <title>A Uniform Resource Identifier for Geographic Locations ('geo' URI)</title>
            <author fullname="A. Mayrhofer" initials="A." surname="Mayrhofer"/>
            <author fullname="C. Spanring" initials="C." surname="Spanring"/>
            <date month="June" year="2010"/>
            <abstract>
              <t>This document specifies a Uniform Resource Identifier (URI) for geographic locations using the 'geo\' scheme name. A 'geo' URI identifies a physical location in a two- or three-dimensional coordinate reference system in a compact, simple, human-readable, and protocol-independent way. The default coordinate reference system used is the World Geodetic System 1984 (WGS-84). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5870"/>
          <seriesInfo name="DOI" value="10.17487/RFC5870"/>
        </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="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="RFC9580">
          <front>
            <title>OpenPGP</title>
            <author fullname="P. Wouters" initials="P." role="editor" surname="Wouters"/>
            <author fullname="D. Huigens" initials="D." surname="Huigens"/>
            <author fullname="J. Winter" initials="J." surname="Winter"/>
            <author fullname="Y. Niibe" initials="Y." surname="Niibe"/>
            <date month="July" year="2024"/>
            <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 RFCs 4880 ("OpenPGP Message Format"), 5581 ("The Camellia Cipher in OpenPGP"), and 6637 ("Elliptic Curve Cryptography (ECC) in OpenPGP").</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9580"/>
          <seriesInfo name="DOI" value="10.17487/RFC9580"/>
        </reference>
        <reference anchor="RFC9794">
          <front>
            <title>Terminology for Post-Quantum Traditional Hybrid Schemes</title>
            <author fullname="F. Driscoll" initials="F." surname="Driscoll"/>
            <author fullname="M. Parsons" initials="M." surname="Parsons"/>
            <author fullname="B. Hale" initials="B." surname="Hale"/>
            <date month="June" year="2025"/>
            <abstract>
              <t>One aspect of the transition to post-quantum algorithms in cryptographic protocols is the development of hybrid schemes that incorporate both post-quantum and traditional asymmetric algorithms. This document defines terminology for such schemes. It is intended to be used as a reference and, hopefully, to ensure consistency and clarity across different protocols, standards, and organisations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9794"/>
          <seriesInfo name="DOI" value="10.17487/RFC9794"/>
        </reference>
        <reference anchor="SCHNEIER">
          <front>
            <title>Applied Cryptography Second Edition: protocols, algorithms, and source code in C</title>
            <author initials="B." surname="Schneier" fullname="Bruce Schneier">
              <organization/>
            </author>
            <date year="1996"/>
          </front>
        </reference>
        <reference anchor="SP800-56A" target="https://doi.org/10.6028/NIST.SP.800-56Ar3">
          <front>
            <title>Recommendation for Pair-Wise Key Establishment Schemes Using Discrete Logarithm Cryptography</title>
            <author initials="E." surname="Barker">
              <organization/>
            </author>
            <author initials="D." surname="Johnson">
              <organization/>
            </author>
            <author initials="M." surname="Smid">
              <organization/>
            </author>
            <date year="2007" month="March"/>
          </front>
          <seriesInfo name="NIST Special Publication" value="800-56A Revision 1"/>
        </reference>
        <reference anchor="SP800-56C" target="https\://doi.org/10.6028/NIST.SP.800-56Cr2">
          <front>
            <title>Recommendation for Key-Derivation Methods in Key-Establishment Schemes</title>
            <author initials="E." surname="Barker">
              <organization/>
            </author>
            <author initials="L." surname="Chen">
              <organization/>
            </author>
            <author initials="R." surname="Davis">
              <organization/>
            </author>
            <date year="2020" month="August"/>
          </front>
          <seriesInfo name="NIST Special Publication" value="800-56C Revision 2"/>
        </reference>
        <reference anchor="SP800-185" target="https://doi.org/10.6028/NIST.SP.800-185">
          <front>
            <title>SHA-3 Derived Functions: cSHAKE, KMAC, TupleHash, and ParallelHash</title>
            <author initials="J." surname="Kelsey">
              <organization/>
            </author>
            <author initials="S." surname="Chang">
              <organization/>
            </author>
            <author initials="R." surname="Perlner">
              <organization/>
            </author>
            <date year="2016" month="December"/>
          </front>
          <seriesInfo name="NIST Special Publication" value="800-185"/>
        </reference>
        <reference anchor="SP800-186" target="https://doi.org/10.6028/NIST.SP.800-186">
          <front>
            <title>Recommendations for Discrete Logarithm-Based Cryptography: Elliptic Curve Domain Parameters</title>
            <author initials="L." surname="Chen">
              <organization/>
            </author>
            <author initials="D." surname="Moody">
              <organization/>
            </author>
            <author initials="A." surname="Regenscheid">
              <organization/>
            </author>
            <author initials="K." surname="Randal">
              <organization/>
            </author>
            <date year="2023" month="February"/>
          </front>
          <seriesInfo name="NIST Special Publication" value="800-186"/>
        </reference>
        <reference anchor="TWOFISH">
          <front>
            <title>The Twofish Encryption Algorithm</title>
            <author initials="B." surname="Schneier">
              <organization/>
            </author>
            <author initials="J." surname="Kelsey">
              <organization/>
            </author>
            <author initials="D." surname="Whiting">
              <organization/>
            </author>
            <author initials="D." surname="Wagner">
              <organization/>
            </author>
            <author initials="C." surname="Hall">
              <organization/>
            </author>
            <author initials="N." surname="Ferguson">
              <organization/>
            </author>
            <date year="1999"/>
          </front>
        </reference>
        <reference anchor="SP800-227" target="https\://doi.org/10.6028/NIST.SP.800-56Cr2">
          <front>
            <title>Recommendations for Key-Encapsulation Mechanisms</title>
            <author initials="" surname="Gorjan Alagic">
              <organization/>
            </author>
            <author initials="" surname="Elaine Barker">
              <organization/>
            </author>
            <author initials="" surname="Lily Chen">
              <organization/>
            </author>
            <author initials="" surname="Dustin Moody">
              <organization/>
            </author>
            <author initials="" surname="Angela Robinson">
              <organization/>
            </author>
            <author initials="" surname="Hamilton Silberg">
              <organization/>
            </author>
            <author initials="" surname="Noah Waller">
              <organization/>
            </author>
            <date year="2025" month="September"/>
          </front>
          <seriesInfo name="NIST Special Publication" value="800-227"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="BLEICHENBACHER">
          <front>
            <title>Generating ElGamal Signatures Without Knowing the Secret Key</title>
            <author initials="D." surname="Bleichenbacher">
              <organization/>
            </author>
            <date year="1996"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="Volume 1070, pp. 10-18"/>
        </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/>
            </author>
            <author initials="J." surname="Katz" fullname="Jonathan Katz">
              <organization/>
            </author>
            <author initials="B." surname="Schneier" fullname="Bruce Schneier">
              <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/>
            </author>
            <date year="1997"/>
          </front>
          <seriesInfo name="ISBN" value="0-387-96576-9"/>
        </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/>
            </author>
            <author initials="R." surname="Zuccherato" fullname="Robert Zuccherato">
              <organization/>
            </author>
            <date year="2005" month="February" day="08"/>
          </front>
          <seriesInfo name="IACR ePrint Archive" value="Report 2005/033"/>
        </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="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="SEC1">
          <front>
            <title>SEC 1: Elliptic Curve Cryptography</title>
            <author>
              <organization>Standards for Efficient Cryptography Group</organization>
            </author>
            <date year="2000" month="September"/>
          </front>
        </reference>
      </references>
    </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-eddsa-key">
        <name>Sample EdDSA 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 LibrePGP key is:</t>
        <artwork><![CDATA[
   C959 BDBA FA32 A2F8 9A15  3B67 8CFD E121 9796 5A9A
]]></artwork>
        <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>
        <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>
      </section>
      <section anchor="sample-eddsa-signature">
        <name>Sample EdDSA signature</name>
        <t>The signature is created using the sample key over the input data
"LibrePGP" on 2015-09-16 12:24:53 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>
        <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 01 00 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>
      </section>
      <section anchor="sample-ocb-encryption-and-decryption">
        <name>Sample OCB encryption and decryption</name>
        <t>Encryption is performed with the string 'Hello, world!',LF and
password 'password', using AES-128 with OCB encryption.</t>
        <section anchor="sample-parameters">
          <name>Sample Parameters</name>
          <t>S2K:</t>
          <artwork><![CDATA[
  type 3
]]></artwork>
          <t>Iterations:</t>
          <artwork><![CDATA[
  524288 (144), SHA2-256
]]></artwork>
          <t>Salt:</t>
          <artwork><![CDATA[
  9f0b7da3e5ea6477
]]></artwork>
        </section>
        <section anchor="sample-symmetric-key-encrypted-session-key-packet-v5">
          <name>Sample symmetric-key encrypted session key packet (v5)</name>
          <t>Packet header:</t>
          <artwork><![CDATA[
  c3 3d
]]></artwork>
          <t>Version, algorithms, S2K fields:</t>
          <artwork><![CDATA[
  05 07 02 03 08 9f 0b 7d a3 e5 ea 64 77 90
]]></artwork>
          <t>OCB IV:</t>
          <artwork><![CDATA[
  99 e3 26 e5 40 0a 90 93 6c ef b4 e8 eb a0 8c
]]></artwork>
          <t>OCB encrypted CEK:</t>
          <artwork><![CDATA[
  67 73 71 6d 1f 27 14 54 0a  38 fc ac 52 99 49 da
]]></artwork>
          <t>Authentication tag:</t>
          <artwork><![CDATA[
  c5 29 d3 de 31 e1 5b 4a eb  72 9e 33 00 33 db ed
]]></artwork>
        </section>
        <section anchor="starting-ocb-decryption-of-cek">
          <name>Starting OCB decryption of CEK</name>
          <t>The derived key is:</t>
          <artwork><![CDATA[
  eb 9d a7 8a 9d 5d f8 0e c7 02 05 96 39 9b 65 08
]]></artwork>
          <t>Authenticated Data:</t>
          <artwork><![CDATA[
  c3 05 07 02
]]></artwork>
          <t>Nonce:</t>
          <artwork><![CDATA[
  99 e3 26 e5 40 0a 90 93 6c ef b4 e8 eb a0 8c
]]></artwork>
          <t>Decrypted CEK:</t>
          <artwork><![CDATA[
  d1 f0 1b a3 0e 13 0a a7 d2 58 2c 16 e0 50 ae 44
]]></artwork>
        </section>
        <section anchor="sample-ocb-encrypted-data-packet">
          <name>Sample OCB Encrypted Data packet</name>
          <t>Packet header:</t>
          <artwork><![CDATA[
  d4 49
]]></artwork>
          <t>Version, AES-128, OCB, Chunk bits (14):</t>
          <artwork><![CDATA[
  01 07 02 0e
]]></artwork>
          <t>IV:</t>
          <artwork><![CDATA[
  5e d2 bc 1e 47 0a be 8f 1d 64 4c 7a 6c 8a 56
]]></artwork>
          <t>OCB Encrypted data chunk #0:</t>
          <artwork><![CDATA[
  7b 0f 77 01 19 66 11 a1  54 ba 9c 25 74 cd 05 62
  84 a8 ef 68 03 5c
]]></artwork>
          <t>Chunk #0 authentication tag:</t>
          <artwork><![CDATA[
  62 3d 93 cc 70 8a 43 21 1b b6 ea f2 b2 7f 7c 18
]]></artwork>
          <t>Final (zero-size chunk #1) authentication tag:</t>
          <artwork><![CDATA[
  d5 71 bc d8 3b 20 ad d3 a0 8b 73 af 15 b9 a0 98
]]></artwork>
        </section>
        <section anchor="decryption-of-data">
          <name>Decryption of data</name>
          <t>Starting OCB decryption of data, using the CEK.</t>
          <t>Chunk #0:</t>
          <t>Authenticated data:</t>
          <artwork><![CDATA[
  d4 01 07 02 0e 00 00 00 00 00 00 00 00
]]></artwork>
          <t>Nonce:</t>
          <artwork><![CDATA[
  5e d2 bc 1e 47 0a be 8f 1d 64 4c 7a 6c 8a 56
]]></artwork>
          <t>Decrypted chunk #0.</t>
          <t>Literal data packet with the string contents 'Hello, world!\n'.</t>
          <artwork><![CDATA[
  cb 14 62 00 00 00 00 00  48 65 6c 6c 6f 2c 20 77
  6f 72 6c 64 21 0a
]]></artwork>
          <t>Authenticating final tag:</t>
          <t>Authenticated data:</t>
          <artwork><![CDATA[
  d4 01 07 02 0e 00 00 00 00 00 00 00 01 00 00 00
  00 00 00 00 16
]]></artwork>
          <t>Nonce:</t>
          <artwork><![CDATA[
  5e d2 bc 1e 47 0a be 8f 1d 64 4c 7a 6c 8a 57
]]></artwork>
        </section>
        <section anchor="complete-ocb-encrypted-packet-sequence">
          <name>Complete OCB encrypted packet sequence</name>
          <t>Symmetric-key encrypted session key packet (v5):</t>
          <artwork><![CDATA[
  c3 3d 05 07 02 03 08 9f  0b 7d a3 e5 ea 64 77 90
  99 e3 26 e5 40 0a 90 93  6c ef b4 e8 eb a0 8c 67
  73 71 6d 1f 27 14 54 0a  38 fc ac 52 99 49 da c5
  29 d3 de 31 e1 5b 4a eb  72 9e 33 00 33 db ed
]]></artwork>
          <t>OCB Encrypted Data packet:</t>
          <artwork><![CDATA[
  d4 49 01 07 02 0e 5e d2  bc 1e 47 0a be 8f 1d 64
  4c 7a 6c 8a 56 7b 0f 77  01 19 66 11 a1 54 ba 9c
  25 74 cd 05 62 84 a8 ef  68 03 5c 62 3d 93 cc 70
  8a 43 21 1b b6 ea f2 b2  7f 7c 18 d5 71 bc d8 3b
  20 ad d3 a0 8b 73 af 15  b9 a0 98
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="ecc-point-compression-flag-bytes">
      <name>ECC Point compression flag bytes</name>
      <t>This specification introduces the new flag byte 0x40 to indicate the
point compression format.  The value has been chosen so that the high
bit is not cleared and thus to avoid accidental sign extension.  Two
other values might also be interesting for other ECC specifications:</t>
      <artwork><![CDATA[
  Flag  Description
  ----  -----------
  0x04  Standard flag for uncompressed format
  0x40  Native point format of the curve follows
  0x41  Only X coordinate follows.
  0x42  Only Y coordinate follows.
]]></artwork>
    </section>
    <section anchor="changes-since-rfc-4880">
      <name>Changes since RFC-4880</name>
      <ul spacing="normal">
        <li>Applied errata 2270, 2271, 2242, 3298.</li>
        <li>Added Camellia cipher from RFC 5581.</li>
        <li>Incorporated RFC 6637 (ECC for OpenPGP)</li>
        <li>Added draft-atkins-openpgp-device-certificates</li>
        <li>Added draft-koch-eddsa-for-openpgp-04</li>
        <li>Added Issuer Fingerprint signature subpacket.</li>
        <li>Added a v5 key and fingerprint format.</li>
        <li>Added OIDs for brainpool curves and Curve25519.</li>
        <li>Marked SHA2-256 as MUST implement.</li>
        <li>Marked Curve25519 and Ed25519 as SHOULD implement.</li>
        <li>Marked SHA-1 as SHOULD NOT be used to create messages.</li>
        <li>Marked MD5 as SHOULD NOT implement.</li>
        <li>Changed v5 key fingerprint format to full 32 octets.</li>
        <li>Added Literal Data Packet format octet <tt>m</tt>.</li>
        <li>Added Feature Flag for v5 key support.</li>
        <li>Added OCB Encrypted Data Packet.</li>
        <li>Removed notes on extending the MDC packet.</li>
        <li>Added v5 Symmetric-Key Encrypted Session Key packet.</li>
        <li>Added OCB encryption of secret keys.</li>
        <li>Added test vectors for OCB.</li>
        <li>Added the Restricted Encryption key flag.</li>
        <li>Deprecated the Symmetrically Encrypted Data Packet.</li>
        <li>Suggest limitation of the OCB chunksize to 128 MiB.</li>
        <li>Specified the V5 signature format.</li>
        <li>Deprectated the creation of V3 signatures.</li>
        <li>Adapted terms from RFC 8126.</li>
        <li>Removed editorial marks and updated cross-references.</li>
        <li>Added the timestamping usage key flag.</li>
        <li>Added Intended Recipient signature subpacket.</li>
        <li>Added Attested Certifications signature subpacket and signature class.</li>
        <li>Added Key Block signature subpacket.</li>
        <li>Added Literal Data Meta Hash subpacket.</li>
      </ul>
      <t>Changes since draft-koch-openpgp-2015-rfc4880bis-01:</t>
      <ul spacing="normal">
        <li>Changed Secret-Key Packet Format for OCB mode to include the
entire public key has additional data.</li>
        <li>Added Trust Alias subpacket.</li>
        <li>Added alternative OIDs for Ed25519 and Curve25519.</li>
      </ul>
      <t>Changes since draft-koch-openpgp-2015-rfc4880bis-02:</t>
      <ul spacing="normal">
        <li>Added ML-KEM parts from draft-wussler-openpgp-pqc-03.txt</li>
        <li>Changed name of the specification to LibrePGP.</li>
      </ul>
      <t>Changes since draft-koch-librepgp-00:</t>
      <ul spacing="normal">
        <li>Introduced the SOS data type as compatible specification for MPIs.</li>
        <li>Rework the ML-KEM key and PKESK algorithm specific parts to be
aligned with other algorithms</li>
        <li>Descriped the ML-KEM encryption process.  Compatible to
draft-wussler-openpgp-pqc-03.txt but with a changed fixed-info.</li>
      </ul>
      <t>Changes since draft-koch-librepgp-01:</t>
      <ul spacing="normal">
        <li>Switched to the final algorithm ID for Kyber.</li>
        <li>Drop the remains of support for V6 signatures.  (see commit
b1193e2216)</li>
        <li>Add a note on user and attribute ID requirements.</li>
      </ul>
      <t>Changes since draft-koch-librepgp-02:</t>
      <ul spacing="normal">
        <li>Drop the optional extended V4 fingerprint for a revocation key.</li>
        <li>Deprecate the experimental Attested Certifications subpacket.</li>
      </ul>
      <t>Changes since draft-koch-librepgp-05:</t>
      <ul spacing="normal">
        <li>Document reserved algorithm ids.</li>
        <li>Document additional use case of the Intended Recipient Fingerprint.</li>
      </ul>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>There have been a number of authors involved with the development of
the OpenPGP specification as described by RFC-4880, RFC-5581, and
RFC-6637:</t>
      <artwork><![CDATA[
  Jon Callas
  EMail: jon@callas.org

  Lutz Donnerhacke
  EMail: lutz@iks-jena.de

  Hal Finney

  David Shaw
  EMail: dshaw@jabberwocky.com

  Rodney Thayer
  EMail: rodney@canola-jones.com

  Andrey Jivsov
  EMail: Andrey_Jivsov@symantec.com
]]></artwork>
      <t>The work to update RFC-4880 was mainly conducted by the authors of
this document and the following authors:</t>
      <artwork><![CDATA[
  brian m. carlson
  Email: sandals@crustytoothpaste.net

  Derek Atkins
  Email: derek@ihtfp.com

  Daniel Kahn Gillmor
  Email: dkg@fifthhorseman.net
]]></artwork>
      <t>The PQC algorithm extension was conducted by the following authors:</t>
      <artwork><![CDATA[
  Stavros Kousidis
  Email: stavros.kousidis@bsi.bund.de

  Falko Strenzke
  Email: falko.strenzke@mtg.de

  Aron Wussler
  Email: aron@wussler.it
]]></artwork>
    </section>
  </back>
  <!-- ##markdown-source:
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
kAaRSdlUIId+nmFevbUeieGIkSZmK1Sda83unCV1zeG9CEcckbE5tdvBCYg+
R+KdkW2Cz2mU4Ds/EYLd4sS9Yi95EW8xjrZNpOeIDf9hG8kW4pDThwd4y+nr
ONuO47LOmWEK6IYo0M7K49Pxx5DPE+/QvQJpRsZXsmStv1L64ZcrG84nPCSI
6QP1m8Z1h/Crxp1IdWsqLXS0e7Trj7xLI9+k978RZDfy3mD6cm/w8uAQ/rsf
9cdfzuWfdabDQdGD2mfFiMKDZRcjO0/AJio/Nn20gzDvaeJ+S3DypUi9grmk
TEp1lsiDPdP5iBHg7QziKJbARt27vXw11DgRtrixNQLbdDaQzCfAaIY1FD5L
WLKmdAgdwjUAVMJ+DUuAzyQdPwaU41teTozNwuG6ThsOzsqCAcjOPi9AfvyV
zpcWtRFDEvFK65dwVnAgIM1iRKBcSKTevO7qwwcA6Oj30aSq/5NG/E7Wew3U
21rvs0jaXy/A0iJjrd7TWhmFqXqaQGpz6kqqaMaDmel09+vX1+/bFUZDHGnH
pg30p/mCv8G/8PgxBs7xlLVQ8PjZC3UorRFBT2O6gBqJedfIShfG6LdO0iMr
NVtWapejqRN/j/q7pfcZZk80BX/419+r79xDgBp4cV8/Ev1/RhXmK1bT2KXx
UPCV4yFGWQ4ZU6ikAFpkudh8xvEdFbfJYXFSz1jHqSacbz/tJF7oYWAhgK4/
IUXHcQzBizluEuJnr1NR3uQkOhzDN8UDq4HTAV+zE0z7mAzGh7uDw73J4Gi6
B9jWYOjdMV7k+MqOV6LKEfmG6Bu1JgaWaaDTp+RLydPpHuPXHnADdCNk0YWY
zoOw4gdfufNODmN3Jv4HqJeTc3QXk0ngcYyHNEuZfs50KQIUUaw4V7aBKiP6
1VPRuMvjvaiMF4TOdpGQP/btzg8cZxp4hIgijZGl72i+uihDPIkAR2bqBvPN
/dVojSfKCn5kLVjabfvVRJYeokLfBkeqZpEPb7C8AO1UFeJSDQt0lqygSjB3
sSB2n7HjSQRMI9CRCa4hTKNJELlv1+Ej+LxTgsHHCZuiM3IeZn6SL0mQTRcW
M3TZBMUxopPClxHruI79SajZdKKxivxtUPwZWzLM6m4YCSvO0UBojDSdSK36
YlGrMKPlgUVFwm+HWr7EmCuVLZzRR3kdolbnJwVbVoohrbjrJJkiA5DP1ZuE
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
f5I7If4soyff6W1xSiz2/wPJEkGpFLcDAA==

-->

</rfc>
