<?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 1.7.21 (Ruby 3.3.6) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-keytrans-mcmillion-protocol-02" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.24.0 -->
  <front>
    <title>Key Transparency Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-keytrans-mcmillion-protocol-02"/>
    <author fullname="Brendan McMillion">
      <organization/>
      <address>
        <email>brendanmcmillion@gmail.com</email>
      </address>
    </author>
    <author fullname="Felix Linker">
      <organization/>
      <address>
        <email>linkerfelix@gmail.com</email>
      </address>
    </author>
    <date year="2024" month="November" day="18"/>
    <area>SEC</area>
    <workgroup>KEYTRANS Working Group</workgroup>
    <abstract>
      <?line 66?>

<t>While there are several established protocols for end-to-end encryption,
relatively little attention has been given to securely distributing the end-user
public keys for such encryption. As a result, these protocols are often still
vulnerable to eavesdropping by active attackers. Key Transparency is a protocol
for distributing sensitive cryptographic information, such as public keys, in a
way that reliably either prevents interference or detects that it occurred in a
timely manner.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://Bren2010.github.io/draft-keytrans/draft-keytrans-mcmillion-protocol.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-keytrans-mcmillion-protocol/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/Bren2010/draft-keytrans"/>.</t>
    </note>
  </front>
  <middle>
    <?line 76?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>End-to-end encrypted communication services rely on the secure exchange of
public keys to ensure that messages remain confidential. It is typically assumed
that service providers correctly manage the public keys associated with each
user's account. However, this is not always true. A service provider that is
compromised or malicious can change the public keys associated with a user's
account without their knowledge, thereby allowing the provider to eavesdrop on
and impersonate that user.</t>
      <t>This document describes a protocol that enables a group of users to ensure that
they all have the same view of the public keys associated with each other's
accounts. Ensuring a consistent view allows users to detect when unauthorized
public keys have been associated with their account, indicating a potential
compromise.</t>
      <t>More detailed information about the protocol participants and the ways the
protocol can be deployed can be found in <xref target="I-D.ietf-keytrans-architecture"/>.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

<t>This document uses the TLS presentation language <xref target="RFC8446"/> to describe the
structure of protocol messages, but does not require the use of a specific
transport protocol. As such, implementations do not necessarily need to transmit
messages according to the TLS format and can chose whichever encoding method
best suits their application. However, cryptographic computations <bcp14>MUST</bcp14> be done
with the TLS presentation language format to ensure the protocol's security
properties are maintained.</t>
    </section>
    <section anchor="tree-construction">
      <name>Tree Construction</name>
      <t>A Transparency Log is a verifiable data structure that maps <em>label-version
pairs</em> to cryptographic keys or other structured data. Labels correspond to user
identifiers, and a new version of a label is created each time the label's
associated value changes. Transparency Logs have an <em>epoch</em> counter which is
incremented every time a new set of label-version pairs are added.</t>
      <figure>
        <name>An example log history. At epoch n the user with label X submits their first key k. As it is their first key, it is associated with version 0. At epoch n+1, user Y updates their key to l.</name>
        <artwork><![CDATA[
  Epoch   Update      Set of logged Label-Version Pairs
* n       X:0 -> k    { ..., X:0 }
* n+1     Y:3 -> l    { ..., X:0, Y:3 }
* n+2     Z:2 -> m    { ..., X:0, Y:3, Z:2 }
* n+3     X:1 -> n    { ..., X:0, Y:3, Z:2, X:1 }
]]></artwork>
      </figure>
      <t>KT uses a <em>prefix tree</em> to commit to a mapping between each label-version pair
and a commitment to the label's value at that version. Every time the prefix
tree changes, its new root hash is stored in a <em>log tree</em>. The benefit of the
prefix tree is that it is easily searchable, and the benefit of the log tree is
that it can easily be verified to be append-only. The data structure powering KT
combines a log tree and a prefix tree, and is called the <em>combined tree
structure</em>.</t>
      <t>This section describes the operation of
both prefix and log trees at a high level and the way that they're combined. More precise algorithms
for computing the intermediate and root values of the trees are given in
<xref target="cryptographic-computations"/>.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>Trees consist of
<em>nodes</em> which have a byte string as their <em>hash value</em>. A node is either a
<em>leaf</em> if it has no children, or a <em>parent</em>
if it has either a <em>left child</em> or a <em>right child</em>. A node is the <em>root</em> of a
tree if it has no parents, and an <em>intermediate</em> if it has both children and
parents. Nodes are <em>siblings</em> if they share the same parent.</t>
        <t>The <em>descendants</em> of a node are that node, its children, and the descendants of
its children. A <em>subtree</em> of a tree is the tree given by the descendants of a
particular node, called the <em>head</em> of the subtree.</t>
        <t>The <em>direct path</em> of a root node is the empty list, and of any other node is the
concatenation of that node's parent along with the parent's direct path. The
<em>copath</em> of a node is the node's sibling concatenated with the list of siblings
of all the nodes in its direct path, excluding the root.</t>
      </section>
      <section anchor="log-tree">
        <name>Log Tree</name>
        <t>Log trees are used for storing information in the chronological order that it
was added and are constructed as <em>left-balanced</em> binary trees.</t>
        <t>A binary tree is <em>balanced</em> if its size is a power of two and for any parent
node in the tree, its left and right subtrees have the same size. A binary tree
is <em>left-balanced</em> if for every parent, either the parent is balanced, or the
left subtree of that parent is the largest balanced subtree that could be
constructed from the leaves present in the parent's own subtree. Given a list of
<tt>n</tt> items, there is a unique left-balanced binary tree structure with these
elements as leaves. Note also that every parent always has both a left and right
child.</t>
        <figure>
          <name>A log tree containing five leaves.</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="256" width="272" viewBox="0 0 272 256" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 144,112 L 144,128" fill="none" stroke="black"/>
                <path d="M 240,48 L 240,64" fill="none" stroke="black"/>
                <path d="M 264,96 L 264,192" fill="none" stroke="black"/>
                <path d="M 160,64 L 248,64" fill="none" stroke="black"/>
                <path d="M 112,128 L 176,128" fill="none" stroke="black"/>
                <path d="M 104,176 L 112,192" fill="none" stroke="black"/>
                <path d="M 176,128 L 184,144" fill="none" stroke="black"/>
                <path d="M 200,176 L 208,192" fill="none" stroke="black"/>
                <path d="M 248,64 L 264,96" fill="none" stroke="black"/>
                <path d="M 80,192 L 88,176" fill="none" stroke="black"/>
                <path d="M 104,144 L 112,128" fill="none" stroke="black"/>
                <path d="M 152,80 L 160,64" fill="none" stroke="black"/>
                <path d="M 176,192 L 184,176" fill="none" stroke="black"/>
                <g class="text">
                  <text x="240" y="36">X</text>
                  <text x="144" y="100">X</text>
                  <text x="96" y="164">X</text>
                  <text x="192" y="164">X</text>
                  <text x="72" y="212">X</text>
                  <text x="120" y="212">X</text>
                  <text x="168" y="212">X</text>
                  <text x="216" y="212">X</text>
                  <text x="264" y="212">X</text>
                  <text x="28" y="244">Index:</text>
                  <text x="72" y="244">0</text>
                  <text x="120" y="244">1</text>
                  <text x="168" y="244">2</text>
                  <text x="216" y="244">3</text>
                  <text x="264" y="244">4</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                             X
                             |
                   .---------+.
                  /            \
                 X              |
                 |              |
             .---+---.          |
            /         \         |
           X           X        |
          / \         / \       |
         /   \       /   \      |
        X     X     X     X     X

Index:  0     1     2     3     4
]]></artwork>
          </artset>
        </figure>
        <t>Log trees initially consist of a single leaf node. New leaves are
added to the right-most edge of the tree along with a single parent node, to
construct the left-balanced binary tree with <tt>n+1</tt> leaves.</t>
        <figure>
          <name>Example of inserting a new leaf with index 5 into the previously depicted log tree. Observe that only the nodes on the path from the new root to the new leaf change.</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="256" width="320" viewBox="0 0 320 256" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 144,112 L 144,128" fill="none" stroke="black"/>
                <path d="M 240,48 L 240,64" fill="none" stroke="black"/>
                <path d="M 288,96 L 288,144" fill="none" stroke="black"/>
                <path d="M 160,64 L 272,64" fill="none" stroke="black"/>
                <path d="M 112,128 L 176,128" fill="none" stroke="black"/>
                <path d="M 104,176 L 112,192" fill="none" stroke="black"/>
                <path d="M 176,128 L 184,144" fill="none" stroke="black"/>
                <path d="M 200,176 L 208,192" fill="none" stroke="black"/>
                <path d="M 296,176 L 304,192" fill="none" stroke="black"/>
                <path d="M 272,64 L 288,96" fill="none" stroke="black"/>
                <path d="M 80,192 L 88,176" fill="none" stroke="black"/>
                <path d="M 104,144 L 112,128" fill="none" stroke="black"/>
                <path d="M 152,80 L 160,64" fill="none" stroke="black"/>
                <path d="M 176,192 L 184,176" fill="none" stroke="black"/>
                <path d="M 272,192 L 280,176" fill="none" stroke="black"/>
                <g class="text">
                  <text x="240" y="36">X</text>
                  <text x="144" y="100">X</text>
                  <text x="96" y="164">X</text>
                  <text x="192" y="164">X</text>
                  <text x="288" y="164">X</text>
                  <text x="72" y="212">X</text>
                  <text x="120" y="212">X</text>
                  <text x="168" y="212">X</text>
                  <text x="216" y="212">X</text>
                  <text x="264" y="212">X</text>
                  <text x="312" y="212">X</text>
                  <text x="28" y="244">Index:</text>
                  <text x="72" y="244">0</text>
                  <text x="120" y="244">1</text>
                  <text x="168" y="244">2</text>
                  <text x="216" y="244">3</text>
                  <text x="264" y="244">4</text>
                  <text x="312" y="244">5</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                             X
                             |
                   .---------+---.
                  /               \
                 X                 |
                 |                 |
             .---+---.             |
            /         \            |
           X           X           X
          / \         / \         / \
         /   \       /   \       /   \
        X     X     X     X     X     X

Index:  0     1     2     3     4     5
]]></artwork>
          </artset>
        </figure>
        <t>While leaves contain arbitrary data, the value of a parent node is always the
hash of the combined values of its left and right children.</t>
        <t>Log trees are powerful in that they can provide both <em>inclusion proofs</em>, which
demonstrate that a leaf is included in a log, and <em>consistency proofs</em>, which
demonstrate that a new version of a log is an extension of a past version of the
log.</t>
        <t>An inclusion proof is given by providing the copath values of a leaf. The proof
