<?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.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-keytrans-protocol-01" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.28.1 -->
  <front>
    <title>Key Transparency Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-keytrans-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="2025" month="June" day="05"/>
    <area>SEC</area>
    <workgroup>KEYTRANS Working Group</workgroup>
    <keyword>key transparency</keyword>
    <abstract>
      <?line 72?>

<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://ietf-wg-keytrans.github.io/draft-protocol/draft-ietf-keytrans-protocol.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-keytrans-protocol/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Key Transparency Working Group mailing list (<eref target="mailto:keytrans@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/keytrans/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/keytrans/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-keytrans/draft-protocol"/>.</t>
    </note>
  </front>
  <middle>
    <?line 82?>

<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="ARCH"/>.</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 choose 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 a <em>label-version
pair</em> to some unstructured data such as a cryptographic public key. Labels
correspond to user identifiers, and a new version of a label is created each
time the label's associated value changes.</t>
      <t>KT uses a <em>prefix tree</em> to store a mapping from each label-version pair
to a commitment to the label's value at that version. Every time the prefix
tree changes, its new root hash and the current timestamp are 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</em>.</t>
      <t>This section describes the operation of prefix trees, log trees, and the
combined tree structure, at a high level. 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>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>
        <t>The <em>size</em> of a tree or subtree is defined as the number of leaf nodes it
contains.</t>
      </section>
      <section anchor="log-tree">
        <name>Log Tree</name>
        <t>Log trees store 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>Leaves can have arbitrary data as their value, and are frequently referred to as
"log entries" later in the document. 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 previous version.</t>
        <t>Inclusion and consistency proofs in KT differ from similar protocols in that
proofs only ever contain the values of nodes that are the head of a balanced
subtree. Whenever the value of the head of a non-balanced subtree is needed by a
verifier, the prover breaks down the non-balanced subtree into the
smallest-possible number of balanced subtrees and provides the value of the head
of each. This allows verifiers to cache a larger number of intermediate values
than would otherwise be possible, reducing the size of subsequent responses.</t>
        <t>As a result, an inclusion proof for a leaf is given by providing the copath
values of the leaf with any non-balanced subtrees broken down as mentioned. The
proof is verified by hashing the leaf value together with the copath values,
re-computing the head values of non-balanced subtrees where needed, and checking
that the result equals the root value of the log.</t>
        <figure>
          <name>Illustration of an inclusion proof. To verify that leaf 2 is included in the tree, the prover provides the verifier with the values of leaf 2's copath. These nodes are 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 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>When requesting a consistency proof, verifiers are expected to have retained the
head values of the largest-possible balanced subtrees (these will later be
defined as the "full subtrees") of the previous version of the log. A
consistency proof then consists of the minimum set of node values that are
necessary to compute the root value of the new version of the log from the
values that the verifier retained.</t>
        <figure>
          <name>Illustration of a consistency proof between a log with 4 and with 6 leaves respectively. The verifier is expected to already have the values (X), so the prover provides the verifier with the values of the nodes marked [X]. By combining these, the verifier is able to compute the new root value of the log.</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="256" width="376" viewBox="0 0 376 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 360,160 L 360,192" 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 344,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 344,128 L 360,160" fill="none" stroke="black"/>
                <path d="M 320,64 L 328,80" 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"/>
                <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="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="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>
                  <text x="360" y="244">6</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                             X
                             |
                   .---------+---------.
                  /                     \
                (X)                      X
                 |                       |
             .---+---.               .---+.
            /         \             /      \
           X           X           X        |
          / \         / \         / \       |
         /   \       /   \       /   \      |
        X     X     X     X    (X)   [X]   [X]

Index:  0     1     2     3     4     5     6
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="prefix-tree">
        <name>Prefix Tree</name>
        <t>Prefix trees store a mapping between search keys and their corresponding values,
with 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 mapping from search key to
value, 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 value, along with the
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
convince 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, based on <xref target="Merkle2"/>, each label-version pair
stored by a Transparency Log corresponds to a search key in a prefix tree. This
prefix tree maps the label-version pair's search key to a commitment to the
label's contents at that version. To allow users to track changes to the prefix
tree, a log tree contains a record of each version of the prefix tree along with
the timestamp of when it was published. 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 the prefix tree results in a new root value which is then
stored in the log tree. As part of the protocol, the Transparency Log is often
required to perform lookups in different versions of the prefix tree. Different
versions of the prefix tree are identified by the log entry where their root
value was stored.</t>
        <figure>
          <name>An example evolution of the combined tree structure. Every new log entry added contains the timestamp T_n of when it was created and the new prefix tree root hash PT_n.</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="112" width="560" viewBox="0 0 560 112" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 72,32 L 72,48" fill="none" stroke="black"/>
                <path d="M 360,32 L 360,48" fill="none" stroke="black"/>
                <path d="M 440,48 L 440,64" fill="none" stroke="black"/>
                <path d="M 40,48 L 112,48" fill="none" stroke="black"/>
                <path d="M 280,48 L 432,48" fill="none" stroke="black"/>
                <path d="M 200,62 L 216,62" fill="none" stroke="black"/>
                <path d="M 200,66 L 216,66" fill="none" stroke="black"/>
                <path d="M 384,64 L 480,64" fill="none" stroke="black"/>
                <path d="M 32,48 L 60,104" fill="none" stroke="black"/>
                <path d="M 112,48 L 128,80" fill="none" stroke="black"/>
                <path d="M 272,48 L 300,104" fill="none" stroke="black"/>
                <path d="M 480,64 L 488,80" fill="none" stroke="black"/>
                <path d="M 4,104 L 32,48" fill="none" stroke="black"/>
                <path d="M 244,104 L 272,48" fill="none" stroke="black"/>
                <path d="M 376,80 L 384,64" fill="none" stroke="black"/>
                <path d="M 4,104 L 60,104" fill="none" stroke="black"/>
                <path d="M 244,104 L 300,104" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="224,64 212,58.4 212,69.6" fill="black" transform="rotate(0,216,64)"/>
                <circle cx="32" cy="48" r="6" class="opendot" fill="white" stroke="black"/>
                <circle cx="72" cy="32" r="6" class="opendot" fill="white" stroke="black"/>
                <circle cx="272" cy="48" r="6" class="opendot" fill="white" stroke="black"/>
                <circle cx="360" cy="32" r="6" class="opendot" fill="white" stroke="black"/>
                <circle cx="440" cy="48" r="6" class="opendot" fill="white" stroke="black"/>
                <g class="text">
                  <text x="104" y="100">(T_n,</text>
                  <text x="152" y="100">PT_n)</text>
                  <text x="344" y="100">(T_n,</text>
                  <text x="392" y="100">PT_n)</text>
                  <text x="464" y="100">(T_n+1,</text>
                  <text x="528" y="100">PT_n+1)</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
        o                                   o
   o----+----.                   o----------+---------o
  / \         \         ==>     / \            .------+----.
 /   \         |               /   \          /             \
/_____\   (T_n, PT_n)         /_____\   (T_n, PT_n)   (T_n+1, PT_n+1)
]]></artwork>
          </artset>
        </figure>
      </section>
    </section>
    <section anchor="updating-views-of-the-tree">
      <name>Updating Views of the Tree</name>
      <t>As users interact with the Transparency Log over time, they will see many
different root hashes as the contents of the log changes. It's necessary for
users to guarantee that the root hashes they observe are consistent with respect
to two important properties:</t>
      <ul spacing="normal">
        <li>
          <t>If root hash B is shown after root hash A, then root hash B contains all the
same log entries as A with any new log entries added to the rightmost edge of
A.</t>
        </li>
        <li>
          <t>All log entries in the range starting from the rightmost log entry of A and
ending at the rightmost log entry of B, have monotonically increasing
timestamps.</t>
        </li>
      </ul>
      <t>The first property is necessary to ensure that the Transparency Log never
removes a log entry after showing it to a user, as this would allow the
Transparency Log to remove evidence of its own misbehavior. The second property
ensures that all users have a consistent view of when each portion of the tree
was created. As will be discussed in later sections, users rely on log entry
timestamps to decide whether to continue monitoring certain labels and which
portions of the tree to skip when searching. Disagreement on when portions of
the tree were created can cause users to disagree on the value of a
label-version pair, introducing the same security issues as a fork.</t>
      <t>Proving the first property, that the log tree is append-only, can be done by
providing a consistency proof from the log tree. Proving the second property,
that newly added log entries have monotonically increasing timestamps, requires
establishing some additional structure on the log's contents.</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.</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>The implicit binary search tree containing <tt>n</tt> entries can be defined
inductively. The index of the root log entry in the implicit binary search tree
is the greatest power of two, minus one, that is less than the size of the
implicit binary search tree. That is <tt>i_root = 2^floor(log2(n)) - 1</tt>. The left
subtree is the implicit binary search tree of size <tt>i_root</tt>, i.e., the implicit
binary search tree for all elements with a smaller index than the root. The
right subtree is the implicit binary search tree of size <tt>n-i_root-1</tt>, but
offset with <tt>i_root+1</tt>. Initially, these will be all indices larger than the
root.</t>
        <t>Users ensure that log entry timestamps are monotonic by enforcing that the
structure of this search tree holds. That is, users check that any timestamp
they observe in the root's left subtree is less than or equal to the root's
timestamp, and that any timestamp they observe in the root's right subtree is
greater than or equal to the root's timestamp, and so on recursively. Following
this tree structure ensures that users can detect misbehavior quickly while
minimizing the number of log entries that need to be checked.</t>
        <t>As an example, consider a log with 50 entries. Instead of having the root be the
