<?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.19 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-keytrans-mcmillion-protocol-01" category="info" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.23.2 -->
  <front>
    <title>Key Transparency Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-keytrans-mcmillion-protocol-01"/>
    <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="October" day="14"/>
    <area>SEC</area>
    <workgroup>KEYTRANS Working Group</workgroup>
    <abstract>
      <?line 37?>

<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 47?>

<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="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 1354?>

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

</section>
  </back>
  <!-- ##markdown-source:
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
UqBn4MNFjLYw4IAEc2QglL46cjz2BQpNSo5J2BTR7LxYLDDHUnMWVF0x7Ku7
Ghe/u6F5fJXKf5W+z5T+9xrGParvkD1Pf+2CmOD7n6SPKdn3PxlmBL/2Pxlm
B7/2PxlmCr/2P1GF3rKG/YNPYhBP6edVbOKt8ZkmHCNbYO4Uahii3qYs4kiW
Mn7gnxIXeZs6OI3+KLoGZuMBwQzrial71HXco13t+tP8om6HBB4oCOV8DPQm
+i+KZyJzGVMTBTDXsbzdMsHsiuoh7oNVvjoGejst1lf4GGnr0bE36kS8Xerz
I9IWWx258qU8bngXh8TNMsqqHMeluOGloH54XBfzEy4Q6W2AGAgrlJLoTJ5v
YYnI9Mh+s1wRU0Hh05jZ0Vq40mkRqANzzRxzKDxMw3fQXSFDzLImD15Jdt1e
5311g97XCNXUBeuvccG6vgtWsiM+w1RtQbSh0D+pSZRpeZzPMsyG7fnXg0HW
N6rRhMb0Roz+qru0UcOmpU2Hqpw6B/VVY9WSOoUPog1n4tWZC5Qc0s5CWmvM
doIF3ib90JqLQZUWeezm1UW5rLKA1ZjSWYt7umfAxn1S6RAdtKblCixcN8rA
vuES1PJZDwJ8XO2mLiMG8vFxYFLMVbO9AjUA1HvXVYMZH/mV9nA37uAGdKUm
CmbKaFP7KAEwoyFFkmhMwj+nyaLilUty12LQfxQyU/1xRjUqWEMgRXIfP45S
s9tFoymkKl5QrsGWREXOQbDkS2l17UBSLT3Zy3vekt+I+8S1cCbVQ9cNRXPR
FyqGgb11AhUW2Hggt0MW8MRR5II8AzOw7LO2kdKfAMOYM9Fs1phrLmkPg6Tm
NHhShnKNIaSHo6IMC1wMsmukgBNJ7u5mWWtudmMC6JLZY3MYHW18Vc3ROWLS
oVCasROFsZm8K0nOp0ELMiE5/9OJohhjmW/x8IHJEh5RMCSkh2MF14KjL7fQ
x4O4sllr1nUHS0pm/lb0I4mwRMHpSCqNbvHiM4A9ZRKscgCMNQdEkdVagGvO
3OSNB2didGtLzqsm0cIqHMvGHUb5DPclK7vFm204i5dkQyeVdTdRdDV3m/6V
44OgjZV++F/5+YFzr8Pa8F/l1aNtfk3/+aqrYprUky0zdb3Q796945dIZ+14
rG+gZsdpfx36cHjW7uy/Dn2YWvNbZ9cJBhfW/TdgBHh0bR/tjx+cfeNPd169
fVfu/mn4o1+O7o4fLPWjzw92/7Q9iT0/r5ab1iDnVgbN6pGIQKfvB7cyearI
qNYQLEcjOUedkrQoU92ascRsUT44xlfB0ZE10bNQnVgp0cbEcrHnOOF9nhAu
7J2DOZ/5N4EwmYuh+vJHYifJF1t27pNCrg8f9LExPoaiiVlGxRVDKN7nmpg6
wDBDqSyw3709rC7fozTgvT1VUPcwB9jhN6IGrjYNqShhdHG2cfEdiaUVqZuL
4UmLxj1CeM5a/6IqC3ark+dLBqKyAVSwlGERU8P4W96gYCxAuXiJi74oQEF1
JggflqSLJxPBrN3o1JxNQgaRpDiJPFY1m+35wMtYorsuw0w0EvXO9Xn5hFPh
udZIo4qwLK7DvCiwkg614qjYVLVrilWBScPiEWJZEpEk+C3xcZpyFCtc4Utn
5C7Facbk1sg26JmOhNE9IClfSGCCRRqOErpXWJdVtJ3vOTfa5m5iGoOaXOcx
m15pyu3MyecBSBBINql2sw9LKHV3FGMReog6f+UkiR5jsUuwDzEpujrJKD2B
KsnZAbNBG8uMf7uJmWwPe1ZZc1asGxauyX7FKcweL5Tijbq2KQcPVCwMqlwl
ZrnwFv1euRJ71OlcZCJR5yaqKDgwJAcMhJmsNxaYZ+zAHmOA4dLRiWO1WC0F
35LjLGoXgJ3oqqRcKljKEmPs0YrrIsiI6mwuTitGWcFm5qlX7LloEgQxYS11
yyecbRXLhJnRrTctou24aMdqcmqxxTPFyt/zKTGHFdb6rGw3BXdXGF2BkQoN
DR0iF/GLJUX/6+zShfiMCcea3EgJLkQcZpco0a9q6UGeHKMRxz6/DbeJEA69
yGZtMDSJQRh3i6Z1X1SmNuEZFwB3ljcCJQwE2i3jE421StgTYcyUQB/MsTeB
eHvcLetSHX6/ms97rx/9M7MUbuy73Kq89FN7ti5um0J4o9QF8/lNkhjs5zfK
Z7C/3yy3If5+wyyH3uPX5JTKYmzKwwElO9ylNIf73n/h/Zfef+X91/5g36Of
9NAf3O3FSGzica8q4OBekIqa5XjLg3b11GqFXYkS2ThnM6M4zd/nM21CQhYn
ZiCcobRTMTmsOW3IhEz8K+pqYpkeC/OANrMmtDdgEcZ0RXIf6/RmGJVBDw8u
CaOQaCyStsmrirXajh0aTJbkjTSBfuOUDAXbyNKQTUugU9huSVEg8gxHRfrV
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

-->

</rfc>