is verified by hashing together the leaf with the copath values and checking
that the result equals the root hash value of the log. Consistency proofs are a
more general version of the same idea. With a consistency proof, the prover
provides the minimum set of intermediate node values from the current tree that
allows the verifier to compute both the old root value and the current root
value. An algorithm for this is given in section 2.1.2 of <xref target="RFC6962"/>.</t>
        <figure>
          <name>Illustration of a proof of inclusion. To verify that leaf 2 is included in the tree, the server provides the client with the hashes of the nodes on its copath, i.e., all hashes that are required for the client to compute the root hash itself. In the figure, the copath consists of the nodes marked by (X).</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="256" width="320" viewBox="0 0 320 256" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 144,112 L 144,128" fill="none" stroke="black"/>
                <path d="M 240,48 L 240,64" fill="none" stroke="black"/>
                <path d="M 288,96 L 288,144" fill="none" stroke="black"/>
                <path d="M 160,64 L 272,64" fill="none" stroke="black"/>
                <path d="M 112,128 L 176,128" fill="none" stroke="black"/>
                <path d="M 104,176 L 112,192" fill="none" stroke="black"/>
                <path d="M 176,128 L 184,144" fill="none" stroke="black"/>
                <path d="M 200,176 L 212,200" fill="none" stroke="black"/>
                <path d="M 296,176 L 304,192" fill="none" stroke="black"/>
                <path d="M 272,64 L 288,96" fill="none" stroke="black"/>
                <path d="M 80,192 L 88,176" fill="none" stroke="black"/>
                <path d="M 104,144 L 112,128" fill="none" stroke="black"/>
                <path d="M 152,80 L 160,64" fill="none" stroke="black"/>
                <path d="M 176,192 L 184,176" fill="none" stroke="black"/>
                <path d="M 272,192 L 280,176" fill="none" stroke="black"/>
                <g class="text">
                  <text x="240" y="36">X</text>
                  <text x="144" y="100">X</text>
                  <text x="96" y="164">(X)</text>
                  <text x="200" y="164">X</text>
                  <text x="288" y="164">(X)</text>
                  <text x="72" y="212">X</text>
                  <text x="120" y="212">X</text>
                  <text x="168" y="212">X</text>
                  <text x="208" y="212">(X)</text>
                  <text x="256" y="212">X</text>
                  <text x="304" y="212">X</text>
                  <text x="28" y="244">Index:</text>
                  <text x="72" y="244">0</text>
                  <text x="120" y="244">1</text>
                  <text x="168" y="244">2</text>
                  <text x="216" y="244">3</text>
                  <text x="264" y="244">4</text>
                  <text x="312" y="244">5</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                             X
                             |
                   .---------+---.
                  /               \
                 X                 |
                 |                 |
             .---+---.             |
            /         \            |
          (X)           X         (X)
          / \         / \         / \
         /   \       /   \       /   \
        X     X     X   (X)    X     X

Index:  0     1     2     3     4     5
]]></artwork>
          </artset>
        </figure>
        <figure>
          <name>Illustration of a consistency proof. The server proves to the client that it correctly extended the tree by giving it the hashes of marked nodes ([X] / (X)). The client can verify that it can construct the old root hash from the hashes of nodes marked by (X), and that it can construct the new root hash when also considering the hash of the node [X].</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="256" width="328" viewBox="0 0 328 256" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 144,112 L 144,128" fill="none" stroke="black"/>
                <path d="M 240,48 L 240,64" fill="none" stroke="black"/>
                <path d="M 288,112 L 288,144" fill="none" stroke="black"/>
                <path d="M 160,64 L 280,64" fill="none" stroke="black"/>
                <path d="M 112,128 L 176,128" fill="none" stroke="black"/>
                <path d="M 104,176 L 112,192" fill="none" stroke="black"/>
                <path d="M 176,128 L 184,144" fill="none" stroke="black"/>
                <path d="M 200,176 L 208,192" fill="none" stroke="black"/>
                <path d="M 296,176 L 304,192" fill="none" stroke="black"/>
                <path d="M 280,64 L 296,96" fill="none" stroke="black"/>
                <path d="M 80,192 L 88,176" fill="none" stroke="black"/>
                <path d="M 104,144 L 112,128" fill="none" stroke="black"/>
                <path d="M 152,80 L 160,64" fill="none" stroke="black"/>
                <path d="M 176,192 L 184,176" fill="none" stroke="black"/>
                <path d="M 272,192 L 280,176" fill="none" stroke="black"/>
                <g class="text">
                  <text x="240" y="36">X</text>
                  <text x="144" y="100">(X)</text>
                  <text x="96" y="164">X</text>
                  <text x="192" y="164">X</text>
                  <text x="288" y="164">X</text>
                  <text x="72" y="212">X</text>
                  <text x="120" y="212">X</text>
                  <text x="168" y="212">X</text>
                  <text x="216" y="212">X</text>
                  <text x="264" y="212">(X)</text>
                  <text x="312" y="212">[X]</text>
                  <text x="28" y="244">Index:</text>
                  <text x="72" y="244">0</text>
                  <text x="120" y="244">1</text>
                  <text x="168" y="244">2</text>
                  <text x="216" y="244">3</text>
                  <text x="264" y="244">4</text>
                  <text x="312" y="244">5</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                             X
                             |
                   .---------+----.
                  /                \
                (X)                 |
                 |                 |
             .---+---.             |
            /         \            |
           X           X           X
          / \         / \         / \
         /   \       /   \       /   \
        X     X     X     X    (X)   [X]

Index:  0     1     2     3     4     5
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="prefix-tree">
        <name>Prefix Tree</name>
        <t>Prefix trees are used for storing key-value pairs, in a way that provides the
ability to efficiently prove that a search key's value was looked up correctly.</t>
        <t>Each leaf node in a prefix tree represents a specific key-value pair, while each parent
node represents some prefix which all search keys in the subtree headed by that node
have in common. The subtree headed by a parent's left child contains all search keys
that share its prefix followed by an additional 0 bit, while the subtree headed
by a parent's right child contains all search keys that share its prefix followed by
an additional 1 bit.</t>
        <t>The root node, in particular, represents the empty string as a prefix. The
root's left child contains all search keys that begin with a 0 bit, while the right
child contains all search keys that begin with a 1 bit.</t>
        <t>A prefix tree can be searched by starting at the root node, and moving to the
left child if the first bit of a search key is 0, or the right child if the first bit
is 1. This is then repeated for the second bit, third bit, and so on until the
search either terminates at a leaf node (which may or may not be for the desired
value), or a parent node that lacks the desired child.</t>
        <figure>
          <name>A prefix tree containing five entries.</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="240" width="296" viewBox="0 0 296 240" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 104,112 L 104,144" fill="none" stroke="black"/>
                <path d="M 176,48 L 176,64" fill="none" stroke="black"/>
                <path d="M 240,112 L 240,128" fill="none" stroke="black"/>
                <path d="M 272,160 L 272,192" fill="none" stroke="black"/>
                <path d="M 112,64 L 224,64" fill="none" stroke="black"/>
                <path d="M 216,128 L 256,128" fill="none" stroke="black"/>
                <path d="M 112,176 L 120,192" fill="none" stroke="black"/>
                <path d="M 208,176 L 216,192" fill="none" stroke="black"/>
                <path d="M 224,64 L 232,80" fill="none" stroke="black"/>
                <path d="M 256,128 L 272,160" fill="none" stroke="black"/>
                <path d="M 104,80 L 112,64" fill="none" stroke="black"/>
                <path d="M 88,192 L 96,176" fill="none" stroke="black"/>
                <path d="M 184,192 L 192,176" fill="none" stroke="black"/>
                <path d="M 208,144 L 216,128" fill="none" stroke="black"/>
                <g class="text">
                  <text x="176" y="36">X</text>
                  <text x="104" y="100">0</text>
                  <text x="240" y="100">1</text>
                  <text x="104" y="164">0</text>
                  <text x="200" y="164">0</text>
                  <text x="20" y="212">Key:</text>
                  <text x="80" y="212">00010</text>
                  <text x="128" y="212">00101</text>
                  <text x="176" y="212">10001</text>
                  <text x="224" y="212">10111</text>
                  <text x="272" y="212">11011</text>
                  <text x="28" y="228">Value:</text>
                  <text x="96" y="228">A</text>
                  <text x="144" y="228">B</text>
                  <text x="192" y="228">C</text>
                  <text x="240" y="228">D</text>
                  <text x="288" y="228">E</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                     X
                     |
             .-------+-----.
            /               \
            0                1
            |                |
            |             .--+-.
            |            /      \
            0           0        |
           / \         / \       |
          /   \       /   \      |
Key:   00010 00101 10001 10111 11011
Value:     A     B     C     D     E
]]></artwork>
          </artset>
        </figure>
        <t>New key-value pairs are added to the tree by searching it according to the same process.
If the search terminates at a parent without a left or right child, a new leaf
is simply added as the parent's missing child. If the search terminates at a
leaf for the wrong search key, one or more intermediate nodes are added until the new
leaf and the existing leaf would no longer reside in the same place. That is,
until we reach the first bit that differs between the new search key and the existing
search key.</t>
        <figure>
          <name>The previous prefix tree after adding the key-value pair: 01101 -&gt; F.</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="240" width="344" viewBox="0 0 344 240" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 144,112 L 144,128" fill="none" stroke="black"/>
                <path d="M 176,160 L 176,192" fill="none" stroke="black"/>
                <path d="M 216,48 L 216,64" fill="none" stroke="black"/>
                <path d="M 288,112 L 288,128" fill="none" stroke="black"/>
                <path d="M 320,160 L 320,192" fill="none" stroke="black"/>
                <path d="M 160,64 L 272,64" fill="none" stroke="black"/>
                <path d="M 120,128 L 160,128" fill="none" stroke="black"/>
                <path d="M 264,128 L 304,128" fill="none" stroke="black"/>
                <path d="M 112,176 L 120,192" fill="none" stroke="black"/>
                <path d="M 160,128 L 176,160" fill="none" stroke="black"/>
                <path d="M 256,176 L 264,192" fill="none" stroke="black"/>
                <path d="M 272,64 L 280,80" fill="none" stroke="black"/>
                <path d="M 304,128 L 320,160" fill="none" stroke="black"/>
                <path d="M 88,192 L 96,176" fill="none" stroke="black"/>
                <path d="M 112,144 L 120,128" fill="none" stroke="black"/>
                <path d="M 152,80 L 160,64" fill="none" stroke="black"/>
                <path d="M 232,192 L 240,176" fill="none" stroke="black"/>
                <path d="M 256,144 L 264,128" fill="none" stroke="black"/>
                <g class="text">
                  <text x="216" y="36">X</text>
                  <text x="144" y="100">0</text>
                  <text x="288" y="100">1</text>
                  <text x="104" y="164">0</text>
                  <text x="248" y="164">0</text>
                  <text x="28" y="212">Index:</text>
                  <text x="80" y="212">00010</text>
                  <text x="128" y="212">00101</text>
                  <text x="176" y="212">01101</text>
                  <text x="224" y="212">10001</text>
                  <text x="272" y="212">10111</text>
                  <text x="320" y="212">11011</text>
                  <text x="28" y="228">Value:</text>
                  <text x="96" y="228">A</text>
                  <text x="144" y="228">B</text>
                  <text x="192" y="228">F</text>
                  <text x="240" y="228">C</text>
                  <text x="288" y="228">D</text>
                  <text x="336" y="228">E</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                          X
                          |
                   .------+------.
                  /               \
                 0                 1
                 |                 |
              .--+-.            .--+-.
             /      \          /      \
            0        |        0        |
           / \       |       / \       |
          /   \      |      /   \      |
Index: 00010 00101 01101 10001 10111 11011
Value:     A     B     F     C     D     E
]]></artwork>
          </artset>
        </figure>
        <t>The value of a leaf node is the encoded key-value pair, while the value of a