typical "middle" entry of <tt>50/2 = 25</tt>, the root would be entry 31. As new log
entries are added to the tree's right edge, all users that interact with the
Transparency Log will require log entries to the right of entry 31 to have
timestamps that are greater than or equal to that of entry 31, regardless of how
much or how little the tree grows.</t>
        <t>Because we are often looking at the rightmost log entry, it is frequently useful
to refer to the <strong>frontier</strong> of the log. The frontier consists of the root log
entry, followed by the entries produced by repeatedly moving right until
reaching the last entry of the log. Using the same example of a log with 50
entries, the frontier would be entries: <tt>31, 47, 49</tt>.</t>
        <t>Example code for efficiently navigating the implicit binary search tree is
provided in <xref target="appendix-implicit-search-tree"/>.</t>
      </section>
      <section anchor="update-algorithm">
        <name>Algorithm</name>
        <t>Users retain the following information about the last tree head they've
observed:</t>
        <ol spacing="normal" type="1"><li>
            <t>The size of the log tree (that is, the number of leaves it contained).</t>
          </li>
          <li>
            <t>The head values of the log tree's <strong>full subtrees</strong>. The full subtrees are
the balanced subtrees which are as large as possible, meaning that they do
not have another balanced subtree as their parent.</t>
          </li>
          <li>
            <t>The timestamps of the log entries along the frontier.</t>
          </li>
        </ol>
        <t>When users make queries to the Transparency Log, they advertise the size of the
last tree head they observed. If the Transparency Log responds with an
updated tree head, it first provides a consistency proof to show that the new
tree head is an extension of the previous one. It then also provides the
following:</t>
        <ul spacing="normal">
          <li>
            <t>In the new implicit binary search tree, compute the direct path of the log
entry with index <tt>size-1</tt>, where <tt>size</tt> is the tree size advertised by the
user. Provide the timestamp of each log entry in the direct path whose index
is greater than or equal to <tt>size</tt>.</t>
          </li>
          <li>
            <t>Exactly one of these log entries will lie on the new tree's frontier. From
this log entry, compute the remainder of the frontier. That is, compute the
log entry's right child, the right child's right child, and so on. Provide
the timestamps for these log entries as well.</t>
          </li>
        </ul>
        <t>Users verify that the first timestamp is greater than or equal to the timestamp
of the rightmost log entry they retained, and that each subsequent timestamp is
greater than or equal to the one prior. While this only requires users to verify
a logarithmic number of the newly added log entries' timestamps, it guarantees
that two users with overlapping views of the tree will detect any violations.
While retaining only the rightmost log entry's timestamp would be sufficient for
this purpose, users retain the timestamps of all log entries along the frontier.
The additional timestamps are retained to make later parts of the protocol more
efficient.</t>
        <t>Additionally, the Transparency Log defines two durations: how far ahead and how
far behind the current time the rightmost log entry's timestamp may be. Users
verify this against their local clock.</t>
        <t>For users which have never interacted with the Transparency Log before and don't
have a previous tree head to advertise, the Transparency Log simply provides the
timestamps of the log entries on the frontier. The user verifies each timestamp
is greater than or equal to the one prior, as above.</t>
      </section>
    </section>
    <section anchor="binary-ladder">
      <name>Binary Ladder</name>
      <t>A <strong>binary ladder</strong> is a series of lookups, producing a series of inclusion and
non-inclusion proofs, from a single log entry's prefix tree. The purpose of a
binary ladder varies depending on the exact context in which it is provided, but
it is generally to establish some bound on the greatest version of a label that
existed as of a particular log entry. All binary ladders are variants of the
following series of lookups, which exactly determines the greatest version of a
label that exists:</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 non-inclusion proof is produced.</t>
        </li>
        <li>
          <t>Once the first non-inclusion proof is produced, a binary search is conducted
between the greatest 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 an inclusion or non-inclusion proof, which guides the search left or
right until it terminates.</t>
        </li>
      </ol>
      <t>As an example, if the greatest version of a label that existed in a particular
log entry was version 6, that would be established by the following: inclusion
proofs for versions 0, 1, 3, a non-inclusion proof for version 7, then followed
by inclusion proofs for versions 5 and 6. This series of lookups uniquely
identifies 6 as the greatest version that exists, in the sense that the
Transparency Log would be unable to prove a different greatest version to any
user.</t>
      <t>While the description above may imply that the series of lookups is interactive,
this is not the case in practice. Users may receive one or more binary ladders,
corresponding to the same or different log entries, in a single query response.
The Transparency Log's query response always contains sufficient information to
allow users to predict the outcome of each lookup (inclusion or non-inclusion of
a particular version) in the binary ladder.</t>
      <t>Example code for computing the versions of a label that go in a binary ladder is
provided in <xref target="appendix-binary-ladder"/>.</t>
    </section>
    <section anchor="fixed-version-searches">
      <name>Fixed-Version Searches</name>
      <t>When searching the combined tree structure described in <xref target="combined-tree"/>, users
perform a binary search for the first log entry where the prefix tree at that
entry contains the target label-version pair. Users reuse the implicit binary
search tree from <xref target="implicit-binary-search-tree"/> for this purpose. This ensures
that all users will check the same or similar entries when searching for the
same label, allowing for efficient user monitoring of the Transparency Log.</t>
      <section anchor="fv-binary-ladder">
        <name>Binary Ladder</name>
        <t>To perform a binary search, users need to be able to inspect individual log
entries and determine whether their search should continue to the left of the
current log entry or the right. Specifically, they need to be able to determine
if the greatest version of their label that was present in some version of the
prefix tree was greater than, equal to, or less than their <strong>target version</strong>.</t>
        <t>This is accomplished by having the Transparency Log provide a binary ladder from
each log entry in the user's search path. Binary ladders provided for the
purpose of a fixed-version search follow the series of lookups described in
<xref target="binary-ladder"/>, but with two optimizations:</t>
        <t>First, the series of lookups ends after the first inclusion proof for a version
greater than or equal to the target version, or the first non-inclusion proof
for a version less than the target version. The additional lookups are
unnecessary, since the user only needs to know whether the greatest version of
the label that existed as of a particular log entry is greater than or less than
their target version -- not its exact value.</t>
        <t>Second, the Transparency Log omits inclusion proofs for any versions of the
label where another inclusion proof for the same version was already provided in
the same query response for a log entry to the left. Similarly, the Transparency
Log omits non-inclusion proofs for any versions of the label where another
non-inclusion proof for the same version was already provided in the same query
response for a log entry to the right. Providing these proofs is unnecessary
since the only possible outcome they could have on the user's binary search
would be to cause it to fail.</t>
      </section>
      <section anchor="maximum-lifetime">
        <name>Maximum Lifetime</name>
        <t>A Transparency Log operator <bcp14>MAY</bcp14> define a maximum lifetime for log entries. If
defined, it <bcp14>MUST</bcp14> be greater than zero milliseconds. Whether a log entry has surpassed
its maximum lifetime is determined by subtracting the timestamp of the rightmost
log entry from the timestamp of the log entry in question and checking if the
result is greater than or equal to the defined duration.</t>
        <t>A user executing a search may arrive at a log entry which is past its maximum
lifetime by either of two ways: The user may have inspected a log entry which is
<strong>not</strong> expired and decided to recurse to the log entry's left child, which is
expired. Alternatively, the root log entry may be expired, in which case the
user would've started their search at an expired root log entry.</t>
        <t>When a user's search proceeds from a log entry which is not expired to a log
