<?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-00" category="std" consensus="true" submissionType="IETF" obsoletes="4880, 5581, 6637" 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-00"/>
    <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="2023" month="November" day="29"/>
    <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 it is based
on: 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 newer algorithms and an advertency to
long-term stability and critical deployments.  It is formalized
in this document.</li>
          <li>OpenPGP - This is a term for security software that uses PGP 5
as a basis.</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 OpenPGP and LibrePGP and has been
developed along with the OpenPGP standard since 1997.</li>
          <li>RNP - Ribose Network PGP is a newer OpenPGP and LibrePGP
implemention and prominently used by the mail client Thunderbird.</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="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">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 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>MPI of an EC point representing an ephemeral public key.</li>
              <li>a one-octet size, followed by a symmetric key encoded using the
method described in <xref target="ecdh-algorithm"/>.</li>
            </ul>
            <t>
Algorithm-Specific Fields for ML-KEM (Kyber) encryption:
{Note: This part is not finalized and subject to change}  </t>
            <ul spacing="normal">
              <li>A fixed-length octet string representing an ECC ephemeral
public key in the format associated with the curve.  For
ML-KEM-768+X25519 these are 32 octets, for ML-KEM-1024+X448
these are 56 octets.</li>
              <li>A fixed-length octet string of the ML-KEM ciphertext, whose
length depends on the algorithm. For ML-KEM-768+X25519 these
are 1088 octets, for ML-KEM-1024+X448 these are 1568 octets.</li>
              <li>A one-octet algorithm identifier which must indicate one of
the AES algorithms (7, 8, or 9).</li>
              <li>a one-octet size, followed by a 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 or 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, 5, and 6 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.  Version 6 signature MAY be generated if larger
subpacket data needs to be used.  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>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).
</t>
              <t>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>
            </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, V5, and V6 Signature packet contains:</t>
          <ul spacing="normal">
            <li>One-octet version number.  This is 4 for V4 signatures,
5 for V5 signatures, and 6 vor V6 signature.</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.
For V6 signatures this is a four-octet field.  Note that this is
the length in octets of all of the hashed subpackets; a pointer
incremented by this number will skip over the hashed subpackets.</li>
            <li>Hashed subpacket data set (zero or more subpackets).</li>
            <li>Two-octet scalar octet count for the following unhashed subpacket
data.  For V6 signatures this is a four-octet field.  Note that
this is the length in octets of all of the unhashed subpackets; a
pointer incremented by this number will skip over the unhashed
subpackets.</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>Only for V6 signatures, a variable-length field containing:  </t>
              <ul spacing="normal">
                <li>A one-octet salt size.  If salted signatures are used the
value SHOULD match the digest length of the hash algorithm.
The common use case is not to use salted signatures.</li>
                <li>The salt; a random value of the specified size.</li>
              </ul>
            </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</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>
            <!-- FIXME: Does the 0x20 class really makes sense?  We can use it -->
<!-- only as a second subpacket because the exetdned fingerprint does -->
<!-- not allow to find the key.  What would the attack model be? -->
<t>V4 keys use the full 20 octet fingerprint; V4 keys with the Class
octet bit 0x20 set use the extended 32 octet v4 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.  Bit
0x20 is used as described above.  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>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>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>When a V6 signature with a salt is made, the salt is hashed first.</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 or V6 signature is made over a key, the hash
data starts with the octet 0x9a for V5 and 0x9b for V6,
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>
              </ul>
            </li>
          </ul>
          <!-- FIXME: The next is not in the crypto-refresh version for V6 Not
            sure what do do here - let it run into a conflict?  or use
            some other indicator.  The actual reason why we may want to
            implement support vor V6 is due to its support for huge
            subpackets.  -->
<artwork><![CDATA[
 - Only for document signatures (type 0x00 or 0x01) the following
   three data items are hashed here:
     - the one-octet content format,
     - the file name as a string (one octet length, followed by
       the file name),
     - a four-octet number that indicates a date,
 - the two octets 0x05 and 0xFF,
]]></artwork>
          <!-- FIXME: The crypto refresh uses 4 octets % 2^32 for V6.
            We could do the same if we want to V6  -->
<artwork><![CDATA[
 - 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.
]]></artwork>
          <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>
          <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 versions are 3 and 6.</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>
            <t>Only for V6 signatures, a variable-length field containing:  </t>
            <ul spacing="normal">
              <li>A one-octet salt size.  If salted signatures are used the value
SHOULD match the digest length of the hash algorithm.  The
common use case is not to use salted signatures.</li>
              <li>The salt; a random value of the specified size. The value MUST