parent node is the hash of the combined values of its left and right children
(or a stand-in value when one of the children doesn't exist).</t>
        <t>A proof of membership is given by providing the leaf hash value, along with the
hash value of each copath entry along the search path. A proof of non-membership
is given by providing an abridged proof of membership that follows the
path for the intended search key, but ends either at a stand-in node or a leaf for a
different search key. In either case, the proof is verified by hashing together the
leaf with the copath hash values and checking that the result equals the root
hash value of the tree.</t>
      </section>
      <section anchor="combined-tree">
        <name>Combined Tree</name>
        <t>Log trees are desirable because they can provide efficient consistency proofs to
assure verifiers that nothing has been removed from a log that was present in a
previous version. However, log trees can't be efficiently searched without
downloading the entire log. Prefix trees are efficient to search and can provide
inclusion proofs to convince verifiers that the returned search results are
correct. However, it's not possible to efficiently prove that a new version of a
prefix tree contains the same data as a previous version with only new values
added.</t>
        <t>In the combined tree structure, which is based on <xref target="Merkle2"/>, a prefix tree
contains a mapping where each label-version pair is a search key, and its
associated value is a cryptographic commitment to the label's new contents. A
log tree contains a record of each version of the prefix tree that's created.
With some caveats, this combined structure supports both efficient consistency
proofs and can be efficiently searched.</t>
        <t>Note that, although the Transparency Log maintains a single logical prefix tree,
each modification of this tree results in a new root hash, which is then stored
in the log tree. Therefore, when instructions refer to "looking up a label-version pair in the
prefix tree at a given log entry," this actually means searching in the specific
version of the prefix tree that corresponds to the root hash stored at that log
entry (where a "log entry" refers to a leaf of the log tree).</t>
        <figure>
          <name>An example evolution of the combined tree structure, following the example from the beginning of the section. At every epoch, a new leaf is added to a log tree, containing a change to a label's value and the updated prefix tree (PT).</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="176" width="624" viewBox="0 0 624 176" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 208,64 L 208,96" fill="none" stroke="black"/>
                <path d="M 232,96 L 232,144" fill="none" stroke="black"/>
                <path d="M 408,64 L 408,96" fill="none" stroke="black"/>
                <path d="M 464,96 L 464,128" fill="none" stroke="black"/>
                <path d="M 136,64 L 192,64" fill="none" stroke="black"/>
                <path d="M 224,64 L 392,64" fill="none" stroke="black"/>
                <path d="M 184,96 L 232,96" fill="none" stroke="black"/>
                <path d="M 352,96 L 464,96" fill="none" stroke="black"/>
                <path d="M 400,128 L 528,128" fill="none" stroke="black"/>
                <path d="M 120,64 L 140,104" fill="none" stroke="black"/>
                <path d="M 184,96 L 204,136" fill="none" stroke="black"/>
                <path d="M 352,96 L 372,136" fill="none" stroke="black"/>
                <path d="M 528,128 L 536,144" fill="none" stroke="black"/>
                <path d="M 100,104 L 120,64" fill="none" stroke="black"/>
                <path d="M 164,136 L 184,96" fill="none" stroke="black"/>
                <path d="M 332,136 L 352,96" fill="none" stroke="black"/>
                <path d="M 392,144 L 400,128" fill="none" stroke="black"/>
                <path d="M 100,104 L 140,104" fill="none" stroke="black"/>
                <path d="M 164,136 L 204,136" fill="none" stroke="black"/>
                <path d="M 332,136 L 372,136" fill="none" stroke="black"/>
                <circle cx="120" cy="64" r="6" class="opendot" fill="white" stroke="black"/>
                <circle cx="208" cy="64" r="6" class="opendot" fill="white" stroke="black"/>
                <circle cx="408" cy="64" r="6" class="opendot" fill="white" stroke="black"/>
                <g class="text">
                  <text x="24" y="36">Epoch</text>
                  <text x="120" y="36">n-1</text>
                  <text x="208" y="36">n</text>
                  <text x="408" y="36">n+1</text>
                  <text x="20" y="68">Root</text>
                  <text x="60" y="68">hash</text>
                  <text x="196" y="164">[X:0-&gt;k;</text>
                  <text x="268" y="164">h(PT_n)]</text>
                  <text x="348" y="164">[X:0-&gt;k;</text>
                  <text x="420" y="164">h(PT_n)]</text>
                  <text x="500" y="164">[Y:3-&gt;l;</text>
                  <text x="580" y="164">h(PT_n+1)]</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
Epoch        n-1         n                       n+1

Root hash     o -------- o ---------------------- o
             / \         |                        |
            /___\     .--+--.              .------+------.
                     / \    |             / \            |
                    /___\   |            /___\   .-------+-------.
                            |                   /                 \
                    [X:0->k; h(PT_n)]  [X:0->k; h(PT_n)]  [Y:3->l; h(PT_n+1)]
]]></artwork>
          </artset>
        </figure>
      </section>
    </section>
    <section anchor="searching-the-tree">
      <name>Searching the Tree</name>
      <t>When searching the combined tree structure described in <xref target="combined-tree"/>, the
proof provided by the Transparency Log may either be <strong>full</strong> or <strong>abridged</strong>. A
full proof must be provided if the deployment mode of the Transparency Log is
Contact Monitoring, or if the user has specifically requested it. Otherwise,
proofs are provided abridged.</t>
      <t>A full proof follows the path of a binary search for the first log entry where
the prefix tree contains the desired label-version pair.
This ensures that all users will check the same or
similar entries when searching for the same label, allowing for
efficient client-side auditing of the Transparency Log. The binary search uses
an <em>implicit binary search tree</em> constructed over the leaves of the log tree
(distinct from the structure of the log tree itself), which allows the search to
have a complexity logarithmic in the number of the log's leaves.</t>
      <t>An abridged proof skips this binary search, and simply looks at the most recent
version of the prefix tree to determine the commitment to
the update that the user is looking for. Abridged proofs rely on a third-party
auditor or manager that can be trusted not to collude with the Transparency Log,
and who checks that every version of the prefix tree is constructed correctly.
This is described in more detail in <xref target="putting-it-together"/>.</t>
      <section anchor="implicit-binary-search-tree">
        <name>Implicit Binary Search Tree</name>
        <t>Intuitively, the leaves of the log tree can be considered a flat array
representation of a binary tree. This structure is similar to the log tree, but
distinguished by the fact that not all parent nodes have two children. In this
representation, "leaf" nodes are stored in even-numbered indices, while
"intermediate" nodes are stored in odd-numbered indices:</t>
        <figure>
          <name>A binary tree constructed from 14 entries in a log</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="256" width="392" viewBox="0 0 392 256" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 144,112 L 144,128" fill="none" stroke="black"/>
                <path d="M 240,48 L 240,64" fill="none" stroke="black"/>
                <path d="M 336,112 L 336,128" fill="none" stroke="black"/>
                <path d="M 160,64 L 320,64" fill="none" stroke="black"/>
                <path d="M 112,128 L 176,128" fill="none" stroke="black"/>
                <path d="M 304,128 L 368,128" fill="none" stroke="black"/>
                <path d="M 104,176 L 112,192" fill="none" stroke="black"/>
                <path d="M 176,128 L 184,144" fill="none" stroke="black"/>
                <path d="M 200,176 L 208,192" fill="none" stroke="black"/>
                <path d="M 296,176 L 304,192" fill="none" stroke="black"/>
                <path d="M 320,64 L 328,80" fill="none" stroke="black"/>
                <path d="M 368,128 L 376,144" fill="none" stroke="black"/>
                <path d="M 80,192 L 88,176" fill="none" stroke="black"/>
                <path d="M 104,144 L 112,128" fill="none" stroke="black"/>
                <path d="M 152,80 L 160,64" fill="none" stroke="black"/>
                <path d="M 176,192 L 184,176" fill="none" stroke="black"/>
                <path d="M 272,192 L 280,176" fill="none" stroke="black"/>
                <path d="M 296,144 L 304,128" fill="none" stroke="black"/>
                <path d="M 368,192 L 376,176" fill="none" stroke="black"/>
                <g class="text">
                  <text x="240" y="36">X</text>
                  <text x="144" y="100">X</text>
                  <text x="336" y="100">X</text>
                  <text x="96" y="164">X</text>
                  <text x="192" y="164">X</text>
                  <text x="288" y="164">X</text>
                  <text x="384" y="164">X</text>
                  <text x="72" y="212">X</text>
                  <text x="120" y="212">X</text>
                  <text x="168" y="212">X</text>
                  <text x="216" y="212">X</text>
                  <text x="264" y="212">X</text>
                  <text x="312" y="212">X</text>
                  <text x="360" y="212">X</text>
                  <text x="28" y="244">Index:</text>
                  <text x="72" y="244">0</text>
                  <text x="96" y="244">1</text>
                  <text x="120" y="244">2</text>
                  <text x="144" y="244">3</text>
                  <text x="168" y="244">4</text>
                  <text x="192" y="244">5</text>
                  <text x="216" y="244">6</text>
                  <text x="240" y="244">7</text>
                  <text x="264" y="244">8</text>
                  <text x="288" y="244">9</text>
                  <text x="308" y="244">10</text>
                  <text x="332" y="244">11</text>
                  <text x="356" y="244">12</text>
                  <text x="380" y="244">13</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                             X
                             |
                   .---------+---------.
                  /                     \
                 X                       X
                 |                       |
             .---+---.               .---+---.
            /         \             /         \
           X           X           X           X
          / \         / \         / \         /
         /   \       /   \       /   \       /
        X     X     X     X     X     X     X

Index:  0  1  2  3  4  5  6  7  8  9 10 11 12 13
]]></artwork>
          </artset>
        </figure>
        <t>Following the structure of this binary tree when executing searches makes
auditing the Transparency Log much more efficient because users can easily
reason about which nodes will be accessed when conducting a search. As such,
only nodes along a specific search path need to be checked for correctness.</t>
        <t>The following Python code demonstrates the computations used for following this
tree structure:</t>
        <sourcecode type="python"><![CDATA[
# The exponent of the largest power of 2 less than x. Equivalent to:
#   int(math.floor(math.log(x, 2)))
def log2(x):
    if x == 0:
        return 0
    k = 0
    while (x >> k) > 0:
        k += 1
    return k-1

# The level of a node in the tree. Leaves are level 0, their parents
# are level 1, etc. If a node's children are at different levels,
# then its level is the max level of its children plus one.
def level(x):
    if x & 0x01 == 0:
        return 0
    k = 0
    while ((x >> k) & 0x01) == 1:
        k += 1
    return k

# The root index of a search if the log has `n` entries.
def root(n):
    return (1 << log2(n)) - 1

# The left child of an intermediate node.
def left(x):
    k = level(x)
    if k == 0:
        raise Exception('leaf node has no children')
    return x ^ (0x01 << (k - 1))

# The right child of an intermediate node.
def right(x, n):
    k = level(x)
    if k == 0:
        raise Exception('leaf node has no children')
    x = x ^ (0x03 << (k - 1))
    while x >= n:
        x = left(x)
    return x
]]></sourcecode>
        <t>The <tt>root</tt> function returns the index in the log at which a search should