entry which is expired, the user is provided with a binary ladder from the
expired log entry as usual. If the user's search would recurse further into the
expired portion of the tree (to the log entry's left child), the search is
aborted. If the user's search would recurse away from the expired portion of the
tree (to the log entry's right child), the user continues as normal.</t>
        <t>When the root and potentially multiple frontier log entries are expired, the
user skips to the furthest-right expired frontier log entry without receiving
binary ladders from any of its parents. Similar to the previous case,
the user is provided with a binary ladder from this log entry. If the user
determines that its search would recurse to the left (further into the expired
portion of the tree), it aborts; to the right (into the unexpired portion of the
tree), it continues.</t>
        <t>This allows the Transparency Log to prune data which is sufficiently old, as
only a small amount of the log tree and prefix tree outside of the maximum
lifetime need to be retained. Specifically, users will still need only a
logarithmic number of log entries that have passed their maximum lifetime,
meaning the rest can be discarded. Pruning is explained in more detail in
<xref target="ARCH"/>.</t>
      </section>
      <section anchor="fv-algorithm">
        <name>Algorithm</name>
        <t>The algorithm for performing a fixed-version search (a search for a specific
version of a label) is described below as a recursive algorithm. It starts with
the root log entry, as defined by the implicit binary search tree, and then
recurses to left or right children, each time starting back at step 1.</t>
        <ol spacing="normal" type="1"><li>
            <t>Verify that the log entry's timestamp is consistent with the timestamps of
all ancestor log entries. That is, if the log entry is in the ancestor's left
subtree, then its timestamp is less than or equal to the ancestor's. If the
log entry is in the ancestor's right subtree, then its timestamp is greater
than or equal to the ancestor's.</t>
          </li>
          <li>
            <t>If the log entry has surpassed its maximum lifetime and is on the frontier,
determine whether its right child has also surpassed its maximum lifetime. If
so, recurse to the right child; otherwise, continue to step 3. Note that a
right child always exists, as the rightmost log entry cannot exceed its
maximum lifetime by definition.</t>
          </li>
          <li>
            <t>Obtain a binary ladder from the current log entry for the target version.
Verify that the binary ladder terminates in a way that is consistent with
previously inspected log entries. Specifically, verify that it indicates a
maximum version greater than or equal to any log entries to the left, and
less than or equal to any log entries to the right.</t>
          </li>
          <li>
            <t>If the binary ladder was terminated early due to a non-inclusion proof for a
version less than or equal the target version, recurse to the log entry's right child.
Otherwise, check if the log entry has surpassed its maximum lifetime. If so,
abort the search with an error indicating that the desired version of the
label has expired and is no longer available. If not, recurse to the log
entry's left child. If, in either case, recursion isn't possible because the
search is at a leaf node:</t>
          </li>
          <li>
            <t>This largely concludes the search. However, there are some additional
technicalities to address. First, it's possible for the binary search to
conclude even if the label-version pair that the user is interested in
doesn't exist or is expired. Out of the log entries touched by the binary
search, identify which log entry was first to contain the desired
label-version pair. If there is no such log entry, or if it is past its
maximum lifetime, abort the search and return an error to the user.</t>
          </li>
          <li>
            <t>It's also possible at this point that a commitment to the contents of the
desired label-version pair has not been provided by the Transparency Log.
This can happen, for example, if multiple versions of a label were inserted
in the same log entry and the binary ladder was terminated early due to an
inclusion proof for a version greater than the target version. If this has
happened, obtain a search proof for the target label-version pair from the
prefix tree in the first log entry to contain it (identified in step 5). If
the search proof shows non-inclusion rather than inclusion, return an error
to the user.</t>
          </li>
        </ol>
        <t>The most important goal of this algorithm is correctly identifying the first log
entry that contains the target label-version pair. The purpose of
doing this is to make monitoring more efficient for the label owner. If a label
has a large number of versions, it can become prohibitively expensive for its
owner to repeatedly check that every single version is represented correctly in
multiple log entries. Instead, the label owner can check that the version was
created correctly in the one log entry where it was first added and then enforce
that binary searches for that version always converge back to that same log
entry.</t>
      </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 be
established between the search root and the log entry, 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 such that searches
for the same versions of a label continue converging to the same entries in the log.</t>
      <t>Monitoring is performed both by the users that own a label, meaning they are the
authoritative source for the label's content, and the users that lookup a label.
Owners monitor their labels to ensure that past (expected) versions of a label
are still correctly stored in the log and that no new (unexpected) versions have
been added. Users that looked up a label may sometimes need to monitor it
afterwards to ensure that the version they observed isn't later concealed by the
Transparency Log.</t>
      <section anchor="reasonable-monitoring-window">
        <name>Reasonable Monitoring Window</name>
        <t>Label owners <bcp14>MUST</bcp14> monitor their labels regularly, ensuring that past versions of
the label are still correctly represented in the log and that any new versions
of the label are permissible (alerting the user if not). Transparency Logs
define a duration, referred to as the <strong>Reasonable Monitoring
Window</strong> (RMW), which is the frequency with which the Transparency Log generally
expects label owners to perform monitoring. The log entry maximum lifetime, if
defined, <bcp14>MUST</bcp14> be greater than the RMW.</t>
        <t><strong>Distinguished</strong> log entries are chosen according to the algorithm below, such
that there is roughly one per every interval of the RMW. If a user looks up a
label (either through a fixed-version or greatest-version search) and finds that
the first log entry that contains the desired label-version pair is to the right
of the rightmost distinguished log entry, and the Transparency Log is deployed
in Contact Monitoring mode, the user <bcp14>MUST</bcp14> regularly monitor the label-version
pair until its monitoring path intersects a distinguished log entry. That is,
until a new distinguished log entry is established to its right and the two log
entries are verified to be consistent. The purpose of this monitoring is to
ensure that the label-version pair is not removed or obscured by the
Transparency Log before the label owner has had an opportunity to detect it. If
the Transparency Log is deployed with a Third-Party Auditor or Third-Party
Manager, this monitoring is not necessary if the third party is honest. However,
the user <bcp14>MAY</bcp14> still perform it to detect collusion between the Transparency Log
and the third party.</t>
        <t>If a user looks up a label and finds that the first log entry
containing the label-version pair is either a distinguished log entry or to the
left of any distinguished log entry, they do not need to monitor it
afterwards. The only state that would be retained from the query would be the
tree head, as discussed in <xref target="updating-views-of-the-tree"/>.</t>
        <t>"Regular" monitoring <bcp14>SHOULD</bcp14> be performed at least as frequently as the RMW and
<bcp14>MUST</bcp14>, if at all possible, happen more frequently than the log entry maximum
lifetime.</t>
      </section>
      <section anchor="distinguished-log-entries">
        <name>Distinguished Log Entries</name>
        <t>Distinguished log entries are chosen according to the following recursive
algorithm:</t>
        <ol spacing="normal" type="1"><li>
            <t>Take as input: a log entry, the timestamp of a log entry to its left, and the
timestamp of a log entry to its right.</t>
          </li>
          <li>
            <t>If the right timestamp minus the left timestamp is less than the Reasonable
Monitoring Window, terminate the algorithm. Otherwise, declare that the given
log entry is distinguished.</t>
          </li>
          <li>
            <t>If the given log entry has a left child in the implicit binary search tree,
then recurse to its subtree by executing this algorithm with: the given log
entry's left child, the given left timestamp, and the timestamp of the given
log entry.</t>
          </li>
          <li>
            <t>If the given log entry has a right child, then recurse to its right subtree
by executing this algorithm with: the given log entry's right child, the
timestamp of the given log entry, and the given right timestamp.</t>
          </li>
        </ol>
        <t>The algorithm is initialized with these parameters: the
root node in the implicit binary search tree, the timestamp 0, and the timestamp
of the rightmost log entry. Note that step 2 is specifically "less than" and not
"less than or equal to"; this ensures correct behavior when the RMW is zero.</t>
        <t>This process for choosing distinguished log entries ensures that they are
<strong>regularly spaced</strong>. Having irregularly spaced distinguished log entries risks
either overwhelming label owners with a large number of them, or delaying
consensus between users by having arbitrarily few. Distinguished log entries
must reliably occur at roughly the same interval as the Reasonable Monitoring
Window regardless of variations in how quickly new log entries are added.</t>
        <t>This process also ensures that distinguished log entries are <strong>stable</strong>. Once a
log entry is chosen to be distinguished, it will never stop being distinguished.
This is important because it means that, if a user looks up a label and checks
consistency with some distinguished log entry, this log entry can't later avoid
inspection by the label owner by losing its distinguished status.</t>
      </section>
      <section anchor="monitor-binary-ladder">
        <name>Binary Ladder</name>
        <t>Similar to the algorithm for searching the tree, the algorithm for monitoring
the tree requires a way to prove that the greatest version of a label stored in
a particular log entry's prefix tree is greater than or equal to a <strong>target
version</strong>. The target version in this case is the version of the label that the
user is monitoring. Unlike in a search though, users already know that the
target version of the label exists and only need proof that there has not been
an unexpected downgrade.</t>
        <t>Binary ladders provided for the purpose of monitoring follow the series of
lookups that would be made by the algorithm in <xref target="binary-ladder"/> if the target
version of the label was the greatest that existed. Note that this means the
series of lookups performed is always the same for the same target version,
regardless of whatever the actual greatest version of the label is. From this
series of lookups, two optimizations are made:</t>
        <t>First, any lookup for a version greater than the target version is omitted. As a
result, all lookups in the binary ladder will result in an inclusion proof if
the Transparency Log is behaving honestly.</t>
        <t>Second, any lookup that would be omitted from a binary ladder for the log entry
when executing a fixed-version or greatest-version search for the label-version
pair is also omitted here. That is, when preparing a binary ladder for a log
entry, the Transparency Log considers the log entries that are in its direct
path and to its left. If, during a search for the label-version pair being
monitored, the user would receive an inclusion proof for some version <tt>v</tt> from
one of these log entries, then the lookup for version <tt>v</tt> is omitted.</t>
      </section>
      <section anchor="m-algorithm">
        <name>Algorithm</name>
        <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 greatest
version of the label that's been proved to exist at that log position. Users
initially populate this map by setting the position of the first log entry to
contain the label-version pair they've looked up to map to that version. 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, from rightmost to leftmost log
entry:</t>
        <ol spacing="normal" type="1"><li>
            <t>Determine if the log entry is distinguished. If so, leave
the position-version pair in the map and move on to the next map entry.</t>
          </li>
          <li>
            <t>Compute the ordered list of log entries to inspect:
            </t>
            <ol spacing="normal" type="1"><li>
                <t>Initialize the list by setting it to be the log entry's direct path in the
implicit binary search tree based on the current tree size.</t>
              </li>
              <li>
                <t>Remove all entries that are to the left of the log entry.</t>
              </li>
              <li>
                <t>If any of the remaining log entries are distinguished, terminate the list
just after the first distinguished log entry.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the computed list is empty, leave the position-version pair in the map
and move on to the next map entry.</t>
          </li>
          <li>
            <t>For each log entry in the computed list, from left to right:
            </t>
            <ol spacing="normal" type="1"><li>
                <t>Check if a binary ladder for this log entry was already provided in the
same query response. If so:
                </t>
                <ol spacing="normal" type="1"><li>
                    <t>If the previously provided binary ladder had a greater target version
than the current map entry, then this version of the label no longer
needs to be monitored. Remove the position-version pair with the
the lesser version from the map and move on to the next map
entry.</t>
                  </li>
                  <li>
                    <t>If it had a version less than or equal to that of the current map
entry, terminate and return an error to the user.</t>
                  </li>
                </ol>
              </li>
              <li>
                <t>Receive and verify a binary ladder from this log entry where the target
version is the version currently in the map. This proves that, at the
indicated log entry, the greatest version present is greater than or equal
to the previously observed version.</t>
              </li>
              <li>
                <t>If the above check fails, terminate and return an error to the user.
Otherwise, remove the current position-version pair from the map and
replace it with a new one for the position of the log entry that the
binary ladder came from.</t>
              </li>
            </ol>
          </li>
        </ol>
        <t>Once the map entries are updated according to this process, the final step of
monitoring is to remove all mappings where the position corresponds to a
distinguished log entry. All remaining entries will be non-distinguished log
entries lying on the log's frontier.</t>
        <t>In summary, monitoring works by progressively moving up the tree as new
intermediate/root nodes are established and verifying that they're constructed
correctly. Once a distinguished log entry is reached and successfully verified,
monitoring is no longer necessary and the relevant entry is removed from the
map.</t>
        <t>Users will often be able to execute the monitoring process, at least partially,
with the output of a fixed-version or greatest-version search for the label.
This may reduce the need for monitoring-specific requests. It is also worth
noting that the work required to monitor several versions of the same label
scales sublinearly because 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>
        <section anchor="owner-algorithm">
          <name>Owner Algorithm</name>
          <t>If the user owns the label being monitored, they will additionally need to
retain the rightmost distinguished log entry where they've verified that the
greatest version of the label is correct. Users advertise this log entry's
position in their Monitor request. For a number of subsequent distinguished log
entries, the Transparency Log provides the greatest version of the label that
the log entry's prefix tree contains, along with a binary ladder (according to
the rules stated in <xref target="gv-binary-ladder"/>) to prove that this is correct.</t>
          <t>Users verify that the version has not unexpectedly increased or decreased.
Importantly, users also verify that they receive a binary ladder for the
distinguished log entry immediately following the one they've advertised, the
distinguished log entry immediately following that one, and so on. The
Transparency Log provides whichever intermediate timestamps are necessary to
demonstrate that this is the case. To avoid excessive load, the Transparency Log
<bcp14>SHOULD</bcp14> limit the number of distinguished log entries it provides binary ladders
for in a single response.</t>
          <t>If a user is monitoring the label for the first time since it was created, they
advertise the first log entry to contain the label even if it is not known to be
distinguished. The Transparency Log provides binary ladders for subsequent
distinguished log entries.</t>
        </section>
      </section>
    </section>
    <section anchor="greatest-version-searches">
      <name>Greatest-Version Searches</name>
      <t>Users often wish to search for the "most recent" version, or the greatest
version, of a label. Unlike searches for a specific version, label owners
regularly verify that the greatest version is correctly represented in the
log. This enables a simpler, more efficient approach to searching.</t>
      <t><xref target="distinguished-log-entries"/> defines the
concept of a distinguished log entry, which is any log entry that label owners
are required to check for correctness. As a result, users can start their search
at the rightmost distinguished log entry and only consider new versions which
have been created since then. The rightmost distinguished log entry will always
be on the frontier of the log and will never be past its maximum lifetime.</t>
      <section anchor="gv-binary-ladder">
        <name>Binary Ladder</name>
        <t>One special consideration for a greatest-version search is that the Transparency
Log must prove that it is revealing the absolute greatest version of a label
that exists, referred to as the <strong>target version</strong>. This differs from the binary
ladders described for fixed-version searches (<xref target="fv-binary-ladder"/>) and
monitoring (<xref target="monitor-binary-ladder"/>), which only aim to prove a lower
bound on the greatest version.</t>
        <t>Binary ladders provided for the purpose of a greatest-version search follow the
series of lookups described in <xref target="binary-ladder"/>, with two optimizations:</t>
        <t>First, the series of lookups ends after the first non-inclusion proof for a
version less than the target version. This differs from <xref target="fv-binary-ladder"/> in
that the binary ladder algorithm will continue even after receiving an inclusion
proof for a version equal to the target version. This is often necessary to
demonstrate that there are no versions greater than the target version.</t>
        <t>Second, depending on whether the binary ladder is for a distinguished or
non-distinguished log entry:</t>
        <ul spacing="normal">
          <li>
            <t>If the log entry is non-distinguished:
            </t>
            <ul spacing="normal">
              <li>
                <t>An inclusion proof for a version is omitted if an inclusion proof for the
same version has already been provided in the same query response from a log
entry to the left.</t>
              </li>
              <li>
                <t>A non-inclusion proof for a version is omitted if a non-inclusion proof for
the same version has already been provided in the same query response from a
log entry to the right.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>If the log entry is distinguished:
            </t>
            <ul spacing="normal">
              <li>
                <t>An inclusion or non-inclusion proof for a version is omitted only if it has
previously been provided in the same query response for the same log entry.
This may happen if the binary ladder is provided in a Monitor query response
and the user owns the label being monitored.</t>
              </li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="algorithm">
        <name>Algorithm</name>
        <t>The algorithm for performing a greatest-version search (a search for the
greatest version of a label) is described below as a recursive algorithm. It
starts at the rightmost distinguished log entry, or the root of the implicit
binary search tree if there are no distinguished log entries, and then recurses
down the remainder of the frontier, each time starting back at step 1:</t>
        <ol spacing="normal" type="1"><li>
            <t>Obtain a binary ladder from the current log entry for the target version. If
this is not the starting log entry, verify that the binary ladder indicates a
maximum version greater than or equal to that of its parent log entry.</t>
          </li>
          <li>
            <t>If this is the rightmost log entry, verify the binary ladder terminates in a
way that proves the target version to be the greatest that exists. This means
that it does not terminate early, all lookups for versions less than or equal
to the target version produce inclusion proofs, and all lookups for versions
greater than the target version produce non-inclusion proofs.</t>
          </li>
          <li>
            <t>If this is not the rightmost log entry, recurse to the current log entry's
right child.</t>
          </li>
        </ol>
        <t>If the starting log entry was not distinguished or if the starting log entry did
not contain the greatest version of the label, note that the user may be
obligated to monitor the label in the future per
<xref target="reasonable-monitoring-window"/>.</t>
      </section>
    </section>
    <section anchor="cryptographic-computations">
      <name>Cryptographic Computations</name>
      <section anchor="cipher-suites">
        <name>Cipher Suites</name>
        <t>Each Transparency Log uses a single fixed cipher suite, chosen when it is
initially created, that specifies the following primitives and parameters 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>
          <li>
            <t><tt>Nc</tt>: The size in bytes of commitment openings</t>
          </li>
          <li>
            <t><tt>Kc</tt>: A fixed string of bytes used in the computation of commitments</t>
          </li>
        </ul>
        <t>The hash algorithm is used to calculate 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>Cipher suites are represented with the CipherSuite type. The cipher suites are
defined in <xref target="kt-cipher-suites"/>.</t>
      </section>
      <section anchor="tree-head-signature">
        <name>Tree Head Signature</name>
        <t>The head of a Transparency Log, which represents its most recent state, is
encoded 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> is the number of log entries. 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:
      uint64 max_auditor_lag;
      opaque auditor_public_key<0..2^16-1>;
  };

  uint64 max_ahead;
  uint64 max_behind;
  uint64 reasonable_monitoring_window;
  optional<uint64> maximum_lifetime;
} Configuration;