match the salt field of the corresponding Signature packet.</li>
            </ul>
          </li>
          <li>Only for V3 signatures: an eight-octet number holding the Key ID
of the signing key.</li>
          <li>Only for V6 sigmatures: a one octet key version number and N octets
of the fingerprint of the signing key.  Note that the length N of
the fingerprint for a version 6 key is 32.</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 version 4 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>
              <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; values 0 and
0xFF are reserved for future extensions,</li>
                <li>the octets representing a curve OID, defined in
<xref target="ecc-curve-oid"/>;</li>
              </ul>
            </li>
            <li>a MPI of an EC point representing a public key.</li>
          </ul>
          <t>The secret key is this single multiprecision integer:</t>
          <ul spacing="normal">
            <li>MPI of an integer representing 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>
              <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; values 0 and
0xFF are reserved for future extensions,</li>
                <li>the octets representing a curve OID, defined in
<xref target="ecc-curve-oid"/>;</li>
              </ul>
            </li>
            <li>a MPI of 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>MPI of an integer 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>
              <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; values 0 and
0xFF are reserved for future extensions,</li>
                <li>the octets representing a curve OID, defined in
<xref target="ecc-curve-oid"/>;</li>
              </ul>
            </li>
            <li>a MPI of 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>MPI of an integer 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>{Note: This part is not finalized and subject to change}</t>
          <t>The public key is this series of values:</t>
          <ul spacing="normal">
            <li>A fixed-length octet string representing an ECC public key in the
format associated with the curve.  For ML-KEM-768+X25519 these are
32 octets, for ML-KEM-1024+X448 these are 56 octets.</li>
            <li>A fixed-length octet string containing the ML-KEM public key,
whose length depends on the algorithm.  For ML-KEM-768+X25519
these are 1184 octets, for ML-KEM-1024+X448 these are 1568 octets.</li>
          </ul>
          <t>The secret key is this series of values:</t>
          <ul spacing="normal">
            <li>A fixed-length octet string of the encoded secret scalar, whose
encoding and length depend on the algorithm.  For
ML-KEM-768+X25519 these are 32 octets, for ML-KEM-1024+X448 these
are 56 octets.</li>
            <li>A fixed-length octet string containing the ML-KEM secret key,
whose length depends on the algorithm.  For ML-KEM-768+X25519
these are 2400 octets, for ML-KEM-1024+X448 these are 3168 octets.</li>
          </ul>
          <t>Observe that the format of the ECC keys differ from the format used
with ECDH.  This has been chosen to avoid prefix octets.</t>
        </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.  It is a new
feature created for LibrePGP that addresses the problem of detecting a
modification to encrypted data.  It is used in combination with a
Modification Detection Code packet.</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 input to the hash
function includes the prefix data described above; it includes all of
the plaintext, and then also includes two octets of values 0xD3,
0x14.  These 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>This 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, 0x10,
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">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">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.102.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>
          </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>
      <t>{ FIXME: Also add forward references, like
  "The list of S2K specifier types is maintained by IANA as described in
   Section 10." }</t>
      <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 an LibrePGP 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. V3 keys are deprecated.  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 Attribute [Signature ...] ...]
   [[Subkey [Binding-Signature-Revocation]
           Primary-Key-Binding-Signature] ...]
]]></artwork>
        <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>
      </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 Multiprecision Integer (MPI) format.</t>
        <t>For an uncompressed point the content of the MPI 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 MPI 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 a specific point compression format.  To
indicate the use of this compression format and to make sure that the
key can be represented in the Multiprecision Integer (MPI) format the
octet string specifying the point is prefixed with the octet 0x40.
This encoding is an extension of the encoding given in <xref target="SEC1"/> which
uses 0x04 to indicate an uncompressed point.</t>
        <t>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>
      </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>{Note: This part is not finalized and subject to change}</t>
      <t>This section descripes algorithms and parameters used with
post-quantum cryptography.  Specifically, it defines composite
public-key encryption based on ML-KEM.</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.</t>
      </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.ipd">
          <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="2023" 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="September" year="2002"/>
          </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="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">
          <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="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>
      </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>Add ML-KEM parts from draft-wussler-openpgp-pqc-03.txt</li>
        <li>Changed name of the specification to LibrePGP.</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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