start. The <tt>left</tt> and <tt>right</tt> functions determine the subsequent index to be
accessed, depending on whether the search moves left or right.</t>
        <t>For example, in a search where the log has 50 entries, instead of starting the
search at the typical "middle" entry of <tt>50/2 = 25</tt>, users would start at entry
<tt>root(50) = 31</tt>. If the next step in the search is to move right, the next index
to access would be <tt>right(31, 50) = 47</tt>. As more entries are added to the log,
users will consistently revisit entries 31 and 47, while they may never revisit
entry 25 after even a single new entry is added to the log.</t>
      </section>
      <section anchor="binary-ladder">
        <name>Binary Ladder</name>
        <t>When executing searches on a Transparency Log, the implicit tree described in
<xref target="implicit-binary-search-tree"/> is navigated according to a binary search. At
each individual log entry, the binary search needs to determine whether it
should move left or right. That is, it needs to determine, out of the set of
label-version pairs stored in the prefix tree, whether the highest version of a
label that's present at a given log entry is greater than, equal to, or less
than a target version.</t>
        <t>A <strong>binary ladder</strong> is a series of lookups in a single log entry's prefix tree,
which is used to establish whether the target version of a label is present or
not. It consists of the following lookups, stopping after the first lookup that
produces a proof of non-inclusion:</t>
        <ol spacing="normal" type="1"><li>
            <t>First, version <tt>x</tt> of the label is looked up, where <tt>x</tt> is consecutively higher
powers of two minus one (0, 1, 3, 7, ...). This is repeated until <tt>x</tt> is the
largest such value less than or equal to the target version.</t>
          </li>
          <li>
            <t>Second, the largest <tt>x</tt> that was looked up is retained, and consecutively
smaller powers of two are added to it until it equals the target version.
Each time a power of two is added, this version of the label is looked up.</t>
          </li>
        </ol>
        <t>As an example, if the target version of a label to lookup is 20, a binary ladder
would consist of the following versions: 0, 1, 3, 7, 15, 19, 20. If all of the
lookups succeed (i.e., result in proofs of inclusion), this indicates that the
target version of the label exists in the log. If the ladder stops early because a
proof of non-inclusion was produced, this indicates that the target version of
the label did not exist, as of the given log entry.</t>
        <t>When executing a search in a Transparency Log for a specific version of a label, a
binary ladder is provided for each node on the search path, verifiably guiding
the search toward the log entry where the desired label-version pair was first
inserted (and therefore, the log entry with the desired update).</t>
        <t>Requiring proof that this series of versions are present in the prefix tree,
instead of requesting proof of just version 20, ensures that all users are able
to agree on which version of the label is <em>most recent</em>, which is discussed
further in the next section.</t>
      </section>
      <section anchor="most-recent-version">
        <name>Most Recent Version</name>
        <t>Often, users wish to search for the "most recent" version of a label. That is, the
label with the highest version possible.</t>
        <t>To determine this, users request a <strong>full binary ladder</strong> for each
node on the <strong>frontier</strong> of the log. The frontier consists of the root node of a
search, followed by the entries produced by repeatedly calling <tt>right</tt> until
reaching the last entry of the log. Using the same example of a search where the
log has 50 entries, the frontier would be entries: 31, 47, 49.</t>
        <t>A full binary ladder is similar to the binary ladder discussed in the previous
section, except that it identifies the exact highest version of a label that
exists, as of a particular log entry, rather than stopping at a target version.
It consists of the following lookups:</t>
        <ol spacing="normal" type="1"><li>
            <t>First, version <tt>x</tt> of the label is looked up, where <tt>x</tt> is a consecutively
higher power of two minus one (0, 1, 3, 7, ...). This is repeated until the
first proof of non-inclusion is produced.</t>
          </li>
          <li>
            <t>Once the first proof of non-inclusion is produced, a binary search is
conducted between the highest version that was proved to be included, and the
version that was proved to not be included. Each step of the binary search
produces either a proof of inclusion or non-inclusion, which guides the
search left or right, until it terminates.</t>
          </li>
        </ol>
        <t>For the purpose of finding the highest version possible, requesting a full
binary ladder for each entry along the frontier is functionally the same as
doing so for only the last log entry. However, inspecting the entire frontier
allows the user to verify that the search path leading to the last log entry
represents a monotonic series of version increases, which minimizes
opportunities for log misbehavior.</t>
        <t>Once the user has verified that the frontier lookups are monotonic and
determined the highest version, the user then continues a binary search for this
specific version.</t>
      </section>
      <section anchor="putting-it-together">
        <name>Putting it Together</name>
        <t>As noted at the beginning of the section, a search in the tree will either
require producing a full proof, or an abridged proof may be accepted if the user
can trust a third-party to audit and not collude with the Transparency Log.</t>
        <t>The steps for producing a full or abridged search proof are summarized as
follows:</t>
        <ul spacing="normal">
          <li>
            <t>Full proof:
            </t>
            <ul spacing="normal">
              <li>
                <t>If searching for the most recent version of a label, a full binary ladder
is obtained for each node on the frontier of the log. This determines the
highest version of the label available, which allows the search to proceed
for this specific version.</t>
              </li>
              <li>
                <t>If searching for a specific version, the proof follows a binary search for
the first entry in the log where this version of the label exists. For
each step in the binary search, the proof contains a (non-full) binary
ladder for the targeted version, which proves whether the targeted version
of the label existed yet or not by this point in the log. This indicates
whether the binary search should move forwards or backwards in the log.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Abridged proof:
            </t>
            <ul spacing="normal">
              <li>
                <t>If searching for the most recent version of a label, a full binary ladder is
obtained only from the last (most recent) entry of the log. The prefix tree
entry for the most recent version of the label will contain the commitment to the
update, ending the search.</t>
              </li>
              <li>
                <t>If searching for a specific version, a (non-full) binary ladder for this
version is obtained only from the last entry of the log. Similar to the
previous case, the prefix tree entry for the targeted version will contain
the commitment to the update.</t>
              </li>
            </ul>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="monitoring-the-tree">
      <name>Monitoring the Tree</name>
      <t>As new entries are added to the log tree, the search path that's traversed to
find a specific version of a label may change. New intermediate nodes may become
established in between the search root and the leaf, or a new search root may be
created. The goal of monitoring a label is to efficiently ensure that, when these
new parent nodes are created, they're created correctly so that searches for the
same versions continue converging to the same entries in the log.</t>
      <t>To monitor a given label, users maintain a small amount of state: a map
from a position in the log to a version counter. The version counter is the
highest version of the label that's been proven to exist at that log
position. Users initially populate this map by setting the position of an entry
they've looked up, to map to the version of the label stored in that entry. A map
may track several different versions of a label simultaneously, if a user
has been shown different versions of the same label.</t>
      <t>To update this map, users receive the most recent tree head from the server and
follow these steps, for each entry in the map:</t>
      <ol spacing="normal" type="1"><li>
          <t>Compute the entry's direct path (in terms of the Implicit Binary Search Tree)
based on the current tree size.</t>
        </li>
        <li>
          <t>If there are no entries in the direct path that are to the right of the
current entry, then skip updating this entry (there's no new information to
update it with).</t>
        </li>
        <li>
          <t>For each entry in the direct path that's to the right of the current entry,
from low to high:
          </t>
          <ol spacing="normal" type="1"><li>
              <t>Receive and verify a binary ladder from that log entry, for the version
currently in the map. This proves that, at the indicated log entry, the
highest version present is greater than or equal to the
previously-observed version.</t>
            </li>
            <li>
              <t>If the above check was successful, remove the current position-version
pair from the map and replace it with a position-version pair
corresponding to the entry in the log that was just checked.</t>
            </li>
          </ol>
        </li>
      </ol>
      <t>This algorithm progressively moves up the tree as new intermediate/root nodes
are established and verifies that they're constructed correctly. Note that users
can often execute this process with the output of Search or Update operations
for a label, without waiting to make explicit Monitor queries.</t>
      <t>It is also worth noting that the work required to monitor several versions of
the same label scales sublinearly, due to the fact that the direct paths of the
different versions will often intersect. Intersections reduce the total number
of entries in the map and therefore the amount of work that will be needed to
monitor the label from then on.</t>
      <t>Finally, unlike searching, there is no abridged version of monitoring.</t>
    </section>
    <section anchor="ciphersuites">
      <name>Ciphersuites</name>
      <t>Each Transparency Log uses a single fixed ciphersuite, chosen when the log is
initially created, that specifies the following primitives to be used for
cryptographic computations:</t>
      <ul spacing="normal">
        <li>
          <t>A hash algorithm</t>
        </li>
        <li>
          <t>A signature algorithm</t>
        </li>
        <li>
          <t>A Verifiable Random Function (VRF) algorithm</t>
        </li>
      </ul>
      <t>The hash algorithm is used for computing the intermediate and root values of
hash trees. The signature algorithm is used for signatures from both the service
operator and the third party, if one is present. The VRF is used for preserving
the privacy of labels. One of the VRF algorithms from <xref target="RFC9381"/> must be
used.</t>
      <t>Ciphersuites are represented with the CipherSuite type. The ciphersuites are
defined in <xref target="kt-ciphersuites"/>.</t>
    </section>
    <section anchor="cryptographic-computations">
      <name>Cryptographic Computations</name>
      <section anchor="verifiable-random-function">
        <name>Verifiable Random Function</name>
        <t>Each label-version pair created in a log will have a unique
representation in the prefix tree. This is computed by providing the combined
label and version as inputs to the VRF:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  opaque label<0..2^8-1>;
  uint32 version;
} VrfInput;
]]></sourcecode>
        <t>The VRF's output evaluated on <tt>VrfInput</tt> is the concrete value inserted into the
prefix tree.</t>
      </section>
      <section anchor="commitment">
        <name>Commitment</name>
        <t>As discussed in <xref target="combined-tree"/>, commitments are stored in the leaves of the
log tree and correspond to updates. Commitments are computed
with HMAC <xref target="RFC2104"/>, using the hash function specified by the ciphersuite. To
produce a new commitment, the application generates a random 16 byte value
called <tt>opening</tt> and computes:
<!-- TODO Opening size should be determined by ciphersuite -->
        </t>
        <sourcecode type="pseudocode"><![CDATA[
commitment = HMAC(fixedKey, CommitmentValue)
]]></sourcecode>
        <t>where <tt>fixedKey</tt> is the 16 byte hex-decoded value:</t>
        <artwork><![CDATA[
d821f8790d97709796b4d7903357c3f5
]]></artwork>
        <!-- TODO This is weird but nobody has ever said anything. Keep it? Do better? -->

<t>and CommitmentValue is specified as:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  opaque opening<16>;
  opaque label<0..2^8-1>;
  UpdateValue update;
} CommitmentValue;
]]></sourcecode>
        <t>This fixed key allows the HMAC function, and thereby the commitment scheme, to
be modeled as a random oracle. The <tt>label</tt> field of CommitmentValue
contains the label being updated
and the <tt>update</tt> field contains the new value for the label.</t>
        <t>The output value <tt>commitment</tt> may be published, while <tt>opening</tt> should be kept