struct {
  Configuration config;
  uint64 tree_size;
  opaque root[Hash.Nh];
} TreeHeadTBS;
]]></sourcecode>
        <t>The <tt>ciphersuite</tt> field contains the cipher suite for the Transparency Log,
chosen from the registry in <xref target="kt-cipher-suites"/>. The <tt>mode</tt> field specifies
whether the Transparency Log is deployed in Contact Monitoring mode or with a
Third-Party Manager or Auditor. The <tt>signature_public_key</tt> field contains the
public key to use for verifying signatures on the <tt>TreeHeadTBS</tt> structure. The
<tt>vrf_public_key</tt> field contains the VRF public key to use for evaluating the VRF
proofs provided in the <tt>BinaryLadderStep.proof</tt> field described in <xref target="search"/>.</t>
        <t>If the deployment mode specifies a Third-Party Manager, a public key is provided
in <tt>leaf_public_key</tt>. This public key is used to verify the Service Operator's
signature on modifications to the Transparency Log, as described in
<xref target="update-format"/>.</t>
        <t>If the deployment mode specifies a Third-Party Auditor, the maximum amount of
time in milliseconds that the auditor may lag behind the most recent version of
the Transparency Log is provided in <tt>max_auditor_lag</tt>. Additionally, a public
key for verifying the auditor's signature on views of the Transparency Log is
provided in <tt>auditor_public_key</tt>.</t>
        <t>The <tt>max_ahead</tt> and <tt>max_behind</tt> fields contain the maximum amount of time in
milliseconds that a tree head may be ahead of or behind the user's local clock
without being rejected. The <tt>reasonable_monitoring_window</tt> contains the
Reasonable Monitoring Window, defined in <xref target="reasonable-monitoring-window"/>, in
milliseconds. If the Transparency Log has chosen to define a maximum lifetime
for log entries, per <xref target="maximum-lifetime"/>, this duration in milliseconds is
stored in the <tt>maximum_lifetime</tt> field.</t>
        <t>Finally, the <tt>root</tt> field contains the root value of the log tree with
<tt>tree_size</tt> leaves. <tt>Hash.Nh</tt> is the output size of the cipher suite's
hash function in bytes.</t>
      </section>
      <section anchor="auditor-tree-head-signature">
        <name>Auditor Tree Head Signature</name>
        <t>In deployment scenarios where a Third-Party Auditor is present, the auditor's
view of the Transparency Log is presented to users with an <tt>AuditorTreeHead</tt>
structure:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  uint64 timestamp;
  uint64 tree_size;
  opaque signature<0..2^16-1>;
} AuditorTreeHead;
]]></sourcecode>
        <t>Users verify an <tt>AuditorTreeHead</tt> with the following steps:</t>
        <ol spacing="normal" type="1"><li>
            <t>Verify that the timestamp of the rightmost log entry is greater than or equal