FjCeX3k8YzMe8BwLXi6GJuch4FAwXARBp8f8SHiuRmA9e9r79ugZZ57dgP5k
fFr0o7qxh/3tjrElYpjTu3lxjXB6B6/+enq2//S0h72gQo0vcZzE6e/IyRwE
XMCkL6ZXIvNPs3QJGlIPJtvLlstiiRz83J9oUFAwCSxznol60RGga549/f6o
I5rRGMRDfBcAJl5lE6MZJmJpStK3cFevHE4/9Xt1A/FVvkd/NZV4YU+9vosm
dhMLrmtOkstyA2yyLDkvFnJfiMqUHYg8gbijRwcHXLze2kRxKjG6r0wEwsQz
oQGn07rw237up4AhFQnhalfgoQERAowrP/9pAHd1IdVqFKODKdOvysRvEEbV
lCECJ9PGwWl/9OyoB98OeleDn38ZoRxx9Ox0335pHflo1vAjhTeT5qLppisE
0NCuHeRh05FRZ8YiLSlGKEmvihyE+xWD/fq+vIIkWZR5tfgmkxCkR1MWTwiu
hzo70H6RNwYWp5N0YSClAB/KPyQLcTXcGqhWtLPzAO2bxwcJ/G1w7lYIzDyR
8HyIPZrh7UdAaStMbtbF9ReK7MiW103nkJ8/RdRVP3gm7STOwyD9O0eICTK1
E+5WqICjUch0m8Hy6cnSuvasrKN0SZZ0J3Fm/ITZM5GjYgroHT0/eHF4RJIu
hVHQ3+9Yr2BHV83agOZ8yvFkdfGZb2Eu6nN1eGK9gSgyy/fB/c6eemUjuGco
Tdl/B1EQ75JeMhiIMooaAg/uCN4l7tSZ4ABtfss7wVoCDvUoaYVhEthli39P
BlvJU2qCSiWEVUDNJhzRf/CAumJjqncT3GlwlayKhfQ73Io042iYL0/tSP0r
8G29ZFvMVqIkwT9IYyqz9aToLf07ipnnVyKcQYWqOeFi4k4xmw2RZC9Pw0JD
Rg2kgkPanj+llIwsDXnQ21sm/Mpzk9MuK1k062dkZKDIUzEGivk1neu7KvsE
m2fnK/ZddRHy9vbfc4TJ+/4Qo0tO+RN++0wGubMlyiPfhHUSPzxqJvF7UVED
9RlCrz3ejQnNaKx4O7b8754dAj7TBClBx/rzL8SRtWNBGApGoWgNHQWJ1Gkp
EA2VurEkwVEkuoMugAfxct5z6U8sohKNwL/MN54UGYlVqJRdZu/TCVf4Zk+x
70SAPRzbRj+y/VDaIy91c54cscHmNyYIYM/r6WeDt8MzBC7godhTAhyazXl+
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
iPb7YpU3ST8hVa+1fM+z70wWFDj6pRp3zD/vWvo/UpymLtlVu1kusC3Mq+Y0
6ykg0Zb7tdToCmQSCDpi1arICvcQWwxCAr/1ZXLaHnWuluSru/vSIvZBHwFu
Rn1p5Jgc1M0r+uK1bKZe+XrV2NK5/6OP7+vH0/vcux9Ov798x/wwKpDSwsOu
aVZl2HDuf12cZoOz7ddtMm5IymlVGD2QtII9+nwBYstVWdwwGNGSIwJRe8zX
LUVGG6Mpj3x8ir+7Ew4PDozpdruP3w9Zv/NHbxV0+V/Yy6VeF/7C9u3tpb/Q
wxcglDVL5fJdXq1eul/q9asF/35Wb27s7h9229/cm3q9Bs6IpjJ9ZkVXX1Wf
m9NfynV+hhp4cvk7EgzarteI08kvb/IvZBde3+YPaQtFQz+9+iWf08g80Hp5
PCMrzB76UBfUBFmn+aMCOPxzG75EHV7Xq/yU+k56InryfF1s6Mm/VF+a+kv6
pFz6f3LpVfOIMorlQh6GHcx5ogCCSNEEG1cO0QFRsQJT6brw0CdO5tH55BlL
sq8VwBtBiOVWPx1zcKe5uzOgO8gENuv18o4728BKXTWvFlhVj9uarOH7nHTU
2RoOKB1akrPPpLxge6VPgxHh86vqdru8jwfnTb6uypX7Pr9duz9Xq9VdvWk9
9/nm1bJabm/RU9SZlNdhdN7/34soDBPqMnAAsz0sT381md9fSM277+tdUxVV
q9+NXD37rFdfzZvqbL5bF5GIvc1Xn2tqh/aI34JYyvNLXDtr9Nqru+1N9OD5
hrr7V1n+6WM5XXmliuGs2nb+P/MOwDJsiwMA

-->

</rfc>