private until the commitment is meant to be revealed.</t>
      </section>
      <section anchor="prefix-tree-1">
        <name>Prefix Tree</name>
        <t>The leaf nodes of a prefix tree are serialized as:</t>
        <sourcecode type="tls"><![CDATA[
struct {
    opaque vrf_output<VRF.Nh>;
    uint64 update_index;
} PrefixLeaf;
]]></sourcecode>
        <t>where <tt>vrf_output</tt> is the VRF output for the label-version pair, <tt>VRF.Nh</tt> is the
output size of the ciphersuite VRF in bytes, and <tt>update_index</tt> is the index of
the log tree's leaf committing to the respective value, i.e., the log tree's
<tt>tree_size</tt> just after the respective label-version pair was inserted minus one.</t>
        <t>The parent nodes of a prefix tree are serialized as:</t>
        <sourcecode type="tls"><![CDATA[
struct {
  opaque value<Hash.Nh>;
} PrefixParent;
]]></sourcecode>
        <t>where <tt>Hash.Nh</tt> is the output length of the ciphersuite hash function. The value
of a parent node is computed by hashing together the values of its left and
right children:</t>
        <sourcecode type="pseudocode"><![CDATA[
parent.value = Hash(0x01 ||
                   nodeValue(parent.leftChild) ||
                   nodeValue(parent.rightChild))

nodeValue(node):
  if node.type == emptyNode:
    return 0 // all-zero vector of length Hash.Nh
  else if node.type == leafNode:
    return Hash(0x00 || node.vrf_output || node.update_index)
  else if node.type == parentNode:
    return node.value
]]></sourcecode>
        <t>where <tt>Hash</tt> denotes the ciphersuite hash function.</t>
      </section>
      <section anchor="crypto-log-tree">
        <name>Log Tree</name>
        <t>The leaf and parent nodes of a log tree are serialized as:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  opaque commitment<Hash.Nh>;
  opaque prefix_tree<Hash.Nh>;
} LogLeaf;

struct {
  opaque value<Hash.Nh>;
} LogParent;
]]></sourcecode>
        <t>The <tt>commitment</tt> field contains the output of evaluating HMAC on
<tt>CommitmentValue</tt>, as described in <xref target="commitment"/>. The <tt>prefix_tree</tt> field
contains the root hash of the prefix tree, after inserting a new label-version
pair for the <tt>label</tt> in <tt>CommitmentValue</tt>.</t>
        <t>The value of a parent node is computed by hashing together the values of its
left and right children:</t>
        <sourcecode type="pseudocode"><![CDATA[
parent.value = Hash(hashContent(parent.leftChild) ||
                    hashContent(parent.rightChild))

hashContent(node):
  if node.type == leafNode:
    return 0x00 || nodeValue(node)
  else if node.type == parentNode:
    return 0x01 || nodeValue(node)

nodeValue(node):
  if node.type == leafNode:
    return Hash(node.commitment || node.prefix_tree)
  else if node.type == parentNode:
    return node.value
]]></sourcecode>
      </section>
      <section anchor="tree-head-signature">
        <name>Tree Head Signature</name>
        <t>The head of a Transparency Log, which represents the log's most recent state, is
represented as:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  uint64 tree_size;
  opaque signature<0..2^16-1>;
} TreeHead;
]]></sourcecode>
        <t>where <tt>tree_size</tt> counts the number of entries in the log tree. If the
Transparency Log is deployed with Third-party Management then the public key
used to verify the signature belongs to the third-party manager; otherwise the
public key used belongs to the service operator.</t>
        <t>The signature itself is computed over a <tt>TreeHeadTBS</tt> structure, which
incorporates the log's current state as well as long-term log configuration:</t>
        <sourcecode type="tls-presentation"><![CDATA[
enum {
  reserved(0),
  contactMonitoring(1),
  thirdPartyManagement(2),
  thirdPartyAuditing(3),
  (255)
} DeploymentMode;

struct {
  CipherSuite ciphersuite;
  DeploymentMode mode;
  opaque signature_public_key<0..2^16-1>;
  opaque vrf_public_key<0..2^16-1>;

  select (Configuration.mode) {
    case contactMonitoring:
    case thirdPartyManagement:
      opaque leaf_public_key<0..2^16-1>;
    case thirdPartyAuditing:
      opaque auditor_public_key<0..2^16-1>;
  };
} Configuration;

struct {
  Configuration config;
  uint64 tree_size;
  opaque root<Hash.Nh>;
} TreeHeadTBS;
]]></sourcecode>
      </section>
    </section>
    <section anchor="tree-proofs">
      <name>Tree Proofs</name>
      <section anchor="log-tree-1">
        <name>Log Tree</name>
        <t>An inclusion proof for a single leaf in a log tree is given by providing the
copath values of a leaf. Similarly, a bulk inclusion proof for any number of
leaves is given by providing the fewest node values that can be hashed together
with the specified leaves to produce the root value. Such a proof is encoded as:</t>
        <sourcecode type="tls-presentation"><![CDATA[
opaque NodeValue<Hash.Nh>;

struct {
  NodeValue elements<0..2^16-1>;
} InclusionProof;
]]></sourcecode>
        <t>Each <tt>NodeValue</tt> is a uniform size, computed by passing the relevant <tt>LogLeaf</tt>
or <tt>LogParent</tt> structures through the <tt>nodeValue</tt> function in
<xref target="crypto-log-tree"/>. The contents of the <tt>elements</tt> array is kept in
left-to-right order: if a node is present in the root's left subtree, its value
must be listed before any values provided from nodes that are in the root's
right subtree, and so on recursively.</t>
        <t>Consistency proofs are encoded similarly:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  NodeValue elements<0..2^8-1>;
} ConsistencyProof;
]]></sourcecode>
        <t>Again, each <tt>NodeValue</tt> is computed by passing the relevant <tt>LogLeaf</tt> or
<tt>LogParent</tt> structure through the <tt>nodeValue</tt> function. The nodes chosen
correspond to those output by the algorithm in Section 2.1.2 of <xref target="RFC6962"/>.</t>
      </section>
      <section anchor="prefix-tree-2">
        <name>Prefix Tree</name>
        <t>A proof from a prefix tree authenticates that a set of values are either members
of, or are not members of, the total set of values represented by the prefix
tree. Such a proof is encoded as:</t>
        <sourcecode type="tls"><![CDATA[
enum {
  reserved(0),
  inclusion(1),
  nonInclusionLeaf(2),
  nonInclusionParent(3),
} PrefixSearchResultType;

struct {
  PrefixSearchResultType result_type;
  select (PrefixSearchResult.result_type) {
    case inclusion:
      uint64 update_index;
    case nonInclusionLeaf:
      PrefixLeaf leaf;
  };
  uint8 depth;
} PrefixSearchResult;

struct {
  PrefixSearchResult results<0..2^8-1>;
  NodeValue elements<0..2^16-1>;
} PrefixProof;
]]></sourcecode>
        <t>The <tt>results</tt> field contains the search result for each individual value. It is
sorted lexicographically by corresponding value. The <tt>result_type</tt> field of each
<tt>PrefixSearchResult</tt> struct indicates what the terminal node of the search for
that value was:</t>
        <ul spacing="normal">
          <li>
            <t><tt>inclusion</tt> for a leaf node matching the requested value.</t>
          </li>
          <li>
            <t><tt>nonInclusionLeaf</tt> for a leaf node not matching the requested value. In this
case, the terminal node's value is provided given that it can not be inferred.</t>
          </li>
          <li>
            <t><tt>nonInclusionParent</tt> for a parent node that lacks the desired child.</t>
          </li>
        </ul>
        <t>The <tt>depth</tt> field indicates the depth of the terminal node of the search, and is
provided to assist proof verification.</t>
        <t>The <tt>elements</tt> array consists of the fewest node values that can be hashed
together with the provided leaves to produce the root. The contents of the
<tt>elements</tt> array is kept in left-to-right order: if a node is present in the
root's left subtree, its value must be listed before any values provided from
nodes that are in the root's right subtree, and so on recursively. In the event
that a node is not present, an all-zero byte string of length <tt>Hash.Nh</tt> is
listed instead.</t>
        <t>The proof is verified by hashing together the provided elements, in the
left/right arrangement dictated by the tree structure, and checking that the
result equals the root value of the prefix tree.</t>
      </section>
      <section anchor="proof-combined-tree">
        <name>Combined Tree</name>
        <section anchor="proofs-for-contact-monitoring">
          <name>Proofs for Contact Monitoring</name>
          <t>A proof from a combined log and prefix tree follows the execution of a binary
search through the leaves of the log tree, as described in <xref target="combined-tree"/>. It
is serialized as follows:</t>
          <sourcecode type="tls-presentation"><![CDATA[
struct {
  opaque proof<VRF.Np>;
} VRFProof;

struct {
  PrefixProof prefix_proof;
  opaque commitment<Hash.Nh>;
} ProofStep;

struct {
  optional<uint32> version;
  VRFProof vrf_proofs<0..2^8-1>;
  ProofStep steps<0..2^8-1>;
  InclusionProof inclusion;
} SearchProof;
]]></sourcecode>
          <t>If searching for the most recent version of a label, the most recent version is
provided in <tt>version</tt>. If searching for a specific version, this field is
omitted.</t>
          <t>Each element of <tt>vrf_proofs</tt> contains the output of evaluating the VRF on a
different version of the label. The versions chosen correspond either to
the binary ladder described in <xref target="binary-ladder"/> (when searching for a specific
version of a label), or to the full binary ladder described in
<xref target="most-recent-version"/> (when searching for the most recent version of a label).
The proofs are sorted from lowest version to highest version.</t>
          <t>Each <tt>ProofStep</tt> structure in <tt>steps</tt> is one log entry that was inspected as
part of the binary search. The first step corresponds to the "middle" leaf of
the log tree (calculated with the <tt>root</tt> function in
<xref target="implicit-binary-search-tree"/>). From there, each subsequent step moves left or
right in the tree, according to the procedure discussed in <xref target="binary-ladder"/> and
<xref target="most-recent-version"/>.</t>
          <t>The <tt>prefix_proof</tt> field of a <tt>ProofStep</tt> is the output of executing a binary
ladder, excluding any ladder steps for which a proof of inclusion is expected,
and a proof of inclusion was already provided in a previous <tt>ProofStep</tt> for a
log entry to the left of the current one.</t>
          <t>The <tt>commitment</tt> field of a <tt>ProofStep</tt> contains the commitment to the update at
that leaf. The <tt>inclusion</tt> field of <tt>SearchProof</tt> contains a batch inclusion
proof for all of the leaves accessed by the binary search.</t>
          <t>The proof can be verified by checking that:</t>
          <ol spacing="normal" type="1"><li>
              <t>The elements of <tt>steps</tt> represent a monotonic series over the leaves of the
log, and</t>
            </li>
            <li>
              <t>The <tt>steps</tt> array has the expected number of entries (no more or less than
are necessary to execute the binary search).
<!-- TODO Specify this verification in MUCH more detail -->
              </t>
            </li>
          </ol>
          <t>Once the validity of the search steps has been established, the verifier can
compute the root of each prefix tree represented by a <tt>prefix_proof</tt> and combine
it with the corresponding <tt>commitment</tt> to obtain the value of each leaf. These
leaf values can then be combined with the proof in <tt>inclusion</tt> to check that the
output matches the root of the log tree.</t>
        </section>
        <section anchor="proofs-for-third-party-auditing">
          <name>Proofs for Third-Party Auditing</name>
          <t>In third-party auditing, clients can rely on the assumption that the prefix tree