to <tt>timestamp</tt>, and that the difference between the two is less than or equal
to <tt>Configuration.max_auditor_lag</tt>.</t>
          </li>
          <li>
            <t>Verify that <tt>tree_size</tt> is less than or equal to that of the <tt>TreeHead</tt>
provided by the Transparency Log.</t>
          </li>
          <li>
            <t>Verify <tt>signature</tt> as a signature over the <tt>AuditorTreeHeadTBS</tt> structure:</t>
          </li>
        </ol>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  Configuration config;
  uint64 timestamp;
  uint64 tree_size;
  opaque root[Hash.Nh];
} AuditorTreeHeadTBS;
]]></sourcecode>
        <t>The <tt>config</tt> field contains the long-term configuration for the Transparency
Log. The <tt>timestamp</tt> and <tt>tree_size</tt> fields match that of <tt>AuditorTreeHead</tt>. The
<tt>root</tt> field contains the value of the root node of the log tree when it had
<tt>tree_size</tt> leaves.</t>
      </section>
      <section anchor="full-tree-head-verification">
        <name>Full Tree Head Verification</name>
        <t>Tree heads are presented to users on the wire as follows:</t>
        <sourcecode type="tls-presentation"><![CDATA[
enum {
  reserved(0),
  same(1),
  updated(2),
} FullTreeHeadType;

struct {
  FullTreeHeadType head_type;
  select (FullTreeHead.head_type) {
    case updated:
      TreeHead tree_head;
      select (Configuration.mode) {
        case thirdPartyAuditing:
          AuditorTreeHead auditor_tree_head;
      };
  };
} FullTreeHead;
]]></sourcecode>
        <t>The <tt>head_type</tt> field may be set to <tt>same</tt> if the user advertised a previously
observed tree size in their request and the Transparency Log wishes to continue
using this same tree head. Otherwise, <tt>head_type</tt> is set to <tt>updated</tt> and a new,
more recent tree head is provided.</t>
        <t>Users verify a <tt>FullTreeHead</tt> with the following steps:</t>
        <ol spacing="normal" type="1"><li>
            <t>If <tt>head_type</tt> is <tt>same</tt>, verify that the user advertised a previously
observed tree size and that the rightmost log entry of this tree is still
within the bounds set by <tt>max_ahead</tt> and <tt>max_behind</tt>.</t>
          </li>
          <li>
            <t>If <tt>head_type</tt> is <tt>updated</tt>:
            </t>
            <ol spacing="normal" type="1"><li>
                <t>If the user advertised a previously observed tree size, verify that
<tt>TreeHead.tree_size</tt> is greater than the advertised tree size.</t>
              </li>
              <li>
                <t>Verify <tt>TreeHead.signature</tt> as a signature over the <tt>TreeHeadTBS</tt>
structure.</t>
              </li>
              <li>
                <t>If there is a Third-Party Auditor, verify <tt>auditor_tree_head</tt> as described
in <xref target="auditor-tree-head-signature"/>.</t>
              </li>
            </ol>
          </li>
        </ol>
      </section>
      <section anchor="update-format">
        <name>Update Format</name>
        <t>The leaves of the prefix tree contain commitments which open to the value of a
label-version pair, potentially with some additional information depending on
the deployment mode of the Transparency Log. The contents of these commitments
is 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 value associated with the label-version pair.</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>value</tt> field contains the same contents as <tt>UpdateValue.value</tt>. Users
<bcp14>MUST</bcp14> successfully verify this signature before consuming <tt>UpdateValue.value</tt>.</t>
      </section>
      <section anchor="commitment">
        <name>Commitment</name>
        <t>Commitments are computed with HMAC <xref target="RFC2104"/> using the hash function
specified by the cipher suite. To produce a new commitment, the application
generates a random <tt>Nc</tt>-byte value called <tt>opening</tt> and computes:</t>
        <sourcecode type="pseudocode"><![CDATA[
commitment = HMAC(Kc, CommitmentValue)
]]></sourcecode>
        <t>where <tt>Kc</tt> is a string of bytes defined by the cipher suite and CommitmentValue
is specified as:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  opaque opening[Nc];
  opaque label<0..2^8-1>;
  UpdateValue update;
} CommitmentValue;
]]></sourcecode>
        <t>The output value <tt>commitment</tt> may be published, while <tt>opening</tt> should only be
revealed to users that are authorized to receive the label's contents.</t>
        <t>The Transparency Log <bcp14>MAY</bcp14> generate <tt>opening</tt> in a non-random way, such as
deriving it from a secret key, as long as the result is indistinguishable from
random to other participants. The Transparency Log <bcp14>SHOULD</bcp14> ensure that individual
<tt>opening</tt> values can later be deleted in a way where they can not feasibly be
recovered. This preserves the Transparency Log's ability to delete certain
information in compliance with privacy laws.</t>
      </section>
      <section anchor="verifiable-random-function">
        <name>Verifiable Random Function</name>
        <t>Each label-version pair corresponds to a unique search key in the prefix tree.
This search key is the output of executing the VRF, with the private key
corresponding to <tt>Configuration.vrf_public_key</tt>, on the combined label and
version:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  opaque label<0..2^8-1>;
  uint32 version;
} VrfInput;
]]></sourcecode>
      </section>
      <section anchor="crypto-log-tree">
        <name>Log Tree</name>
        <t>The value of a leaf node in the log tree is computed as the hash, with the
cipher suite hash function, of the following structure:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  uint64 timestamp;
  opaque prefix_tree[Hash.Nh];
} LogLeaf;
]]></sourcecode>
        <t>The <tt>timestamp</tt> field contains the timestamp that the leaf was created in
milliseconds since the Unix epoch. The <tt>prefix_tree</tt> field contains the updated
root hash of the prefix tree after making any desired modifications.</t>
        <t>The value of a parent node in the log tree 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 || node.value
  else if node.type == parentNode:
    return 0x01 || node.value
]]></sourcecode>
        <t>where <tt>Hash</tt> denotes the cipher suite hash function.</t>
      </section>
      <section anchor="prefix-tree-1">
        <name>Prefix Tree</name>
        <t>The value of a leaf node in the prefix tree is computed as the hash, with the
cipher suite hash function, of the following structure:</t>
        <sourcecode type="tls"><![CDATA[
struct {
    opaque vrf_output[VRF.Nh];
    opaque commitment[Hash.Nh];
} PrefixLeaf;
]]></sourcecode>
        <t>The <tt>vrf_output</tt> field contains the VRF output for the label-version pair.
<tt>VRF.Nh</tt> denotes the output size of the cipher suite VRF in bytes. The
<tt>commitment</tt> field contains the commitment to the corresponding <tt>UpdateValue</tt>
structure.</t>
        <t>The value of a parent node in the prefix tree 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 == emptyNode:
    return 0 // all-zero vector of length Hash.Nh+1
  else if node.type == leafNode:
    return 0x01 || node.value
  else if node.type == parentNode:
    return 0x02 || node.value
]]></sourcecode>
      </section>
    </section>
    <section anchor="tree-proofs">
      <name>Tree Proofs</name>
      <section anchor="log-tree-1">
        <name>Log Tree</name>
        <t>In the interest of efficiency, KT combines multiple inclusion proofs and
consistency proofs into a single batch proof. Recalling from the discussion in
<xref target="log-tree"/>,</t>
        <ul spacing="normal">
          <li>
            <t>Whenever the Transparency Log serves an inclusion proof for a leaf of the log tree,
it provides the minimum set of head values from balanced subtrees
that would allow the user to compute the root hash from the leaf's value.</t>
          </li>
          <li>
            <t>Whenever the Transparency Log serves a consistency proof, the user is expected to have
retained the head values of the full subtrees of the previous version of the
log. The Transparency Log provides the minimum set of head values from
balanced subtrees that would allow the user to compute the root hash from
their retained values.</t>
          </li>
        </ul>
        <t>These two proof types are composed together as such: considering the leaf values
which will be proved included, and any node values the user is understood to
have retained, the Transparency Log provides the minimum set of head values from
balanced subtrees that would allow the user to compute the root hash from the
leaf and retained values. This proof is encoded as follows:</t>
        <sourcecode type="tls-presentation"><![CDATA[
opaque NodeValue[Hash.Nh];

struct {
  NodeValue elements<0..2^16-1>;
} InclusionProof;
]]></sourcecode>
        <t>The contents of the <tt>elements</tt> array is in left-to-right order: if a node is
present in the root's left subtree then its value is listed before the values of
any nodes in the root's right subtree, and so on recursively.</t>
        <t>Batching together inclusion and consistency proofs creates an edge case that
requires special care: when a user has requested a consistency proof, and also
requested inclusion proofs for leaves located in one or more of the subtrees
that the user has retained the head of. When this happens, the portion of the
batch proof that shows inclusion for the leaves in these subtrees will itself be
sufficient to recompute the retained head values. This makes the retained values
redundant for the purpose of computing the new root hash, which could result in
the retained values being disregarded in a naive implementation. To avoid
accepting invalid proofs, users <bcp14>MUST</bcp14> verify that the computed value for the head
of any such subtree matches the retained value.</t>
      </section>
      <section anchor="prefix-tree-2">
        <name>Prefix Tree</name>
        <t>A proof from a prefix tree authenticates that a search was done correctly for a
given search key. Such a proof is encoded as:</t>
        <sourcecode type="tls"><![CDATA[
enum {
  reserved(0),
  inclusion(1),
  nonInclusionLeaf(2),
  nonInclusionParent(3),
  (255)
} PrefixSearchResultType;

struct {
  PrefixSearchResultType result_type;
  select (PrefixSearchResult.result_type) {
    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. Every
index corresponds to the respectively indexed binary ladder step targeting the
queried version. 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 since 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. The root node of the prefix tree
corresponds to a depth of 0, the root's children correspond to a depth of 1, and
so on recursively.</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 bits of the search keys, and checking
that the result equals the root value of the prefix tree.</t>
      </section>
      <section anchor="proof-combined-tree">
        <name>Combined Tree</name>
        <t>As users execute the algorithms for searching, monitoring, or updating their
view of the tree, they inspect a series of log entries. For some of
these, only the timestamp of the log entry is needed. For others,
both the timestamp and a <tt>PrefixProof</tt> from the log entry's prefix tree are
needed.</t>
        <t>This subsection defines a general structure, called a <tt>CombinedTreeProof</tt>, that
contains the minimum set of timestamps and <tt>PrefixProof</tt> structures that a user
needs for their execution of these algorithms. For the purposes of this protocol,
the user always executes the algorithm to update their view of the tree,
described in <xref target="updating-views-of-the-tree"/>, followed immediately by one of the
algorithms to search or monitor the tree.</t>
        <t>Proofs are encoded as follows:</t>
        <sourcecode type="tls"><![CDATA[
struct {
  uint64 timestamps<0..2^8-1>;
  PrefixProof prefix_proofs<0..2^8-1>;
  NodeValue prefix_roots<0..2^8-1>;

  InclusionProof inclusion;
} CombinedTreeProof;
]]></sourcecode>
        <t>The <tt>timestamps</tt> field contains the timestamps of specific log entries and the
<tt>prefix_proofs</tt> field contains search proofs from the prefix trees of specific
log entries. There is no explicit indication as to which log entry the elements
correspond to, as they are provided in the order that the algorithm the user is
executing would request them. The elements of the <tt>prefix_roots</tt> field are, in
left-to-right order, the prefix tree root hashes for any log entries whose
timestamp was provided in <tt>timestamps</tt> but a search proof was not provided in
<tt>prefix_proofs</tt>.</t>
        <t>If a log entry's timestamp is referenced multiple times by algorithms in the
same <tt>CombinedTreeProof</tt>, it is only added to the <tt>timestamps</tt> array the first
time. Additionally, when a user advertises a previously observed tree size in
their request, log entry timestamps that the user is expected to have retained
are always omitted from <tt>timestamps</tt>. This may result in there being elements of
<tt>prefix_proofs</tt> or <tt>prefix_roots</tt> that correspond to log entries whose
timestamps are not included in <tt>timestamps</tt></t>
        <t>If different algorithms in the same <tt>CombinedTreeProof</tt> require a search proof
from the same log entry, the <tt>prefix_proofs</tt> array will contain multiple
<tt>PrefixProof</tt> structures for the same log entry. Users <bcp14>MUST</bcp14> verify that all
<tt>PrefixProof</tt> structures corresponding to the same log entry compute the same
prefix tree root hash.</t>
        <t>Users processing a <tt>CombinedTreeProof</tt> <bcp14>MUST</bcp14> verify that the <tt>timestamps</tt>,
<tt>prefix_proofs</tt>, and <tt>prefix_roots</tt> fields contain exactly the expected number
of entries -- no more and no less.</t>
        <t>Finally, the <tt>inclusion</tt> field contains the minimum set of intermediate node
values from the log tree that would allow a user to compute:</t>
        <ul spacing="normal">
          <li>
            <t>The root value of the log tree, and</t>
          </li>
          <li>
            <t>If an <tt>AuditorTreeHead</tt> was provided by the Transparency Log, the root value
of the log tree when it had <tt>AuditorTreeHead.tree_size</tt> leaves,</t>
          </li>
        </ul>
        <t>from the following:</t>
        <ul spacing="normal">
          <li>
            <t>The values of all leaf nodes where either a search proof was provided in
<tt>prefix_proofs</tt> or the prefix tree root hash was provided directly in
<tt>prefix_roots</tt>, and</t>
          </li>
          <li>
            <t>If the user advertised a previously observed tree size in their request, any
intermediate node values the user is expected to have retained.</t>
          </li>
        </ul>
        <section anchor="updating-view">
          <name>Updating View</name>
          <t>For a user to update their view of the tree, the following is provided:</t>
          <ul spacing="normal">
            <li>
              <t>If the user has not previously observed a tree head, the timestamp of each log
entry along the frontier.</t>
            </li>
            <li>
              <t>If the user has previously observed a tree head, the timestamps of each log
entry from the list computed in <xref target="update-algorithm"/>.</t>
            </li>
          </ul>
          <t>Users verify that the timestamps represent a monotonic series, and that the
rightmost timestamp is within the bounds defined by <tt>max_ahead</tt> and
<tt>max_behind</tt>.</t>
        </section>
        <section anchor="fixed-version-search">
          <name>Fixed-Version Search</name>
          <t>For a user to search the combined tree for a specific version of a label, the
following is provided:</t>
          <ul spacing="normal">
            <li>
              <t>For each log entry touched by the algorithm in <xref target="fv-algorithm"/>:
              </t>
              <ul spacing="normal">
                <li>
                  <t>The log entry's timestamp.</t>
                </li>
                <li>
                  <t>If the log entry has surpassed its maximum lifetime and is on the frontier,
the right child's timestamp.</t>
                </li>
                <li>
                  <t>If it is not the case that the log entry has surpassed its maximum lifetime,
is on the frontier, and the log entry's right child has also surpassed its
maximum lifetime, then a <tt>PrefixProof</tt> corresponding to a binary ladder
(<xref target="fv-binary-ladder"/>) in the log entry's prefix tree is provided.</t>
                </li>
              </ul>
            </li>
            <li>
              <t>If the <tt>PrefixProof</tt> from the first log entry containing the target
label-version pair didn't include a lookup for the target version, provide a
second <tt>PrefixProof</tt> from this log entry specifically looking up the target
version.</t>
            </li>
          </ul>
          <t>Users verify the output as specified in <xref target="fv-algorithm"/>.</t>
        </section>
        <section anchor="monitor">
          <name>Monitor</name>
          <t>For a user to monitor a label in the combined tree, the following is provided:</t>
          <ul spacing="normal">
            <li>
              <t>For each entry in the user's monitoring map:
              </t>
              <ul spacing="normal">
                <li>
                  <t>The timestamps needed by the algorithm in <xref target="distinguished-log-entries"/> to
determine where the monitoring algorithm would first reach a distinguished
log entry. This may either be the log entry in the user's monitoring map, or
some other log entry from the list computed in step 2 of <xref target="m-algorithm"/>.</t>
                </li>
                <li>
                  <t>Where necessary for the algorithm in <xref target="m-algorithm"/>, a binary ladder
(<xref target="monitor-binary-ladder"/>) targeting the version in the user's monitoring
map.</t>
                </li>
              </ul>
            </li>
            <li>
              <t>If the user owns the label:
              </t>
              <ul spacing="normal">
                <li>
                  <t>The timestamps needed by the algorithm in <xref target="distinguished-log-entries"/> to
conduct a depth-first search for each subsequent distinguished log entry.</t>
                </li>
                <li>
                  <t>For each distinguished log entry, a binary ladder (<xref target="gv-binary-ladder"/>)
targeting the greatest version of the label that the log entry contains.</t>
                </li>
              </ul>
            </li>
          </ul>
        </section>
        <section anchor="greatest-version-search">
          <name>Greatest-Version Search</name>
          <t>For a user to search the combined tree for the greatest version of a label, the
following is provided:</t>
          <ul spacing="normal">
            <li>
              <t>For each log entry along the frontier, starting from the log entry identified
in <xref target="greatest-version-searches"/>: a binary ladder (<xref target="gv-binary-ladder"/>)
targeting the greatest version of the label that exists in the log overall.</t>
            </li>
          </ul>
          <t>Note that the log entry timestamps are already provided as part of updating the
user's view of the tree and that no additional timestamps are necessary to
identify the starting log entry. Users verify the proof as described in
<xref target="greatest-version-searches"/>.</t>
          <!--

### Proofs for Third-Party Auditing

In third-party auditing, users 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.

~~~ tls-presentation
struct {
  optional<uint32> version;
  VRFProof vrf_proofs<0..2^8-1>;
  PrefixProof prefix_proof;
  InclusionProof inclusion;
} SearchProofCompact;
~~~

The semantics of the `version` field do not change.

Similarly to `SearchProof`, `vrf_proofs` 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).

`prefix_proof` 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.

`inclusion` 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.

-->

</section>
      </section>
    </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.</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>
      <t>Modifications to a user's state <bcp14>MUST</bcp14> only be persisted once the query response
has been fully verified. Queries that fail full verification <bcp14>MUST NOT</bcp14> modify the
user's protocol state in any way.</t>
      <section anchor="search">
        <name>Search</name>
        <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 greatest one.</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  optional<uint64> 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 {
  opaque proof[VRF.Np];
  opaque commitment[Hash.Nh];
} BinaryLadderStep;

struct {
  FullTreeHead full_tree_head;

  optional<uint32> version;
  BinaryLadderStep binary_ladder<0..2^8-1>;
  CombinedTreeProof search;

  opaque opening[Nc];
  UpdateValue value;
} SearchResponse;
]]></sourcecode>
        <t>Each <tt>BinaryLadderStep</tt> structure contains information related to one version of
the label that's in the binary ladder. The <tt>proof</tt> field contains the VRF
proof, and <tt>commitment</tt> contains the commitment to the label's value at that
version. The <tt>binary_ladder</tt> field contains these structures in the same order
that the versions are output by the algorithm in <xref target="binary-ladder"/>.</t>
        <t>The <tt>search</tt> field contains the output of updating the user's view of the tree
to match <tt>FullTreeHead.tree_head.size</tt> followed by either a fixed-version or
greatest-version search for the requested label, depending on whether <tt>version</tt>
was provided in <tt>SearchRequest</tt> or not. If searching for the greatest version of
the label, this version is provided in <tt>SearchResponse.version</tt>; otherwise, the
field is empty.</t>
        <t>Users verify a search response by following these steps:</t>
        <ol spacing="normal" type="1"><li>
            <t>Compute the VRF output for each version of the label from the proofs in
<tt>binary_ladder</tt>.</t>
          </li>
          <li>
            <t>Verify the proof in <tt>search</tt> as described in <xref target="proof-combined-tree"/>.</t>
          </li>
          <li>
            <t>Compute a candidate root value for the tree from the proof in
<tt>search.inclusion</tt> and any previously retained full subtrees of the log tree.</t>
          </li>
          <li>
            <t>With the candidate root value for the tree, verify <tt>FullTreeHead</tt>.</t>
          </li>
          <li>
            <t>Verify that the commitment to the target version of the label 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<uint64> 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 an updated timestamp and prefix tree root. It returns
an UpdateResponse structure:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  FullTreeHead full_tree_head;

  uint32 version;
  BinaryLadderStep binary_ladder<0..2^8-1>;
  CombinedTreeProof search;

  opaque opening[Nc];
  UpdatePrefix prefix;
} UpdateResponse;
]]></sourcecode>
        <t>Users verify the UpdateResponse as if it were a SearchResponse for the greatest
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>
        <!-- TODO: This could probably be a lot more efficient -->