is monitored to be append-only. Therefore, they need not execute the binary
ladder but the proof can directly jump to the index identified by the prefix
tree leaf.</t>
          <sourcecode type="tls-presentation"><![CDATA[
struct {
  optional<uint32> version;
  VRFProof vrf_proofs<0..2^8-1>;
  PrefixProof prefix_proof;
  InclusionProof inclusion;
} SearchProofCompact;
]]></sourcecode>
          <t>The semantics of the <tt>version</tt> field do not change.</t>
          <t>Similarly to <tt>SearchProof</tt>, <tt>vrf_proofs</tt> contains the output of evaluating the
VRF on a different version of the label. Either one version will be included
(when requesting a specific version) or the versions to verify the full binary
ladder (when requesting the latest version).</t>
          <t><tt>prefix_proof</tt> contains the proof to either verify the inclusion of the
label-version pair (when requesting a specific version) or to verify the full
binary ladder (when requesting the latest version). Both types of proofs are for
the most recent prefix tree.</t>
          <t><tt>inclusion</tt> contains a batch inclusion of the most recent leaf and the leaf that
commits to respective value for the request label-version pair. The most recent
leaf is needed to obtain the prefix tree's root hash, and the leaf committing to
the requested value will be at the index identified in the most recent prefix
tree.</t>
        </section>
      </section>
    </section>
    <section anchor="update-format">
      <name>Update Format</name>
      <t>The updates committed to by a combined tree structure contain the new value of a
label, along with additional information depending on the deployment mode
of the Transparency Log. They are serialized as follows:</t>
      <sourcecode type="tls-presentation"><![CDATA[
struct {
  select (Configuration.mode) {
    case thirdPartyManagement:
      opaque signature<0..2^16-1>;
  };
} UpdatePrefix;

struct {
  UpdatePrefix prefix;
  opaque value<0..2^32-1>;
} UpdateValue;
]]></sourcecode>
      <t>The <tt>value</tt> field contains the new value associated with the label.</t>
      <t>In the event that third-party management is used, the <tt>prefix</tt> field contains a
signature from the service operator, using the public key from
<tt>Configuration.leaf_public_key</tt>, over the following structure:</t>
      <sourcecode type="tls-presentation"><![CDATA[
struct {
  opaque label<0..2^8-1>;
  uint32 version;
  opaque value<0..2^32-1>;
} UpdateTBS;
]]></sourcecode>
      <t>The <tt>label</tt> field contains the label being updated, <tt>version</tt> contains the new
version, and <tt>value</tt> contains the same contents as <tt>UpdateValue.value</tt>. Clients
<bcp14>MUST</bcp14> successfully verify this signature before consuming <tt>UpdateValue.value</tt>.</t>
    </section>
    <section anchor="user-operations">
      <name>User Operations</name>
      <t>The basic user operations are organized as a request-response protocol between a
user and the Transparency Log operator.</t>
      <t>Users <bcp14>MUST</bcp14> retain the most recent <tt>TreeHead</tt> they've successfully
verified as part of any query response, and populate the <tt>last</tt> field of any
query request with the <tt>tree_size</tt> from this <tt>TreeHead</tt>. This ensures that all
operations performed by the user return consistent results.</t>
      <sourcecode type="tls-presentation"><![CDATA[
struct {
  TreeHead tree_head;
  optional<ConsistencyProof> consistency;
  select (Configuration.mode) {
    case thirdPartyAuditing:
      AuditorTreeHead auditor_tree_head;
  };
} FullTreeHead;
]]></sourcecode>
      <t>If <tt>last</tt> is present, then the Transparency Log <bcp14>MUST</bcp14> provide a consistency proof
between the current tree and the tree when it was this size, in the
<tt>consistency</tt> field of <tt>FullTreeHead</tt>.</t>
      <section anchor="search">
        <name>Search</name>
        <!-- TODO: Update to cover different deployment modes -->

<t>Users initiate a Search operation by submitting a SearchRequest to the
Transparency Log containing the label that they're interested in. Users can
optionally specify a version of the label that they'd like to receive, if not the
most recent one.</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  optional<uint32> last;

  opaque label<0..2^8-1>;
  optional<uint32> version;
} SearchRequest;
]]></sourcecode>
        <t>In turn, the Transparency Log responds with a SearchResponse structure:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  FullTreeHead full_tree_head;

  SearchProof search;
  opaque opening<16>;
  UpdateValue value;
} SearchResponse;
]]></sourcecode>
        <t>Users verify a search response by following these steps:</t>
        <ol spacing="normal" type="1"><li>
            <t>Evaluate the search proof in <tt>search</tt> according to the steps in
<xref target="proof-combined-tree"/>. This will produce a verdict as to whether the search
was executed correctly and also a candidate root value for the tree. If it's
determined that the search was executed incorrectly, abort with an error.</t>
          </li>
          <li>
            <t>With the candidate root value for the tree, verify the given <tt>FullTreeHead</tt>.</t>
          </li>
          <li>
            <t>Verify that the commitment in the terminal search step opens to
<tt>SearchResponse.value</tt> with opening <tt>SearchResponse.opening</tt>.</t>
          </li>
        </ol>
        <t>Depending on the deployment mode of the Transparency Log, the <tt>value</tt> field may
or may not require additional verification, specified in <xref target="update-format"/>,
before its contents may be consumed.</t>
      </section>
      <section anchor="update">
        <name>Update</name>
        <t>Users initiate an Update operation by submitting an UpdateRequest to the
Transparency Log containing the new label and value to store.</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  optional<uint32> last;

  opaque label<0..2^8-1>;
  opaque value<0..2^32-1>;
} UpdateRequest;
]]></sourcecode>
        <t>If the request passes application-layer policy checks, the Transparency Log adds
a new label-version pair to the prefix tree, followed by adding a new entry to
the log tree with the associated value and updated prefix tree root. It returns
an UpdateResponse structure:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  FullTreeHead full_tree_head;

  SearchProof search;
  opaque opening<16>;
  UpdatePrefix prefix;
} UpdateResponse;
]]></sourcecode>
        <t>Users verify the UpdateResponse as if it were a SearchResponse for the most
recent version of <tt>label</tt>. To aid verification, the update response
provides the <tt>UpdatePrefix</tt> structure necessary to reconstruct the
<tt>UpdateValue</tt>.</t>
      </section>
      <section anchor="monitor">
        <name>Monitor</name>
        <!-- TODO: Update to cover different deployment modes -->

<t>Users initiate a Monitor operation by submitting a MonitorRequest to the
Transparency Log containing information about the labels they wish to monitor.</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  opaque label<0..2^8-1>;
  uint32 highest_version;
  uint64 entries<0..2^8-1>;
} MonitorLabel;

struct {
  optional<uint32> last;

  MonitorLabel owned_labels<0..2^8-1>;
  MonitorLabel contact_labels<0..2^8-1>;
} MonitorRequest;
]]></sourcecode>
        <t>Users include each of the labels that they own in <tt>owned_labels</tt>. If the
Transparency Log is deployed with Contact Monitoring (or simply if the user
wants a higher degree of confidence in the log), they also include any labels
they've looked up in <tt>contact_labels</tt>.</t>
        <t>Each <tt>MonitorLabel</tt> structure contains the label being monitored in <tt>label</tt>,
the highest version of the label that the user has observed in <tt>highest_version</tt>,
and a list of <tt>entries</tt> in the log tree corresponding to the keys of the map
described in <xref target="monitoring-the-tree"/>.</t>
        <t>The Transparency Log verifies the MonitorRequest by following these steps, for
each <tt>MonitorLabel</tt> structure:</t>
        <ol spacing="normal" type="1"><li>
            <t>Verify that the requested labels in <tt>owned_labels</tt> and <tt>contact_labels</tt> are all
distinct.</t>
          </li>
          <li>
            <t>Verify that the user owns every label in <tt>owned_labels</tt>, and is allowed (or was
previously allowed) to lookup every label in <tt>contact_labels</tt>, based on the
application's policy.</t>
          </li>
          <li>
            <t>Verify that the <tt>highest_version</tt> for each label is less than or equal to the
most recent version of each label.</t>
          </li>
          <li>
            <t>Verify that each <tt>entries</tt> array is sorted in ascending order, and that all
entries are within the bounds of the log.</t>
          </li>
          <li>
            <t>Verify each entry lies on the direct path of different versions of the label.</t>
          </li>
        </ol>
        <t>If the request is valid, the Transparency Log responds with a MonitorResponse
structure:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  uint32 version;
  VRFProof vrf_proofs<0..2^8-1>;
  ProofStep steps<0..2^8-1>;
} MonitorProof;

struct {
  FullTreeHead full_tree_head;
  MonitorProof owned_proofs<0..2^8-1>;
  MonitorProof contact_proofs<0..2^8-1>;
  InclusionProof inclusion;
} MonitorResponse;
]]></sourcecode>
        <t>The elements of <tt>owned_proofs</tt> and <tt>contact_proofs</tt> correspond one-to-one with
the elements of <tt>owned_labels</tt> and <tt>contact_labels</tt>. Each <tt>MonitorProof</tt> in
<tt>contact_proofs</tt> is meant to convince the user that the label they looked up is
still properly included in the log and has not been surreptitiously concealed.
Each <tt>MonitorProof</tt> in <tt>owned_proofs</tt> conveys the same guarantee that no past
lookups have been concealed, and also proves that <tt>MonitorProof.version</tt> is the
most recent version of the label.</t>
        <t>The <tt>version</tt> field of a <tt>MonitorProof</tt> contains the version that was used for
computing the binary ladder, and therefore the highest version of the label that
will be proven to exist. The <tt>vrf_proofs</tt> field contains VRF proofs for
different versions of the label, starting at the first version that's
different between the binary ladders for <tt>MonitorLabel.highest_version</tt> and
<tt>MonitorProof.version</tt>.</t>
        <t>The <tt>steps</tt> field of a <tt>MonitorProof</tt> contains the proofs required to update the
user's monitoring data following the algorithm in <xref target="monitoring-the-tree"/>. That is, each
<tt>ProofStep</tt> of a <tt>MonitorProof</tt> contains a binary ladder for the version
<tt>MonitorProof.version</tt>. The steps are provided in the order that they're
consumed by the monitoring algorithm. If same proof is consumed by the
monitoring algorithm multiple times, it is provided in the <tt>MonitorProof</tt>
structure only the first time.</t>
        <t>For <tt>MonitorProof</tt> structures in <tt>owned_labels</tt>, it is also important to prove
that <tt>MonitorProof.version</tt> is the highest version of the label available. This
means that such a <tt>MonitorProof</tt> must contains full binary ladders for
<tt>MonitorProof.version</tt> along the frontier of the log. As such, any <tt>ProofStep</tt>
under the <tt>owned_labels</tt> field that's along the frontier of the log includes a
full binary ladder for <tt>MonitorProof.version</tt> instead of a regular binary
ladder. For additional entries on the frontier of the log that are to the right
of the leftmost frontier entry already provided, an additional <tt>ProofStep</tt> is
added to <tt>MonitorProof</tt>. This additional <tt>ProofStep</tt> contains only the proofs of
non-inclusion from a full binary ladder.</t>
        <t>Users verify a MonitorResponse by following these steps:</t>
        <ol spacing="normal" type="1"><li>
            <t>Verify that the lengths of <tt>owned_proofs</tt> and <tt>contact_proofs</tt> are the same