</section>
      <section anchor="monitor-1">
        <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 {
  uint64 position;
  uint32 version;
} MonitorMapEntry;

struct {
  opaque label<0..2^8-1>;
  MonitorMapEntry entries<0..2^8-1>;
  optional<uint64> rightmost;
} MonitorLabel;

struct {
  optional<uint64> last;
  MonitorLabel labels<0..2^8-1>;
} MonitorRequest;
]]></sourcecode>
        <t>Each MonitorLabel structure in <tt>labels</tt> contains the label to monitor in
<tt>label</tt>, and a list in the <tt>entries</tt> field corresponding to the map described in
<xref target="m-algorithm"/>. If the user owns the label, they additionally indicate in
<tt>rightmost</tt> the position of the rightmost distinguished log entry where they
have verified that the greatest version of the label is correctly represented.</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 <tt>label</tt> field of every MonitorLabel is unique. For all
MonitorLabel structures with <tt>rightmost</tt> provided, verify that the user owns
the label (according to application-layer policy). For all other MonitorLabel
structures, verify that the user is currently, or was previously, allowed to
lookup all versions of the label contained in a MonitorMapEntry.</t>
          </li>
          <li>
            <t>Verify that each MonitorMapEntry in the same MonitorLabel structure is sorted
in ascending order by <tt>position</tt>. Additionally, verify that each <tt>version</tt>
field is unique and that <tt>position</tt> lies on the direct path of the first log
entry to contain version <tt>version</tt> of the label.</t>
          </li>
          <li>
            <t>Verify that <tt>rightmost</tt> is a distinguished log entry to the right of
the first version of the label, or that it was the rightmost distinguished
log entry immediately after the label was first inserted.</t>
          </li>
        </ol>
        <t>While access control decisions generally belong solely to the application, users
must be able to monitor versions of a label they previously looked up, even if
they would no longer be allowed to make the same query. One simple way for a
user to prove that they were previously allowed to lookup a particular version
of a label would be for them to provide the commitment opening for the version.
However, there is no provision for this in the protocol; it would need to be
done in the application layer.</t>
        <t>If the request is valid and passes access control, the Transparency Log responds
with a MonitorResponse structure:</t>
        <sourcecode type="tls-presentation"><![CDATA[
struct {
  uint32 versions<0..2^8-1>;
} MonitorLabelVersions;

struct {
  FullTreeHead full_tree_head;
  MonitorLabelVersions label_versions<0..2^8-1>;
  CombinedTreeProof monitor;
} MonitorResponse;
]]></sourcecode>
        <t>The <tt>monitor</tt> field contains the output of updating the user's view of the tree
to match <tt>FullTreeHead.tree_head.size</tt> followed by monitoring each label in
<tt>labels</tt>, in the order provided. Each MonitorLabel structure where <tt>rightmost</tt>
was present has a corresponding entry in <tt>label_versions</tt> containing the
greatest version of the label present in a number of subsequent distinguished
log entries.</t>
        <t>Users verify a MonitorResponse by following these steps:</t>
        <ol spacing="normal" type="1"><li>
            <t>Verify that the number of entries in <tt>label_versions</tt> is equal to the number
of MonitorLabel structures in <tt>labels</tt> with <tt>rightmost</tt> present. If a
MonitorLabel has a <tt>rightmost</tt> field that is not the rightmost distinguished
log entry, verify that the corresponding MonitorLabelVersion's <tt>versions</tt>
field is not empty.</t>
          </li>
          <li>
            <t>Verify the proof in <tt>monitor</tt> as described in <xref target="proof-combined-tree"/>.</t>
          </li>
          <li>
            <t>Compute a candidate root value for the tree from the proof in
<tt>monitor.inclusion</tt> and any previously retained full subtrees of the log
tree.</t>
          </li>
          <li>
            <t>With the candidate root value for the tree, verify <tt>FullTreeHead</tt>.</t>
          </li>
        </ol>
        <t>Some information is omitted from MonitorResponse in the interest of efficiency,
because 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 Cipher Suites (<xref target="kt-cipher-suites"/>)</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-cipher-suites">
        <name>KT Cipher Suites</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="ARCH">
          <front>
            <title>Key Transparency Architecture</title>
            <author fullname="Brendan McMillion" initials="B." surname="McMillion">
         </author>
            <date day="25" month="February" year="2025"/>
            <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-03"/>
        </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="RFC9381">
          <front>
            <title>Verifiable Random Functions (VRFs)</title>
            <author fullname="S. Goldberg" initials="S." surname="Goldberg"/>
            <author fullname="L. Reyzin" initials="L." surname="Reyzin"/>
            <author fullname="D. Papadopoulos" initials="D." surname="Papadopoulos"/>
            <author fullname="J. Včelák" initials="J." surname="Včelák"/>
            <date month="August" year="2023"/>
            <abstract>
              <t>A Verifiable Random Function (VRF) is the public key version of a keyed cryptographic hash. Only the holder of the secret key can compute the hash, but anyone with the public key can verify the correctness of the hash. VRFs are useful for preventing enumeration of hash-based data structures. This document specifies VRF constructions based on RSA and elliptic curves that are secure in the cryptographic random oracle model.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9381"/>
          <seriesInfo name="DOI" value="10.17487/RFC9381"/>
        </reference>
        <reference anchor="RFC2104">
          <front>
            <title>HMAC: Keyed-Hashing for Message Authentication</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="M. Bellare" initials="M." surname="Bellare"/>
            <author fullname="R. Canetti" initials="R." surname="Canetti"/>
            <date month="February" year="1997"/>
            <abstract>
              <t>This document describes HMAC, a mechanism for message authentication using cryptographic hash functions. HMAC can be used with any iterative cryptographic hash function, e.g., MD5, SHA-1, in combination with a secret shared key. The cryptographic strength of HMAC depends on the properties of the underlying hash function. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2104"/>
          <seriesInfo name="DOI" value="10.17487/RFC2104"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="CONIKS" target="https://eprint.iacr.org/2014/1004">
          <front>
            <title>CONIKS: Bringing Key Transparency to End Users</title>
            <author initials="M. S." surname="Melara" fullname="Marcela S. Melara">
              <organization/>
            </author>
            <author initials="A." surname="Blankstein" fullname="Aaron Blankstein">
              <organization/>
            </author>
            <author initials="J." surname="Bonneau" fullname="Joseph Bonneau">
              <organization/>
            </author>
            <author initials="E. W." surname="Felten" fullname="Edward W. Felten">
              <organization/>
            </author>
            <author initials="M. J." surname="Freedman" fullname="Michael J. Freedman">
              <organization/>
            </author>
            <date year="2014" month="April" day="27"/>
          </front>
        </reference>
        <reference anchor="SEEMLess" target="https://eprint.iacr.org/2018/607">
          <front>
            <title>SEEMless: Secure End-to-End Encrypted Messaging with less trust</title>
            <author initials="M." surname="Chase" fullname="Melissa Chase">
              <organization/>
            </author>
            <author initials="A." surname="Deshpande" fullname="Apoorvaa Deshpande">
              <organization/>
            </author>
            <author initials="E." surname="Ghosh" fullname="Esha Ghosh">
              <organization/>
            </author>
            <author initials="H." surname="Malvai" fullname="Harjasleen Malvai">
              <organization/>
            </author>
            <date year="2018" month="June" day="18"/>
          </front>
        </reference>
        <reference anchor="OPTIKS" target="https://eprint.iacr.org/2023/1515">
          <front>
            <title>OPTIKS: An Optimized Key Transparency System</title>
            <author initials="J." surname="Len" fullname="Julia Len">
              <organization/>
            </author>
            <author initials="M." surname="Chase" fullname="Melissa Chase">
              <organization/>
            </author>
            <author initials="E." surname="Ghosh" fullname="Esha Ghosh">
              <organization/>
            </author>
            <author initials="K." surname="Laine" fullname="Kim Laine">
              <organization/>
            </author>
            <author initials="R. C." surname="Moreno" fullname="Radames Cruz Moreno">
              <organization/>
            </author>
            <date year="2023" month="October" day="04"/>
          </front>
        </reference>
        <reference anchor="Merkle2" target="https://eprint.iacr.org/2021/453">
          <front>
            <title>Merkle^2: A Low-Latency Transparency Log System</title>
            <author initials="Y." surname="Hu" fullname="Yuncong Hu">
              <organization/>
            </author>
            <author initials="K." surname="Hooshmand" fullname="Kian Hooshmand">
              <organization/>
            </author>
            <author initials="H." surname="Kalidhindi" fullname="Harika Kalidhindi">
              <organization/>
            </author>
            <author initials="S. J." surname="Yang" fullname="Seung Jin Yang">
              <organization/>
            </author>
            <author initials="R. A." surname="Popa" fullname="Raluca Ada Popa">
              <organization/>
            </author>
            <date year="2021" month="April" day="08"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 1858?>