as the lengths of <tt>owned_labels</tt> and <tt>contact_labels</tt>.</t>
          </li>
          <li>
            <t>For each <tt>MonitorProof</tt> structure, verify that <tt>MonitorProof.version</tt> is
greater than or equal to the highest version of the label that's been
previously observed.</t>
          </li>
          <li>
            <t>For each <tt>MonitorProof</tt> structure, evalute the monitoring algorithm in
<xref target="monitoring-the-tree"/>. Abort with an error if the monitoring algorithm detects that
the tree is constructed incorrectly, or if there are fewer or more steps
provided than would be expected (keeping in mind that extra steps may be
provided along the frontier of the log, if a <tt>MonitorProof</tt> is a member of
<tt>owned_labels</tt>).</t>
          </li>
          <li>
            <t>Construct a candidate root value for the tree by combining the
<tt>PrefixProof</tt> and commitment of <tt>ProofStep</tt>, with the provided inclusion
proof.</t>
          </li>
          <li>
            <t>With the candidate root value, verify the provided <tt>FullTreeHead</tt>.</t>
          </li>
        </ol>
        <t>Some information is omitted from MonitorResponse in the interest of efficiency,
due to the fact that the user would have already seen and verified it as part of
conducting other queries. In particular, VRF proofs for different versions of
each label are not provided, given that these can be cached from the
original Search or Update query.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <!-- TODO Security -->
<!-- TODO Say that transport layer should be encrypted, provide auth -->

</section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document requests the creation of the following new IANA registries:</t>
      <ul spacing="normal">
        <li>
          <t>KT Ciphersuites (<xref target="kt-ciphersuites"/>)</t>
        </li>
      </ul>
      <t>All of these registries should be under a heading of "Key Transparency",
and assignments are made via the Specification Required policy <xref target="RFC8126"/>. See
<xref target="de"/> for additional information about the KT Designated Experts (DEs).</t>
      <t>RFC EDITOR: Please replace XXXX throughout with the RFC number assigned to
this document</t>
      <section anchor="kt-ciphersuites">
        <name>KT Ciphersuites</name>
        <sourcecode type="tls-presentation"><![CDATA[
uint16 CipherSuite;
]]></sourcecode>
        <!-- TODO -->

</section>
      <section anchor="de">
        <name>KT Designated Expert Pool</name>
        <!-- TODO -->

</section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="I-D.ietf-keytrans-architecture">
          <front>
            <title>Key Transparency Architecture</title>
            <author fullname="Brendan McMillion" initials="B." surname="McMillion">
         </author>
            <date day="26" month="August" year="2024"/>
            <abstract>
              <t>   This document defines the terminology and interaction patterns
   involved in the deployment of Key Transparency (KT) in a general
   secure group messaging infrastructure, and specifies the security
   properties that the protocol provides.  It also gives more general,
   non-prescriptive guidance on how to securely apply KT to a number of
   common applications.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-keytrans-architecture-02"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC6962">
          <front>
            <title>Certificate Transparency</title>
            <author fullname="B. Laurie" initials="B." surname="Laurie"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="E. Kasper" initials="E." surname="Kasper"/>
            <date month="June" year="2013"/>
            <abstract>
              <t>This document describes an experimental protocol for publicly logging the existence of Transport Layer Security (TLS) certificates as they are issued or observed, in a manner that allows anyone to audit certificate authority (CA) activity and notice the issuance of suspect certificates as well as to audit the certificate logs themselves. The intent is that eventually clients would refuse to honor certificates that do not appear in a log, effectively forcing CAs to add all issued certificates to the logs.</t>
              <t>Logs are network services that implement the protocol operations for submissions and queries that are defined in this document.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6962"/>
          <seriesInfo name="DOI" value="10.17487/RFC6962"/>
        </reference>
        <reference anchor="RFC9381">
          <front>
            <title>Verifiable Random Functions (VRFs)</title>
            <author fullname="S. Goldberg" initials="S." surname="Goldberg"/>
            <author fullname="L. Reyzin" initials="L." surname="Reyzin"/>
            <author fullname="D. Papadopoulos" initials="D." surname="Papadopoulos"/>
            <author fullname="J. Včelák" initials="J." surname="Včelák"/>
            <date month="August" year="2023"/>
            <abstract>
              <t>A Verifiable Random Function (VRF) is the public key version of a keyed cryptographic hash. Only the holder of the secret key can compute the hash, but anyone with the public key can verify the correctness of the hash. VRFs are useful for preventing enumeration of hash-based data structures. This document specifies VRF constructions based on RSA and elliptic curves that are secure in the cryptographic random oracle model.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9381"/>
          <seriesInfo name="DOI" value="10.17487/RFC9381"/>
        </reference>
        <reference anchor="RFC2104">
          <front>
            <title>HMAC: Keyed-Hashing for Message Authentication</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="M. Bellare" initials="M." surname="Bellare"/>
            <author fullname="R. Canetti" initials="R." surname="Canetti"/>
            <date month="February" year="1997"/>
            <abstract>
              <t>This document describes HMAC, a mechanism for message authentication using cryptographic hash functions. HMAC can be used with any iterative cryptographic hash function, e.g., MD5, SHA-1, in combination with a secret shared key. The cryptographic strength of HMAC depends on the properties of the underlying hash function. 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="2104"/>
          <seriesInfo name="DOI" value="10.17487/RFC2104"/>
        </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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="CONIKS" target="https://eprint.iacr.org/2014/1004">
          <front>
            <title>CONIKS: Bringing Key Transparency to End Users</title>
            <author initials="M. S." surname="Melara" fullname="Marcela S. Melara">
              <organization/>
            </author>
            <author initials="A." surname="Blankstein" fullname="Aaron Blankstein">
              <organization/>
            </author>
            <author initials="J." surname="Bonneau" fullname="Joseph Bonneau">
              <organization/>
            </author>
            <author initials="E. W." surname="Felten" fullname="Edward W. Felten">
              <organization/>
            </author>
            <author initials="M. J." surname="Freedman" fullname="Michael J. Freedman">
              <organization/>
            </author>
            <date year="2014" month="April" day="27"/>
          </front>
        </reference>
        <reference anchor="SEEMLess" target="https://eprint.iacr.org/2018/607">
          <front>
            <title>SEEMless: Secure End-to-End Encrypted Messaging with less trust</title>
            <author initials="M." surname="Chase" fullname="Melissa Chase">
              <organization/>
            </author>
            <author initials="A." surname="Deshpande" fullname="Apoorvaa Deshpande">
              <organization/>
            </author>
            <author initials="E." surname="Ghosh" fullname="Esha Ghosh">
              <organization/>
            </author>
            <author initials="H." surname="Malvai" fullname="Harjasleen Malvai">
              <organization/>
            </author>
            <date year="2018" month="June" day="18"/>
          </front>
        </reference>
        <reference anchor="OPTIKS" target="https://eprint.iacr.org/2023/1515">
          <front>
            <title>OPTIKS: An Optimized Key Transparency System</title>
            <author initials="J." surname="Len" fullname="Julia Len">
              <organization/>
            </author>
            <author initials="M." surname="Chase" fullname="Melissa Chase">
              <organization/>
            </author>
            <author initials="E." surname="Ghosh" fullname="Esha Ghosh">
              <organization/>
            </author>
            <author initials="K." surname="Laine" fullname="Kim Laine">
              <organization/>
            </author>
            <author initials="R. C." surname="Moreno" fullname="Radames Cruz Moreno">
              <organization/>
            </author>
            <date year="2023" month="October" day="04"/>
          </front>
        </reference>
        <reference anchor="Merkle2" target="https://eprint.iacr.org/2021/453">
          <front>
            <title>Merkle^2: A Low-Latency Transparency Log System</title>
            <author initials="Y." surname="Hu" fullname="Yuncong Hu">
              <organization/>
            </author>
            <author initials="K." surname="Hooshmand" fullname="Kian Hooshmand">
              <organization/>
            </author>
            <author initials="H." surname="Kalidhindi" fullname="Harika Kalidhindi">
              <organization/>
            </author>
            <author initials="S. J." surname="Yang" fullname="Seung Jin Yang">
              <organization/>
            </author>
            <author initials="R. A." surname="Popa" fullname="Raluca Ada Popa">
              <organization/>
            </author>
            <date year="2021" month="April" day="08"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 1383?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <!-- TODO acknowledge. -->