<section anchor="appendix-implicit-search-tree">
      <name>Implicit Binary Search Tree</name>
      <t>The following Python code demonstrates efficient algorithms for navigating the
implicit binary search tree:</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>
    </section>
    <section anchor="appendix-binary-ladder">
      <name>Binary Ladder</name>
      <t>The following Python code demonstrates efficient algorithms for computing the
versions of a label to include in a binary ladder:</t>
      <sourcecode type="python"><![CDATA[
# Returns the set of versions that would be looked up to establish that n was
# the greatest version of a label that existed.
def base_binary_ladder(n):
    out = []

    # Output powers of two minus one until reaching a value greater than n.
    while True:
        value = (1 << len(out)) - 1
        out.append(value)
        if value > n:
            break

    # Binary search between the established lower and upper bounds.
    lower_bound = out[-2]
    upper_bound = out[-1]

    while lower_bound+1 < upper_bound:
        value = (lower_bound + upper_bound) // 2
        out.append(value)
        if value <= n:
            lower_bound = value
        else:
            upper_bound = value

    return out

# Returns the set of versions that would be looked up in a binary ladder for a
# fixed-version search where the target version is t and the greatest version of
# the label that exists in a given version of the prefix tree is n.
def fixed_version_binary_ladder(
    t, n,
    left_inclusion = [], right_non_inclusion = []
):
    def would_end(v):
        # (Proof of inclusion for a version greater than or equal to t) OR
        # (Proof of non-inclusion for a version less than t)
        return (v <= n and v >= t) or (v > n and v < t)

    def would_be_duplicate(v):
        return (v <= n and v in left_inclusion) or \
               (v > n and v in right_non_inclusion)

    out = base_binary_ladder(n)
    end = next((i+1 for i,v in enumerate(out) if would_end(v)), len(out))
    filtered_out = [v for v in out[:end] if not would_be_duplicate(v)]

    return filtered_out

# Returns the set of versions that would be looked up in a binary ladder for a
# monitoring query where the monitored version of the label is t.
def monitor_binary_ladder(t, left_inclusion = []):
    out = base_binary_ladder(t)
    filtered_out = [v for v in out if v <= t and v not in left_inclusion]

    return filtered_out

# Returns the set of versions that would be looked up in a binary ladder for a
# greatest-version search where the greatest version of a label that exists
# globally is t but the greatest version of the label in a given version of the
# prefix tree is n.
def greatest_version_binary_ladder(
    t, n, distinguished,
    left_inclusion = [], right_non_inclusion = [], same_entry = []
):
    def would_end(v):
        # Proof of non-inclusion for a version less than t
        return (v > n and v < t)

    def would_be_duplicate(v):
        if distinguished:
            return (v <= n and v in left_inclusion) or \
                   (v > n and v in right_non_inclusion)
        else:
            return v in same_entry

    out = base_binary_ladder(t)
    end = next((i+1 for i,v in enumerate(out) if would_end(v)), len(out))
    filtered_out = [v for v in out[:end] if not would_be_duplicate(v)]

    return filtered_out
]]></sourcecode>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+19a3fbRpbg9/oVGOectaSQtGU76YzTya7iOBNP7NhrO0n3
6e4xQRKSMCYBLgBKVjue37K/ZX/Z3mfVrQJAyZnu3jPnrE+3IpFAPW7duu/H
dDp1Xdmti4fZrR+Kq+x1k1ftNm+KanmVvWjqrl7W61tumXfFWd1cPczabuXc
ql5W+QbeWTX5aTcti+50+ra46vDl6Vbemt49du1usSnbtqyr7moLzz95/Po7
d/Ewu+9givxh9urxI3dZN2/Pmnq3fZj98PiPr1+e/Pgq+wU+K6uz7F/wcwdD
w0Orhy7Lphn8kXVmle6iqHYFfieD9PZxC77j6W9F4+Lnm7xcw+e6+P+BW5nV
zRl+lzfLc/juvOu27cM7d/BR/Ki8KGb62B384M6iqS/b4o4OcgdfPiu7890C
XifgXJ55+NxhmG09bLNsDdBtOzNV+s6MR5uVdfL2nX0HMDvvNjC+y3fded0A
hKYwV5ad7tZrPr1b3wB8VnmVPVs+K9drOKVb9EQhUFnw15vlhr/9H2f4xWxZ
b24NDPZdsS7fZU/L6m3RxOOs6bNT/N4O4aq62eQdwPOhc2V1Gv7KskfPf3zy
w6uHNEyXN2cFgEehU2ybsupmZb5s6Azu3T1+cOf47t0H/LRgs4yQfQMPn+GZ
99C7q7PH1Sr7qS2alhe8goN4mOF407sPpvd+Rx968NG/acbbfQYnX6zz7NUs
ewb/bfLk+5O8qavsm3VevW27oqySr/+1bovtefZNXVVFvku+fLy6zJtV9sss
A5h2Rfrus3J5nhfr7F/h+6YoVpscn3j1+PGzp0Xb3hhmX9z5/O7vIpDhEGsc
IntVLHdNgeCZdvUUofS4WjZX265YwXbbNieIXgJWZvgCXMhd2yUw/GJ69/Pp
8Rf7YAgYAWNlj87ztkjht63r5iLPs2+L9nybV6v0gcfteZ79y3ndnidffJ83
/56366IAvM7XF3kJ3z9/8foj0One/TvHnx1/FsFGRshOquz5tis35V8BFD2U
enUFh72JAXHv/vT47lSwcxgQ/7pbl3n2tH/SewA0uv8fyk32NC+r9IWX+Qr+
22aPmt1fs2c1LLiGJ54Vzdt1ce/GoDm+8+Cz+xFkeIR/uwewyZ7Wl9OnsG+E
RQSYp/XZMHCO8abd3Yclf9xVyxqw7fv0mvxQAun6vgYIwA1Y9bGgfJtnP+Tr
cnVeVqsy+f5VsYMx/7Wssj/m1VkPVOvdMs9OVnn2ot7mzrnpdJrlixYI7LJz
7pfzcl1k3XkBdwQ2mLXFRdHk6wyoeL6AIzsH3FAq3GZA2LKCbxL8B36lmwT0
dOIaIB1I8tZX2brsAJ5Z3gH08MsMzjxbIBafwQMVUquWbiU8uyphJeVi1+Et
hGXQ8DugY267g/mXyCR53na3PDczzrKTNsuzpmh3626Cr7aFWSnupT6FBQCb
B5LvLnbrCja2wM3WWZFfFO2qqbdbnHZxlQEsYGm45HwJBL6d9S9EidPpBA5X
FK29Laq2pEFohfVZk2/PYf2eGwCQeA8ADLO3CTyR5e4yByp+nnewIbhAC4BM
UeKpwIxwIlXXwmMdch5cDGwNZi+6Ygmf01tll9VLAGkDx0Xjwb1G8AI6wbZn
fOqbcrVaF4ACn2RPqq6pV7slLsu5x70jhWGAsW12VbmkpcP2motyCXeOTg0+
wLPiU8yKd0DFqzMEeHRqCOiqxSdojRuitjQEcM4KJqhOyxWiSL6eZU86hDAI
NzDjGqbI23a3KVaOXpXZEfwX8ErTwsuw12XHW4RRaT12cni/XpY57oSIe5Ev
zx0i1m34brmsd0AN4MpdIr4j+sDk8L+q7rJ8DYdBjKAAJOvNLQBvHQAIPgOh
EKaA89jA/VyW9Q7WBpdZIHLdqvKMl+RkSfRpvevwxbLJ3lb15bpYnRUTvqKI
qet1famXJazJ4DScjgMqkpWbLUCqrmA2XjNOBajwGvcKci+AFyZcFe0SkLiw
2M2PFxVeF/ycxFE4XRohPVc4oYKWBdf8gnfcAunJLsriEt+5ycFkNW4vgAHu
32OcAfeZI6K0cNVwtTQogaANi+GbkF2ew23fVUx6kalFyEiLIyKULoBBLTPj
dVwR0tPU27pjBDWnDSBEnoPTggBIF85fcaCscnoBmEBAOsAM4PxwW/Fg8FtG
sfPC+ccQaxY46nZdX+H9479PYVV0p9+//6eTl4++/+rJ9NtZLCWTKI8ggCP5
8GGG9/tRXV0w8eUpvy1Oy6qkvxEBCtI9UBNpgev99Or1rQn/N/vxOf3+8vH/
/OnJy8ff4u+vvj95+tT/4uSJV98//+npt+G38Oaj58+ePf7xW34ZPs2ij9yt
Zyd/hG9wVSSKPP/x5Okt3GAX4SUScDhbgAARPiCDeGB56xRhCSjfPHrxf/73
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
AQA=

-->

</rfc>