</section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+19aXcbx7Xg9/oV9eRzRiQDQCS12KZtZWQtsWLJ0khyYs97
eUYTaJAdAt1Id4MUIyu/ZX7L/LK5a9Wt7gZJJXk5c86Mji2RQHctt+6+1Xg8
dm3RLvMjf+v7/NK/q7OyWWd1Xs4u/eu6aqtZtbzlZlmbn1T15ZFv2rlz82pW
Zit4Z15ni3Z8ll+2+N54NVsVy2VRleO1vDreP3TN5nhVNA183F6u4aXnT989
c+dH/q6DebIj//bpY3dR1WcndbVZH/nvn/787s2jH976P8JnRXnif4efu/O8
3ORHzvuToj3dHMN6v4VVHu4f7N9JV3ELnlnCepsWnjlt23VzdOeOPjvhtydF
1XnrzrVbmZy2KwCFyzbtaVXDSsYwkfeLzXLJwKAFzbPSv5y95Hdv0RP5KiuW
8PUxfx1G/u8n+MVkVq1uDQz2LF8W7/2LojzL63ScJX22wO/tEK6s6lXWFucA
JVeUi/ib949f/fD8+7dHNEyb1Sc5wEZBk6/romwnRTarJ1V9cgfAdO/Owf7+
PX5akENG8N/Cwyd4Kj1saSv/tJz7H5u8bnjBcziFI4/jjffvjQ8/pw8D+OjP
2PN2X2b1LF9m/u3Ev4R/66zz/aOsrkr/7TIrz5o2L8rO17+vmnx96r+tyjLP
Np0vn84vsnru/zjxANM27777spidZvnS/x6+r/N8vsrwibdPn758kTfNjWH2
xZ0H+58nIMMhljiEf5vPNnWO4Bm31Rih9LSc1ZfrNp/DdpsmI4heAGp6fMG3
9aZpOzD8Yrz/YHzwxVUwBIyAsfzj06zJu/BbV1V9nmX+Sd6crrNy3n3gaXOa
+d+dVs1p54vvsvrPWbPMc8DrbHmeFfD9q9fvPgGdDu/eObh/cD+BjYzgH5X+
1botVsVfARQ9lHp7CYe9SgFxeHd8sD8W7BwGxO83yyLzL/onfQWAtu7/+2Ll
X2RF2X3hTTaHfxv/uN781b+sYMEVPPEyr8+W+eGNQXNw5979uwlkeIT/PATY
+BfVxfgF7BthkQDmRXUyDJwDpLT9q7Dk5005qwDbvuuSyfcFsK7vKoAAUMC8
jwXFWea/z5bF/LQo50Xn+7f5Bsb8fVH6n7PypAeq5WaW+UfzzL+u1plzbjwe
++y4AVY7a53742mxzH17mgONwAZ9k5/ndbb0wMKzYziyU8AN5cKNB8bmc6Yk
+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
k/vQU0s61SfBY78D2uCMKgtM0li3fdn1LZ12J/6Z5FEiL+eCt9iIjNaW9BUT
Qzi58bZ3uxel186pPXiawdTFLQyxbsEA1Vos1zI6bZYcUtEjI9OERLg4T0q9
AJYbufgm4GSs99SWbgMF22i5vefT5a7Dg08hFmTLGmTzpbdcxdwJYpfOt98Y
TJICJwJ3mlkfg/QDkbweTBIGs60Ey2eim8TLzRM1XoeeGg5shgbgokYed++M
By90z1FpGRqLiiaRkoRVZETltMpMomJwQQc+r1oMLVKoM5jjgzXdg63AqVOT
3E2PdRsECBmOddPTTFUEoe9+4GSnrLilnDTzwqVSpj75EnLcfMYnHJPRO1AA
BhZTut4Sj5VKTqvRIzq9/PHxd0lbasrdCnXmIEaKOfYdT003xvNQwmNy7Vk6
hvvY4QT6N0mLLTl8yWsuF6h2KFay8VAHckVrb2OyRmyC0AAgLmOMMdcwdcDT
Rq53EvWdKsBRZBybuwqsiUI0miB3W4Uu96K0Cv8gKzNvkn0nEbGeDsqBL4oH
eA0IyK0+MXSlPXxH0gCfF61N0skP1jSb1boNfSg6SjLqjZKrHppZZGtsCjnG
as/kppcW2w9S113u3dTFN2GHlCjYJnTHpQGwqD/DWpRbSPNL7Zsy5Obio7lJ
EsQ/pEFu12dvqEBiAjTYC8Zv0+SrDN2E0UmtCqAwwDk3AZH6UOdCCAPBk7DG
0d+h5DlV8vq1dB0l7ylrcah6JAW3pjuJY8UpaejR1Vh39ZLaoDCmgVijsyma
9EblVbVGecJuVh3aT7Yv/a0q1UXNhKYniiQr95PWbryv3lY6vUxutBX/LRUW
XK5ZQhiFkp1fqSKaGrKWx2yXlHq0dpzkVlD6hToPMW+kU+qmBga9WFtSDVz2
QcLMXgWht8uE6hrLbs1e0NURL5tK1pUkLboBb1zsJt4OMxCtCeqB0SmL1QKs
Z1S5yKQqqeo6v7DBS2vjdy6osZX6Mb+2Co07k1sXzT3ZtmIy6bwrjjp7u4yr
rri85LKfKnadvW+45Q1j3jeIaw8ni0ggmkHN3DU1+O03ckI2YE9hTRrw7qE4
x00mt3WOn0ug6Kq0Z3PhXJDdmgJt/WkqHrt5IZq/vGlUoRGO1Js3czH5I6kv
tmkitsDBZJiQh3CankgnawAEQVA0YzFXtxf9P6dO5QaHERMA6CiSZPbrMtdH
Rhx2j80FHwglP8sR9+9FDJ5f7Jpu8IMzsKYT/5g1Ivfyx7fvTC3s8jIyc2oD
FzOEyH+LLuzNihTIgVEp3QEL8rH0Q2s4CQLHWQNnSZ2SYnkn0WlVn2Slkmmm
XG3MqmpDUqytZtUy9HzIqEV04I69JCmTcsS9AWiL3Ke1xwFDstGUFDhsAWCB
4YJBhA3KxLmAViyWmF56XSSfhuk8QEfeJKZieen0JRYc0Ylg8sSEMgD0cWVS
ttXtHekMIOEnZJ5RTSQQSeZdbKOtwbcbKI06O+e9nFJum1Elu7Hwh/Zux6/+
HjbaTet5xPk8YR2a35Osh1gpNnrqJOA9X+gBxLiFVPAP4gyhiF4Nm/WvhHW2
4UjSeCBUPYYrRQr2Swn9/DUP7v6pGdZa+nb9U/bLs4broml6pLKZbmg6pyaM
qrp2ZGPDhqnti4Fuh1BnrVhDfTE2x6pV6ANvBD2lYq4HKnMZXuRfSaU4laDK
XW2hQQeat4o92PRELO1sUPE24809FReTJkZNDEaccMr2oyVldtZ8sjGEaELJ
btv5/3YD6mMKNMU+OG8gvNEwrgW3o7QKCAFi5nefIrIs5pDmbakDvjeGkvgj
jPDqFIrZcrBzViU+dtYm2+MDDX0kYpydN3B8mV7OqO1C2IX0VCo4rY8kOgv4
g2nfwcluFG5x9OHDUJjqo7BJUoNjtSMsE+NpyL9hqP4lDjggkqsY7LYxDzkc
sXVAhtg7L4j+TFAt9GTSnF286RjHS5oGph0Sk6kolZUnG2F/ilrbR5Q+r2uU
YIcT/8fgv7luDSNrh3GQvctb7k64+ti0brR1aOJj1ji4cWERtjTSyWSaooVI
f7lwWWo+u89oYRyQ6JNrlHu/RbkX/TJRa1fZpaN77S6JJ2ifQ2NWWDfeyKQf
knucNa4xGx4fP46cqDl0U46qUFLsx6qPluUxufTZbNnrYtHls/rEJzLaUIbB
Ndl0+tiaGX1T/2V87xott8P2FolhjAlv6IOOpcXjZXZJjXDhA/EvN1uYJBxg
4wZqT9g1EaIepnDF9mfG4w+1K+rlT8M5QfvqXbmN4BVNPPW7VnLlgtxR48xJ
/l/Buzsm48fO6oa4NwKgswcMqS1IieHrnDviyYYFXT8sKJYOlpx7rH5Oqc+E
QVRcaByYbZep3YkNBSbOfLzDXJrRsGJlZNdUe5uT1/afq0Fpf5ntKpQ88Qmk
bb0efENc0IIa9ilrE3ZxRN+I1q+xZCUK+4uxaCVNUCIraeKr7OoFjndNckLg
KvYdX12ALPyFN5UuKHlM6ggGHvzYgWyCy+KJ5XCFVSNNByNcAmkYdinTT6i0
6Se9+B1qj0KXwNrWuBcZNzeWtt/znBv6L7ikYJ5jwChW/OxK5IAUDd0Jx0lx
if3GdLSLFFLTEEa34Jz2fXJ9l0OMbuCwTLwj4pTXtumLdiZGt0L3LRyng19T
Dd4u5WqQqaDZtFv6NNwb6yy/DJECbK3XyZ+I3YTG8IRqg+x36B2saW6Vd8l1
m+Y64uuUr4IwK7dd3Sq6aAUfexjIbpzOcXL3TbDwUZeUe5JJF+yOz/6Ui7KR
63elZWV3Es1e5L4NsBrEXNBEXdJATb/dNXe9dIftLHSUdOSjwGuU9ngBEkn6
QbWzhyMxQzf22N92bQ/OtCUvJY4wcffSafkAA+qFDEjJWMGMgWammmlNqQts
3Yu/xfukPSqyBe1SXG3QoDONXt39MLfp77cs+KYwUnpNkz94cXtXx+COTdWr
ouGQ8w2tzIDqInY/RVXp+z//kcSzwMsHsueuVIp88qIIlaHJk8cUZYcevCqA
2QGY8eYmGRB2FR1qjjHJkBVWlTnm2GI8Ec+FGO3AcFcxB7kNYWo3iXzU9ea1
bUWwaWyRtMQPlKgcPb9MbraCYxFLGrQd6vXI8U7LsnF9fFtkKx1K0TUGOkEr
LAUbMkkvk+FVdwFIzW0vjSP7ZJMBare5pHqXFdoVbbgeijpg0dRhqlE03E07
ynTqSeA60nfkuibUmgbUiVNzDlC6qUTW9m65iN3kkrZtScTUtNEJTfuuFcdO
43+dtrmSWmOD5J0wBEbD1yG1YqgroZ1sFK+n1GsUKKvO7vR2Y0axrtNkm5zJ
kUjUSU8qYHrQ8NHpkUjS0A0PRDZqWz6GNrnUMa6+3dg+0PBVlmoFafHUNvUj
XoGkxSAhT+zKNfb6snZasG6BBffyIycZ31kV0+DwbRJniZfWqTtDIwa297Vu
kNNxkQxDunvnNTf0msdOxgVeWoSX1fFNkbYARBaVgiBKpHhjCWMWDiJ3rXSg
ZmomB5SeIjb/BC0dhLzwQiIQdz1TuOGtDOx3dMhqhdU0XH3WWSwVRIRz7qfp
MvVtWdHABTBG2wjXg5PlYHDNgV4i7s6OaGFyke7CV46unB9DuAPJxYvusRgw
xtvRMLB3Qlc3JWku3AHZeOtUwdp+iYYfbNusCQGYxUm8PLyZywU6aX4oF4HE
edPcVhda36dnKC7mLe+Fsw34K8ymWrj0viWpkuhDc9LzrnfUkGu8610tm8tZ
bqypZCJskORJm2+2jHKlgoKWSmhsvY1ijbP6KjrEVVzVBvp6uSjd5Du2jpqr
aRfu7YulBLI238opQ2hiizR41Pfuq9NgcDgMIcxa5ic4cAgxCgvWTsxJCCGM
Ke3Psb6sxk8pa5XQhMGgNWwI0HhBnObZ7pzl+Zp9U9isTCyg/H1bZyJi5A4F
O9aVLES62Xe1P7oCKteWAxhYSLBrlyy4x8HVd4MwDBdrYlhIU/1wVJPDGNJj
NeaBOB1peDRQZBdTrXm/gKBo3V0Zl0lCMWGkXqT3bbXKEw8gljlImhXxiC71
i+TUCCsZvHI1xexy5LZ2nyaNn0+ae8YKO2wooSL2/J6j0IypDk5ufSOLmAJn
2lobi+3ifXyjjg45bM06Y91rsXfkx6YqlNmapKTP4KU8XknggEBOKDrV6xtO
6RWcg/IW6wIxGZvyFOYxF8Xkeusj6Os1H2fKPsmiRqrlqEVs6AiwxtYLuOiQ
MrABZCCnMUz+/NEPj3oT881P1Wyz4jwMMuKlVAD5m+Fdkb9j+IJGA+FZNHx/
I7aa/v5d0jLb7wy0It517lEoCGhyM4TZCqsHGTVckgrIW9+DIWjdCbfEe9dg
MlBsVbvKsGq1yGjJbyUxlPfxRpVrifRwC9svDg4fICt8m+fuw4c5Xm++SIX/
sC8cNvsk50QkGPIpcKkalrDz5GlD17k+e+yfPnn+7tWbI/96iRfGhW78P8Ef
LzWE1DdeKRbfkWIC3hV3PG/tEVEUoQPnLZ4SdI8cPLDdesRZELGKUIMH7O3F
v66qpf/w2RxLLTuvuDH8inc/IV49mp2V1QVYuCd0Cu7DEW8in39zawFqbn4r
GSALj4OKiqP9H6RsaQg10wAA

-->

</rfc>
