<?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-rfc2629 version 1.5.26 (Ruby 3.0.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-mls-protocol-13" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.0 -->
  <front>
    <title abbrev="MLS">The Messaging Layer Security (MLS) Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-mls-protocol-13"/>
    <author initials="R." surname="Barnes" fullname="Richard Barnes">
      <organization>Cisco</organization>
      <address>
        <email>rlb@ipv.sx</email>
      </address>
    </author>
    <author initials="B." surname="Beurdouche" fullname="Benjamin Beurdouche">
      <organization>Inria &amp; Mozilla</organization>
      <address>
        <email>ietf@beurdouche.com</email>
      </address>
    </author>
    <author initials="R." surname="Robert" fullname="Raphael Robert">
      <organization/>
      <address>
        <email>ietf@raphaelrobert.com</email>
      </address>
    </author>
    <author initials="J." surname="Millican" fullname="Jon Millican">
      <organization>Facebook</organization>
      <address>
        <email>jmillican@fb.com</email>
      </address>
    </author>
    <author initials="E." surname="Omara" fullname="Emad Omara">
      <organization>Google</organization>
      <address>
        <email>emadomara@google.com</email>
      </address>
    </author>
    <author initials="K." surname="Cohn-Gordon" fullname="Katriel Cohn-Gordon">
      <organization>University of Oxford</organization>
      <address>
        <email>me@katriel.co.uk</email>
      </address>
    </author>
    <date year="2022" month="March" day="07"/>
    <area>Security</area>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>Messaging applications are increasingly making use of end-to-end
security mechanisms to ensure that messages are only accessible to
the communicating endpoints, and not to any servers involved in delivering
messages.  Establishing keys to provide such protections is
challenging for group chat settings, in which more than two
clients need to agree on a key but may not be online at the same
time.  In this document, we specify a key establishment
protocol that provides efficient asynchronous group key establishment
with forward secrecy and post-compromise security for groups
in size ranging from two to thousands.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/mlswg/mls-protocol">https://github.com/mlswg/mls-protocol</eref>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>DISCLAIMER: This is a work-in-progress draft of MLS and has not yet
seen significant security analysis. It should not be used as a basis
for building production systems.</t>
      <t>RFC EDITOR: PLEASE REMOVE THE FOLLOWING PARAGRAPH The source for
this draft is maintained in GitHub. Suggested changes should be
submitted as pull requests at https://github.com/mlswg/mls-protocol.
Instructions are on that page as well. Editorial changes can be
managed in GitHub, but any substantive change should be discussed on
the MLS mailing list.</t>
      <t>A group of users who want to send each other encrypted messages needs
a way to derive shared symmetric encryption keys. For two parties,
this problem has been studied thoroughly, with the Double Ratchet
emerging as a common solution <xref target="doubleratchet"/> <xref target="signal"/>.
Channels implementing the Double Ratchet enjoy fine-grained forward secrecy
as well as post-compromise security, but are nonetheless efficient
enough for heavy use over low-bandwidth networks.</t>
      <t>For a group of size greater than two, a common strategy is to
unilaterally broadcast symmetric "sender" keys over existing shared
symmetric channels, and then for each member to send messages to the
group encrypted with their own sender key. Unfortunately, while this
improves efficiency over pairwise broadcast of individual messages and
provides forward secrecy (with the addition of a hash ratchet),
it is difficult to achieve post-compromise security with
sender keys. An adversary who learns a sender key can often indefinitely and
passively eavesdrop on that member's messages.  Generating and
distributing a new sender key provides a form of post-compromise
security with regard to that sender.  However, it requires
computation and communications resources that scale linearly with
the size of the group.</t>
      <t>In this document, we describe a protocol based on tree structures
that enable asynchronous group keying with forward secrecy and
post-compromise security.  Based on earlier work on "asynchronous
ratcheting trees" <xref target="art"/>, the protocol presented here uses an
asynchronous key-encapsulation mechanism for tree structures.
This mechanism allows the members of the group to derive and update
shared keys with costs that scale as the log of the group size.</t>
      <section anchor="change-log">
        <name>Change Log</name>
        <t>RFC EDITOR PLEASE DELETE THIS SECTION.</t>
        <t>draft-13</t>
        <ul spacing="normal">
          <li>TLS syntax updates (including variable-header-length vectors) (*)</li>
          <li>Stop generating redundant PKE key pairs. (*)</li>
          <li>Move validation of identity change to the AS</li>
          <li>Add message/mls MIME type registration</li>
          <li>Split LeafNode from KeyPackage (*)</li>
          <li>Remove endpoint_id (*)</li>
          <li>Reorganize to make section layout more sane</li>
          <li>Forbid proposals by reference in external commits (*)</li>
          <li>Domain separation for KeyPackage and Proposal references (*)</li>
          <li>Downgrade MUST to SHOULD for commit senders including all valid commits</li>
          <li>Stronger parent hashes for authenticated identities (*)</li>
          <li>Move wire_format to a separate tagged-union structure MLSMessage</li>
          <li>Generalize tree extend/truncate algorithms</li>
          <li>Add algorithms for link-based trees</li>
          <li>Forbid self-Update entirely (*)</li>
          <li>Consolidate resumption PSK cases (*)</li>
          <li>384 Ciphersuite Addition</li>
          <li>Remove explicit version pin on HPKE (*)</li>
          <li>Remove the requirement for Add in external commit (*)</li>
          <li>Use smaller, fixed-size hash-based identifiers (*)</li>
          <li>Be explicit that Credentials can attest to multiple identities (*)</li>
        </ul>
        <t>draft-12</t>
        <ul spacing="normal">
          <li>Use the GroupContext to derive the joiner_secret (*)</li>
          <li>Make PreSharedKeys non optional in GroupSecrets (*)</li>
          <li>Update name for this particular key (*)</li>
          <li>Truncate tree size on removal (*)</li>
          <li>Use HPKE draft-08 (*)</li>
          <li>Clarify requirements around identity in MLS groups (*)</li>
          <li>Signal the intended wire format for MLS messages (*)</li>
          <li>Inject GroupContext as HPKE info instead of AAD (*)</li>
          <li>Clarify extension handling and make extension updatable (*)</li>
          <li>Improve extensibility of Proposals (*)</li>
          <li>Constrain proposal in External Commit (*)</li>
          <li>Remove the notion of a 'leaf index' (*)</li>
          <li>Add group_context_extensions proposal ID (*)</li>
          <li>Add RequiredCapabilities extension (*)</li>
          <li>Use cascaded KDF instead of concatenation to consolidate PSKs (*)</li>
          <li>Use key package hash to index clients in message structs (*)</li>
          <li>Don't require PublicGroupState for external init (*)</li>
          <li>Make ratchet tree section clearer.</li>
          <li>Handle non-member sender cases in MLSPlaintextTBS</li>
          <li>Clarify encoding of signatures with NIST curves</li>
          <li>Remove OPEN ISSUEs and TODOs</li>
          <li>Normalize the description of the zero vector</li>
        </ul>
        <t>draft-11</t>
        <ul spacing="normal">
          <li>Include subtree keys in parent hash (*)</li>
          <li>Pin HPKE to draft-07 (*)</li>
          <li>Move joiner secret to the end of the first key schedule epoch (*)</li>
          <li>Add an AppAck proposal</li>
          <li>Make initializations of transcript hashes consistent</li>
        </ul>
        <t>draft-10</t>
        <ul spacing="normal">
          <li>Allow new members to join via an external Commit (*)</li>
          <li>Enable proposals to be sent inline in a Commit (*)</li>
          <li>Re-enable constant-time Add (*)</li>
          <li>Change expiration extension to lifetime extension (*)</li>
          <li>Make the tree in the Welcome optional (*)</li>
          <li>PSK injection, re-init, sub-group branching (*)</li>
          <li>Require the initial init_secret to be a random value (*)</li>
          <li>Remove explicit sender data nonce (*)</li>
          <li>Do not encrypt to joiners in UpdatePath generation (*)</li>
          <li>Move MLSPlaintext signature under the confirmation tag (*)</li>
          <li>Explicitly authenticate group membership with MLSPLaintext (*)</li>
          <li>Clarify X509Credential structure (*)</li>
          <li>Remove unneeded interim transcript hash from GroupInfo (*)</li>
          <li>IANA considerations</li>
          <li>Derive an authentication secret</li>
          <li>Use Extract/Expand from HPKE KDF</li>
          <li>Clarify that application messages MUST be encrypted</li>
        </ul>
        <t>draft-09</t>
        <ul spacing="normal">
          <li>Remove blanking of nodes on Add (*)</li>
          <li>Change epoch numbers to uint64 (*)</li>
          <li>Add PSK inputs (*)</li>
          <li>Add key schedule exporter (*)</li>
          <li>Sign the updated direct path on Commit, using "parent hashes" and one
signature per leaf (*)</li>
          <li>Use structured types for external senders (*)</li>
          <li>Redesign Welcome to include confirmation and use derived keys (*)</li>
          <li>Remove ignored proposals (*)</li>
          <li>Always include an Update with a Commit (*)</li>
          <li>Add per-message entropy to guard against nonce reuse (*)</li>
          <li>Use the same hash ratchet construct for both application and handshake keys (*)</li>
          <li>Add more ciphersuites</li>
          <li>Use HKDF to derive key pairs (*)</li>
          <li>Mandate expiration of ClientInitKeys (*)</li>
          <li>Add extensions to GroupContext and flesh out the extensibility story (*)</li>
          <li>Rename ClientInitKey to KeyPackage</li>
        </ul>
        <t>draft-08</t>
        <ul spacing="normal">
          <li>Change ClientInitKeys so that they only refer to one ciphersuite (*)</li>
          <li>Decompose group operations into Proposals and Commits (*)</li>
          <li>Enable Add and Remove proposals from outside the group (*)</li>
          <li>Replace Init messages with multi-recipient Welcome message (*)</li>
          <li>Add extensions to ClientInitKeys for expiration and downgrade resistance (*)</li>
          <li>Allow multiple Proposals and a single Commit in one MLSPlaintext (*)</li>
        </ul>
        <t>draft-07</t>
        <ul spacing="normal">
          <li>Initial version of the Tree based Application Key Schedule (*)</li>
          <li>Initial definition of the Init message for group creation (*)</li>
          <li>Fix issue with the transcript used for newcomers (*)</li>
          <li>Clarifications on message framing and HPKE contexts (*)</li>
        </ul>
        <t>draft-06</t>
        <ul spacing="normal">
          <li>Reorder blanking and update in the Remove operation (*)</li>
          <li>Rename the GroupState structure to GroupContext (*)</li>
          <li>Rename UserInitKey to ClientInitKey</li>
          <li>Resolve the circular dependency that draft-05 introduced in the
confirmation MAC calculation (*)</li>
          <li>Cover the entire MLSPlaintext in the transcript hash (*)</li>
        </ul>
        <t>draft-05</t>
        <ul spacing="normal">
          <li>Common framing for handshake and application messages (*)</li>
          <li>Handshake message encryption (*)</li>
          <li>Convert from literal state to a commitment via the "tree hash" (*)</li>
          <li>Add credentials to the tree and remove the "roster" concept (*)</li>
          <li>Remove the secret field from tree node values</li>
        </ul>
        <t>draft-04</t>
        <ul spacing="normal">
          <li>Updating the language to be similar to the Architecture document</li>
          <li>ECIES is now renamed in favor of HPKE (*)</li>
          <li>Using a KDF instead of a Hash in TreeKEM (*)</li>
        </ul>
        <t>draft-03</t>
        <ul spacing="normal">
          <li>Added ciphersuites and signature schemes (*)</li>
          <li>Re-ordered fields in UserInitKey to make parsing easier (*)</li>
          <li>Fixed inconsistencies between Welcome and GroupState (*)</li>
          <li>Added encryption of the Welcome message (*)</li>
        </ul>
        <t>draft-02</t>
        <ul spacing="normal">
          <li>Removed ART (*)</li>
          <li>Allowed partial trees to avoid double-joins (*)</li>
          <li>Added explicit key confirmation (*)</li>
        </ul>
        <t>draft-01</t>
        <ul spacing="normal">
          <li>Initial description of the Message Protection mechanism. (*)</li>
          <li>Initial specification proposal for the Application Key Schedule
using the per-participant chaining of the Application Secret design. (*)</li>
          <li>Initial specification proposal for an encryption mechanism to protect
Application Messages using an AEAD scheme. (*)</li>
          <li>Initial specification proposal for an authentication mechanism
of Application Messages using signatures. (*)</li>
          <li>Initial specification proposal for a padding mechanism to improving
protection of Application Messages against traffic analysis. (*)</li>
          <li>Inversion of the Group Init Add and Application Secret derivations
in the Handshake Key Schedule to be ease chaining in case we switch
design. (*)</li>
          <li>Removal of the UserAdd construct and split of GroupAdd into Add
and Welcome messages (*)</li>
          <li>Initial proposal for authenticating handshake messages by signing
over group state and including group state in the key schedule (*)</li>
          <li>Added an appendix with example code for tree math</li>
          <li>Changed the ECIES mechanism used by TreeKEM so that it uses nonces
generated from the shared secret</li>
        </ul>
        <t>draft-00</t>
        <ul spacing="normal">
          <li>Initial adoption of draft-barnes-mls-protocol-01 as a WG item.</li>
        </ul>
      </section>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" 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>
      <dl>
        <dt>
Client:  </dt>
        <dd>
          <t>An agent that uses this protocol to establish shared cryptographic
state with other clients.  A client is defined by the
cryptographic keys it holds.</t>
        </dd>
        <dt>
Group:  </dt>
        <dd>
          <t>A group represents a logical collection of clents that share a common
secret value at any given time.  Its state is represented as a linear
sequence of epochs in which each epoch depends on its predecessor.</t>
        </dd>
        <dt>
Epoch:  </dt>
        <dd>
          <t>A state of a group in which a specific set of authenticated clients hold
shared cryptographic state.</t>
        </dd>
        <dt>
Member:  </dt>
        <dd>
          <t>A client that is included in the shared state of a group, hence
has access to the group's secrets.</t>
        </dd>
        <dt>
Key Package:  </dt>
        <dd>
          <t>A signed object describing a client's identity and capabilities, and including
a hybrid public-key encryption (HPKE <xref target="RFC9180"/>) public key that
can be used to encrypt to that client, and which other clients can use to
introduce the client to a new group.</t>
        </dd>
        <dt>
Signature Key:  </dt>
        <dd>
          <t>A signing key pair used to authenticate the sender of a message.</t>
        </dd>
        <dt>
Handshake Message:  </dt>
        <dd>
          <t>An MLSPlaintext or MLSCiphertext message carrying an MLS Proposal or Commit
object, as opposed to application data.</t>
        </dd>
        <dt>
Application Message:  </dt>
        <dd>
          <t>An MLSCiphertext message carrying application data.</t>
        </dd>
      </dl>
      <t>Terminology specific to tree computations is described in
<xref target="ratchet-tree-terminology"/>.</t>
      <section anchor="presentation-langauge">
        <name>Presentation Langauge</name>
        <t>We use the TLS presentation language <xref target="RFC8446"/> to describe the structure of
protocol messages.  In addition to the base syntax, we add two additional
features, the ability for fields to be optional and the ability for vectors to
have variable-size length headers.</t>
        <section anchor="optional-value">
          <name>Optional Value</name>
          <t>An optional value is encoded with a presence-signaling octet, followed by the
value itself if present.  When decoding, a presence octet with a value other
than 0 or 1 MUST be rejected as malformed.</t>
          <artwork><![CDATA[
struct {
    uint8 present;
    select (present) {
        case 0: struct{};
        case 1: T value;
    }
} optional<T>;
]]></artwork>
        </section>
        <section anchor="variable-size-vector-headers">
          <name>Variable-size Vector Headers</name>
          <t>In the TLS presentation language, vectors are encoded as a sequence of encoded
elements prefixed with a length.  The length field has a fixed size set by
specifying the minimum and maximum lengths of the encoded sequence of elements.</t>
          <t>In MLS, there are several vectors whose sizes vary over significant ranges.  So
instead of using a fixed-size length field, we use a variable-size length using
a variable-length integer encoding based on the one in Section 16 of
<xref target="RFC9000"/>. (They differ only in that the one here requires a minimum-size
encoding.) Instead of presenting min and max values, the vector description
simply includes a <tt>V</tt>. For example:</t>
          <artwork><![CDATA[
struct {
    uint32 fixed<0..255>;
    opaque variable<V>;
} StructWithVectors;
]]></artwork>
          <t>Such a vector can represent values with length from 0 bytes to 2^30 bytes.
The variable-length integer encoding reserves the two most significant bits
of the first byte to encode the base 2 logarithm of the integer encoding length
in bytes.  The integer value is encoded on the remaining bits, in network byte
order.  The encoded value MUST use the smallest number of bits required to
represent the value.  When decoding, values using more bits than necessary MUST
be treated as malformed.</t>
          <t>This means that integers are encoded on 1, 2, or 4 bytes and can encode 6-,
14-, or 30-bit values respectively.</t>
          <table anchor="integer-summary">
            <name>Summary of Integer Encodings</name>
            <thead>
              <tr>
                <th align="left">Prefix</th>
                <th align="left">Length</th>
                <th align="left">Usable Bits</th>
                <th align="left">Min</th>
                <th align="left">Max</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">00</td>
                <td align="left">1</td>
                <td align="left">6</td>
                <td align="left">0</td>
                <td align="left">63</td>
              </tr>
              <tr>
                <td align="left">01</td>
                <td align="left">2</td>
                <td align="left">14</td>
                <td align="left">64</td>
                <td align="left">16383</td>
              </tr>
              <tr>
                <td align="left">10</td>
                <td align="left">4</td>
                <td align="left">30</td>
                <td align="left">16384</td>
                <td align="left">1073741823</td>
              </tr>
              <tr>
                <td align="left">11</td>
                <td align="left">invalid</td>
                <td align="left">-</td>
                <td align="left">-</td>
                <td align="left">-</td>
              </tr>
            </tbody>
          </table>
          <t>Vectors that start with "11" prefix are invalid and MUST be rejected.</t>
          <t>For example, the four byte sequence 0x9d7f3e7d decodes to 494878333;
the two byte sequence 0x7bbd decodes to 15293; and the single byte 0x25
decodes to 37.</t>
          <t>The following figure adapts the pseudocode provided in <xref target="RFC9000"/> to add a
check for minimum-length encoding:</t>
          <artwork><![CDATA[
ReadVarint(data):
  // The length of variable-length integers is encoded in the
  // first two bits of the first byte.
  v = data.next_byte()
  prefix = v >> 6
  length = 1 << prefix

  // Once the length is known, remove these bits and read any
  // remaining bytes.
  v = v & 0x3f
  repeat length-1 times:
    v = (v << 8) + data.next_byte()
  return v

  // Check that the encoder used the minimum bits required
  if length > 1 && v < (1 << (length - 1)):
    raise an exception
]]></artwork>
          <t>The use of variable-size integers for vector lengths allows vectors to grow
very large, up to 2^30 bytes.  Implementations should take care not to allow
vectors to overflow available storage.  To facilitate debugging of potential
interoperatbility problems, implementations should provide a clear error when
such an overflow condition occurs.</t>
        </section>
      </section>
    </section>
    <section anchor="operating-context">
      <name>Operating Context</name>
      <t>MLS is designed to operate in the context described in
<xref target="I-D.ietf-mls-architecture"/>.  In particular, we assume that the following
services are provided:</t>
      <ul spacing="normal">
        <li>
          <t>A Delivery Service that routes MLS messages among the participants in the
protocol.  The following types of delivery are typically required:  </t>
          <ul spacing="normal">
            <li>Pre-publication of KeyPackage objects for clients</li>
            <li>Broadcast delivery of Proposal and Commit messages to members of a group</li>
            <li>Unicast delivery of Welcome messages to new members of a group</li>
          </ul>
        </li>
        <li>An Authentication Service that enables group members to authenticate the
credentials presented by other group members.</li>
      </ul>
    </section>
    <section anchor="protocol-overview">
      <name>Protocol Overview</name>
      <t>The core functionality of MLS is continuous group authenticated key exchange
(AKE).  As with other authenticated key exchange protocols (such as TLS), the
participants in the protocol agree on a common secret value, and each
participant can verify the identity of the other participants.  MLS provides
group AKE in the sense that there can be more than two participants in the
protocol, and continuous group AKE in the sense that the set of participants in
the protocol can change over time.</t>
      <t>The core organizing principles of MLS are <em>groups</em> and <em>epochs</em>.  A group
represents a logical collection of clients that share a common secret value at
any given time.  The history of a group is divided into a linear sequence of
epochs.  In each epoch, a set of authenticated <em>members</em> agree on an <em>epoch
secret</em> that is known only to the members of the group in that epoch.  The set
of members involved in the group can change from one epoch to the next, and MLS
ensures that only the members in the current epoch have access to the epoch
secret.  From the epoch secret, members derive further shared secrets for
message encryption, group membership authentication, etc.</t>
      <t>The creator of an MLS group creates the group's first epoch unilaterally, with
no protocol interactions.  Thereafter, the members of the group advance their
shared cryptographic state from one epoch to another by exchanging MLS messages:</t>
      <ul spacing="normal">
        <li>A <em>KeyPackage</em> object describes a client's capabilities and provides keys that
can be used to add the client to a group.</li>
        <li>A <em>Proposal</em> message proposes a change to be made in the next epoch, such as
adding or removing a member</li>
        <li>A <em>Commit</em> message initiates a new epoch by instructing members of the group
to implement a collection of proposals</li>
        <li>A <em>Welcome</em> message provides a new member to the group with the information to
initialize their state for the epoch in which they were added or in which they
want to add themselves to the group</li>
      </ul>
      <t>KeyPackage and Welcome messages are used to initiate a group or introduce new
members, so they are exchanged between group members and clients not yet in the
group.</t>
      <t>Proposal and Commit messages are sent from one member of a group to the others.
MLS provides a common framing layer for sending messages within a group:
An <em>MLSPlaintext</em>
message provides sender authentication for unencrypted Proposal and Commit
messages.  An <em>MLSCiphertext</em> message provides encryption and authentication for
both Proposal/Commit messages as well as any application data.</t>
      <section anchor="cryptographic-state-and-evolution">
        <name>Cryptographic State and Evolution</name>
        <t>The cryptographic state at the core of MLS is divided into three areas of responsibility:</t>
        <figure>
          <name>Overview of MLS group evolution</name>
          <artwork><![CDATA[
                           epoch_secret
                         _      |      _
|\ Ratchet              /      ...      \                    Secret /|
| \ Tree                :       |       :                     Tree / |
|  \                    :       |       :                         /  |
|   \                   :       V       :                        /   |
|    --> commit_secret --> epoch_secret --> encryption_secret -->    |
|   /                   :       |       :                        \   |
|  /                    :      ...      > Key Schedule            \  |
| /                     :       |       :                          \ |
|/                      \_      |      _/                           \|
                                V
                           epoch_secret
]]></artwork>
        </figure>
        <ul spacing="normal">
          <li>A <em>ratchet tree</em> that represents the membership of the group, providing group
members a way to authenticate each other and efficiently encrypt messages to
subsets of the group.  Each epoch has a distinct ratchet tree. It seeds the
<em>key schedule</em>.</li>
          <li>A <em>key schedule</em> that describes the chain of key derivations used to progress from
epoch to epoch (mainly using the <em>init_secret</em> and <em>epoch_secret</em>); and to derive
a variety of other secrets (see <xref target="epoch-derived-secrets"/>) used during the current
epoch. One of these (the <em>encryption_secret</em>) is the root of <em>secret_tree</em>.</li>
          <li>A <em>secret tree</em> derived from the key schedule that represents shared secrets
used by the members of the group to provide confidentiality and forward
secrecy for MLS messages.  Each epoch has a distinct secret tree.</li>
        </ul>
        <t>Each member of the group maintains a view of these facets of the group's
state.  MLS messages are used to initialize these views and keep them in sync as
the group transitions between epochs.</t>
        <t>Each new epoch is initiated with a Commit message.  The Commit instructs
existing members of the group to update their views of the ratchet tree by applying
a set of Proposals, and uses the updated ratchet tree to distribute fresh
entropy to the group.  This fresh entropy is provided only to members in the new
epoch, not to members who have been removed, so it maintains the confidentiality
of the epoch secret (in other words, it provides post-compromise security with
respect to those members).</t>
        <t>For each Commit that adds member(s) to the group, there is a single corresponding
Welcome message.  The Welcome message provides all the new members with the information
they need to initialize their views of the key schedule and ratchet tree, so
that these views are equivalent to the views held by other members of the group
in this epoch.</t>
        <t>In addition to defining how one epoch secret leads to the next, the key schedule
also defines a collection of secrets that are derived from the epoch secret.
For example:</t>
        <ul spacing="normal">
          <li>An <em>encryption secret</em> that is used to initialize the secret tree for the
epoch.</li>
          <li>A <em>confirmation key</em> that is used to confirm that all members agree on the
shared state of the group.</li>
          <li>A <em>resumption secret</em> that members can use to prove their membership in the
group, e.g., in the case of branching a subgroup.</li>
        </ul>
        <t>Finally, an <em>init secret</em> is derived that is used to initialize the next epoch.</t>
      </section>
      <section anchor="example-protocol-execution">
        <name>Example Protocol Execution</name>
        <t>There are three major operations in the lifecycle of a group:</t>
        <ul spacing="normal">
          <li>Adding a member, initiated by a current member;</li>
          <li>Updating the leaf secret of a member;</li>
          <li>Removing a member.</li>
        </ul>
        <t>Each of these operations is "proposed" by sending a message of the corresponding
type (Add / Update / Remove).  The state of the group is not changed, however,
until a Commit message is sent to provide the group with fresh entropy.  In this
section, we show each proposal being committed immediately, but in more advanced
deployment cases an application might gather several proposals before
committing them all at once.  In the illustrations below, we show the Proposal
and Commit messages directly, while in reality they would be sent encapsulated in
MLSPlaintext or MLSCiphertext objects.</t>
        <t>Before the initialization of a group, clients publish KeyPackages to a directory
provided by the Service Provider.</t>
        <figure>
          <name>Clients A, B, and C publish KeyPackages to the directory</name>
          <artwork><![CDATA[
                                                               Group
A                B                C            Directory       Channel
|                |                |                |              |
| KeyPackageA    |                |                |              |
|------------------------------------------------->|              |
|                |                |                |              |
|                | KeyPackageB    |                |              |
|                |-------------------------------->|              |
|                |                |                |              |
|                |                | KeyPackageC    |              |
|                |                |--------------->|              |
|                |                |                |              |
]]></artwork>
        </figure>
        <t>When a client A wants to establish a group with B and C, it first initializes a
group state containing only itself and downloads KeyPackages for B and C. For
each member, A generates an Add and Commit message adding that member, and
broadcasts them to the group. It also generates a Welcome message and sends this
directly to the new member (there's no need to send it to the group). Only after
A has received its Commit message back from the server does it update its state
to reflect the new member's addition.</t>
        <t>Upon receiving the Welcome message, the new member will be able to read and send
new messages to the group. However, messages sent before they were added to the
group will not be accessible.</t>
        <figure>
          <name>Client A creates a group with clients B and C</name>
          <artwork><![CDATA[
                                                               Group
A              B              C          Directory            Channel
|              |              |              |                   |
|         KeyPackageB, KeyPackageC           |                   |
|<-------------------------------------------|                   |
|              |              |              |                   |
|              |              |              | Add(A->AB)        |
|              |              |              | Commit(Add)       |
|--------------------------------------------------------------->|
|              |              |              |                   |
|  Welcome(B)  |              |              |                   |
|------------->|              |              |                   |
|              |              |              |                   |
|              |              |              | Add(A->AB)        |
|              |              |              | Commit(Add)       |
|<---------------------------------------------------------------|
|              |              |              |                   |
|              |              |              |                   |
|              |              |              | Add(AB->ABC)      |
|              |              |              | Commit(Add)       |
|--------------------------------------------------------------->|
|              |              |              |                   |
|              |  Welcome(C)  |              |                   |
|---------------------------->|              |                   |
|              |              |              |                   |
|              |              |              | Add(AB->ABC)      |
|              |              |              | Commit(Add)       |
|<---------------------------------------------------------------|
|              |<------------------------------------------------|
|              |              |              |                   |
]]></artwork>
        </figure>
        <t>Subsequent additions of group members proceed in the same way.  Any
member of the group can download a KeyPackage for a new client
and broadcast Add and Commit messages that the current group will use to update
their state, and a Welcome message that the new client can use to
initialize its state and join the group.</t>
        <t>To enforce the forward secrecy and post-compromise security of messages, each
member periodically updates the keys that represent them to the group.  A member
does this by sending a Commit (possibly with no proposals), or by sending an
Update message that is committed by another member.  Once the other members of
the group have processed these messages, the group's secrets will be unknown to
an attacker that had compromised the sender's prior leaf secret.</t>
        <t>Update messages should be sent at regular intervals of time as long as the group
is active, and members that don't update should eventually be removed from the
group. It's left to the application to determine an appropriate amount of time
between Updates.</t>
        <figure>
          <name>Client B proposes to update its key, and client A commits the proposal.  As a result, the keys for both B and A updated, so the group has post-compromise security with respect to both of them.</name>
          <artwork><![CDATA[
                                                          Group
A              B     ...      Z          Directory        Channel
|              |              |              |              |
|              | Update(B)    |              |              |
|              |------------------------------------------->|
| Commit(Upd)  |              |              |              |
|---------------------------------------------------------->|
|              |              |              |              |
|              |              |              | Update(B)    |
|              |              |              | Commit(Upd)  |
|<----------------------------------------------------------|
|              |<-------------------------------------------|
|              |              |<----------------------------|
|              |              |              |              |
]]></artwork>
        </figure>
        <t>Members are removed from the group in a similar way.
Any member of the group can send a Remove proposal followed by a
Commit message.  The Commit message provides new entropy to all members of the
group except the removed member.  This new entropy is added to the epoch secret
for the new epoch, so that it is not known to the removed member.
Note that this does not necessarily imply that any member
is actually allowed to evict other members; groups can
enforce access control policies on top of these
basic mechanism.</t>
        <figure>
          <name>Client Z removes client B from the group</name>
          <artwork><![CDATA[
                                                          Group
A              B     ...      Z          Directory       Channel
|              |              |              |              |
|              |              | Remove(B)    |              |
|              |              | Commit(Rem)  |              |
|              |              |---------------------------->|
|              |              |              |              |
|              |              |              | Remove(B)    |
|              |              |              | Commit(Rem)  |
|<----------------------------------------------------------|
|              |              |<----------------------------|
|              |              |              |              |
]]></artwork>
        </figure>
      </section>
      <section anchor="relationships-between-epochs">
        <name>Relationships Between Epochs</name>
        <t>A group has a single linear sequence of epochs. Groups and epochs are generally
independent of one-another. However, it can sometimes be useful to link epochs
cryptographically, either within a group or across groups. MLS derives a
resumption pre-shared key (PSK) from each epoch to allow entropy extracted from
one epoch to be injected into a future epoch. This link guarantees that members
entering the new epoch agree on a key if and only if they were members of the group
during the epoch from which the resumption key was extracted.</t>
        <t>MLS supports two ways to tie a new group to an existing group. Re-initialization
closes one group and creates a new group comprising the same members with
different parameters. Branching starts a new group with a subset of the original
group's participants (with no effect on the original group).  In both cases,
the new group is linked to the old group via a resumption PSK.</t>
        <figure>
          <name>Reinitializing a group</name>
          <artwork><![CDATA[
epoch_A_[n-1]
     |
     |
     |<-- ReInit
     |
     V
epoch_A_[n]           epoch_B_[0]
     .                     |
     .  PSK(usage=reinit)  |
     .....................>|
                           |
                           V
                      epoch_B_[1]
]]></artwork>
        </figure>
        <figure>
          <name>Branching a group</name>
          <artwork><![CDATA[
epoch_A_[n-1]
     |
     |
     |<-- ReInit
     |
     V
epoch_A_[n]           epoch_B_[0]
     |                     |
     |  PSK(usage=branch)  |
     |....................>|
     |                     |
     V                     V
epoch_A_[n+1]         epoch_B_[1]
]]></artwork>
        </figure>
        <t>Applications may also choose to use resumption PSKs to link epochs in other
ways.  For example, the following figure shows a case where a resumption PSK
from epoch <tt>n</tt> is injected into epoch <tt>n+k</tt>.  This demonstrates that the members
of the group at epoch <tt>n+k</tt> were also members at epoch <tt>n</tt>, irrespective of any
changes to these members' keys due to Updates or Commits.</t>
        <figure>
          <name>Reinjecting entropy from an earlier epoch</name>
          <artwork><![CDATA[
epoch_A_[n-1]
     |
     |
     |<-- ReInit
     |
     V
epoch_A_[n]
     |
     |  PSK(usage=application)
     |.....................
     |                    .
     |                    .
    ...                  ...
     |                    .
     |                    .
     V                    .
epoch_A_[n+k-1]           .
     |                    .
     |                    .
     |<....................
     |
     V
epoch_A_[n+k]
]]></artwork>
        </figure>
      </section>
    </section>
    <section anchor="ratchet-tree-concepts">
      <name>Ratchet Tree Concepts</name>
      <t>The protocol uses "ratchet trees" for deriving shared secrets among a group of
clients.  A ratchet tree is an arrangement of secrets and key pairs among the
members of a group in a way that allows for secrets to be efficiently updated to
reflect changes in the group.</t>
      <t>Ratchet trees allow a group to efficiently remove any member by encrypting new
entropy to a subset of the group.  A ratchet tree assigns shared keys to
subgroups of the overall group, so that, for example, encrypting to all but one
member of the group requires only log(N) encryptions, instead of the N-1
encryptions that would be needed to encrypt to each participant individually
(where N is the number of members in the group).</t>
      <t>This remove operation allows MLS to efficiently achieve
post-compromise security.  In an Update proposal or a full Commit message, an old (possibly
compromised) representation of a member is efficiently removed from the group and
replaced with a freshly generated instance.</t>
      <section anchor="ratchet-tree-terminology">
        <name>Ratchet Tree Terminology</name>
        <t>Trees consist of <em>nodes</em>. A node is a
<em>leaf</em> if it has no children, and a <em>parent</em> otherwise; note that all
parents in our trees have precisely
two children, a <em>left</em> child and a <em>right</em> child. A node is the <em>root</em>
of a tree if it has no parents, and <em>intermediate</em> if it has both
children and parents. The <em>descendants</em> of a node are that node's
children, and the descendants of its children, and we say a tree
<em>contains</em> a node if that node is a descendant of the root of the tree,
or if the node itself is the root of the tree. Nodes are <em>siblings</em> if they share the same parent.</t>
        <t>A <em>subtree</em> of a tree is the tree given by any node (the <em>head</em> of the
subtree) and its descendants. The <em>size</em> of a tree or subtree is the
number of leaf nodes it contains.  For a given parent node, its <em>left
subtree</em> is the subtree with its left child as head (respectively
<em>right subtree</em>).</t>
        <t>All trees used in this protocol are left-balanced binary trees. A
binary tree is <em>full</em> (and <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.</t>
        <t>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 full 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.</t>
        <t>(Note that left-balanced binary trees are the same structure that is
used for the Merkle trees in the Certificate Transparency protocol
<xref target="I-D.ietf-trans-rfc6962-bis"/>.)</t>
        <t>The <em>direct path</em> of a root 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>For example, in the below tree:</t>
        <ul spacing="normal">
          <li>The direct path of C is (W, V, X)</li>
          <li>The copath of C is (D, U, Z)</li>
        </ul>
        <figure anchor="full-tree">
          <name>A complete tree with seven members</name>
          <artwork><![CDATA[
              X = root
        ______|______
       /             \
      V               Z
    __|__           __|
   /     \         /   \
  U       W       Y     |
 / \     / \     / \    |
A   B   C   D   E   F   G

0   1   2   3   4   5   6
]]></artwork>
        </figure>
        <t>A tree with <tt>n</tt> leaves has <tt>2*n - 1</tt> nodes.  For example, the above tree has 7
leaves (A, B, C, D, E, F, G) and 13 nodes.</t>
        <t>Each leaf is given an <em>index</em> (or <em>leaf index</em>), starting at <tt>0</tt> from the left to
<tt>n-1</tt> at the right.</t>
        <t>Finally, a node in the tree may also be <em>blank</em>, indicating that no value
is present at that node (i.e. no keying material). This is often the case
when a leaf was recently removed from the tree.</t>
        <t>There are multiple ways that an implementation might represent a ratchet tree in
memory.  For example, left-balanced binary trees can be represented as an array
of nodes, with node relationships computed based on nodes' indices in the array.
Or a more traditional representation of linked node objects may be used.
<xref target="array-based-trees"/> and <xref target="link-based-trees"/> provide some details on how to
implement the tree operations required for MLS in these representations.
MLS places no requirements on implementations' internal representations
of ratchet trees.  An implementation MAY use any tree representation and
associated algorithms, as long as they produce correct protocol messages.</t>
      </section>
      <section anchor="views">
        <name>Views of a Ratchet Tree</name>
        <t>We generally assume that each participant maintains a complete and
up-to-date view of the public state of the group's ratchet tree,
including the public keys for all nodes and the credentials
associated with the leaf nodes.</t>
        <t>No participant in an MLS group knows the private key associated with
every node in the tree. Instead, each member is assigned to a leaf of the tree,
which determines the subset of private keys it knows. The
credential stored at that leaf is one provided by the member.</t>
        <t>In particular, MLS maintains the members' views of the tree in such
a way as to maintain the <em>tree invariant</em>:</t>
        <artwork><![CDATA[
The private key for a node in the tree is known to a member of
the group only if the node's subtree contains that member's leaf.
]]></artwork>
        <t>In other words, if a node is not blank, then it holds a public key.
The corresponding private key is known only to members occupying
leaves below that node.</t>
        <t>The reverse implication is not true: A member may not know the private keys of
all the intermediate nodes they're below.  Such a member has an <em>unmerged</em> leaf.
Encrypting to an intermediate node requires encrypting to the node's public key,
as well as the public keys of all the unmerged leaves below it.  A leaf is
unmerged when it is first added, because the process of adding the leaf does not
give it access to all of the nodes above it in the tree.  Leaves are "merged" as
they receive the private keys for nodes, as described in
<xref target="ratchet-tree-evolution"/>.</t>
        <t>For example, consider a four-member group (A, B, C, D) where the node above the
right two members is blank.  (This is what it would look like if A created a
group with B, C, and D.)  Then the public state of the tree and the views of the
private keys of the tree held by each participant would be as follows, where <tt>_</tt>
represents a blank node, <tt>?</tt> represents an unknown private key, and <tt>pk(X)</tt>
represents the public key corresponding to the private key <tt>X</tt>:</t>
        <artwork><![CDATA[
         Public Tree
============================
            pk(ABCD)
          /          \
    pk(AB)            _
     / \             / \
pk(A)   pk(B)   pk(C)   pk(D)


 Private @ A       Private @ B       Private @ C       Private @ D
=============     =============     =============     =============
     ABCD              ABCD              ABCD              ABCD
    /   \             /   \             /   \             /   \
  AB      _         AB      _         ?       _         ?       _
 / \     / \       / \     / \       / \     / \       / \     / \
A   ?   ?   ?     ?   B   ?   ?     ?   ?   C   ?     ?   ?   ?   D
]]></artwork>
        <t>Note how the tree invariant applies: Each member knows only their own leaf, and
the private key AB is known only to A and B.</t>
      </section>
      <section anchor="ratchet-tree-nodes">
        <name>Ratchet Tree Nodes</name>
        <t>A particular instance of a ratchet tree includes the same parameters that
define an instance of HPKE, namely:</t>
        <ul spacing="normal">
          <li>A Key Encapsulation Mechanism (KEM), including a <tt>DeriveKeyPair</tt> function that
creates a key pair for the KEM from a symmetric secret</li>
          <li>A Key Derivation Function (KDF), including <tt>Extract</tt> and <tt>Expand</tt> functions</li>
          <li>An AEAD encryption scheme</li>
        </ul>
        <t>Each non-blank node in a ratchet tree contains up to five values:</t>
        <ul spacing="normal">
          <li>A public key</li>
          <li>A private key (only within the member's direct path, see below)</li>
          <li>A credential (only for leaf nodes)</li>
          <li>An ordered list of "unmerged" leaves (see <xref target="views"/>)</li>
          <li>A hash of certain information about the node's parent, as of the last time the
node was changed (see <xref target="parent-hash"/>).</li>
        </ul>
        <t>The <em>resolution</em> of a node is an ordered list of non-blank nodes
that collectively cover all non-blank descendants of the node.  The resolution
of a non-blank node with no unmerged leaves is just the node itself. More generally, the resolution
of a node is effectively a depth-first, left-first enumeration of the nearest
non-blank nodes below the node:</t>
        <ul spacing="normal">
          <li>The resolution of a non-blank node comprises the node itself,
followed by its list of unmerged leaves, if any</li>
          <li>The resolution of a blank leaf node is the empty list</li>
          <li>The resolution of a blank intermediate node is the result of
concatenating the resolution of its left child with the resolution
of its right child, in that order</li>
        </ul>
        <t>For example, consider the following subtree, where the <tt>_</tt> character
represents a blank node and unmerged leaves are indicated in square
brackets:</t>
        <figure anchor="resolution-tree">
          <name>A tree with blanks and unmerged leaves</name>
          <artwork><![CDATA[
       ...
       /
      _
    __|__
   /     \
  _       Z[C]
 / \     / \
A   _   C   D

0   1   2   3
]]></artwork>
        </figure>
        <t>In this tree, we can see all of the above rules in play:</t>
        <ul spacing="normal">
          <li>The resolution of node Z is the list [Z, C]</li>
          <li>The resolution of leaf 1 is the empty list []</li>
          <li>The resolution of top node is the list [A, Z, C]</li>
        </ul>
        <t>Every node, regardless of whether the node is blank or populated, has
a corresponding <em>hash</em> that summarizes the contents of the subtree
below that node.  The rules for computing these hashes are described
in <xref target="tree-hashes"/>.</t>
      </section>
    </section>
    <section anchor="cryptographic-objects">
      <name>Cryptographic Objects</name>
      <section anchor="ciphersuites">
        <name>Ciphersuites</name>
        <t>Each MLS session uses a single ciphersuite that specifies the
following primitives to be used in group key computations:</t>
        <ul spacing="normal">
          <li>
            <t>HPKE parameters:
            </t>
            <ul spacing="normal">
              <li>A Key Encapsulation Mechanism (KEM)</li>
              <li>A Key Derivation Function (KDF)</li>
              <li>An AEAD encryption algorithm</li>
            </ul>
          </li>
          <li>A hash algorithm</li>
          <li>A MAC algorithm</li>
          <li>A signature algorithm</li>
        </ul>
        <t>MLS uses HPKE for public-key encryption <xref target="RFC9180"/>.  The
<tt>DeriveKeyPair</tt> function associated to the KEM for the ciphersuite maps octet
strings to HPKE key pairs.  As in HPKE, MLS assumes that an AEAD algorithm
produces a single ciphertext output from AEAD encryption (aligning with
<xref target="RFC5116"/>), as opposed to a separate ciphertext and tag.</t>
        <t>Ciphersuites are represented with the CipherSuite type. HPKE public keys
are opaque values in a format defined by the underlying
protocol (see the Cryptographic Dependencies section of the HPKE specification for more
information).</t>
        <artwork><![CDATA[
opaque HPKEPublicKey<V>;
]]></artwork>
        <t>The signature algorithm specified in the ciphersuite is the mandatory algorithm
to be used for signatures in MLSMessageAuth and the tree signatures.  It MUST be
the same as the signature algorithm specified in the credentials in the leaves
of the tree (including the leaf node information in KeyPackages used to add new
members).</t>
        <t>To disambiguate different signatures used in MLS, each signed value is prefixed
by a label as shown below:</t>
        <artwork><![CDATA[
SignWithLabel(SignatureKey, Label, Content) =
    Signature.Sign(SignatureKey, SignContent)

VerifyWithLabel(VerificationKey, Label, Content) =
    Signature.Verify(VerificationKey, SignContent)

Where SignContent is specified as:

struct {
    opaque label<V> = "MLS 1.0 " + Label;
    opaque content<V> = Content;
} SignContent;
]]></artwork>
        <t>Here, the functions <tt>Signature.Sign</tt> and <tt>Signature.Verify</tt> are defined
by the signature algorithm.</t>
        <t>The ciphersuites are defined in section <xref target="mls-ciphersuites"/>.</t>
      </section>
      <section anchor="hash-based-identifiers">
        <name>Hash-Based Identifiers</name>
        <t>Some MLS messages refer to other MLS objects by hash.  For example, Welcome
messages refer to KeyPackages for the members being welcomed, and Commits refer
to Proposals they cover.  These identifiers are computed as follows:</t>
        <artwork><![CDATA[
opaque HashReference[16];

MakeKeyPackageRef(value) = KDF.expand(
  KDF.extract("", value), "MLS 1.0 KeyPackage Reference", 16)

MakeLeafNodeRef(value) = KDF.expand(
  KDF.extract("", value), "MLS 1.0 Leaf Node Reference", 16)

MakeProposalRef(value) = KDF.expand(
  KDF.extract("", value), "MLS 1.0 Proposal Reference", 16)

HashReference KeyPackageRef;
HashReference LeafNodeRef;
HashReference ProposalRef;
]]></artwork>
        <t>For a KeyPackageRef, the <tt>value</tt> input is the encoded KeyPackage, and the
ciphersuite specified in the KeyPackage determines the KDF used.  For a
LeafNodeRef, the <tt>value</tt> input is the LeafNode object for the leaf node in
question.  For a ProposalRef, the <tt>value</tt> input is the MLSMessageContentAuth carrying the
proposal.  In the latter two cases, the KDF is determined by the group's
ciphersuite.</t>
      </section>
      <section anchor="credentials">
        <name>Credentials</name>
        <t>A member of a group authenticates the identities of other participants by means
of credentials issued by some authentication system, like a PKI. Each type of
credential MUST express the following data in the context of the group it is
used with:</t>
        <ul spacing="normal">
          <li>The public key of a signature key pair matching the SignatureScheme specified
by the CipherSuite of the group</li>
          <li>One or more identifiers of the holder of the private key</li>
        </ul>
        <t>Note that a Credential can provide multiple identifiers for the client.  If an
application wishes to decided whether a credential represents the correct
identifier for a participant in a given context, it is up to the application to
decide what the correct value is and compare it to the credential.  For example,
a certificate in an X509Credential may attest to several domain names or email
addresses in its subjectAltName extension.  An application may decide to
present all of these to a user, or if it knows a "desired" domain name or email
address, it can check that the desired identifier is among those attested.
Using the terminology from <xref target="RFC6125"/>, a Credential provides "presented
identifiers", and it is up to the application to supply a "reference identifier"
for the authenticated client, if any.</t>
        <t>Credentials MAY also include information that allows a relying party
to verify the identity / signing key binding.</t>
        <t>Additionally, Credentials SHOULD specify the signature scheme corresponding to
each contained public key.</t>
        <artwork><![CDATA[
// See RFC 8446 and the IANA TLS SignatureScheme registry
uint16 SignatureScheme;

// See IANA registry for registered values
uint16 CredentialType;

struct {
    opaque identity<V>;
    SignatureScheme signature_scheme;
    opaque signature_key<V>;
} BasicCredential;

struct {
    opaque cert_data<V>;
} Certificate;

struct {
    CredentialType credential_type;
    select (Credential.credential_type) {
        case basic:
            BasicCredential;

        case x509:
            Certificate chain<V>;
    };
} Credential;
]]></artwork>
        <t>A BasicCredential is a raw, unauthenticated assertion of an identity/key
binding. The format of the key in the <tt>public_key</tt> field is defined by the
relevant ciphersuite: the group ciphersuite for a credential in a leaf node of a
ratchet tree or the KeyPackage ciphersuite for a credential in a KeyPackage
object.  For ciphersuites using Ed25519 or Ed448 signature schemes, the public
key is in the format specified in <xref target="RFC8032"/>.  For ciphersuites using ECDSA with
the NIST curves P-256 or P-521, the public key is the output of the uncompressed
Elliptic-Curve-Point-to-Octet-String conversion according to <xref target="SECG"/>.</t>
        <t>For an X.509 credential, each entry in the chain represents a single DER-encoded
X.509 certificate. The chain is ordered such that the first entry (chain[0])
is the end-entity certificate and each subsequent certificate in the chain
MUST be the issuer of the previous certificate. The algorithm for the
<tt>public_key</tt> in the end-entity certificate MUST match the relevant
ciphersuite.</t>
        <t>The signatures used in this document are encoded as specified in <xref target="RFC8446"/>.
In particular, ECDSA signatures are DER-encoded and EdDSA signatures are defined
as the concatenation of <tt>r</tt> and <tt>s</tt> as specified in <xref target="RFC8032"/>.</t>
        <t>Each new credential that has not already been validated by the application MUST
be validated against the Authentication Service.  Applications SHOULD require
that a client present the same set of identifiers throughout its presence in
the group, even if its Credential is changed in a Commit or Update.  If an
application allows clients to change identifiers over time, then each time the
client presents a new credential, the application MUST verify that the set
of identifiers in the credential is acceptable to the application for this
client.</t>
        <section anchor="uniquely-identifying-clients">
          <name>Uniquely Identifying Clients</name>
          <t>MLS implementations will presumably provide applications with a way to request
protocol operations with regard to other clients (e.g., removing clients).  Such
functions will need to refer to the other clients using some identifier.  MLS
clients have a few types of identifiers, with different operational properties.</t>
          <t>The Credentials presented by the clients in a group authenticate
application-level identifiers for the clients.  These identifiers may not
uniquely identify clients.  For example, if a user has multiple devices that are
all present in an MLS group, then those devices' clients could all present the
user's application-layer identifiers.</t>
          <t>Internally to the protocol, group members are uniquely identified by their
leaves, expressed as LeafNodeRef objects.  These identifiers are unstable:
They change whenever the member sends a Commit, or whenever an Update
proposal from the member is committed.</t>
          <t>MLS provides two unique client identifiers that are stable across epochs:</t>
          <ul spacing="normal">
            <li>The index of a client among the leaves of the tree</li>
            <li>The <tt>epoch_id</tt> field in the key package</li>
          </ul>
          <t>The application may also provide application-specific unique identifiers in the
<tt>extensions</tt> field of KeyPackage or LeafNode objects.</t>
        </section>
      </section>
    </section>
    <section anchor="message-framing">
      <name>Message Framing</name>
      <t>Handshake and application messages use a common framing structure.
This framing provides encryption to ensure confidentiality within the
group, as well as signing to authenticate the sender within the group.</t>
      <t>The main structure is MLSMessageContent, which contains the content of
the message.  This structure is authenticated using MLSMessageAuth
(see <xref target="content-authentication"/>).
The two structures are combined in MLSMessageContentAuth, which can then be
encoded/decoded from/to MLSPlaintext or MLSCiphertext, which are then included
in the MLSMessage structure.</t>
      <t>MLSCiphertext represents a signed and encrypted message, with
protections for both the content of the message and related
metadata.  MLSPlaintext represents a message that is only signed,
and not encrypted.  Applications MUST use MLSCiphertext to encrypt
application messages and SHOULD use MLSCiphertext to encode
handshake messages, but MAY transmit handshake messages encoded
as MLSPlaintext objects in cases where it is necessary for the
Delivery Service to examine such messages.</t>
      <artwork><![CDATA[
enum {
    reserved(0),
    mls10(1),
    (255)
} ProtocolVersion;

enum {
    reserved(0),
    application(1),
    proposal(2),
    commit(3),
    (255)
} ContentType;

enum {
    reserved(0),
    member(1),
    preconfigured(2),
    new_member(3),
    (255)
} SenderType;

struct {
    SenderType sender_type;
    switch (sender_type) {
        case member:
            LeafNodeRef member_ref;
        case preconfigured:
            opaque sender_id<V>;
        case new_member:
            struct{};
    }
} Sender;

enum {
  reserved(0),
  mls_plaintext(1),
  mls_ciphertext(2),
  mls_welcome(3),
  mls_group_info(4),
  mls_key_package(5),
  (255)
} WireFormat;

struct {
    opaque group_id<V>;
    uint64 epoch;
    Sender sender;
    opaque authenticated_data<V>;

    ContentType content_type;
    select (MLSMessageContent.content_type) {
        case application:
          opaque application_data<V>;
        case proposal:
          Proposal proposal;
        case commit:
          Commit commit;
    }
} MLSMessageContent;

struct {
    ProtocolVersion version = mls10;
    WireFormat wire_format;
    select (MLSMessage.wire_format) {
        case mls_plaintext:
            MLSPlaintext plaintext;
        case mls_ciphertext:
            MLSCiphertext ciphertext;
        case mls_welcome:
            Welcome welcome;
        case mls_group_info:
            GroupInfo group_info;
        case mls_key_package:
            KeyPackage key_package;
    }
} MLSMessage;
]]></artwork>
      <t>External sender types are sent as MLSPlaintext, see <xref target="external-proposals"/>
for their use.</t>
      <t>The following structure is used to fully describe the data transmitted in
plaintexts or ciphertexts.</t>
      <artwork><![CDATA[
struct {
    WireFormat wire_format;
    MLSMessageContent content;
    MLSMessageAuth auth;
} MLSMessageContentAuth;
]]></artwork>
      <section anchor="content-authentication">
        <name>Content Authentication</name>
        <t>MLSMessageContent is authenticated using the MLSMessageAuth structure.</t>
        <artwork><![CDATA[
struct {
    opaque mac_value<V>;
} MAC;

struct {
    // SignWithLabel(., "MLSMessageContentTBS", MLSMessageContentTBS)
    opaque signature<V>;
    select (MLSMessageContent.content_type) {
        case commit:
            // MAC(confirmation_key, GroupContext.confirmed_transcript_hash)
            MAC confirmation_tag;
        case application:
        case proposal:
            struct{};
    }
} MLSMessageAuth;
]]></artwork>
        <t>The <tt>signature</tt> field in an MLSMessageAuth object is computed using the signing
private key corresponding to the public key, which was authenticated by the
credential at the leaf of the tree indicated by the sender field. The signature
is computed using <tt>SignWithLabel</tt> with label <tt>"MLSMessageContentTBS"</tt> and with a content
that covers the message content and the wire format that will be used for this message.
If the sender is a member of the group, the content also covers the
GroupContext for the current epoch, so that signatures are specific to a given
group and epoch.</t>
        <artwork><![CDATA[
struct {
    ProtocolVersion version = mls10;
    WireFormat wire_format;
    MLSMessageContent content;
    select (MLSMessageContentTBS.content.sender.sender_type) {
        case member:
        case new_member:
            GroupContext context;

        case preconfigured:
            struct{};
    }
} MLSMessageContentTBS;
]]></artwork>
        <t>The confirmation tag value confirms that the members of the group have arrived
at the same state of the group.</t>
        <t>A MLSMessageAuth is said to be valid when both the <tt>signature</tt> and
<tt>confirmation_tag</tt> fields are valid.</t>
      </section>
      <section anchor="encoding-and-decoding-a-plaintext">
        <name>Encoding and Decoding a Plaintext</name>
        <t>Plaintexts are encoded using the MLSPlaintext structure.</t>
        <artwork><![CDATA[
struct {
    MLSMessageContent content;
    MLSMessageAuth auth;
    select(MLSPlaintext.content.sender.sender_type) {
        case member:
            MAC membership_tag;
        case preconfigured:
        case new_member:
            struct{};
    }
} MLSPlaintext;
]]></artwork>
        <t>The <tt>membership_tag</tt> field in the MLSPlaintext object authenticates the sender's
membership in the group. For messages sent by members, it MUST be set to the
following value:</t>
        <artwork><![CDATA[
struct {
  MLSMessageContentTBS content_tbs;
  MLSMessageAuth auth;
} MLSMessageContentTBM;

membership_tag = MAC(membership_key, MLSMessageContentTBM);
]]></artwork>
        <t>When decoding a MLSPlaintext into a MLSMessageContentAuth,
the application MUST check <tt>membership_tag</tt>, and MUST check that the
MLSMessageAuth is valid.</t>
      </section>
      <section anchor="encoding-and-decoding-a-ciphertext">
        <name>Encoding and Decoding a Ciphertext</name>
        <t>Ciphertexts are encoded using the MLSCiphertext structure.</t>
        <artwork><![CDATA[
struct {
    opaque group_id<V>;
    uint64 epoch;
    ContentType content_type;
    opaque authenticated_data<V>;
    opaque encrypted_sender_data<V>;
    opaque ciphertext<V>;
} MLSCiphertext;
]]></artwork>
        <t><tt>encrypted_sender_data</tt> and <tt>ciphertext</tt> are encrypted using the AEAD function
specified by the ciphersuite in use, using as input the structures MLSSenderData
and MLSCiphertextContent.</t>
        <section anchor="content-encryption">
          <name>Content Encryption</name>
          <t>The ciphertext content is encoded using the MLSCiphertextContent structure.</t>
          <artwork><![CDATA[
struct {
    select (MLSCiphertext.content_type) {
        case application:
          opaque application_data<V>;

        case proposal:
          Proposal proposal;

        case commit:
          Commit commit;
    }

    MLSMessageAuth auth;
    opaque padding<V>;
} MLSCiphertextContent;
]]></artwork>
          <t>In the MLS key schedule, the sender creates two distinct key ratchets for
handshake and application messages for each member of the group. When encrypting
a message, the sender looks at the ratchets it derived for its own member and
chooses an unused generation from either the handshake or application ratchet
depending on the content type of the message. This generation of the ratchet is
used to derive a provisional nonce and key.</t>
          <t>Before use in the encryption operation, the nonce is XORed with a fresh random
value to guard against reuse.  Because the key schedule generates nonces
deterministically, a client must keep persistent state as to where in the key
schedule it is; if this persistent state is lost or corrupted, a client might
reuse a generation that has already been used, causing reuse of a key/nonce pair.</t>
          <t>To avoid this situation, the sender of a message MUST generate a fresh random
4-byte "reuse guard" value and XOR it with the first four bytes of the nonce
from the key schedule before using the nonce for encryption.  The sender MUST
include the reuse guard in the <tt>reuse_guard</tt> field of the sender data object, so
that the recipient of the message can use it to compute the nonce to be used for
decryption.</t>
          <artwork><![CDATA[
+-+-+-+-+---------...---+
|   Key Schedule Nonce  |
+-+-+-+-+---------...---+
           XOR
+-+-+-+-+---------...---+
| Guard |       0       |
+-+-+-+-+---------...---+
           ===
+-+-+-+-+---------...---+
| Encrypt/Decrypt Nonce |
+-+-+-+-+---------...---+
]]></artwork>
          <t>The Additional Authenticated Data (AAD) input to the encryption
contains an object of the following form, with the values used to
identify the key and nonce:</t>
          <artwork><![CDATA[
struct {
    opaque group_id<V>;
    uint64 epoch;
    ContentType content_type;
    opaque authenticated_data<V>;
} MLSCiphertextContentAAD;
]]></artwork>
          <t>When decoding a MLSCiphertextContent, the application MUST check that the
MLSMessageAuth is valid.</t>
        </section>
        <section anchor="sender-data-encryption">
          <name>Sender Data Encryption</name>
          <t>The "sender data" used to look up the key for the content encryption is
encrypted with the ciphersuite's AEAD with a key and nonce derived from both the
<tt>sender_data_secret</tt> and a sample of the encrypted content. Before being
encrypted, the sender data is encoded as an object of the following form:</t>
          <artwork><![CDATA[
struct {
    LeafNodeRef sender;
    uint32 generation;
    opaque reuse_guard[4];
} MLSSenderData;
]]></artwork>
          <t>MLSSenderData.sender is assumed to be a <tt>member</tt> sender type.  When constructing
an MLSSenderData from a Sender object, the sender MUST verify Sender.sender_type
is <tt>member</tt> and use Sender.sender for MLSSenderData.sender.</t>
          <t>The <tt>reuse_guard</tt> field contains a fresh random value used to avoid nonce reuse
in the case of state loss or corruption, as described in <xref target="content-encryption"/>.</t>
          <t>The key and nonce provided to the AEAD are computed as the KDF of the first
<tt>KDF.Nh</tt> bytes of the ciphertext generated in the previous section. If the
length of the ciphertext is less than <tt>KDF.Nh</tt>, the whole ciphertext is used
without padding. In pseudocode, the key and nonce are derived as:</t>
          <artwork><![CDATA[
ciphertext_sample = ciphertext[0..KDF.Nh-1]

sender_data_key = ExpandWithLabel(sender_data_secret, "key",
                      ciphertext_sample, AEAD.Nk)
sender_data_nonce = ExpandWithLabel(sender_data_secret, "nonce",
                      ciphertext_sample, AEAD.Nn)
]]></artwork>
          <t>The Additional Authenticated Data (AAD) for the SenderData ciphertext is the
first three fields of MLSCiphertext:</t>
          <artwork><![CDATA[
struct {
    opaque group_id<V>;
    uint64 epoch;
    ContentType content_type;
} MLSSenderDataAAD;
]]></artwork>
          <t>When parsing a SenderData struct as part of message decryption, the recipient
MUST verify that the LeafNodeRef indicated in the <tt>sender</tt> field identifies a
member of the group.</t>
        </section>
      </section>
    </section>
    <section anchor="ratchet-tree-operations">
      <name>Ratchet Tree Operations</name>
      <t>The ratchet tree for an epoch describes the membership of a group in that epoch,
providing public-key encryption (HPKE) keys that can be used to encrypt to subsets of
the group as well as information to authenticate the members.  In order to
reflect changes to the membership of the group from one epoch to the next,
corresponding changes are made to the ratchet tree.  In this section, we
describe the content of the tree and the required operations.</t>
      <section anchor="parent-node-contents">
        <name>Parent Node Contents</name>
        <t>As discussed in <xref target="ratchet-tree-nodes"/>, the nodes of a ratchet tree contain
several types of data describing individual members (for leaf nodes) or
subgroups of the group (for parent nodes).  Parent nodes are simpler:</t>
        <artwork><![CDATA[
struct {
    HPKEPublicKey public_key;
    opaque parent_hash<V>;
    uint32 unmerged_leaves<V>;
} ParentNode;
]]></artwork>
        <t>The <tt>public_key</tt> field contains an HPKE public key whose private key is held only
by the members at the leaves among its descendants.  The <tt>parent_hash</tt> field
contains a hash of this node's parent node, as described in <xref target="parent-hash"/>.
The <tt>unmerged_leaves</tt> field lists the leaves under this parent node that are
unmerged, according to their indices among all the leaves in the tree.</t>
      </section>
      <section anchor="leaf-node-contents">
        <name>Leaf Node Contents</name>
        <t>A leaf node in the tree describes all the details of an individual client's
appearance in the group, signed by that client. It is also used in client
KeyPackage objects to store the information that will be needed to add a
client to a group.</t>
        <artwork><![CDATA[
enum {
    reserved(0),
    key_package(1),
    update(2),
    commit(3),
    (255)
} LeafNodeSource;

struct {
    ProtocolVersion versions<V>;
    CipherSuite ciphersuites<V>;
    ExtensionType extensions<V>;
    ProposalType proposals<V>;
} Capabilities;

struct {
    uint64 not_before;
    uint64 not_after;
} Lifetime;

// See IANA registry for registered values
uint16 ExtensionType;

struct {
    ExtensionType extension_type;
    opaque extension_data<V>;
} Extension;

struct {
    HPKEPublicKey public_key;
    Credential credential;
    Capabilities capabilities;

    LeafNodeSource leaf_node_source;
    select (leaf_node_source) {
        case add:
            Lifetime lifetime;

        case update:
            struct {}

        case commit:
            opaque parent_hash<V>;
    }

    Extension extensions<V>;
    // SignWithLabel(., "LeafNodeTBS", LeafNodeTBS)
    opaque signature<V>;
} LeafNode;

struct {
    HPKEPublicKey public_key;
    Credential credential;
    Capabilities capabilities;

    LeafNodeSource leaf_node_source;
    select (leaf_node_source) {
        case key_package:
            Lifetime lifetime;

        case update:
            struct{};

        case commit:
            opaque parent_hash<V>;
    }

    Extension extensions<V>;

    select (leaf_node_source) {
        case key_package:
            struct{};

        case update:
            opaque group_id<V>;

        case commit:
            opaque group_id<V>;
    }
} LeafNodeTBS;
]]></artwork>
        <t>The <tt>public_key</tt> field conains an HPKE public key whose private key is held only
by the member occupying this leaf (or in the case of a LeafNode in a KeyPackage
object, the issuer of the KeyPackage).  The <tt>credential</tt> contains authentication
information for this member, as described in <xref target="credentials"/>.</t>
        <t>The <tt>capabilities</tt> field indicates what protocol versions, ciphersuites,
protocol extensions, and non-default proposal types are supported by a client.
Proposal types defined in this document are considered "default" and thus need
not be listed.  Extensions that appear in the <tt>extensions</tt> field of a LeafNode
MUST be included in the <tt>extensions</tt> field of the <tt>capabilities</tt> field.</t>
        <t>The <tt>leaf_node_source</tt> field indicates how this LeafNode came to be added to the
tree.  This signal tells other members of the group whether the leaf node is
required to have a <tt>lifetime</tt> or <tt>parent_hash</tt>, and whether the <tt>group_id</tt> is
added as context to the signature.  Whether these fields can be computed by the
client represented by the LeafNode depends on when the LeafNode was created.
For example, a KeyPackage is created before the client knows which group it will
be used with, so its signature can't bind to a <tt>group_id</tt>.</t>
        <t>In the case where the leaf was added to the tree based on a pre-published
KeyPackage, the <tt>lifetime</tt> field represents the times between which clients will
consider a LeafNode valid.  These times are represented as absolute times,
measured in seconds since the Unix epoch (1970-01-01T00:00:00Z).  Applications
MUST define a maximum total lifetime that is acceptable for a LeafNode, and
reject any LeafNode where the total lifetime is longer than this duration.</t>
        <t>In the case where the leaf node was inserted into the tree via a Commit message,
the <tt>parent_hash</tt> field contains the parent hash for this leaf node (see
<xref target="parent-hash"/>).</t>
        <t>The LeafNodeTBS structure covers the fields above the signature in the LeafNode.
In addition, when the leaf node was created in the context of a group (the
update and commit cases), the group ID of the group is added as context to the
signature.</t>
        <t>LeafNode objects stored in the group's ratchet tree
are updated according to the evolution of the tree. Each modification of
LeafNode content MUST be reflected by a change in its signature. This allows other
members to verify the validity of the LeafNode at any time, particularly in the
case of a newcomer joining the group.</t>
      </section>
      <section anchor="leaf-node-validation">
        <name>Leaf Node Validation</name>
        <t>The validity of a LeafNode needs to be verified at a few stages:</t>
        <ul spacing="normal">
          <li>When a LeafNode is downloaded in a KeyPackage, before it is used
to add the client to the group</li>
          <li>When a LeafNode is received by a group member in an Add, Update, or Commit
message</li>
          <li>When a client joining a group receives LeafNode objects for the other members
of the group in the group's ratchet tree</li>
        </ul>
        <t>The client verifies the validity of a LeafNode using the following steps:</t>
        <ul spacing="normal">
          <li>Verify that the credential in the LeafNode is valid according to the
authentication service and the client's local policy. These actions MUST be
the same regardless of at what point in the protocol the LeafNode is being
verified with the following exception: If the LeafNode is an update to
another LeafNode, the authentication service MUST additionally validate that
the set of identities attested by the credential in the new LeafNode is
acceptable relative to the identities attested by the old credential.</li>
          <li>Verify that the signature on the LeafNode is valid using the public key
in the LeafNode's credential</li>
          <li>Verify that the LeafNode is compatible with the group's parameters.  If the
GroupContext has a <tt>required_capabilities</tt> extension, then the required
extensions and proposals MUST be listed in the LeafNode's <tt>capabilities</tt>
field.</li>
          <li>
            <t>Verify the <tt>lifetime</tt> field:
            </t>
            <ul spacing="normal">
              <li>When validating a LeafNode in a KeyPackage before sending an Add proposal,
the current time MUST be within the <tt>lifetime</tt> range.  A KeyPackage
containing a LeafNode that is expired or not yet valid MUST NOT be sent in
an Add proposal.</li>
              <li>When receiving an Add or validating a tree, checking the <tt>lifetime</tt> is
RECOMMENDED, if it is feasible in a given application context.  Because of
the asynchronous nature of MLS, the <tt>lifetime</tt> may have been valid when the
leaf node was proposed for addition, even if it is expired at these later
points in the protocol.</li>
            </ul>
          </li>
          <li>Verify that the <tt>leaf_node_source</tt> field has the appropriate value for the
context in which the LeafNode is being validated (as defined in
<xref target="leaf-node-contents"/>).</li>
          <li>
            <t>Verify that the following fields in the LeafNode are unique among the
members of the group (including any other members added in the same
Commit):  </t>
            <ul spacing="normal">
              <li>
                <tt>public_key</tt></li>
              <li>
                <tt>credential.signature_key</tt></li>
            </ul>
          </li>
          <li>Verify that the extensions in the leaf node are supported.  The ID for each
extension in the <tt>extensions</tt> field MUST be listed in the field
<tt>capabilities.extensions</tt> of the LeafNode.</li>
        </ul>
      </section>
      <section anchor="ratchet-tree-evolution">
        <name>Ratchet Tree Evolution</name>
        <t>In order to provide forward secrecy and post-compromise security, whenever a
member initiates an epoch change (i.e., commits; see <xref target="commit"/>), they refresh
the key pairs of their leaf and of all nodes on their leaf's direct path (all
nodes for which they know the secret key).</t>
        <t>The member initiating the epoch change generates the fresh key pairs using the
following procedure. The procedure is designed in a way that allows group members to
efficiently communicate the fresh secret keys to other group members, as
described in <xref target="update-paths"/>.</t>
        <t>Recall the definition of resolution from <xref target="ratchet-tree-nodes"/>.
To begin with, the generator of the UpdatePath updates its leaf and its leaf's
<em>filtered direct path</em> with new key pairs. The filtered direct path of a node
is obtained from the node's direct path by removing all nodes whose child on
the nodes's copath has an empty resolution (any unmerged leaves of the copath
child count towards its resolution). Such a removed node does not need a key
pair, since after blanking it, its resolution consists of a single node on the
filtered direct path. Using the key pair of the node in the resolution is
equivalent to using the key pair of the removed node.</t>
        <ul spacing="normal">
          <li>Blank all the nodes on the direct path from the leaf to the root.</li>
          <li>Generate a fresh HPKE key pair for the leaf.</li>
          <li>
            <t>Generate a sequence of path secrets, one for each node on the leaf's filtered direct
path, as follows. In this setting, <tt>path_secret[0]</tt> refers to the first parent node
in the filtered direct path, <tt>path_secret[1]</tt> to the second parent node, and so on.  </t>
            <artwork><![CDATA[
path_secret[0] is sampled at random
path_secret[n] = DeriveSecret(path_secret[n-1], "path")
]]></artwork>
          </li>
          <li>
            <t>Compute the sequence of HPKE key pairs <tt>(node_priv,node_pub)</tt>, one for each
node on the leaf's direct path, as follows.  </t>
            <artwork><![CDATA[
node_secret[n] = DeriveSecret(path_secret[n], "node")
node_priv[n], node_pub[n] = KEM.DeriveKeyPair(node_secret[n])
]]></artwork>
          </li>
        </ul>
        <t>The node secret is derived as a temporary intermediate secret so that each
secret is only used with one algorithm: The path secret is used as an input to
DeriveSecret and the node secret is used as an input to DeriveKeyPair.</t>
        <t>For example, suppose there is a group with four members, with C an unmerged leaf
at Z:</t>
        <figure anchor="evolution-tree">
          <name>A full tree with one unmerged leaf</name>
          <artwork><![CDATA[
      Y
    __|__
   /     \
  X       Z[C]
 / \     / \
A   B   C   D

0   1   2   3
]]></artwork>
        </figure>
        <t>If member B subsequently generates an UpdatePath based on a secret
"leaf_secret", then it would generate the following sequence
of path secrets:</t>
        <artwork><![CDATA[
path_secret[1] --> node_secret[1] --> node_priv[1], node_pub[1]
     ^
     |
path_secret[0] --> node_secret[0] --> node_priv[0], node_pub[0]
     ^
     |
leaf_secret    --> leaf_node_secret --> leaf_priv, leaf_pub
                                     ~> leaf_node
]]></artwork>
        <t>After applying the UpdatePath, the tree will have the following structure, where
<tt>lp</tt> and <tt>np[i]</tt> represent the leaf_priv and node_priv values generated as
described above:</t>
        <artwork><![CDATA[
    np[1] -> Y'
           __|__
          /     \
np[0] -> X'      Z[C]
        / \     / \
       A   B   C   D
           ^
           |
           lp

       0   1   2   3
]]></artwork>
      </section>
      <section anchor="adding-and-removing-leaves">
        <name>Adding and Removing Leaves</name>
        <t>In addition to the path-based updates to the tree described above, it is also
necessary to add and remove leaves of the tree in order to reflect changes to the
membership of the group (see <xref target="add"/> and <xref target="remove"/>).  Leaves are always added and removed at the
right edge of the tree: Either a new rightmost leaf is added, or the rightmost
leaf is removed.  Nodes' parent/child node relationships are then updated to
maintain the tree's left-balanced structure.  These operations are also known as
<em>extending</em> and <em>truncating</em> the tree.</t>
        <t>To add a new leaf: Add leaf L as the new rightmost leaf of the tree.  Add
a blank parent node P whose right child is L.  P is attached to the
tree as the right child of the only appropriate node to make the updated tree
left-balanced (or set it as a new root).  The former right child of P's
parent becomes P's left child (or the old root becomes P's left child if
P is the new root).</t>
        <artwork><![CDATA[
                   _ <-- new parent              _
                 __|_                          __|__
                /    \                        /     \
  X    ===>    X     |               ===>    X       _ <-- new parent
 / \          / \    |                      / \     / \
A   B        A   B   C <-- new leaf        A   B   C   D <-- new leaf
]]></artwork>
        <t>To remove the rightmost leaf: Remove the rightmost leaf node L and its parent
node P.  If P was the root of the tree, P's left child
is now the root of the tree.  Otherwise, set the right child of P's parent
to be P's left child.</t>
        <artwork><![CDATA[
      Y                                    Y
    __|__                                __|_
   /     \                              /    \
  X       Z <-- remove parent  ===>    X     | <-- reassign child
 / \     / \                          / \    |
A   B   C   D <-- remove leaf        A   B   C


      Y <-- remove parent
    __|_
   /    \
  X     |                  ===>    X <-- reassign root
 / \    |                         / \
A   B   C <-- remove leaf        A   B
]]></artwork>
        <t>Note that in the rest of the protocol, the rightmost leaf will only be removed when it is blank.</t>
        <t>Concrete algorithms for these operations on array-based and link-based trees are
provided in <xref target="array-based-trees"/> and <xref target="link-based-trees"/>.  The concrete
algorithms are non-normative.  An implementation MAY use any algorithm that
produces the correct tree in its internal representation.</t>
      </section>
      <section anchor="synchronizing-views-of-the-tree">
        <name>Synchronizing Views of the Tree</name>
        <t>After generating fresh key material and applying it to ratchet forward their
local tree state as described in the <xref target="ratchet-tree-evolution"/>, the
generator must broadcast
this update to other members of the group in a Commit message, who
apply it to keep their local views of the tree in
sync with the sender's.  More specifically, when a member commits a change to
the tree (e.g., to add or remove a member), it transmits an UpdatePath
containing a set of public keys and encrypted path secrets
for intermediate nodes in the filtered direct path of its leaf. The
other members of the group use these values to update
their view of the tree, aligning their copy of the tree to the
sender's.</t>
        <t>An UpdatePath contains
the following information for each node in the filtered direct path of the
sender's leaf, including the root:</t>
        <ul spacing="normal">
          <li>The public key for the node</li>
          <li>Zero or more encrypted copies of the path secret corresponding to
the node</li>
        </ul>
        <t>The path secret value for a given node is encrypted for the subtree
corresponding to the parent's non-updated child, that is, the child
on the copath of the sender's leaf node.
There is one encryption of the path secret to each public key in the resolution
of the non-updated child.</t>
        <t>The recipient of an UpdatePath processes it with the following steps:</t>
        <ol spacing="normal" type="1"><li>
            <t>Compute the updated path secrets.
            </t>
            <ul spacing="normal">
              <li>Identify a node in the filtered direct path for which the recipient
is in the subtree of the non-updated child.</li>
              <li>Identify a node in the resolution of the copath node for
which the recipient has a private key.</li>
              <li>Decrypt the path secret for the parent of the copath node using
the private key from the resolution node.</li>
              <li>Derive path secrets for ancestors of that node using the
algorithm described above.</li>
              <li>The recipient SHOULD verify that the received public keys agree
with the public keys derived from the new path_secret values.</li>
            </ul>
          </li>
          <li>
            <t>Merge the updated path secrets into the tree.
            </t>
            <ul spacing="normal">
              <li>Blank all nodes on the direct path of the sender's leaf.</li>
              <li>
                <t>For all nodes on the filtered direct path of the sender's leaf,
                </t>
                <ul spacing="normal">
                  <li>Set the public key to the received public key.</li>
                  <li>Set the list of unmerged leaves to the empty list.</li>
                  <li>Store the updated hash of the next node on the filtered direct path
(represented as a ParentNode struct), going from root to leaf, so that
each hash incorporates all the non-blank nodes above it. The root node
always has a zero-length hash for this value.</li>
                </ul>
              </li>
              <li>For nodes where a path secret was recovered in step 1 ("Compute the
updated path secrets"), compute and store the node's updated private key.</li>
            </ul>
          </li>
        </ol>
        <t>For example, in order to communicate the example update described in
the previous section, the sender would transmit the following
values:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Public Key</th>
              <th align="left">Ciphertext(s)</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">node_pub[1]</td>
              <td align="left">E(pk(Z), path_secret[1]), E(pk(C), path_secret[1])</td>
            </tr>
            <tr>
              <td align="left">node_pub[0]</td>
              <td align="left">E(pk(A), path_secret[0])</td>
            </tr>
          </tbody>
        </table>
        <t>In this table, the value node_pub[i] represents the public key
derived from node_secret[i], pk(X) represents the current public key
of node X, and E(K, S) represents
the public-key encryption of the path secret S to the
public key K (using HPKE).</t>
        <t>After processing the update, each recipient MUST delete outdated key material,
specifically:</t>
        <ul spacing="normal">
          <li>The path secrets used to derive each updated node key pair.</li>
          <li>Each outdated node key pair that was replaced by the update.</li>
        </ul>
      </section>
      <section anchor="tree-hashes">
        <name>Tree Hashes</name>
        <t>To allow group members to verify that they agree on the public cryptographic state
of the group, this section defines a scheme for generating a hash value (called
the "tree hash") that represents the contents of the group's ratchet tree and the
members' leaf nodes. The tree hash of a tree is the tree hash of its root node,
which we define recursively, starting with the leaves.</t>
        <t>The tree hash of a leaf node is the hash of leaf's <tt>LeafNodeHashInput</tt> object which
might include a <tt>LeafNode</tt> object depending on whether or not it is blank.</t>
        <artwork><![CDATA[
struct {
    uint32 leaf_index;
    optional<LeafNode> leaf_node;
} LeafNodeHashInput;
]]></artwork>
        <t>Now the tree hash of any non-leaf node is recursively defined to be the hash of
its <tt>ParentNodeHashInput</tt>. This includes an optional <tt>ParentNode</tt>
object depending on whether the node is blank or not.</t>
        <artwork><![CDATA[
struct {
    optional<ParentNode> parent_node;
    opaque left_hash<V>;
    opaque right_hash<V>;
} ParentNodeHashInput;
]]></artwork>
        <t>The <tt>left_hash</tt> and <tt>right_hash</tt> fields hold the tree hashes of the node's
left and right children, respectively.</t>
      </section>
      <section anchor="parent-hash">
        <name>Parent Hash</name>
        <t>The <tt>parent_hash</tt> field in ratchet tree nodes carries information to
authenticate the information in the ratchet tree.  Parent hashes chain together
so that the signature on a leaf node, by covering the leaf node's parent hash,
indirectly includes information about the structure of the tree at the time the
leaf node was last updated.</t>
        <t>Consider a ratchet tree with a non-blank parent node P and children V and S.</t>
        <artwork><![CDATA[
        ...
        /
       P
     __|__
    /     \
   V       S
  / \     / \
... ... ... ...
]]></artwork>
        <t>The parent hash of P changes whenever an <tt>UpdatePath</tt> object is applied to
the ratchet tree along a path from a leaf U traversing node V (and hence also
P). The new "Parent hash of P (with copath child S)" is obtained by hashing P's
<tt>ParentHashInput</tt> struct.</t>
        <artwork><![CDATA[
struct {
    HPKEPublicKey public_key;
    opaque parent_hash<V>;
    opaque original_sibling_tree_hash<V>;
} ParentHashInput;
]]></artwork>
        <t>The field <tt>public_key</tt> contains the HPKE public key of P. If P is the root,
then the <tt>parent_hash</tt> field is set to a zero-length octet string. Otherwise,
<tt>parent_hash</tt> is the Parent Hash of the next node after P on the filtered
direct path of U. This way, P's Parent Hash fixes
the new HPKE public key of each node V on the path from P to the root. Note
that the path from P to the root may contain some blank nodes that are not
fixed by P's Parent Hash. However, for each node that has an HPKE key, this key
is fixed by P's Parent Hash.</t>
        <t>Finally, <tt>original_sibling_tree_hash</tt> is the original tree hash of S. The
original tree hash corresponds to the tree hash of S the last time P was
updated. It can be computed as the tree hash of S in the ratchet tree modified
the following way:</t>
        <ul spacing="normal">
          <li>reset the leaves in P.unmerged_leaves to blanks</li>
          <li>remove P.unmerged_leaves from all unmerged_leaves lists</li>
          <li>truncate the ratchet tree as described in <xref target="remove"/></li>
        </ul>
        <t>For example, in the following tree:</t>
        <figure anchor="parent-hash-tree">
          <name>A full tree unmerged leaves that illustrate parent hash computations</name>
          <artwork><![CDATA[
              W [D, H]
        ______|_____
       /             \
      U [D]           Y [F, H]
    __|__           __|__
   /     \         /     \
  T       _       X [F]   _
 / \     / \     / \     / \
A   B   C   D   E   F   G   H
]]></artwork>
        </figure>
        <t>With P = W and S = Y, <tt>original_sibling_tree_hash</tt> is the tree hash of the
following tree:</t>
        <artwork><![CDATA[
      Y [F]
    __|__
   /     \
  X [F]  |
 / \     |
E   F    G
]]></artwork>
        <t>Because <tt>W.unmerged_leaves = [H]</tt>, H is removed from <tt>Y.unmerged_leaves</tt>,
then H is replaced with a blank leaf, then the tree is truncated removing the
last two nodes.</t>
        <t>With P = W and S = U, <tt>original_sibling_tree_hash</tt> is the tree hash of the
following tree:</t>
        <artwork><![CDATA[
      U
    __|__
   /     \
  T       _
 / \     / \
A   B   C   _
]]></artwork>
        <t>This time we have 4 leaf nodes because the truncation of the ratchet tree didn't
remove the last leaf.</t>
        <t>Note that no recomputation is needed if the tree hash of S is unchanged since
the last time P was updated.  This is the case for computing or processing a
Commit whose UpdatePath traverses P, since the Commit itself resets P.  (In
other words, it is only necessary to recompute the original sibling tree hash
when validating group's tree on joining.) More generally, if none of the entries
in <tt>P.unmerged_leaves</tt> is in the subtree under S (and thus no nodes were truncated),
then the original tree hash at S is the tree hash of S in the current tree.</t>
        <t>If it is necessary to recompute the original tree hash of a node, the efficiency
of recomputation can be improved by caching intermediate tree hashes, to avoid
recomputing over the subtree when the subtree is included in multiple parent
hashes.  A subtree hash can be reused as long as the intersection of the
parent's unmerged leaves with the subtree is the same as in the earlier
computation.</t>
        <t>Observe that <tt>original_child_resolution</tt> is equal to the resolution of S at the
time the <tt>UpdatePath</tt> was generated, since at that point P's set of unmerged
leaves was emptied. (Observe also that <tt>original_child_resolution</tt> contains all
unmerged leaves of S.) Therefore, P's Parent Hash fixes, for each node V on the
path from P to the root, not only the HPKE public key of V, but also the set of
HPKE public keys to which the corresponding HPKE secret key of V was encrypted by
the generator of the <tt>UpdatePath</tt>.</t>
        <section anchor="using-parent-hashes">
          <name>Using Parent Hashes</name>
          <t>The Parent Hash of P appears in three types of structs. If V is itself a parent node
then P's Parent Hash is stored in the <tt>parent_hash</tt> field of the structs
<tt>ParentHashInput</tt> and <tt>ParentNode</tt> of the node before P on the filtered direct
path of U. (The <tt>ParentNode</tt> struct is used to encapsulate all public
information about that node that must be conveyed to a new
member joining the group as well as to define its Tree Hash.)</t>
          <t>If, on the other hand, V is the leaf U and its LeafNode has <tt>leaf_node_source</tt> set to <tt>commit</tt>,
then the Parent Hash of P (with V's sibling as copath child) is stored in
the <tt>parent_hash</tt> field.  This is true in particular of the LeafNode object sent
in the <tt>leaf_node</tt> field of an UpdatePath. The signature of such a LeafNode thus also
attests to which keys the group member introduced into the ratchet tree and
to whom the corresponding secret keys were sent. This helps prevent malicious insiders
from constructing artificial ratchet trees with a node V whose HPKE secret key is
known to the insider yet where the insider isn't assigned a leaf in the subtree rooted
at V. Indeed, such a ratchet tree would violate the tree invariant.</t>
        </section>
        <section anchor="verifying-parent-hashes">
          <name>Verifying Parent Hashes</name>
          <t>Parent hashes are verified at two points in the protocol: When joining a group
and when processing a Commit.</t>
          <t>The parent hash in a node U is valid with respect to a parent node P if the
following criteria hold:</t>
          <ul spacing="normal">
            <li>U is a descendant of P in the tree</li>
            <li>The nodes between U and P in the tree are all blank</li>
            <li>The <tt>parent_hash</tt> field of U is equal to the parent hash of P with copath
child S, where S is the child of P that is not on the path from U to P.</li>
          </ul>
          <t>A parent node P is "parent-hash valid" if it can be chained back to a leaf node
in this way.  That is, if there is leaf node L and a sequence of parent nodes
P_1, ..., P_N such that P_N = P and each step in the chain is authenticated
by a parent hash: L's parent hash is valid with respect to P_1, P_1's parent
hash is valid with respect to P_2, and so on.</t>
          <t>When joining a group, the new member MUST authenticate that each non-blank
parent node P is parent-hash valid.  This can be done "bottom up" by building
chains up from leaves and verifying that all non-blank parent nodes are covered
by exactly one such chain, or "top down" by verifying that there is exactly one
descendant of each non-blank parent node for which the parent node is
parent-hash valid.</t>
          <t>When processing a Commit message that includes an UpdatePath, clients MUST
recompute the expected value of <tt>parent_hash</tt> for the committer's new leaf and
verify that it matches the <tt>parent_hash</tt> value in the supplied <tt>leaf_node</tt>.
After being merged into the tree, the nodes in the UpdatePath form a parent-hash
chain from the committer's leaf to the root.</t>
        </section>
      </section>
      <section anchor="update-paths">
        <name>Update Paths</name>
        <t>As described in <xref target="commit"/>, each MLS Commit message may optionally
transmit a LeafNode and parent node values along its direct path.
The path contains a public key and encrypted secret value for all
intermediate nodes in the filtered direct path from the leaf to the
root. The path is ordered
from the closest node to the leaf to the root; each node MUST be the
parent of its predecessor.</t>
        <artwork><![CDATA[
struct {
    opaque kem_output<V>;
    opaque ciphertext<V>;
} HPKECiphertext;

struct {
    HPKEPublicKey public_key;
    HPKECiphertext encrypted_path_secret<V>;
} UpdatePathNode;

struct {
    LeafNode leaf_node;
    UpdatePathNode nodes<V>;
} UpdatePath;
]]></artwork>
        <t>For each <tt>UpdatePathNode</tt>, the resolution of the corresponding copath node MUST
be filtered by removing all new leaf nodes added as part of this MLS Commit
message. The number of ciphertexts in the <tt>encrypted_path_secret</tt> vector MUST be
equal to the length of the filtered resolution, with each ciphertext being the
encryption to the respective resolution node.</t>
        <t>The HPKECiphertext values are computed as</t>
        <artwork><![CDATA[
kem_output, context = SetupBaseS(node_public_key, group_context)
ciphertext = context.Seal("", path_secret)
]]></artwork>
        <t>where <tt>node_public_key</tt> is the public key of the node that the path
secret is being encrypted for, group_context is the current GroupContext object
for the group, and the functions <tt>SetupBaseS</tt> and
<tt>Seal</tt> are defined according to <xref target="RFC9180"/>.</t>
        <t>Decryption is performed in the corresponding way, using the private
key of the resolution node.</t>
      </section>
    </section>
    <section anchor="key-schedule">
      <name>Key Schedule</name>
      <t>Group keys are derived using the <tt>Extract</tt> and <tt>Expand</tt> functions from the KDF
for the group's ciphersuite, as well as the functions defined below:</t>
      <artwork><![CDATA[
ExpandWithLabel(Secret, Label, Context, Length) =
    KDF.Expand(Secret, KDFLabel, Length)

Where KDFLabel is specified as:

struct {
    uint16 length = Length;
    opaque label<V> = "MLS 1.0 " + Label;
    opaque context<V> = Context;
} KDFLabel;

DeriveSecret(Secret, Label) =
    ExpandWithLabel(Secret, Label, "", KDF.Nh)
]]></artwork>
      <t>The value <tt>KDF.Nh</tt> is the size of an output from <tt>KDF.Extract</tt>, in bytes.  In
the below diagram:</t>
      <ul spacing="normal">
        <li>KDF.Extract takes its salt argument from the top and its Input
Key Material (IKM) argument from the left</li>
        <li>DeriveSecret takes its Secret argument from the incoming arrow</li>
        <li>
          <tt>0</tt> represents an all-zero byte string of length <tt>KDF.Nh</tt>.</li>
      </ul>
      <t>When processing a handshake message, a client combines the
following information to derive new epoch secrets:</t>
      <ul spacing="normal">
        <li>The init secret from the previous epoch</li>
        <li>The commit secret for the current epoch</li>
        <li>The GroupContext object for current epoch</li>
      </ul>
      <t>Given these inputs, the derivation of secrets for an epoch
proceeds as shown in the following diagram:</t>
      <artwork><![CDATA[
                   init_secret_[n-1]
                         |
                         V
    commit_secret -> KDF.Extract
                         |
                         V
                 ExpandWithLabel(., "joiner", GroupContext_[n], KDF.Nh)
                         |
                         V
                    joiner_secret
                         |
                         V
psk_secret (or 0) -> KDF.Extract
                         |
                         +--> DeriveSecret(., "welcome")
                         |    = welcome_secret
                         |
                         V
                 ExpandWithLabel(., "epoch", GroupContext_[n], KDF.Nh)
                         |
                         V
                    epoch_secret
                         |
                         +--> DeriveSecret(., <label>)
                         |    = <secret>
                         |
                         V
                   DeriveSecret(., "init")
                         |
                         V
                   init_secret_[n]
]]></artwork>
      <t>A number of secrets are derived from the epoch secret for different purposes:</t>
      <table anchor="epoch-derived-secrets">
        <name>Epoch-derived secrets</name>
        <thead>
          <tr>
            <th align="left">Secret</th>
            <th align="left">Label</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">
              <tt>sender_data_secret</tt></td>
            <td align="left">"sender data"</td>
          </tr>
          <tr>
            <td align="left">
              <tt>encryption_secret</tt></td>
            <td align="left">"encryption"</td>
          </tr>
          <tr>
            <td align="left">
              <tt>exporter_secret</tt></td>
            <td align="left">"exporter"</td>
          </tr>
          <tr>
            <td align="left">
              <tt>authentication_secret</tt></td>
            <td align="left">"authentication"</td>
          </tr>
          <tr>
            <td align="left">
              <tt>external_secret</tt></td>
            <td align="left">"external"</td>
          </tr>
          <tr>
            <td align="left">
              <tt>confirmation_key</tt></td>
            <td align="left">"confirm"</td>
          </tr>
          <tr>
            <td align="left">
              <tt>membership_key</tt></td>
            <td align="left">"membership"</td>
          </tr>
          <tr>
            <td align="left">
              <tt>resumption_secret</tt></td>
            <td align="left">"resumption"</td>
          </tr>
        </tbody>
      </table>
      <t>The "external secret" is used to derive an HPKE key pair whose private key is
held by the entire group:</t>
      <artwork><![CDATA[
external_priv, external_pub = KEM.DeriveKeyPair(external_secret)
]]></artwork>
      <t>The public key <tt>external_pub</tt> can be published as part of the GroupInfo struct
in order to allow non-members to join the group using an external commit.</t>
      <section anchor="group-context">
        <name>Group Context</name>
        <t>Each member of the group maintains a GroupContext object that
summarizes the state of the group:</t>
        <artwork><![CDATA[
struct {
    opaque group_id<V>;
    uint64 epoch;
    opaque tree_hash<V>;
    opaque confirmed_transcript_hash<V>;
    Extension extensions<V>;
} GroupContext;
]]></artwork>
        <t>The fields in this state have the following semantics:</t>
        <ul spacing="normal">
          <li>The <tt>group_id</tt> field is an application-defined identifier for the
group.</li>
          <li>The <tt>epoch</tt> field represents the current version of the group.</li>
          <li>The <tt>tree_hash</tt> field contains a commitment to the contents of the
group's ratchet tree and the credentials for the members of the
group, as described in <xref target="tree-hashes"/>.</li>
          <li>The <tt>confirmed_transcript_hash</tt> field contains a running hash over
the messages that led to this state.</li>
          <li>The <tt>extensions</tt> field contains the details of any protocol extensions that
apply to the group.</li>
        </ul>
        <t>When a new member is added to the group, an existing member of the
group provides the new member with a Welcome message.  The Welcome
message provides the information the new member needs to initialize
its GroupContext.</t>
        <t>Different changes to the group will have different effects on the group state.
These effects are described in their respective subsections of <xref target="proposals"/>.
The following general rules apply:</t>
        <ul spacing="normal">
          <li>The <tt>group_id</tt> field is constant.</li>
          <li>The <tt>epoch</tt> field increments by one for each Commit message that
is processed.</li>
          <li>The <tt>tree_hash</tt> is updated to represent the current tree and
credentials.</li>
          <li>The <tt>confirmed_transcript_hash</tt> field is updated with the data for an
MLSPlaintext message encoding a Commit message as described below.</li>
          <li>The <tt>extensions</tt> field changes when a GroupContextExtensions proposal is
committed.</li>
        </ul>
      </section>
      <section anchor="transcript-hashes">
        <name>Transcript Hashes</name>
        <t>The transcript hashes computed in MLS represent a running hash over all Proposal
and Commit messages that have ever been sent in a group.  Commit messages are
included directly. Proposal messages are indirectly included via the Commit that
applied them. Both types of message are included by hashing the MLSPlaintext
in which they were sent.</t>
        <t>The <tt>confirmed_transcript_hash</tt> is updated with an MLSMessageContent and
MLSMessageAuth containing a Commit in two steps:</t>
        <artwork><![CDATA[
struct {
    WireFormat wire_format;
    MLSMessageContent content; //with content.content_type == commit
    opaque signature<V>;
} MLSMessageCommitContent;

struct {
    MAC confirmation_tag;
} MLSMessageCommitAuthData;

interim_transcript_hash_[0] = ""; // zero-length octet string

confirmed_transcript_hash_[n] =
    Hash(interim_transcript_hash_[n] ||
        MLSMessageCommitContent_[n]);

interim_transcript_hash_[n+1] =
    Hash(confirmed_transcript_hash_[n] ||
        MLSMessageCommitAuthData_[n]);
]]></artwork>
        <t>Thus the <tt>confirmed_transcript_hash</tt> field in a GroupContext object represents a
transcript over the whole history of MLSMessage Commit messages, up to the
confirmation_tag field of the most recent Commit.  The confirmation
tag is then included in the transcript for the next epoch.  The interim
transcript hash is computed by new members using the confirmation_tag of the
GroupInfo struct, while existing members can compute it directly.</t>
        <t>As shown above, when a new group is created, the <tt>interim_transcript_hash</tt> field
is set to the zero-length octet string.</t>
      </section>
      <section anchor="external-initialization">
        <name>External Initialization</name>
        <t>In addition to initializing a new epoch via KDF invocations as described above,
an MLS group can also initialize a new epoch via an asymmetric interaction using
the external key pair for the previous epoch.  This is done when an new member
is joining via an external commit.</t>
        <t>In this process, the joiner sends a new <tt>init_secret</tt> value to the group using
the HPKE export method.  The joiner then uses that <tt>init_secret</tt> with
information provided in the GroupInfo and an external Commit to initialize
their copy of the key schedule for the new epoch.</t>
        <artwork><![CDATA[
kem_output, context = SetupBaseS(external_pub, "")
init_secret = context.export("MLS 1.0 external init secret", KDF.Nh)
]]></artwork>
        <t>Members of the group receive the <tt>kem_output</tt> in an ExternalInit proposal and
preform the corresponding calculation to retrieve the <tt>init_secret</tt> value.</t>
        <artwork><![CDATA[
context = SetupBaseR(kem_output, external_priv, "")
init_secret = context.export("MLS 1.0 external init secret", KDF.Nh)
]]></artwork>
        <t>In both cases, the <tt>info</tt> input to HPKE is set to the GroupInfo for the
previous epoch, encoded using the TLS serialization.</t>
      </section>
      <section anchor="pre-shared-keys">
        <name>Pre-Shared Keys</name>
        <t>Groups which already have an out-of-band mechanism to generate
shared group secrets can inject those into the MLS key schedule to seed
the MLS group secrets computations by this external entropy.</t>
        <t>Injecting an external PSK can improve security in the case
where having a full run of updates across members is too expensive, or if
the external group key establishment mechanism provides
stronger security against classical or quantum adversaries.</t>
        <t>Note that, as a PSK may have a different lifetime than an update, it does not
necessarily provide the same Forward Secrecy (FS) or Post-Compromise Security
(PCS) guarantees as a Commit message.  Unlike the key pairs populated in the
tree by an Update or Commit, which are always freshly generated, PSKs may be
pre-distributed and stored. This creates the risk that a PSK may be compromised
in the process of distribution and storage. The security that the group gets
from injecting a PSK thus depends on both the entropy of the PSK and the risk of
compromise.  These factors are outside of the scope of this document, but should
be considered by application designers relying on PSKs.</t>
        <t>Each PSK in MLS has a type that designates how it was provisioned.
External PSKs are provided by the application, while resumption PSKs
are derived from the MLS key schedule and used in cases where it is
necessary to authenticate a member's participation in a prior epoch.</t>
        <t>The injection of one or more PSKs into the key schedule is signaled in two ways:
Existing members are informed via PreSharedKey proposals covered by a Commit,
and new members added in the Commit are informed via GroupSecrets object in the
Welcome message corresponding to the Commit.  To ensure that existing and new
members compute the same PSK input to the key schedule, the Commit and
GroupSecrets objects MUST indicate the same set of PSKs, in the same order.</t>
        <artwork><![CDATA[
enum {
  reserved(0),
  external(1),
  resumption(2),
  (255)
} PSKType;

enum {
  reserved(0),
  application(1),
  reinit(2),
  branch(3),
} ResumptionPSKUsage;

struct {
  PSKType psktype;
  select (PreSharedKeyID.psktype) {
    case external:
      opaque psk_id<V>;

    case resumption:
      ResumptionPSKUsage usage;
      opaque psk_group_id<V>;
      uint64 psk_epoch;
  }
  opaque psk_nonce<V>;
} PreSharedKeyID;

struct {
    PreSharedKeyID psks<V>;
} PreSharedKeys;
]]></artwork>
        <t>On receiving a Commit with a <tt>PreSharedKey</tt> proposal or a GroupSecrets object
with the <tt>psks</tt> field set, the receiving Client includes them in the key
schedule in the order listed in the Commit, or in the <tt>psks</tt> field respectively.
For resumption PSKs, the PSK is defined as the <tt>resumption_secret</tt> of the group and
epoch specified in the <tt>PreSharedKeyID</tt> object. Specifically, <tt>psk_secret</tt> is
computed as follows:</t>
        <artwork><![CDATA[
struct {
    PreSharedKeyID id;
    uint16 index;
    uint16 count;
} PSKLabel;

psk_extracted_[i] = KDF.Extract(0, psk_[i])
psk_input_[i] = ExpandWithLabel(psk_extracted_[i], "derived psk",
                  PSKLabel, KDF.Nh)

psk_secret_[0] = 0
psk_secret_[i] = KDF.Extract(psk_input_[i-1], psk_secret_[i-1])
psk_secret     = psk_secret_[n]
]]></artwork>
        <t>Here <tt>0</tt> represents the all-zero vector of length <tt>KDF.Nh</tt>. The <tt>index</tt> field in
<tt>PSKLabel</tt> corresponds to the index of the PSK in the <tt>psk</tt> array, while the
<tt>count</tt> field contains the total number of PSKs.  In other words, the PSKs are
chained together with KDF.Extract invocations (labelled "Extract" for brevity
in the diagram), as follows:</t>
        <artwork><![CDATA[
                 0                               0    = psk_secret_[0]
                 |                               |
                 V                               V
psk_[0]   --> Extract --> ExpandWithLabel --> Extract = psk_secret_[1]
                                                 |
                 0                               |
                 |                               |
                 V                               V
psk_[1]   --> Extract --> ExpandWithLabel --> Extract = psk_secret_[2]
                                                 |
                 0                              ...
                 |                               |
                 V                               V
psk_[n-1] --> Extract --> ExpandWithLabel --> Extract = psk_secret_[n]
]]></artwork>
        <t>In particular, if there are no PreSharedKey proposals in a given Commit, then
the resulting <tt>psk_secret</tt> is <tt>psk_secret_[0]</tt>, the all-zero vector.</t>
      </section>
      <section anchor="exporters">
        <name>Exporters</name>
        <t>The main MLS key schedule provides an <tt>exporter_secret</tt> which can
be used by an application as the basis to derive new secrets called
<tt>exported_value</tt> outside the MLS layer.</t>
        <artwork><![CDATA[
MLS-Exporter(Label, Context, key_length) =
       ExpandWithLabel(DeriveSecret(exporter_secret, Label),
                         "exporter", Hash(Context), key_length)
]]></artwork>
        <t>Each application SHOULD provide a unique label to <tt>MLS-Exporter</tt> that
identifies its use case. This is to prevent two
exported outputs from being generated with the same values and used
for different functionalities.</t>
        <t>The exported values are bound to the group epoch from which the
<tt>exporter_secret</tt> is derived, hence reflects a particular state of
the group.</t>
        <t>It is RECOMMENDED for the application generating exported values
to refresh those values after a Commit is processed.</t>
      </section>
      <section anchor="resumption-secret">
        <name>Resumption Secret</name>
        <t>The main MLS key schedule provides a <tt>resumption_secret</tt> that is used as a PSK
to inject entropy from one epoch into another.  This functionality is used in the
reinitialization and branching processes described in <xref target="reinitialization"/> and
<xref target="sub-group-branching"/>, but may be used by applications for other purposes.</t>
        <t>Some uses of resumption PSKs might call for the use of PSKs from historical
epochs. The application SHOULD specify an upper limit on the number of past
epochs for which the <tt>resumption_secret</tt> may be stored.</t>
      </section>
      <section anchor="state-authentication-keys">
        <name>State Authentication Keys</name>
        <t>The main MLS key schedule provides a per-epoch <tt>authentication_secret</tt>.
If one of the parties is being actively impersonated by an attacker, their
<tt>authentication_secret</tt> will differ from that of the other group members.
Thus, members of a group MAY use their <tt>authentication_secrets</tt> within
an out-of-band authentication protocol to ensure that they
share the same view of the group.</t>
      </section>
    </section>
    <section anchor="secret-tree">
      <name>Secret Tree</name>
      <t>For the generation of encryption keys and nonces, the key schedule begins with
the <tt>encryption_secret</tt> at the root and derives a tree of secrets with the same
structure as the group's ratchet tree. Each leaf in the Secret Tree is
associated with the same group member as the corresponding leaf in the ratchet
tree.</t>
      <t>If N is a parent node in the Secret Tree then the secrets of the children of N
are defined as follows (where left(N) and right(N) denote the children of N):</t>
      <artwork><![CDATA[
tree_node_[N]_secret
        |
        |
        +--> ExpandWithLabel(., "tree", "left", KDF.Nh)
        |    = tree_node_[left(N)]_secret
        |
        +--> ExpandWithLabel(., "tree", "right", KDF.Nh)
             = tree_node_[right(N)]_secret
]]></artwork>
      <t>The secret in the leaf of the Secret Tree is used to initiate two symmetric hash
ratchets, from which a sequence of single-use keys and nonces are derived, as
described in <xref target="encryption-keys"/>. The root of each ratchet is computed as:</t>
      <artwork><![CDATA[
tree_node_[N]_secret
        |
        |
        +--> ExpandWithLabel(., "handshake", "", KDF.Nh)
        |    = handshake_ratchet_secret_[N]_[0]
        |
        +--> ExpandWithLabel(., "application", "", KDF.Nh)
             = application_ratchet_secret_[N]_[0]
]]></artwork>
      <section anchor="encryption-keys">
        <name>Encryption Keys</name>
        <t>As described in <xref target="message-framing"/>, MLS encrypts three different
types of information:</t>
        <ul spacing="normal">
          <li>Metadata (sender information)</li>
          <li>Handshake messages (Proposal and Commit)</li>
          <li>Application messages</li>
        </ul>
        <t>The sender information used to look up the key for content encryption is
encrypted with an AEAD where the key and nonce are derived from both
<tt>sender_data_secret</tt> and a sample of the encrypted message content.</t>
        <t>For handshake and application messages, a sequence of keys is derived via a
"sender ratchet".  Each sender has their own sender ratchet, and each step along
the ratchet is called a "generation".</t>
        <t>A sender ratchet starts from a per-sender base secret derived from a Secret
Tree, as described in <xref target="secret-tree"/>. The base secret initiates a symmetric
hash ratchet which generates a sequence of keys and nonces. The sender uses the
j-th key/nonce pair in the sequence to encrypt (using the AEAD) the j-th message
they send during that epoch. Each key/nonce pair MUST NOT be used to encrypt
more than one message.</t>
        <t>Keys, nonces, and the secrets in ratchets are derived using
DeriveTreeSecret. The context in a given call consists of the current position
in the ratchet.</t>
        <artwork><![CDATA[
DeriveTreeSecret(Secret, Label, Generation, Length) =
    ExpandWithLabel(Secret, Label, Generation, Length)

Where Generation is encoded as a uint32.
]]></artwork>
        <artwork><![CDATA[
ratchet_secret_[N]_[j]
      |
      +--> DeriveTreeSecret(., "nonce", j, AEAD.Nn)
      |    = ratchet_nonce_[N]_[j]
      |
      +--> DeriveTreeSecret(., "key", j,  AEAD.Nk)
      |    = ratchet_key_[N]_[j]
      |
      V
DeriveTreeSecret(., "secret", j, KDF.Nh)
= ratchet_secret_[N]_[j+1]
]]></artwork>
        <t>Here, AEAD.Nn and AEAD.Nk denote the lengths
in bytes of the nonce and key for the AEAD scheme defined by
the ciphersuite.</t>
      </section>
      <section anchor="deletion-schedule">
        <name>Deletion Schedule</name>
        <t>It is important to delete all security-sensitive values as soon as they are
<em>consumed</em>. A sensitive value S is said to be <em>consumed</em> if</t>
        <ul spacing="normal">
          <li>S was used to encrypt or (successfully) decrypt a message, or if</li>
          <li>a key, nonce, or secret derived from S has been consumed. (This goes for
values derived via DeriveSecret as well as ExpandWithLabel.)</li>
        </ul>
        <t>Here, S may be the <tt>init_secret</tt>, <tt>commit_secret</tt>, <tt>epoch_secret</tt>,
<tt>encryption_secret</tt> as well as any secret in a Secret Tree or one of the
ratchets.</t>
        <t>As soon as a group member consumes a value they MUST immediately delete
(all representations of) that value. This is crucial to ensuring
forward secrecy for past messages. Members MAY keep unconsumed values around
for some reasonable amount of time to handle out-of-order message delivery.</t>
        <t>For example, suppose a group member encrypts or (successfully) decrypts an
application message using the j-th key and nonce in the ratchet of leaf node
L in some epoch n. Then, for that member, at least the following
values have been consumed and MUST be deleted:</t>
        <ul spacing="normal">
          <li>the <tt>commit_secret</tt>, <tt>joiner_secret</tt>, <tt>epoch_secret</tt>, <tt>encryption_secret</tt> of
that epoch n as well as the <tt>init_secret</tt> of the previous epoch n-1,</li>
          <li>all node secrets in the Secret Tree on the path from the root to the leaf with
node L,</li>
          <li>the first j secrets in the application data ratchet of node L and</li>
          <li>
            <tt>application_ratchet_nonce_[L]_[j]</tt> and <tt>application_ratchet_key_[L]_[j]</tt>.</li>
        </ul>
        <t>Concretely, suppose we have the following Secret Tree and ratchet for
participant D:</t>
        <artwork><![CDATA[
       G
     /   \
    /     \
   E       F
  / \     / \
 A   B   C   D
            / \
          HR0  AR0 -+- K0
                |   |
                |   +- N0
                |
               AR1 -+- K1
                |   |
                |   +- N1
                |
               AR2
]]></artwork>
        <t>Then if a client uses key K1 and nonce N1 during epoch n then it must consume
(at least) values G, F, D, AR0, AR1, K1, N1 as well as the key schedule secrets
used to derive G (the <tt>encryption_secret</tt>), namely <tt>init_secret</tt> of epoch n-1
and <tt>commit_secret</tt>, <tt>joiner_secret</tt>, <tt>epoch_secret</tt> of epoch n. The client MAY
retain (not consume) the values K0 and N0 to allow for out-of-order delivery,
and SHOULD retain AR2 for processing future messages.</t>
      </section>
    </section>
    <section anchor="key-packages">
      <name>Key Packages</name>
      <t>In order to facilitate the asynchronous addition of clients to a
group, key packages are pre-published that
provide some public information about a user. A KeyPackage object specifies:</t>
      <ol spacing="normal" type="1"><li>A protocol version and ciphersuite that the client supports,</li>
        <li>a public key that others can use to encrypt a Welcome message to this client,
(an "init key") and</li>
        <li>the content of the leaf node that should be added to the tree to represent
this client.</li>
      </ol>
      <t>KeyPackages are intended to be used only once and SHOULD NOT
be reused except in case of last resort. (See <xref target="keypackage-reuse"/>).
Clients MAY generate and publish multiple KeyPackages to
support multiple ciphersuites.</t>
      <t>The value for <tt>init_key</tt> MUST be a public key for the asymmetric encryption
scheme defined by <tt>cipher_suite</tt>, and it MUST be unique among the set of
KeyPackages created by this client.  Likewise, the <tt>leaf_node</tt> field MUST be
valid for the ciphersuite, including both the <tt>public_key</tt> and <tt>credential</tt>
fields.  The whole structure is signed using the client's signature key. A
KeyPackage object with an invalid signature field MUST be considered malformed.</t>
      <t>The signature is computed by the function <tt>SignWithLabel</tt> with a label
<tt>KeyPackage</tt> and a content comprising of all of the fields except for the
signature field.</t>
      <artwork><![CDATA[
struct {
    ProtocolVersion version;
    CipherSuite cipher_suite;
    HPKEPublicKey init_key;
    LeafNode leaf_node;
    Extension extensions<V>;
    // SignWithLabel(., "KeyPackageTBS", KeyPackageTBS)
    opaque signature<V>;
} KeyPackage;

struct {
    ProtocolVersion version;
    CipherSuite cipher_suite;
    HPKEPublicKey init_key;
    LeafNode leaf_node;
    Extension extensions<V>;
} KeyPackageTBS;
]]></artwork>
      <t>If a client receives a KeyPackage carried within an MLSMessage object, then it
MUST verify that the <tt>version</tt> field of the KeyPackage has the same value as the
<tt>version</tt> field of the MLSMessage.  The <tt>version</tt> field in the KeyPackage
provides an explicit signal of the intended version to the other members of
group when they receive the KeyPackage in an Add proposal.</t>
      <t>The field <tt>leaf_node.capabilities</tt> indicates what protocol versions,
ciphersuites, protocol extensions, and non-default proposal types are supported
by the client.  (Proposal types defined in this document are considered
"default" and not listed.)  This information allows MLS session
establishment to be safe from downgrade attacks on the parameters described (as
discussed in <xref target="group-creation"/>), while still only advertising one version /
ciphersuite per KeyPackage.</t>
      <t>The field <tt>leaf_node.leaf_node_source</tt> of the LeafNode in a KeyPackage MUST be
set to <tt>key_package</tt>.</t>
      <t>Extension included in the <tt>extensions</tt> or <tt>leaf_node.extensions</tt> fields MUST be
included in the <tt>leaf_node.capabilities</tt> field.</t>
      <section anchor="keypackage-validation">
        <name>KeyPackage Validation</name>
        <t>The validity of a KeyPackage needs to be verified at a few stages:</t>
        <ul spacing="normal">
          <li>When a KeyPackage is downloaded by a group member, before it is used
to add the client to the group</li>
          <li>When a KeyPackage is received by a group member in an Add message</li>
        </ul>
        <t>The client verifies the validity of a KeyPackage using the following steps:</t>
        <ul spacing="normal">
          <li>Verify that the ciphersuite and protocol version of the KeyPackage match
those in use in the group.</li>
          <li>Verify the <tt>leaf_node</tt> field of the KeyPackage according to the process
defined in <xref target="leaf-node-validation"/>.</li>
          <li>Verify that the signature on the KeyPackage is valid using the public key
in <tt>leaf_node.credential</tt>.</li>
        </ul>
      </section>
      <section anchor="keypackage-identifiers">
        <name>KeyPackage Identifiers</name>
        <t>Within MLS, a KeyPackage is identified by its hash (see, e.g.,
<xref target="joining-via-welcome-message"/>).  The <tt>external_key_id</tt> extension allows
applications to add an explicit, application-defined identifier to a KeyPackage.</t>
        <artwork><![CDATA[
opaque external_key_id<V>;
]]></artwork>
      </section>
    </section>
    <section anchor="group-creation">
      <name>Group Creation</name>
      <t>A group is always created with a single member, the "creator".  The other
members are added when the creator effectively sends itself an Add proposal and
commits it, then sends the corresponding Welcome message to the new
participants.  These processes are described in detail in <xref target="add"/>, <xref target="commit"/>,
and <xref target="joining-via-welcome-message"/>.</t>
      <t>The creator of a group MUST take the following steps to initialize the group:</t>
      <ul spacing="normal">
        <li>Fetch KeyPackages for the members to be added, and select a version and
ciphersuite according to the capabilities of the members.  To protect against
downgrade attacks, the creator MUST use the <tt>capabilities</tt> information
in these KeyPackages to verify that the
chosen version and ciphersuite is the best option supported by all members.</li>
        <li>
          <t>Initialize a one-member group with the following initial values:
          </t>
          <ul spacing="normal">
            <li>Ratchet tree: A tree with a single node, a leaf containing an HPKE public
key and credential for the creator</li>
            <li>Group ID: A value set by the creator</li>
            <li>Epoch: 0</li>
            <li>Tree hash: The root hash of the above ratchet tree</li>
            <li>Confirmed transcript hash: The zero-length octet string</li>
            <li>Interim transcript hash: The zero-length octet string</li>
            <li>Init secret: A fresh random value of size <tt>KDF.Nh</tt></li>
            <li>Extensions: Any values of the creator's choosing</li>
          </ul>
        </li>
        <li>For each member, construct an Add proposal from the KeyPackage for that
member (see <xref target="add"/>)</li>
        <li>Construct a Commit message that commits all of the Add proposals, in any order
chosen by the creator (see <xref target="commit"/>)</li>
        <li>Process the Commit message to obtain a new group state (for the epoch in which
the new members are added) and a Welcome message</li>
        <li>Transmit the Welcome message to the other new members</li>
      </ul>
      <t>The recipient of a Welcome message processes it as described in
<xref target="joining-via-welcome-message"/>.  If application context informs the recipient that
the Welcome should reflect the creation of a new group (for example, due to a
branch or reinitialization), then the recipient MUST verify that the epoch value
in the GroupInfo is equal to 1.</t>
      <t>In principle, the above process could be streamlined by having the
creator directly create a tree and choose a random value for first
epoch's epoch secret.  We follow the steps above because it removes
unnecessary choices, by which, for example, bad randomness could be
introduced.  The only choices the creator makes here are its own
KeyPackage and the leaf secret from which the Commit is built.</t>
      <section anchor="required-capabilities">
        <name>Required Capabilities</name>
        <t>The configuration of a group imposes certain requirements on clients in the
group.  At a minimum, all members of the group need to support the ciphersuite
and protocol version in use.  Additional requirements can be imposed by
including a <tt>required_capabilities</tt> extension in the GroupContext.</t>
        <artwork><![CDATA[
struct {
    ExtensionType extension_types<V>;
    ProposalType proposal_types<V>;
} RequiredCapabilities;
]]></artwork>
        <t>This extension lists the extensions and proposal types that must be supported by
all members of the group. The "default" proposal and extension types defined in this
document are assumed to be implemented by all clients, and need not be listed in
RequiredCapabilities in order to be safely used.</t>
        <t>For new members, support for required capabilities is enforced by existing
members during the application of Add commits.  Existing members should of
course be in compliance already.  In order to ensure this continues to be the
case even as the group's extensions can be updated, a GroupContextExtensions
proposal is invalid if it contains a <tt>required_capabilities</tt> extension that
requires non-default capabilities not supported by all current members.</t>
      </section>
      <section anchor="reinitialization">
        <name>Reinitialization</name>
        <t>A group may be reinitialized by creating a new group with the same membership
and different parameters, and linking it to the old group via a resumption PSK.
The members of a group reinitialize it using the following steps:</t>
        <ol spacing="normal" type="1"><li>A member of the old group sends a ReInit proposal (see <xref target="reinit"/>)</li>
          <li>A member of the old group sends a Commit covering the ReInit proposal</li>
          <li>
            <t>A member of the old group sends a Welcome message for the new group that
matches the ReInit
            </t>
            <ul spacing="normal">
              <li>The <tt>group_id</tt>, <tt>version</tt>, and <tt>cipher_suite</tt> fields in the Welcome
message MUST be the same as the corresponding fields in the ReInit
proposal.</li>
              <li>The <tt>epoch</tt> in the Welcome message MUST be 1</li>
              <li>The Welcome MUST specify a PreSharedKey of type <tt>resumption</tt> with usage
<tt>reinit</tt>.  The <tt>group_id</tt> must match the old group, and the <tt>epoch</tt> must
indicate the epoch after the Commit covering the ReInit.</li>
              <li>The <tt>psk_nonce</tt> included in the <tt>PreSharedKeyID</tt> of the resumption PSK
MUST be a randomly sampled nonce of length <tt>KDF.Nh</tt>, for the KDF defined
by the new group's ciphersuite.</li>
            </ul>
          </li>
        </ol>
        <t>Note that these three steps may be done by the same group member or different
members.  For example, if a group member sends a commit with an inline ReInit
proposal (steps 1 and 2), but then goes offline, another group member may send
the corresponding Welcome.  This flexibility avoids situations where a group
gets stuck between steps 2 and 3.</t>
        <t>Resumption PSKs with usage <tt>reinit</tt> MUST NOT be used in other contexts.  A
PreSharedKey proposal with type <tt>resumption</tt> and usage <tt>reinit</tt> MUST be
considered invalid.</t>
      </section>
      <section anchor="sub-group-branching">
        <name>Sub-group Branching</name>
        <t>A new group can be formed from a subset of an existing group's members, using
the same parameters as the old group.  The creator of the group indicates this
situation by including a PreSharedKey of type <tt>resumption</tt> with usage <tt>branch</tt>
in the Welcome message that creates the branched subgroup.</t>
        <t>A client receiving a Welcome including a PreSharedKey of type <tt>resumption</tt> with
usage <tt>branch</tt> MUST verify that the new group reflects a subgroup branched from
the referenced group.</t>
        <ul spacing="normal">
          <li>The <tt>version</tt> and <tt>ciphersuite</tt> values in the Welcome MUST be the same as
those used by the old group.</li>
          <li>Each LeafNode in the new group's tree MUST be a leaf in the
old group's tree at the epoch indicated in the PreSharedKey.</li>
        </ul>
        <t>In addition, to avoid key re-use, the <tt>psk_nonce</tt> included in the
<tt>PreSharedKeyID</tt> object MUST be a randomly sampled nonce of length <tt>KDF.Nh</tt>.</t>
        <t>Resumption PSKs with usage <tt>branch</tt> MUST NOT be used in other contexts.  A
PreSharedKey proposal with type <tt>resumption</tt> and usage <tt>branch</tt> MUST be
considered invalid.</t>
      </section>
    </section>
    <section anchor="group-evolution">
      <name>Group Evolution</name>
      <t>Over the lifetime of a group, its membership can change, and existing members
might want to change their keys in order to achieve post-compromise security.
In MLS, each such change is accomplished by a two-step process:</t>
      <ol spacing="normal" type="1"><li>A proposal to make the change is broadcast to the group in a Proposal message</li>
        <li>A member of the group or a new member broadcasts a Commit message that causes
one or more proposed changes to enter into effect</li>
      </ol>
      <t>In cases where the Proposal and Commit are sent by the same member, these two steps
can be combined by sending the proposals in the commit.</t>
      <t>The group thus evolves from one cryptographic state to another each time a
Commit message is sent and processed.  These states are referred to as "epochs"
and are uniquely identified among states of the group by eight-octet epoch values.
When a new group is initialized, its initial state epoch is 0x0000000000000000.  Each time
a state transition occurs, the epoch number is incremented by one.</t>
      <section anchor="proposals">
        <name>Proposals</name>
        <t>Proposals are included in an MLSMessageContent by way of a Proposal structure
that indicates their type:</t>
        <artwork><![CDATA[
// See IANA registry for registered values
uint16 ProposalType;

struct {
    ProposalType msg_type;
    select (Proposal.msg_type) {
        case add:                      Add;
        case update:                   Update;
        case remove:                   Remove;
        case psk:                      PreSharedKey;
        case reinit:                   ReInit;
        case external_init:            ExternalInit;
        case app_ack:                  AppAck;
        case group_context_extensions: GroupContextExtensions;
    };
} Proposal;
]]></artwork>
        <t>On receiving an MLSMessageContent containing a Proposal, a client MUST verify the
signature inside MLSMessageAuth.  If the signature verifies
successfully, then the Proposal should be cached in such a way that it can be
retrieved by hash (as a ProposalOrRef object) in a later Commit message.</t>
        <section anchor="add">
          <name>Add</name>
          <t>An Add proposal requests that a client with a specified KeyPackage be added
to the group.  The proposer of the Add MUST verify the validity of the
KeyPackage, as specified in <xref target="keypackage-validation"/>.</t>
          <artwork><![CDATA[
struct {
    KeyPackage key_package;
} Add;
]]></artwork>
          <t>An Add is applied after being included in a Commit message.  The position of the
Add in the list of proposals determines the leaf node where the new member will
be added.  For the first Add in the Commit, the corresponding new member will be
placed in the leftmost empty leaf in the tree, for the second Add, the next
empty leaf to the right, etc. If no empty leaf exists, the tree is extended to
the right.</t>
          <ul spacing="normal">
            <li>Validate the KeyPackage as specified in <xref target="keypackage-validation"/>.  The
<tt>leaf_node_source</tt> field in the LeafNode MUST be set to <tt>key_package</tt>.</li>
            <li>Identify the leaf L for the new member: if there are empty leaves in the tree,
L is the leftmost empty leaf.  Otherwise, the tree is extended to the right
by one leaf node and L is the new leaf.</li>
            <li>For each non-blank intermediate node along the path from the leaf L
to the root, add L's leaf index to the <tt>unmerged_leaves</tt> list for the node.</li>
            <li>Set the leaf node L to a new node containing the LeafNode object carried in
the <tt>leaf_node</tt> field of the KeyPackage in the Add.</li>
          </ul>
        </section>
        <section anchor="update">
          <name>Update</name>
          <t>An Update proposal is a similar mechanism to Add with the distinction
that it replaces the sender's LeafNode in the tree instead of adding a new leaf
to the tree.</t>
          <artwork><![CDATA[
struct {
    LeafNode leaf_node;
} Update;
]]></artwork>
          <t>A member of the group applies an Update message by taking the following steps:</t>
          <ul spacing="normal">
            <li>Validate the LeafNode as specified in <xref target="leaf-node-validation"/>.  The
<tt>leaf_node_source</tt> field MUST be set to <tt>update</tt>.</li>
            <li>Verify that the <tt>public_key</tt> value in the LeafNode is different from the
corresponding field in the LeafNode being replaced.</li>
            <li>Replace the sender's LeafNode with the one contained in the Update proposal</li>
            <li>Blank the intermediate nodes along the path from the sender's leaf to the root</li>
          </ul>
        </section>
        <section anchor="remove">
          <name>Remove</name>
          <t>A Remove proposal requests that the member with LeafNodeRef <tt>removed</tt> be removed
from the group.</t>
          <artwork><![CDATA[
struct {
    LeafNodeRef removed;
} Remove;
]]></artwork>
          <t>A member of the group applies a Remove message by taking the following steps:</t>
          <ul spacing="normal">
            <li>Identify a leaf node matching <tt>removed</tt>.  This lookup MUST be done on the tree
before any non-Remove proposals have been applied (the "old" tree in the
terminology of <xref target="commit"/>), since proposals such as Update can change the
LeafNode stored at a leaf.  Let L be this leaf node.</li>
            <li>Replace the leaf node L with a blank node</li>
            <li>Blank the intermediate nodes along the path from L to the root</li>
            <li>Truncate the tree by removing leaves from the right side of the tree until the
rightmost leaf node is not blank.</li>
          </ul>
        </section>
        <section anchor="presharedkey">
          <name>PreSharedKey</name>
          <t>A PreSharedKey proposal can be used to request that a pre-shared key be
injected into the key schedule in the process of advancing the epoch.</t>
          <artwork><![CDATA[
struct {
    PreSharedKeyID psk;
} PreSharedKey;
]]></artwork>
          <t>The <tt>psktype</tt> of the pre-shared key MUST be <tt>external</tt> and the <tt>psk_nonce</tt> MUST
be a randomly sampled nonce of length <tt>KDF.Nh</tt>. When processing a Commit message
that includes one or more PreSharedKey proposals, group members derive
<tt>psk_secret</tt> as described in <xref target="pre-shared-keys"/>, where the order of the PSKs
corresponds to the order of the <tt>PreSharedKey</tt> proposals in the Commit.</t>
        </section>
        <section anchor="reinit">
          <name>ReInit</name>
          <t>A ReInit proposal represents a request to reinitialize the group with different
parameters, for example, to increase the version number or to change the
ciphersuite. The reinitialization is done by creating a completely new group
and shutting down the old one.</t>
          <artwork><![CDATA[
struct {
    opaque group_id<V>;
    ProtocolVersion version;
    CipherSuite cipher_suite;
    Extension extensions<V>;
} ReInit;
]]></artwork>
          <t>A member of the group applies a ReInit proposal by waiting for the committer to
send the Welcome message that matches the ReInit, according to the criteria in
<xref target="reinitialization"/>.</t>
          <t>If a ReInit proposal is included in a Commit, it MUST be the only proposal
referenced by the Commit. If other non-ReInit proposals have been sent during
the epoch, the committer SHOULD prefer them over the ReInit proposal, allowing
the ReInit to be resent and applied in a subsequent epoch. The <tt>version</tt> field
in the ReInit proposal MUST be no less than the version for the current group.</t>
        </section>
        <section anchor="externalinit">
          <name>ExternalInit</name>
          <t>An ExternalInit proposal is used by new members that want to join a group by
using an external commit. This proposal can only be used in that context.</t>
          <artwork><![CDATA[
struct {
  opaque kem_output<V>;
} ExternalInit;
]]></artwork>
          <t>A member of the group applies an ExternalInit message by initializing the next
epoch using an init secret computed as described in <xref target="external-initialization"/>.
The <tt>kem_output</tt> field contains the required KEM output.</t>
        </section>
        <section anchor="appack">
          <name>AppAck</name>
          <t>An AppAck proposal is used to acknowledge receipt of application messages.
Though this information implies no change to the group, it is structured as a
Proposal message so that it is included in the group's transcript by being
included in Commit messages.</t>
          <artwork><![CDATA[
struct {
    LeafNodeRef sender;
    uint32 first_generation;
    uint32 last_generation;
} MessageRange;

struct {
    MessageRange received_ranges<V>;
} AppAck;
]]></artwork>
          <t>An AppAck proposal represents a set of messages received by the sender in the
current epoch.  Messages are represented by the <tt>sender</tt> and <tt>generation</tt> values
in the MLSCiphertext for the message.  Each MessageRange represents receipt of a
span of messages whose <tt>generation</tt> values form a continuous range from
<tt>first_generation</tt> to <tt>last_generation</tt>, inclusive.</t>
          <t>AppAck proposals are sent as a guard against the Delivery Service dropping
application messages.  The sequential nature of the <tt>generation</tt> field provides
a degree of loss detection, since gaps in the <tt>generation</tt> sequence indicate
dropped messages.  AppAck completes this story by addressing the scenario where
the Delivery Service drops all messages after a certain point, so that a later
generation is never observed.  Obviously, there is a risk that AppAck messages
could be suppressed as well, but their inclusion in the transcript means that if
they are suppressed then the group cannot advance at all.</t>
          <t>The schedule on which sending AppAck proposals are sent is up to the application,
and determines which cases of loss/suppression are detected.  For example:</t>
          <ul spacing="normal">
            <li>The application might have the committer include an AppAck proposal whenever a
Commit is sent, so that other members could know when one of their messages
did not reach the committer.</li>
            <li>The application could have a client send an AppAck whenever an application
message is sent, covering all messages received since its last AppAck.  This
would provide a complete view of any losses experienced by active members.</li>
            <li>The application could simply have clients send AppAck proposals on a timer, so
that all participants' state would be known.</li>
          </ul>
          <t>An application using AppAck proposals to guard against loss/suppression of
application messages also needs to ensure that AppAck messages and the Commits
that reference them are not dropped.  One way to do this is to always encrypt
Proposal and Commit messages, to make it more difficult for the Delivery Service
to recognize which messages contain AppAcks.  The application can also have
clients enforce an AppAck schedule, reporting loss if an AppAck is not received
at the expected time.</t>
        </section>
        <section anchor="groupcontextextensions">
          <name>GroupContextExtensions</name>
          <t>A GroupContextExtensions proposal is used to update the list of extensions in
the GroupContext for the group.</t>
          <t><tt>
struct {
  Extension extensions&lt;V&gt;;
} GroupContextExtensions;
</tt></t>
          <t>A member of the group applies a GroupContextExtensions proposal with the
following steps:</t>
          <ul spacing="normal">
            <li>If the new extensions include a <tt>required_capabilities</tt> extension, verify that
all members of the group support the required capabilities (including those
added in the same commit, and excluding those removed).</li>
            <li>Remove all of the existing extensions from the GroupContext object for the
group and replacing them with the list of extensions in the proposal.  (This
is a wholesale replacement, not a merge.  An extension is only carried over if
the sender of the proposal includes it in the new list.)</li>
          </ul>
          <t>Note that once the GroupContext is updated, its inclusion in the
confirmation_tag by way of the key schedule will confirm that all members of the
group agree on the extensions in use.</t>
        </section>
        <section anchor="external-proposals">
          <name>External Proposals</name>
          <t>Add and Remove proposals can be constructed and sent to the group by a party
that is outside the group.  For example, a Delivery Service might propose to
remove a member of a group who has been inactive for a long time, or propose adding
a newly-hired staff member to a group representing a real-world team.  Proposals
originating outside the group are identified by a <tt>preconfigured</tt> or
<tt>new_member</tt> SenderType in MLSPlaintext.</t>
          <t>ReInit proposals can also be sent to the group by a <tt>preconfigured</tt> sender, for
example to enforce a changed policy regarding MLS version or ciphersuite.</t>
          <t>The <tt>new_member</tt> SenderType is used for clients proposing that they themselves
be added.  For this ID type the sender value MUST be zero and the Proposal type
MUST be Add. The MLSPlaintext MUST be signed with the private key corresponding
to the KeyPackage in the Add message.  Recipients MUST verify that the
MLSPlaintext carrying the Proposal message is validly signed with this key.</t>
          <t>The <tt>preconfigured</tt> SenderType is reserved for signers that are pre-provisioned
to the clients within a group.  If proposals with these sender IDs are to be
accepted within a group, the members of the group MUST be provisioned by the
application with a mapping between these IDs and authorized signing keys.
Recipients MUST verify that the MLSPlaintext carrying the Proposal message is
validly signed with the corresponding key. To ensure consistent handling of
external proposals, the application MUST ensure that the members of a group
have the same mapping and apply the same policies to external proposals.</t>
          <t>An external proposal MUST be sent as an MLSPlaintext
object, since the sender will not have the keys necessary to construct an
MLSCiphertext object.</t>
        </section>
      </section>
      <section anchor="commit">
        <name>Commit</name>
        <t>A Commit message initiates a new epoch for the group, based on a collection of
Proposals. It instructs group members to update their representation of the
state of the group by applying the proposals and advancing the key schedule.</t>
        <t>Each proposal covered by the Commit is included by a ProposalOrRef value, which
identifies the proposal to be applied by value or by reference.  Commits that
refer to new Proposals from the committer can be included by value. Commits
for previously sent proposals from anyone (including the committer) can be sent
by reference.  Proposals sent by reference are specified by including the hash of
the MLSPlaintext in which the proposal was sent (see <xref target="hash-based-identifiers"/>).</t>
        <artwork><![CDATA[
enum {
  reserved(0),
  proposal(1)
  reference(2),
  (255)
} ProposalOrRefType;

struct {
  ProposalOrRefType type;
  select (ProposalOrRef.type) {
    case proposal:  Proposal proposal;
    case reference: ProposalRef reference;
  }
} ProposalOrRef;

struct {
    ProposalOrRef proposals<V>;
    optional<UpdatePath> path;
} Commit;
]]></artwork>
        <t>A group member that has observed one or more valid proposals within an epoch MUST send
a Commit message before sending application data. This ensures, for example,
that any members whose removal was proposed during the epoch are actually
removed before any application data is transmitted.</t>
        <t>The sender of a Commit MUST include all valid proposals that it has received
during the current epoch. Invalid proposals include, for example, proposals with
an invalid signature or proposals that are semantically invalid, such as an Add
when the sender does not have the application-level permission to add new users.
Proposals with a non-default proposal type MUST NOT be included in a commit
unless the proposal type is supported by all the members of the group that will
process the Commit (i.e., not including any members being added or removed by
the Commit).</t>
        <t>If there are multiple proposals that apply to the same leaf, or multiple
PreSharedKey proposals that reference the same PreSharedKeyID, the committer
MUST choose one and include only that one in the Commit, considering the rest
invalid. The committer MUST NOT include any Update proposals generated by the
committer, since they would be duplicative with the <tt>path</tt> field in the Commit.
The committer MUST prefer any Remove received, or the most recent Update for
the leaf if there are no Removes. If there are multiple Add proposals
containing KeyPackages that the committer considers to represent the same
client or a client already in the group (for example, identical KeyPackages or
KeyPackages sharing the same Credential), the committer again chooses one to
include and considers the rest invalid. The committer MUST consider invalid any
Add or Update proposal if the Credential in the contained KeyPackage shares the
same signature key with a Credential in any leaf of the group, or if the
LeafNode in the KeyPackage shares the same <tt>public_key</tt> with another LeafNode in
the group.</t>
        <t>The Commit MUST NOT combine proposals sent within different epochs. Due to the
asynchronous nature of proposals, receivers of a Commit SHOULD NOT enforce that
all valid proposals sent within the current epoch are referenced by the next
Commit. In the event that a valid proposal is omitted from the next Commit, and
that proposal is still valid in the current epoch, the sender of the proposal
MAY resend it after updating it to reflect the current epoch.</t>
        <t>A member of the group MAY send a Commit that references no proposals at all,
which would thus have an empty <tt>proposals</tt> vector.  Such
a Commit resets the sender's leaf and the nodes along its direct path, and
provides forward secrecy and post-compromise security with regard to the sender
of the Commit.  An Update proposal can be regarded as a "lazy" version of this
operation, where only the leaf changes and intermediate nodes are blanked out.</t>
        <t>By default, the <tt>path</tt> field of a Commit MUST be populated.  The <tt>path</tt> field
MAY be omitted if (a) it covers at least one proposal and (b) none of the proposals
covered by the Commit are of "path required" types.  A proposal type requires a
path if it cannot change the group membership in a way that requires the forward
secrecy and post-compromise security guarantees that an UpdatePath provides.
The only proposal types defined in this document that do not require a path are:</t>
        <ul spacing="normal">
          <li>
            <tt>add</tt></li>
          <li>
            <tt>psk</tt></li>
          <li>
            <tt>app_ack</tt></li>
          <li>
            <tt>reinit</tt></li>
        </ul>
        <t>New proposal types MUST state whether they require a path. If any instance of a
proposal type requires a path, then the proposal type requires a path. This
attribute of a proposal type is reflected in the "Path Required" field of the
proposal type registry defined in <xref target="mls-proposal-types"/>.</t>
        <t>Update and Remove proposals are the clearest examples of proposals that require
a path.  An UpdatePath is required to evict the removed member or the old
appearance of the updated member.</t>
        <t>In pseudocode, the logic for validating the <tt>path</tt> field of a Commit is as
follows:</t>
        <artwork><![CDATA[
pathRequiredTypes = [
    update,
    remove,
    external_init,
    group_context_extensions
]

pathRequired = false

for i, id in commit.proposals:
    proposal = proposalCache[id]
    assert(proposal != null)

    pathRequired = pathRequired ||
                   (proposal.msg_type in pathRequiredTypes)

if len(commit.proposals) == 0 || pathRequired:
    assert(commit.path != null)
]]></artwork>
        <t>To summarize, a Commit can have three different configurations, with different
uses:</t>
        <ol spacing="normal" type="1"><li>An "empty" Commit that references no proposals, which updates the committer's
contribution to the group and provides PCS with regard to the committer.</li>
          <li>A "partial" Commit that references proposals that do not require a path, and
where the path is empty. Such a commit doesn't provide PCS with regard to the
committer.</li>
          <li>A "full" Commit that references proposals of any type, which provides FS with
regard to any removed members and PCS for the committer and any updated
members.</li>
        </ol>
        <section anchor="creating-a-commit">
          <name>Creating a Commit</name>
          <t>When creating or processing a Commit, three different ratchet trees and
their associated GroupContexts are used:</t>
          <ol spacing="normal" type="1"><li>"Old" refers to the ratchet tree and GroupContext for the epoch before the
commit.  The old GroupContext is used when signing the MLSPlainText so that
existing group members can verify the signature before processing the
commit.</li>
            <li>"Provisional" refers to the ratchet tree and GroupContext constructed after
applying the proposals that are referenced by the Commit.  The provisional
GroupContext uses the epoch number for the new epoch, and the old confirmed
transcript hash.  This is used when creating the UpdatePath, if the
UpdatePath is needed.</li>
            <li>"New" refers to the ratchet tree and GroupContext constructed after applying
the proposals and the UpdatePath (if any).  The new GroupContext uses the
epoch number for the new epoch, and the new confirmed transcript hash.  This
is used when deriving the new epoch secrets, and is the only GroupContext
that newly-added members will have.</li>
          </ol>
          <t>A member of the group creates a Commit message and the corresponding Welcome
message at the same time, by taking the following steps:</t>
          <ul spacing="normal">
            <li>Construct an initial Commit object with the <tt>proposals</tt>
field populated from Proposals received during the current epoch, and an empty
<tt>path</tt> field.</li>
            <li>
              <t>Generate the provisional ratchet tree and GroupContext by applying the proposals
referenced in the initial Commit object, as described in <xref target="proposals"/>. Update
proposals are applied first, followed by Remove proposals, and then finally
Add proposals. Add proposals are applied in the order listed in the
<tt>proposals</tt> vector, and always to the leftmost unoccupied leaf in the tree, or
the right edge of the tree if all leaves are occupied.  </t>
              <ul spacing="normal">
                <li>Note that the order in which different types of proposals are applied should
be updated by the implementation to include any new proposals added by
negotiated group extensions.</li>
                <li>PreSharedKey proposals are processed later when deriving the <tt>psk_secret</tt> for the Key
Schedule.</li>
              </ul>
            </li>
            <li>Decide whether to populate the <tt>path</tt> field: If the <tt>path</tt> field is required
based on the proposals that are in the commit (see above), then it MUST be
populated.  Otherwise, the sender MAY omit the <tt>path</tt> field at its discretion.</li>
            <li>
              <t>If populating the <tt>path</tt> field: Create an UpdatePath using the provisional
ratchet tree and GroupContext. Any new member (from an add proposal) MUST be
excluded from the resolution during the computation of the UpdatePath.  The
<tt>leaf_node</tt> for this UpdatePath MUST have <tt>leaf_node_source</tt> set to <tt>commit</tt>.
Note that the LeafNode in the <tt>UpdatePath</tt> effectively updates an existing
LeafNode in the group and thus MUST adhere to the same restrictions as
LeafNodes used in <tt>Update</tt> proposals (aside from <tt>leaf_node_source</tt>).  </t>
              <ul spacing="normal">
                <li>Assign this UpdatePath to the <tt>path</tt> field in the Commit.</li>
                <li>Apply the UpdatePath to the tree, as described in
<xref target="synchronizing-views-of-the-tree"/>, creating the new ratchet tree. Define
<tt>commit_secret</tt> as the value <tt>path_secret[n+1]</tt> derived from the
<tt>path_secret[n]</tt> value assigned to the root node.</li>
              </ul>
            </li>
            <li>If not populating the <tt>path</tt> field: Set the <tt>path</tt> field in the Commit to the
null optional.  Define <tt>commit_secret</tt> as the all-zero vector of length
<tt>KDF.Nh</tt> (the same length as a <tt>path_secret</tt> value would be).  In this case,
the new ratchet tree is the same as the provisional ratchet tree.</li>
            <li>Derive the <tt>psk_secret</tt> as specified in <xref target="pre-shared-keys"/>, where the order
of PSKs in the derivation corresponds to the order of PreSharedKey proposals
in the <tt>proposals</tt> vector.</li>
            <li>
              <t>Construct an MLSMessageContent object containing the Commit object. Sign the
MLSMessageContent using the old GroupContext as context.
              </t>
              <ul spacing="normal">
                <li>Use the MLSMessageContent to update the confirmed transcript hash and generate
the new GroupContext.</li>
                <li>Use the <tt>init_secret</tt> from the previous epoch, the <tt>commit_secret</tt> and the
<tt>psk_secret</tt> as defined in the previous steps, and the new GroupContext to
compute the new <tt>joiner_secret</tt>, <tt>welcome_secret</tt>, <tt>epoch_secret</tt>, and
derived secrets for the new epoch.</li>
                <li>Use the <tt>confirmation_key</tt> for the new epoch to compute the
<tt>confirmation_tag</tt> value, and the <tt>membership_key</tt> for the old epoch to
compute the <tt>membership_tag</tt> value in the MLSPlaintext.</li>
                <li>Calculate the interim transcript hash using the new confirmed transcript
hash and the <tt>confirmation_tag</tt> from the MLSMessageAuth.</li>
              </ul>
            </li>
            <li>
              <t>Construct a GroupInfo reflecting the new state:
              </t>
              <ul spacing="normal">
                <li>Group ID, epoch, tree, confirmed transcript hash, interim transcript
hash, and group context extensions from the new state</li>
                <li>The confirmation_tag from the MLSMessageAuth object</li>
                <li>Other extensions as defined by the application</li>
                <li>Optionally derive an external keypair as described in <xref target="key-schedule"/>
(required for External Commits, see <xref target="joining-via-external-commits"/>)</li>
                <li>Sign the GroupInfo using the member's private signing key</li>
                <li>Encrypt the GroupInfo using the key and nonce derived from the <tt>joiner_secret</tt>
for the new epoch (see <xref target="joining-via-welcome-message"/>)</li>
              </ul>
            </li>
            <li>
              <t>For each new member in the group:
              </t>
              <ul spacing="normal">
                <li>Identify the lowest common ancestor in the tree of the new member's
leaf node and the member sending the Commit</li>
                <li>If the <tt>path</tt> field was populated above: Compute the path secret
corresponding to the common ancestor node</li>
                <li>Compute an EncryptedGroupSecrets object that encapsulates the <tt>init_secret</tt>
for the current epoch and the path secret (if present).</li>
              </ul>
            </li>
            <li>Construct a Welcome message from the encrypted GroupInfo object, the encrypted
key packages, and any PSKs for which a proposal was included in the Commit. The
order of the <tt>psks</tt> MUST be the same as the order of PreSharedKey proposals in the
<tt>proposals</tt> vector.</li>
            <li>
              <t>If a ReInit proposal was part of the Commit, the committer MUST create a new
group with the parameters specified in the ReInit proposal,
and with the same members as the original group.
The Welcome message MUST include a <tt>PreSharedKeyID</tt> with the following
parameters:
              </t>
              <ul spacing="normal">
                <li>
                  <tt>psktype</tt>: <tt>resumption</tt></li>
                <li>
                  <tt>usage</tt>: <tt>reinit</tt></li>
                <li>
                  <tt>group_id</tt>: The group ID for the current group</li>
                <li>
                  <tt>epoch</tt>: The epoch that the group will be in after this Commit</li>
              </ul>
            </li>
          </ul>
        </section>
        <section anchor="processing-a-commit">
          <name>Processing a Commit</name>
          <t>A member of the group applies a Commit message by taking the following steps:</t>
          <ul spacing="normal">
            <li>Verify that the <tt>epoch</tt> field of the enclosing MLSMessageContent is equal
to the <tt>epoch</tt> field of the current GroupContext object</li>
            <li>Verify that the signature on the MLSMessageContent message verifies using the
public key from the credential stored at the leaf in the tree indicated by
the <tt>sender</tt> field.</li>
            <li>Verify that all PreSharedKey proposals in the <tt>proposals</tt> vector have unique
PreSharedKeyIDs and are available.</li>
            <li>
              <t>Generate the provisional ratchet tree and GroupContext by applying the proposals
referenced in the initial Commit object, as described in <xref target="proposals"/>. Update
proposals are applied first, followed by Remove proposals, and then finally
Add proposals. Add proposals are applied in the order listed in the
<tt>proposals</tt> vector, and always to the leftmost unoccupied leaf in the tree, or
the right edge of the tree if all leaves are occupied.  </t>
              <ul spacing="normal">
                <li>Note that the order in which different types of proposals are applied should
be updated by the implementation to include any new proposals added by
negotiated group extensions.</li>
              </ul>
            </li>
            <li>Verify that the <tt>path</tt> value is populated if the <tt>proposals</tt> vector contains
any Update or Remove proposals, or if it's empty. Otherwise, the <tt>path</tt> value
MAY be omitted.</li>
            <li>
              <t>If the <tt>path</tt> value is populated: Process the <tt>path</tt> value using the
provisional ratchet tree and GroupContext, to generate the new ratchet tree
and the <tt>commit_secret</tt>:  </t>
              <ul spacing="normal">
                <li>Validate the LeafNode as specified in <xref target="leaf-node-validation"/>.  The
<tt>leaf_node_source</tt> field MUST be set to <tt>commit</tt>.</li>
                <li>Verify that the <tt>public_key</tt> value in the LeafNode is different from the
committer's current leaf node.</li>
                <li>Apply the UpdatePath to the tree, as described in
<xref target="synchronizing-views-of-the-tree"/>, and store <tt>leaf_node</tt> at the
committer's leaf.</li>
                <li>Verify that the LeafNode has a <tt>parent_hash</tt> field and that its value
matches the new parent of the sender's leaf node.</li>
                <li>Define <tt>commit_secret</tt> as the value <tt>path_secret[n+1]</tt> derived from the
<tt>path_secret[n]</tt> value assigned to the root node.</li>
              </ul>
            </li>
            <li>If the <tt>path</tt> value is not populated: Define <tt>commit_secret</tt> as the all-zero
vector of length <tt>KDF.Nh</tt> (the same length as a <tt>path_secret</tt> value would be).</li>
            <li>Update the confirmed and interim transcript hashes using the new Commit, and
generate the new GroupContext.</li>
            <li>Derive the <tt>psk_secret</tt> as specified in <xref target="pre-shared-keys"/>, where the order
of PSKs in the derivation corresponds to the order of PreSharedKey proposals
in the <tt>proposals</tt> vector.</li>
            <li>Use the <tt>init_secret</tt> from the previous epoch, the <tt>commit_secret</tt> and the
<tt>psk_secret</tt> as defined in the previous steps, and the new GroupContext to
compute the new <tt>joiner_secret</tt>, <tt>welcome_secret</tt>, <tt>epoch_secret</tt>, and
derived secrets for the new epoch.</li>
            <li>Use the <tt>confirmation_key</tt> for the new epoch to compute the confirmation tag
for this message, as described below, and verify that it is the same as the
<tt>confirmation_tag</tt> field in the MLSMessageAuth object.</li>
            <li>If the above checks are successful, consider the new GroupContext object
as the current state of the group.</li>
            <li>If the Commit included a ReInit proposal, the client MUST NOT use the group to
send messages anymore. Instead, it MUST wait for a Welcome message from the committer
meeting the requirements of <xref target="reinitialization"/>.</li>
          </ul>
        </section>
        <section anchor="adding-members-to-the-group">
          <name>Adding Members to the Group</name>
          <t>New members can join the group in two ways. Either by being added by a group
member, or by adding themselves through an external Commit. In both cases, the
new members need information to bootstrap their local group state.</t>
          <artwork><![CDATA[
struct {
    CipherSuite cipher_suite;
    opaque group_id<V>;
    uint64 epoch;
    opaque tree_hash<V>;
    opaque confirmed_transcript_hash<V>;
    Extension group_context_extensions<V>;
    Extension other_extensions<V>;
    MAC confirmation_tag;
    LeafNodeRef signer;
    // SignWithLabel(., "GroupInfoTBS", GroupInfoTBS)
    opaque signature<V>;
} GroupInfo;
]]></artwork>
          <t>New members MUST verify the <tt>signature</tt> using the public key taken from the
credential in the leaf node of the member with LeafNodeRef <tt>signer</tt>. The
signature covers the following structure, comprising all the fields in the
GroupInfo above <tt>signature</tt>:</t>
          <artwork><![CDATA[
struct {
    CipherSuite cipher_suite;
    opaque group_id<V>;
    uint64 epoch;
    opaque tree_hash<V>;
    opaque confirmed_transcript_hash<V>;
    Extension group_context_extensions<V>;
    Extension other_extensions<V>;
    MAC confirmation_tag;
    LeafNodeRef signer;
} GroupInfoTBS;
]]></artwork>
          <section anchor="joining-via-external-commits">
            <name>Joining via External Commits</name>
            <t>External Commits are a mechanism for new members (external parties that want to
become members of the group) to add themselves to a group, without requiring
that an existing member has to come online to issue a Commit that references an
Add Proposal.</t>
            <t>Whether existing members of the group will accept or reject an External Commit
follows the same rules that are applied to other handshake messages.</t>
            <t>New members can create and issue an External Commit if they have access to the
following information for the group's current epoch:</t>
            <ul spacing="normal">
              <li>group ID</li>
              <li>epoch ID</li>
              <li>ciphersuite</li>
              <li>public tree hash</li>
              <li>confirmed transcript hash</li>
              <li>confirmation tag of the most recent Commit</li>
              <li>group extensions</li>
              <li>external public key</li>
            </ul>
            <t>In other words, to join a group via an External Commit, a new member needs a
GroupInfo with an <tt>ExternalPub</tt> extension present in the <tt>other_extensions</tt>.</t>
            <artwork><![CDATA[
struct {
    HPKEPublicKey external_pub;
} ExternalPub;
]]></artwork>
            <t>Thus, a member of the group can enable new clients to join by making a GroupInfo
object available to them. Note that because a GroupInfo object is specific to an
epoch, it will need to be updated as the group advances. In particular, each
GroupInfo object can be used for one external join, since that external join
will cause the epoch to change.</t>
            <t>Note that the <tt>tree_hash</tt> field is used the same way as in the Welcome message.
The full tree can be included via the <tt>ratchet_tree</tt> extension
<xref target="ratchet-tree-extension"/>.</t>
            <t>The information in a GroupInfo is not generally public information, but applications
can choose to make it available to new members in order to allow External
Commits.</t>
            <t>In principle, External Commits work like regular Commits. However, their content
has to meet a specific set of requirements:</t>
            <ul spacing="normal">
              <li>External Commits MUST contain a <tt>path</tt> field (and is therefore a "full"
Commit).  The joiner is added at the leftmost free leaf node (just as if they
were added with an Add proposal), and the path is calculated relative to that
leaf node.</li>
              <li>The Commit MUST NOT include any proposals by reference, since an external
joiner cannot determine the validity of proposals sent within the group</li>
              <li>
                <t>The proposals included by value in an External Commit MUST meet the following
conditions:
                </t>
                <ul spacing="normal">
                  <li>There MUST be a single ExternalInit proposal.</li>
                  <li>There MAY be a single Remove proposal, where the LeafNode in the <tt>path</tt>
field MUST meet the same criteria as the LeafNode in an Update for the
removed leaf (see <xref target="update"/>). In particular, the <tt>credential</tt> in the
LeafNode MUST present a set of identifiers that is acceptable to the
application for the removed participant.</li>
                  <li>There MAY be one or more PreSharedKey proposals.</li>
                  <li>There MUST NOT be any other proposals.</li>
                </ul>
              </li>
              <li>External Commits MUST be signed by the new member.  In particular, the
signature on the enclosing MLSPlaintext MUST verify using the public key for
the credential in the <tt>leaf_node</tt> of the <tt>path</tt> field.</li>
              <li>When processing a Commit, both existing and new members MUST use the external
init secret as described in <xref target="external-initialization"/>.</li>
              <li>The sender type for the MLSPlaintext encapsulating the External Commit MUST be
<tt>new_member</tt></li>
            </ul>
            <t>External Commits come in two "flavors" -- a "join" commit that
adds the sender to the group or a "resync" commit that replaces a member's prior
appearance with a new one.</t>
            <t>Note that the "resync" operation allows an attacker that has compromised a
member's signature private key to introduce themselves into the group and remove the
prior, legitimate member in a single Commit.  Without resync, this
can still be done, but requires two operations, the external Commit to join and
a second Commit to remove the old appearance.  Applications for whom this
distinction is salient can choose to disallow external commits that contain a
Remove, or to allow such resync commits only if they contain a "reinit" PSK
proposal that demonstrates the joining member's presence in a prior epoch of the
group.  With the latter approach, the attacker would need to compromise the PSK
as well as the signing key, but the application will need to ensure that
continuing, non-resynchronizing members have the required PSK.</t>
          </section>
          <section anchor="joining-via-welcome-message">
            <name>Joining via Welcome Message</name>
            <t>The sender of a Commit message is responsible for sending a single Welcome message to
all the new members added via Add proposals.  The Welcome message provides the new
members with the current state of the group, after the application of the Commit
message.  The new members will not be able to decrypt or verify the Commit
message, but will have the secrets they need to participate in the epoch
initiated by the Commit message.</t>
            <t>In order to allow the same Welcome message to be sent to all new members,
information describing the group is encrypted with a symmetric key and nonce
derived from the <tt>joiner_secret</tt> for the new epoch.  The <tt>joiner_secret</tt> is
then encrypted to each new member using HPKE.  In the same encrypted package,
the committer transmits the path secret for the lowest (closest to the leaf) node
which is contained in the direct paths of both the committer and the new member.
This allows the new
member to compute private keys for nodes in its direct path that are being
reset by the corresponding Commit.</t>
            <t>If the sender of the Welcome message wants the receiving member to include a PSK
in the derivation of the <tt>epoch_secret</tt>, they can populate the <tt>psks</tt> field
indicating which PSK to use.</t>
            <artwork><![CDATA[
struct {
  opaque path_secret<V>;
} PathSecret;

struct {
  opaque joiner_secret<V>;
  optional<PathSecret> path_secret;
  PreSharedKeys psks;
} GroupSecrets;

struct {
  KeyPackageRef new_member;
  HPKECiphertext encrypted_group_secrets;
} EncryptedGroupSecrets;

struct {
  CipherSuite cipher_suite;
  EncryptedGroupSecrets secrets<V>;
  opaque encrypted_group_info<V>;
} Welcome;
]]></artwork>
            <t>The client processing a Welcome message will need to have a copy of the group's
ratchet tree.  The tree can be provided in the Welcome message, in an extension
of type <tt>ratchet_tree</tt>.  If it is sent otherwise (e.g., provided by a caching
service on the Delivery Service), then the client MUST download the tree before
processing the Welcome.</t>
            <t>On receiving a Welcome message, a client processes it using the following steps:</t>
            <ul spacing="normal">
              <li>Identify an entry in the <tt>secrets</tt> array where the <tt>new_member</tt>
value corresponds to one of this client's KeyPackages, using the hash
indicated by the <tt>cipher_suite</tt> field. If no such field exists, or if the
ciphersuite indicated in the KeyPackage does not match the one in the
Welcome message, return an error.</li>
              <li>Decrypt the <tt>encrypted_group_secrets</tt> using HPKE with the algorithms indicated
by the ciphersuite and the HPKE private key corresponding to the GroupSecrets.
If a <tt>PreSharedKeyID</tt> is part of the GroupSecrets and the client is not in
possession of the corresponding PSK, return an error.</li>
              <li>From the <tt>joiner_secret</tt> in the decrypted GroupSecrets object and the PSKs
specified in the <tt>GroupSecrets</tt>, derive the <tt>welcome_secret</tt> and using that
the <tt>welcome_key</tt> and <tt>welcome_nonce</tt>. Use the key and nonce to decrypt the
<tt>encrypted_group_info</tt> field.</li>
            </ul>
            <artwork><![CDATA[
welcome_nonce = KDF.Expand(welcome_secret, "nonce", AEAD.Nn)
welcome_key = KDF.Expand(welcome_secret, "key", AEAD.Nk)
]]></artwork>
            <ul spacing="normal">
              <li>Verify the signature on the GroupInfo object. The signature input comprises
all of the fields in the GroupInfo object except the signature field. The
public key and algorithm are taken from the credential in the leaf node of the
member with LeafNodeRef <tt>signer</tt>. If there is no matching leaf node, or if
signature verification fails, return an error.</li>
              <li>
                <t>Verify the integrity of the ratchet tree.  </t>
                <ul spacing="normal">
                  <li>Verify that the tree hash of the ratchet tree matches the <tt>tree_hash</tt> field
in the GroupInfo.</li>
                  <li>For each non-empty parent node, verify that exactly one of the node's
children are non-empty and have the hash of this node set as their
<tt>parent_hash</tt> value (if the child is another parent) or has a <tt>parent_hash</tt>
field in the LeafNode containing the same value (if the child is a
leaf). If either of the node's children is empty, and in particular does not
have a parent hash, then its respective children's <tt>parent_hash</tt> values have
to be considered instead.</li>
                  <li>For each non-empty leaf node, validate the LeafNode as described in
<xref target="leaf-node-validation"/>.</li>
                </ul>
              </li>
              <li>Identify a leaf in the <tt>tree</tt> array (any even-numbered node) whose LeafNode is
identical to the one in the KeyPackage.  If no such field exists, return an
error.  Let <tt>my_leaf</tt> represent this leaf in the tree.</li>
              <li>
                <t>Construct a new group state using the information in the GroupInfo object.
                </t>
                <ul spacing="normal">
                  <li>The GroupContext contains the <tt>group_id</tt>, <tt>epoch</tt>, <tt>tree_hash</tt>,
<tt>confirmed_transcript_hash</tt>, and <tt>group_context_extensions</tt> fields from
the GroupInfo object.</li>
                  <li>The new member's position in the tree is at the leaf <tt>my_leaf</tt>, as defined
above.</li>
                  <li>Update the leaf <tt>my_leaf</tt> with the private key corresponding to the
public key in the node.</li>
                  <li>If the <tt>path_secret</tt> value is set in the GroupSecrets object: Identify the
lowest common ancestor of the leaf node <tt>my_leaf</tt> and of the node of
the member with LeafNodeRef <tt>GroupInfo.signer</tt>. Set the private key for
this node to the private key derived from the <tt>path_secret</tt>.</li>
                  <li>For each parent of the common ancestor, up to the root of the tree, derive
a new path secret and set the private key for the node to the private key
derived from the path secret.  The private key MUST be the private key
that corresponds to the public key in the node.</li>
                </ul>
              </li>
              <li>Use the <tt>joiner_secret</tt> from the GroupSecrets object to generate the epoch secret
and other derived secrets for the current epoch.</li>
              <li>Set the confirmed transcript hash in the new state to the value of the
<tt>confirmed_transcript_hash</tt> in the GroupInfo.</li>
              <li>Verify the confirmation tag in the GroupInfo using the derived confirmation
key and the <tt>confirmed_transcript_hash</tt> from the GroupInfo.</li>
              <li>Use the confirmed transcript hash and confirmation tag to compute the interim
transcript hash in the new state.</li>
            </ul>
          </section>
        </section>
      </section>
      <section anchor="ratchet-tree-extension">
        <name>Ratchet Tree Extension</name>
        <t>By default, a GroupInfo message only provides the joiner with a commitment
to the group's ratchet tree.  In order to process or generate handshake
messages, the joiner will need to get a copy of the ratchet tree from some other
source.  (For example, the DS might provide a cached copy.)  The inclusion of
the tree hash in the GroupInfo message means that the source of the ratchet
tree need not be trusted to maintain the integrity of tree.</t>
        <t>In cases where the application does not wish to provide such an external source,
the whole public state of the ratchet tree can be provided in an extension of
type <tt>ratchet_tree</tt>, containing a <tt>ratchet_tree</tt> object of the following form:</t>
        <artwork><![CDATA[
enum {
    reserved(0),
    leaf(1),
    parent(2),
    (255)
} NodeType;

struct {
    NodeType node_type;
    select (Node.node_type) {
        case leaf:   LeafNode leaf_node;
        case parent: ParentNode parent_node;
    };
} Node;

optional<Node> ratchet_tree<V>;
]]></artwork>
        <t>The nodes are listed in the order specified by a left-to-right in-order
traversal of the rachet tree. Each node is listed between its left subtree and
its right subtree.  (This is the same ordering as specified for the array-based
trees outlined in <xref target="array-based-trees"/>.)</t>
        <t>The leaves of the tree are stored in even-numbered entries in
the array (the leaf with index L in array position 2*L). The root node of the
tree is at position 2^k - 1 of the array, where k is the largest number such
that 2^k is smaller than the length of the array. Intermediate parent nodes can
be identified by performing the same calculation to the subarrays to the left
and right of the root, following something like the following algorithm:</t>
        <artwork><![CDATA[
# Assuming a class Node that has left and right members
def subtree_root(nodes):
    # If there is only one node in the array return it
    if len(nodes) == 1:
        return Node(nodes[0])

    # Otherwise, the length of the array MUST be odd
    if len(nodes) % 2 == 0:
        raise Exception("Malformed node array {}", len(nodes))

    # Identify the root of the subtree
    k = 0
    while (2**(k+1)) < len(nodes):
       k += 1
    R = 2**k - 1
    root = Node(nodes[R])
    root.left = subtree_root(nodes[:R])
    root.right = subtree_root(nodes[(R+1):])
    return root
]]></artwork>
        <t>(Note that this is the same ordering of nodes as in the array-based tree representation
described in <xref target="array-based-trees"/>.  The algorithms in that section may be used to
simplify decoding this extension into other representations.)</t>
        <t>The example tree in <xref target="ratchet-tree-terminology"/> would be represented as an
array of nodes in the following form, where R represents the "subtree root" for
a given subarray of the node array:</t>
        <artwork><![CDATA[
              X
        ______|______
       /             \
      V               Z
    __|__           __|
   /     \         /   \
  U       W       Y     |
 / \     / \     / \    |
A   B   C   D   E   F   G

                    1 1 1
0 1 2 3 4 5 6 7 8 9 0 1 2
<-----------> R <------->
<---> R <--->   <---> R -
- R -   - R -   - R -
]]></artwork>
        <t>The presence of a <tt>ratchet_tree</tt> extension in a GroupInfo message does not
result in any changes to the GroupContext extensions for the group.  The ratchet
tree provided is simply stored by the client and used for MLS operations.</t>
        <t>If this extension is not provided in a Welcome message, then the client will
need to fetch the ratchet tree over some other channel before it can generate or
process Commit messages.  Applications should ensure that this out-of-band
channel is provided with security protections equivalent to the protections that
are afforded to Proposal and Commit messages.  For example, an application that
encrypts Proposal and Commit messages might distribute ratchet trees encrypted
using a key exchanged over the MLS channel.</t>
        <t>Regardless of how the client obtains the tree, the client MUST verify that the
root hash of the ratchet tree matches the <tt>tree_hash</tt> of the GroupContext before
using the tree for MLS operations.</t>
      </section>
    </section>
    <section anchor="extensibility">
      <name>Extensibility</name>
      <t>The base MLS protocol can be extended in a few ways.  New ciphersuites can be
added to enable the use of new cryptographic algorithms.  New types of proposals
can be used to perform new actions within an epoch.  Extension fields can be
used to add additional information to the protocol.  In this section, we discuss
some constraints on these extensibility mechanisms that are necessary to ensure
broad interoperability.</t>
      <section anchor="ciphersuites-1">
        <name>Ciphersuites</name>
        <t>As discussed in <xref target="ciphersuites"/>, MLS allows the participants in a group to
negotiate the cryptographic algorithms used within the group.  This
extensibility is important for maintaining the security of the protocol over
time <xref target="RFC7696"/>.  It also creates a risk of interoperability failure due to
clients not supporting a common ciphersuite.</t>
        <t>The ciphersuite registry defined in <xref target="mls-ciphersuites"/> attempts to strike a
balance on this point.  On the one hand, the base policy for the registry is
Specification Required, a fairly low bar designed to avoid the need for
standards work in cases where different ciphers are needed for niche
applications.  There is a higher bar (Standards Action) for ciphers to set the
Recommended field in the registry.  This higher bar is there in part to ensure
that the interoperability implications of new ciphersuites are considered.</t>
        <t>MLS ciphersuites are defined independent of MLS versions, so that in principle
the same ciphersuite can be used across versions.  Standards work defining new
versions of MLS should consider whether it is desirable for the new version to
be compatible with existing ciphersuites, or whether the new version should rule
out some ciphersuites. For example, a new version could follow the example of
HTTP/2, which restricted the set of allowed TLS ciphers (see Section 9.2.2 of
<xref target="RFC7540"/>.</t>
      </section>
      <section anchor="proposals-1">
        <name>Proposals</name>
        <t>Commit messages do not have an extension field because the set of protocols is
extensible.  As discussed in <xref target="commit"/>, Proposals with a non-default proposal
type MUST NOT be included in a commit unless the proposal type is supported by
all the members of the group that will process the Commit.</t>
      </section>
      <section anchor="extensions">
        <name>Extensions</name>
        <t>This protocol includes a mechanism for negotiating extension parameters similar
to the one in TLS <xref target="RFC8446"/>.  In TLS, extension negotiation is one-to-one: The
client offers extensions in its ClientHello message, and the server expresses
its choices for the session with extensions in its ServerHello and
EncryptedExtensions messages.  In MLS, extensions appear in the following
places:</t>
        <ul spacing="normal">
          <li>In KeyPackages, to describe additional information related to the client</li>
          <li>In LeafNodes, to describe additional information about the client or its
participation in the group (once in the ratchet tree)</li>
          <li>In the GroupInfo, to tell new members of a group what parameters are
being used by the group, and to provide any additional details required to
join the group</li>
          <li>In the GroupContext object, to ensure that all members of the group have the
same view of the parameters in use</li>
        </ul>
        <t>In other words, an application can use GroupContext extensions to ensure that
all members of the group agree on a set of parameters. Clients indicate their
support for parameters in the <tt>capabilities</tt> field of their LeafNode. New
members of a group are informed of the group's GroupContext extensions via the
<tt>group_context_extensions</tt> field in the GroupInfo object. The <tt>other_extensions</tt>
field in a GroupInfo object can be used to provide additional parameters to new
joiners that are used to join the group.</t>
        <t>This extension mechanism is designed to allow for secure and forward-compatible
negotiation of extensions.  For this to work, implementations MUST correctly
handle extensible fields:</t>
        <ul spacing="normal">
          <li>A client that posts a KeyPackage MUST support all parameters advertised in
it.  Otherwise, another client might fail to interoperate by selecting one of
those parameters.</li>
          <li>A client initiating a group MUST ignore all unrecognized ciphersuites,
extensions, and other parameters.  Otherwise, it may fail to interoperate with
newer clients.</li>
          <li>A client adding a new member to a group MUST verify that the LeafNode for the
new member is compatible with the group's extensions.  The <tt>capabilities</tt>
field MUST indicate support for each extension in the GroupContext.</li>
          <li>If any extension in a GroupInfo message is unrecognized (i.e., not contained
in the <tt>capabilities</tt> of the corresponding KeyPackage), then the client MUST
reject the Welcome message and not join the group.</li>
          <li>The extensions populated into a GroupContext object are drawn from those in
the GroupInfo object, according to the definitions of those extensions.</li>
          <li>Any field containing a list of extensions MUST NOT have more than one extension of any given type.</li>
        </ul>
        <t>Note that the latter two requirements mean that all MLS extensions are
mandatory, in the sense that an extension in use by the group MUST be supported
by all members of the group.</t>
        <t>This document does not define any way for the parameters of the group to change
once it has been created; such a behavior could be implemented as an extension.</t>
      </section>
    </section>
    <section anchor="sequencing">
      <name>Sequencing of State Changes</name>
      <t>Each Commit message is premised on a given starting state,
indicated by the <tt>epoch</tt> field of the enclosing MLSMessageContent.
If the changes implied by a Commit messages are made
starting from a different state, the results will be incorrect.</t>
      <t>This need for sequencing is not a problem as long as each time a
group member sends a Commit message, it is based on the most
current state of the group.  In practice, however, there is a risk
that two members will generate Commit messages simultaneously,
based on the same state.</t>
      <t>When this happens, there is a need for the members of the group to
deconflict the simultaneous Commit messages.  There are two
general approaches:</t>
      <ul spacing="normal">
        <li>Have the Delivery Service enforce a total order</li>
        <li>Have a signal in the message that clients can use to break ties</li>
      </ul>
      <t>As long as Commit messages cannot be merged, there is a risk of
starvation.  In a sufficiently busy group, a given member may never
be able to send a Commit message, because he always loses to other
members.  The degree to which this is a practical problem will depend
on the dynamics of the application.</t>
      <t>It might be possible, because of the non-contributivity of intermediate
nodes, that Commit messages could be applied one after the other
without the Delivery Service having to reject any Commit message,
which would make MLS more resilient regarding the concurrency of
Commit messages.
The Messaging system can decide to choose the order for applying
the state changes. Note that there are certain cases (if no total
ordering is applied by the Delivery Service) where the ordering is
important for security, ie. all updates must be executed before
removes.</t>
      <t>Regardless of how messages are kept in sequence, implementations
MUST only update their cryptographic state when valid Commit
messages are received.
Generation of Commit messages MUST NOT modify a client's state, since the
endpoint doesn't know at that time whether the changes implied by
the Commit message will succeed or not.</t>
      <section anchor="server-enforced-ordering">
        <name>Server-Enforced Ordering</name>
        <t>With this approach, the Delivery Service ensures that incoming
messages are added to an ordered queue and outgoing messages are
dispatched in the same order. The server is trusted to break ties
when two members send a Commit message at the same time.</t>
        <t>Messages should have a counter field sent in clear-text that can
be checked by the server and used for tie-breaking. The counter
starts at 0 and is incremented for every new incoming message.
If two group members send a message with the same counter, the
first message to arrive will be accepted by the server and the
second one will be rejected. The rejected message needs to be sent
again with the correct counter number.</t>
        <t>To prevent counter manipulation by the server, the counter's
integrity can be ensured by including the counter in a signed
message envelope.</t>
        <t>This applies to all messages, not only state changing messages.</t>
      </section>
      <section anchor="client-enforced-ordering">
        <name>Client-Enforced Ordering</name>
        <t>Order enforcement can be implemented on the client as well,
one way to achieve it is to use a two step update protocol: the
first client sends a proposal to update and the proposal is
accepted when it gets 50%+ approval from the rest of the group,
then it sends the approved update. Clients which didn't get
their proposal accepted, will wait for the winner to send their
update before retrying new proposals.</t>
        <t>While this seems safer as it doesn't rely on the server, it is
more complex and harder to implement. It also could cause starvation
for some clients if they keep failing to get their proposal accepted.</t>
      </section>
    </section>
    <section anchor="application-messages">
      <name>Application Messages</name>
      <t>The primary purpose of the Handshake protocol is to provide an
authenticated group key exchange to clients. In order to protect
Application messages sent among the members of a group, the Application
secret provided by the Handshake key schedule is used to derive nonces
and encryption keys for the Message Protection Layer according to
the Application Key Schedule. That is, each epoch is equipped with
a fresh Application Key Schedule which consist of a tree of Application
Secrets as well as one symmetric ratchet per group member.</t>
      <t>Each client maintains their own local copy of the Application Key
Schedule for each epoch during which they are a group member. They
derive new keys, nonces and secrets as needed while deleting old
ones as soon as they have been used.</t>
      <t>Application messages MUST be protected with the Authenticated-Encryption
with Associated-Data (AEAD) encryption scheme associated with the
MLS ciphersuite using the common framing mechanism.
Note that "Authenticated" in this context does not mean messages are
known to be sent by a specific client but only from a legitimate
member of the group.
To authenticate a message from a particular member, signatures are
required. Handshake messages MUST use asymmetric signatures to strongly
authenticate the sender of a message.</t>
      <section anchor="message-encryption-and-decryption">
        <name>Message Encryption and Decryption</name>
        <t>The group members MUST use the AEAD algorithm associated with
the negotiated MLS ciphersuite to AEAD encrypt and decrypt their
Application messages according to the Message Framing section.</t>
        <t>The group identifier and epoch allow a recipient to know which group secrets
should be used and from which Epoch secret to start computing other secrets
and keys. The sender identifier is used to identify the member's
symmetric ratchet from the initial group Application secret. The application
generation field is used to determine how far into the ratchet to iterate in
order to reproduce the required AEAD keys and nonce for performing decryption.</t>
        <t>Application messages SHOULD be padded to provide some resistance
against traffic analysis techniques over encrypted traffic.
<xref target="CLINIC"/>
          <xref target="HCJ16"/>
While MLS might deliver the same payload less frequently across
a lot of ciphertexts than traditional web servers, it might still provide
the attacker enough information to mount an attack. If Alice asks Bob:
"When are we going to the movie ?" the answer "Wednesday" might be leaked
to an adversary by the ciphertext length. An attacker expecting Alice to
answer Bob with a day of the week might find out the plaintext by
correlation between the question and the length.</t>
        <t>The content and length of the <tt>padding</tt> field in <tt>MLSCiphertextContent</tt> can be
chosen at the time of message encryption by the sender. It is recommended that
padding data is comprised of zero-valued bytes and follows an established
deterministic padding scheme.</t>
      </section>
      <section anchor="restrictions">
        <name>Restrictions</name>
        <t>During each epoch senders MUST NOT encrypt more data than permitted by the
security bounds of the AEAD scheme used.</t>
        <t>Note that each change to the Group through a Handshake message will also set a
new <tt>encryption_secret</tt>. Hence this change MUST be applied before encrypting
any new application message. This is required both to ensure that any users
removed from the group can no longer receive messages and to (potentially)
recover confidentiality and authenticity for future messages despite a past
state compromise.</t>
      </section>
      <section anchor="delayed-and-reordered-application-messages">
        <name>Delayed and Reordered Application messages</name>
        <t>Since each Application message contains the group identifier, the epoch and a
message counter, a client can receive messages out of order.
If they are able to retrieve or recompute the correct AEAD decryption key
from currently stored cryptographic material clients can decrypt
these messages.</t>
        <t>For usability, MLS clients might be required to keep the AEAD key
and nonce for a certain amount of time to retain the ability to decrypt
delayed or out of order messages, possibly still in transit while a
decryption is being done.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The security goals of MLS are described in <xref target="I-D.ietf-mls-architecture"/>.
We describe here how the protocol achieves its goals at a high level,
though a complete security analysis is outside of the scope of this
document.</t>
      <section anchor="confidentiality-of-the-group-secrets">
        <name>Confidentiality of the Group Secrets</name>
        <t>Group secrets are partly derived from the output of a ratchet tree. Ratchet
trees work by assigning each member of the group to a leaf in the tree and
maintaining the following property: the private key of a node in the tree is
known only to members of the group that are assigned a leaf in the node's
subtree. This is called the <em>ratchet tree invariant</em> and it makes it possible to
encrypt to all group members except one, with a number of ciphertexts that's
logarithmic in the number of group members.</t>
        <t>The ability to efficiently encrypt to all members except one allows members to
be securely removed from a group. It also allows a member to rotate their
keypair such that the old private key can no longer be used to decrypt new
messages.</t>
      </section>
      <section anchor="authentication">
        <name>Authentication</name>
        <t>The first form of authentication we provide is that group members can verify a
message originated from one of the members of the group. For encrypted messages,
this is guaranteed because messages are encrypted with an AEAD under a key
derived from the group secrets. For plaintext messages, this is guaranteed by
the use of a <tt>membership_tag</tt> which constitutes a MAC over the message, under a
key derived from the group secrets.</t>
        <t>The second form of authentication is that group members can verify a message
originated from a particular member of the group. This is guaranteed by a
digital signature on each message from the sender's signature key.</t>
        <t>The signature keys held by group members are critical to the security of MLS
against active attacks.  If a member's signature key is compromised, then an
attacker can create LeafNodes and KeyPackages impersonating the member; depending on the
application, this can then allow the attacker to join the group with the
compromised member's identity.  For example, if a group has enabled external
parties to join via external commits, then an attacker that has compromised a
member's signature key could use an external commit to insert themselves into
the group -- even using a "resync"-style external commit to replace the
compromised member in the group.</t>
        <t>Applications can mitigate the risks of signature key compromise using pre-shared
keys.  If a group requires joiners to know a PSK in addition to authenticating
with a credential, then in order to mount an impersonation attack, the attacker
would need to compromise the relevant PSK as well as the victim's signature key.
The cost of this mitigation is that the application needs some external
arrangement that ensures that the legitimate members of the group to have the
required PSKs.</t>
      </section>
      <section anchor="forward-secrecy-and-post-compromise-security">
        <name>Forward Secrecy and Post-Compromise Security</name>
        <t>Post-compromise security is provided between epochs by members regularly
updating their leaf key in the ratchet tree. Updating their leaf key prevents
group secrets from continuing to be encrypted to previously compromised public
keys.</t>
        <t>Forward-secrecy between epochs is provided by deleting private keys from past
version of the ratchet tree, as this prevents old group secrets from being
re-derived. Forward secrecy <em>within</em> an epoch is provided by deleting message
encryption keys once they've been used to encrypt or decrypt a message.</t>
        <t>Post-compromise security is also provided for new groups by members regularly
generating new KeyPackages and uploading them to the Delivery Service, such that
compromised key material won't be used when the member is added to a new group.</t>
      </section>
      <section anchor="keypackage-reuse">
        <name>KeyPackage Reuse</name>
        <t>KeyPackages are intended to be used only once.  That is, once a KeyPackage
has been used to introduce the corresponding client to a group, it SHOULD be
deleted from the KeyPackage publication system.  Reuse of KeyPackages can lead
to replay attacks.</t>
        <t>An application MAY allow for reuse of a "last resort" KeyPackage in order to
prevent denial of service attacks.  Since a KeyPackage is needed to add a
client to a new group, an attacker could prevent a client being added to new
groups by exhausting all available KeyPackages. To prevent such a denial of
service attack, the KeyPackage publication system SHOULD rate limit KeyPackage
requests, especially if not authenticated.</t>
      </section>
      <section anchor="group-fragmentation-by-malicious-insiders">
        <name>Group Fragmentation by Malicious Insiders</name>
        <t>It is possible for a malicious member of a group to "fragment" the group by
crafting an invalid UpdatePath.  Recall that an UpdatePath encrypts a sequence
of path secrets to different subtrees of the group's ratchet trees.  These path
secrets should be derived in a sequence as described in
<xref target="ratchet-tree-evolution"/>, but the UpdatePath syntax allows the sender to
encrypt arbitrary, unrelated secrets.  The syntax also does not guarantee that
the encrypted path secret encrypted for a given node corresponds to the public
key provided for that node.</t>
        <t>Both of these types of corruption will cause processing of a Commit to fail for
some members of the group.  If the public key for a node does not match the path
secret, then the members that decrypt that path secret will reject the commit
based on this mismatch.  If the path secret sequence is incorrect at some point,
then members that can decrypt nodes before that point will compute a different
public key for the mismatched node than the one in the UpdatePath, which also
causes the Commit to fail.  Applications SHOULD provide mechanisms for failed
commits to be reported, so that group members who were not able to recognize the
error themselves can reject the commit and roll back to a previous state if
necessary.</t>
        <t>Even with such an error reporting mechanism in place, however, it is still
possible for members to get locked out of the group by a malformed commit.
Since malformed Commits can only be recognized by certain members of the group,
in an asynchronous application, it may be the case that all members that could
detect a fault in a Commit are offline.  In such a case, the Commit will be
accepted by the group, and the resulting state possibly used as the basis for
further Commits.  When the affected members come back online, they will reject
the first commit, and thus be unable to catch up with the group.</t>
        <t>Applications can address this risk by requiring certain members of the group to
acknowledge successful processing of a Commit before the group regards the
Commit as accepted.  The minimum set of acknowledgements necessary to verify
that a Commit is well-formed comprises an acknowledgement from one member per
node in the UpdatePath, that is, one member from each subtree rooted in the
copath node corresponding to the node in the UpdatePath.</t>
      </section>
    </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>MLS Ciphersuites (<xref target="mls-ciphersuites"/>)</li>
        <li>MLS Extension Types (<xref target="mls-extension-types"/>)</li>
        <li>MLS Proposal Types (<xref target="mls-proposal-types"/>)</li>
        <li>MLS Credential Types (<xref target="mls-credential-types"/>)</li>
      </ul>
      <t>All of these registries should be under a heading of "Messaging Layer Security",
and assignments are made via the Specification Required policy <xref target="RFC8126"/>. See
<xref target="de"/> for additional information about the MLS Designated Experts (DEs).</t>
      <t>RFC EDITOR: Please replace XXXX throughout with the RFC number assigned to
this document</t>
      <section anchor="mls-ciphersuites">
        <name>MLS Ciphersuites</name>
        <t>A ciphersuite is a combination of a protocol version and the set of
cryptographic algorithms that should be used.</t>
        <t>Ciphersuite names follow the naming convention:</t>
        <artwork><![CDATA[
CipherSuite MLS_LVL_KEM_AEAD_HASH_SIG = VALUE;
]]></artwork>
        <t>Where VALUE is represented as a sixteen-bit integer:</t>
        <artwork><![CDATA[
uint16 CipherSuite;
]]></artwork>
        <table>
          <thead>
            <tr>
              <th align="left">Component</th>
              <th align="left">Contents</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">LVL</td>
              <td align="left">The security level</td>
            </tr>
            <tr>
              <td align="left">KEM</td>
              <td align="left">The KEM algorithm used for HPKE in ratchet tree operations</td>
            </tr>
            <tr>
              <td align="left">AEAD</td>
              <td align="left">The AEAD algorithm used for HPKE and message protection</td>
            </tr>
            <tr>
              <td align="left">HASH</td>
              <td align="left">The hash algorithm used for HPKE and the MLS transcript hash</td>
            </tr>
            <tr>
              <td align="left">SIG</td>
              <td align="left">The Signature algorithm used for message authentication</td>
            </tr>
          </tbody>
        </table>
        <t>The columns in the registry are as follows:</t>
        <ul spacing="normal">
          <li>Value: The numeric value of the ciphersuite</li>
          <li>Name: The name of the ciphersuite</li>
          <li>Recommended: Whether support for this ciphersuite is recommended by the IETF MLS
WG.  Valid values are "Y" and "N".  The "Recommended" column is assigned a
value of "N" unless explicitly requested, and adding a value with a
"Recommended" value of "Y" requires Standards Action <xref target="RFC8126"/>.  IESG Approval
is REQUIRED for a Y-&gt;N transition.</li>
          <li>Reference: The document where this ciphersuite is defined</li>
        </ul>
        <t>Initial contents:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Name</th>
              <th align="left">R</th>
              <th align="left">Ref</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0000</td>
              <td align="left">RESERVED</td>
              <td align="left">-</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0001</td>
              <td align="left">MLS_128_DHKEMX25519_AES128GCM_SHA256_Ed25519</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0002</td>
              <td align="left">MLS_128_DHKEMP256_AES128GCM_SHA256_P256</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0003</td>
              <td align="left">MLS_128_DHKEMX25519_CHACHA20POLY1305_SHA256_Ed25519</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0004</td>
              <td align="left">MLS_256_DHKEMX448_AES256GCM_SHA512_Ed448</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0005</td>
              <td align="left">MLS_256_DHKEMP521_AES256GCM_SHA512_P521</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0006</td>
              <td align="left">MLS_256_DHKEMX448_CHACHA20POLY1305_SHA512_Ed448</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0007</td>
              <td align="left">MLS_256_DHKEMP384_AES256GCM_SHA384_P384.</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0xff00 - 0xffff</td>
              <td align="left">Reserved for Private Use</td>
              <td align="left">-</td>
              <td align="left">RFC XXXX</td>
            </tr>
          </tbody>
        </table>
        <t>All of these ciphersuites use HMAC <xref target="RFC2104"/> as their MAC function, with
different hashes per ciphersuite.  The mapping of ciphersuites to HPKE
primitives, HMAC hash functions, and TLS signature schemes is as follows
<xref target="RFC9180"/> <xref target="RFC8446"/>:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">KEM</th>
              <th align="left">KDF</th>
              <th align="left">AEAD</th>
              <th align="left">Hash</th>
              <th align="left">Signature</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0001</td>
              <td align="left">0x0020</td>
              <td align="left">0x0001</td>
              <td align="left">0x0001</td>
              <td align="left">SHA256</td>
              <td align="left">ed25519</td>
            </tr>
            <tr>
              <td align="left">0x0002</td>
              <td align="left">0x0010</td>
              <td align="left">0x0001</td>
              <td align="left">0x0001</td>
              <td align="left">SHA256</td>
              <td align="left">ecdsa_secp256r1_sha256</td>
            </tr>
            <tr>
              <td align="left">0x0003</td>
              <td align="left">0x0020</td>
              <td align="left">0x0001</td>
              <td align="left">0x0003</td>
              <td align="left">SHA256</td>
              <td align="left">ed25519</td>
            </tr>
            <tr>
              <td align="left">0x0004</td>
              <td align="left">0x0021</td>
              <td align="left">0x0003</td>
              <td align="left">0x0002</td>
              <td align="left">SHA512</td>
              <td align="left">ed448</td>
            </tr>
            <tr>
              <td align="left">0x0005</td>
              <td align="left">0x0012</td>
              <td align="left">0x0003</td>
              <td align="left">0x0002</td>
              <td align="left">SHA512</td>
              <td align="left">ecdsa_secp521r1_sha512</td>
            </tr>
            <tr>
              <td align="left">0x0006</td>
              <td align="left">0x0021</td>
              <td align="left">0x0003</td>
              <td align="left">0x0003</td>
              <td align="left">SHA512</td>
              <td align="left">ed448</td>
            </tr>
            <tr>
              <td align="left">0x0007</td>
              <td align="left">0x0011</td>
              <td align="left">0x0002</td>
              <td align="left">0x0002</td>
              <td align="left">SHA384</td>
              <td align="left">ecdsa_secp384r1_sha384</td>
            </tr>
          </tbody>
        </table>
        <t>The hash used for the MLS transcript hash is the one referenced in the
ciphersuite name.  In the ciphersuites defined above, "SHA256", "SHA384", and "SHA512"
refer to the SHA-256, SHA-384, and SHA-512 functions defined in <xref target="SHS"/>.</t>
        <t>It is advisable to keep the number of ciphersuites low to increase the chances
clients can interoperate in a federated environment, therefore the ciphersuites
only include modern, yet well-established algorithms.  Depending on their
requirements, clients can choose between two security levels (roughly 128-bit
and 256-bit). Within the security levels clients can choose between faster
X25519/X448 curves and FIPS 140-2 compliant curves for Diffie-Hellman key
negotiations. Additionally clients that run predominantly on mobile processors
can choose ChaCha20Poly1305 over AES-GCM for performance reasons. Since
ChaCha20Poly1305 is not listed by FIPS 140-2 it is not paired with FIPS 140-2
compliant curves. The security level of symmetric encryption algorithms and hash
functions is paired with the security level of the curves.</t>
        <t>The mandatory-to-implement ciphersuite for MLS 1.0 is
<tt>MLS_128_DHKEMX25519_AES128GCM_SHA256_Ed25519</tt> which uses
Curve25519 for key exchange, AES-128-GCM for HPKE, HKDF over SHA2-256, and
Ed25519 for signatures.</t>
        <t>Values with the first byte 255 (decimal) are reserved for Private Use.</t>
        <t>New ciphersuite values are assigned by IANA as described in
<xref target="iana-considerations"/>.</t>
      </section>
      <section anchor="mls-extension-types">
        <name>MLS Extension Types</name>
        <t>This registry lists identifiers for extensions to the MLS protocol.  The
extension type field is two bytes wide, so valid extension type values are in
the range 0x0000 to 0xffff.</t>
        <t>Template:</t>
        <ul spacing="normal">
          <li>Value: The numeric value of the extension type</li>
          <li>Name: The name of the extension type</li>
          <li>
            <t>Message(s): The messages in which the extension may appear, drawn from the following
list:  </t>
            <ul spacing="normal">
              <li>KP: KeyPackage objects</li>
              <li>LN: LeafNode objects</li>
              <li>GC: GroupContext objects (and the <tt>group_context_extensions</tt> field of
GroupInfo objects)</li>
              <li>GI: The <tt>other_extensions</tt> field of GroupInfo objects</li>
            </ul>
          </li>
          <li>Recommended: Whether support for this extension is recommended by the IETF MLS
WG.  Valid values are "Y" and "N".  The "Recommended" column is assigned a
value of "N" unless explicitly requested, and adding a value with a
"Recommended" value of "Y" requires Standards Action <xref target="RFC8126"/>.  IESG Approval
is REQUIRED for a Y-&gt;N transition.</li>
          <li>Reference: The document where this extension is defined</li>
        </ul>
        <t>Initial contents:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Name</th>
              <th align="left">Message(s)</th>
              <th align="left">Recommended</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0000</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0001</td>
              <td align="left">external_key_id</td>
              <td align="left">KP</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0002</td>
              <td align="left">ratchet_tree</td>
              <td align="left">GI</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0003</td>
              <td align="left">required_capabilities</td>
              <td align="left">GC</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0004</td>
              <td align="left">external_pub</td>
              <td align="left">GI</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0xff00  - 0xffff</td>
              <td align="left">Reserved for Private Use</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">RFC XXXX</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="mls-proposal-types">
        <name>MLS Proposal Types</name>
        <t>This registry lists identifiers for types of proposals that can be made for
changes to an MLS group.  The extension type field is two bytes wide, so valid
extension type values are in the range 0x0000 to 0xffff.</t>
        <t>Template:</t>
        <ul spacing="normal">
          <li>Value: The numeric value of the proposal type</li>
          <li>Name: The name of the proposal type</li>
          <li>Recommended: Whether support for this extension is recommended by the IETF MLS
WG.  Valid values are "Y" and "N".  The "Recommended" column is assigned a
value of "N" unless explicitly requested, and adding a value with a
"Recommended" value of "Y" requires Standards Action <xref target="RFC8126"/>.  IESG Approval
is REQUIRED for a Y-&gt;N transition.</li>
          <li>Reference: The document where this extension is defined</li>
        </ul>
        <t>Initial contents:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Name</th>
              <th align="left">Recommended</th>
              <th align="left">Path Required</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0000</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0001</td>
              <td align="left">add</td>
              <td align="left">Y</td>
              <td align="left">N</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0002</td>
              <td align="left">update</td>
              <td align="left">Y</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0003</td>
              <td align="left">remove</td>
              <td align="left">Y</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0004</td>
              <td align="left">psk</td>
              <td align="left">Y</td>
              <td align="left">N</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0005</td>
              <td align="left">reinit</td>
              <td align="left">Y</td>
              <td align="left">N</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0006</td>
              <td align="left">external_init</td>
              <td align="left">Y</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0007</td>
              <td align="left">app_ack</td>
              <td align="left">Y</td>
              <td align="left">N</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0008</td>
              <td align="left">group_context_extensions</td>
              <td align="left">Y</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0xff00  - 0xffff</td>
              <td align="left">Reserved for Private Use</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">RFC XXXX</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="mls-credential-types">
        <name>MLS Credential Types</name>
        <t>This registry lists identifiers for types of credentials that can be used for
authentication in the MLS protocol.  The credential type field is two bytes wide,
so valid credential type values are in the range 0x0000 to 0xffff.</t>
        <t>Template:</t>
        <ul spacing="normal">
          <li>Value: The numeric value of the credential type</li>
          <li>Name: The name of the credential type</li>
          <li>Recommended: Whether support for this credential is recommended by the IETF MLS
WG.  Valid values are "Y" and "N".  The "Recommended" column is assigned a
value of "N" unless explicitly requested, and adding a value with a
"Recommended" value of "Y" requires Standards Action <xref target="RFC8126"/>.  IESG Approval
is REQUIRED for a Y-&gt;N transition.</li>
          <li>Reference: The document where this credential is defined</li>
        </ul>
        <t>Initial contents:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Name</th>
              <th align="left">Recommended</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0000</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0001</td>
              <td align="left">basic</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0002</td>
              <td align="left">x509</td>
              <td align="left">Y</td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0xff00  - 0xffff</td>
              <td align="left">Reserved for Private Use</td>
              <td align="left">N/A</td>
              <td align="left">RFC XXXX</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="de">
        <name>MLS Designated Expert Pool</name>
        <t>Specification Required <xref target="RFC8126"/> registry requests are registered
after a three-week review period on the MLS DEs' mailing list:
<eref target="mailto:mls-reg-review@ietf.org">mls-reg-review@ietf.org</eref>, on the advice of one or more of the MLS DEs. However,
to allow for the allocation of values prior to publication, the MLS
DEs may approve registration once they are satisfied that such a
specification will be published.</t>
        <t>Registration requests sent to the MLS DEs mailing list for review
SHOULD use an appropriate subject (e.g., "Request to register value
in MLS Bar registry").</t>
        <t>Within the review period, the MLS DEs will either approve or deny
the registration request, communicating this decision to the MLS DEs
mailing list and IANA. Denials SHOULD include an explanation and, if
applicable, suggestions as to how to make the request successful.
Registration requests that are undetermined for a period longer than
21 days can be brought to the IESG's attention for resolution using
the <eref target="mailto:iesg@ietf.org">iesg@ietf.org</eref> mailing list.</t>
        <t>Criteria that SHOULD be applied by the MLS DEs includes determining
whether the proposed registration duplicates existing functionality,
whether it is likely to be of general applicability or useful only
for a single application, and whether the registration description
is clear. For example, the MLS DEs will apply the ciphersuite-related
advisory found in <xref target="ciphersuites"/>.</t>
        <t>IANA MUST only accept registry updates from the MLS DEs and SHOULD
direct all requests for registration to the MLS DEs' mailing list.</t>
        <t>It is suggested that multiple MLS DEs be appointed who are able to
represent the perspectives of different applications using this
specification, in order to enable broadly informed review of
registration decisions. In cases where a registration decision could
be perceived as creating a conflict of interest for a particular
MLS DE, that MLS DE SHOULD defer to the judgment of the other MLS DEs.</t>
      </section>
      <section anchor="the-messagemls-mime-type">
        <name>The "message/mls" MIME Type</name>
        <t>This document registers the "message/mls" MIME media type in order to allow other
protocols (ex: HTTP <xref target="RFC7540"/>) to convey MLS messages.</t>
        <artwork><![CDATA[
  Media type name: message
  Media subtype name: mls
  Required parameters: none
  Optional parameters: version
     version: The MLS protocol version expressed as a string
     <major>.<minor>.  If omitted the version is "1.0", which
     corresponds to MLS ProtocolVersion mls10. If for some reason
     the version number in the MIME type parameter differs from the
     ProtocolVersion embedded in the protocol, the protocol takes
     precedence.

  Encoding scheme: MLS messages are represented using the TLS
     presentation language [RFC8446]. Therefore MLS messages need to be
     treated as binary data.

  Security considerations: MLS is an encrypted messaging layer designed
     to be transmitted over arbitrary lower layer protocols. The
     security considerations in this document (RFC XXXX) also apply.
]]></artwork>
      </section>
    </section>
    <section anchor="contributors">
      <name>Contributors</name>
      <ul spacing="normal">
        <li>Joel Alwen <br/>
Wickr <br/>
joel.alwen@wickr.com</li>
        <li>Karthikeyan Bhargavan <br/>
INRIA <br/>
karthikeyan.bhargavan@inria.fr</li>
        <li>Cas Cremers <br/>
University of Oxford <br/>
cremers@cispa.de</li>
        <li>Alan Duric <br/>
Wire <br/>
alan@wire.com</li>
        <li>Britta Hale <br/>
Naval Postgraduate School <br/>
britta.hale@nps.edu</li>
        <li>Srinivas Inguva <br/>
Twitter <br/>
singuva@twitter.com</li>
        <li>Konrad Kohbrok <br/>
Aalto University <br/>
konrad.kohbrok@datashrine.de</li>
        <li>Albert Kwon <br/>
MIT <br/>
kwonal@mit.edu</li>
        <li>Brendan McMillion <br/>
Cloudflare <br/>
brendan@cloudflare.com</li>
        <li>Eric Rescorla <br/>
Mozilla <br/>
ekr@rtfm.com</li>
        <li>Michael Rosenberg <br/>
Trail of Bits <br/>
michael.rosenberg@trailofbits.com</li>
        <li>Thyla van der Merwe <br/>
Royal Holloway, University of London <br/>
thyla.van.der@merwe.tech</li>
      </ul>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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="RFC9180">
          <front>
            <title>Hybrid Public Key Encryption</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes">
              <organization/>
            </author>
            <author fullname="K. Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="B. Lipp" initials="B." surname="Lipp">
              <organization/>
            </author>
            <author fullname="C. Wood" initials="C." surname="Wood">
              <organization/>
            </author>
            <date month="February" year="2022"/>
            <abstract>
              <t>This document describes a scheme for hybrid public key encryption (HPKE). This scheme provides a variant of public key encryption of arbitrary-sized plaintexts for a recipient public key. It also includes three authenticated variants, including one that authenticates possession of a pre-shared key and two optional ones that authenticate possession of a key encapsulation mechanism (KEM) private key. HPKE works for any combination of an asymmetric KEM, key derivation function (KDF), and authenticated encryption with additional data (AEAD) encryption function. Some authenticated variants may not be supported by all KEMs. We provide instantiations of the scheme using widely used and efficient primitives, such as Elliptic Curve Diffie-Hellman (ECDH) key agreement, HMAC-based key derivation function (HKDF), and SHA2.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9180"/>
          <seriesInfo name="DOI" value="10.17487/RFC9180"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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="RFC7540">
          <front>
            <title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
            <author fullname="M. Belshe" initials="M." surname="Belshe">
              <organization/>
            </author>
            <author fullname="R. Peon" initials="R." surname="Peon">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2).  HTTP/2 enables a more efficient use of network resources and a reduced perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t>
              <t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7540"/>
          <seriesInfo name="DOI" value="10.17487/RFC7540"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="RFC2104">
          <front>
            <title>HMAC: Keyed-Hashing for Message Authentication</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="M. Bellare" initials="M." surname="Bellare">
              <organization/>
            </author>
            <author fullname="R. Canetti" initials="R." surname="Canetti">
              <organization/>
            </author>
            <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>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="art" target="https://eprint.iacr.org/2017/666.pdf">
          <front>
            <title>On Ends-to-Ends Encryption: Asynchronous Group Messaging with Strong Security Guarantees</title>
            <author initials="K." surname="Cohn-Gordon" fullname="Katriel Cohn-Gordon">
              <organization/>
            </author>
            <author initials="C." surname="Cremers" fullname="Cas Cremers">
              <organization/>
            </author>
            <author initials="L." surname="Garratt" fullname="Luke Garratt">
              <organization/>
            </author>
            <author initials="J." surname="Millican" fullname="Jon Millican">
              <organization/>
            </author>
            <author initials="K." surname="Milner" fullname="Kevin Milner">
              <organization/>
            </author>
            <date year="2018" month="January" day="18"/>
          </front>
        </reference>
        <reference anchor="doubleratchet">
          <front>
            <title>A Formal Security Analysis of the Signal Messaging Protocol</title>
            <author fullname="Katriel Cohn-Gordon" initials="K." surname="Cohn-Gordon">
              <organization/>
            </author>
            <author fullname="Cas Cremers" initials="C." surname="Cremers">
              <organization/>
            </author>
            <author fullname="Benjamin Dowling" initials="B." surname="Dowling">
              <organization/>
            </author>
            <author fullname="Luke Garratt" initials="L." surname="Garratt">
              <organization/>
            </author>
            <author fullname="Douglas Stebila" initials="D." surname="Stebila">
              <organization/>
            </author>
            <date month="April" year="2017"/>
          </front>
          <seriesInfo name="2017 IEEE European Symposium on Security and Privacy" value="(EuroS&amp;P)"/>
          <seriesInfo name="DOI" value="10.1109/eurosp.2017.27"/>
        </reference>
        <reference anchor="signal" target="https://www.signal.org/docs/specifications/doubleratchet/">
          <front>
            <title>The Double Ratchet Algorithm</title>
            <author initials="T." surname="Perrin(ed)" fullname="Trevor Perrin(ed)">
              <organization/>
            </author>
            <author initials="M." surname="Marlinspike" fullname="Moxie Marlinspike">
              <organization/>
            </author>
            <date year="2016" month="November" day="20"/>
          </front>
        </reference>
        <reference anchor="SECG" target="https://secg.org/sec1-v2.pdf">
          <front>
            <title>Elliptic Curve Cryptography, Standards for Efficient Cryptography Group, ver. 2</title>
            <author>
              <organization/>
            </author>
            <date year="2009"/>
          </front>
        </reference>
        <reference anchor="SHS">
          <front>
            <title>Secure Hash Standard</title>
            <author fullname="Quynh H. Dang" initials="Q." surname="Dang">
              <organization/>
            </author>
            <date month="July" year="2015"/>
          </front>
          <seriesInfo name="National Institute of Standards and Technology" value="report"/>
          <seriesInfo name="DOI" value="10.6028/nist.fips.180-4"/>
        </reference>
        <reference anchor="RFC9000">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="I-D.ietf-mls-architecture">
          <front>
            <title>The Messaging Layer Security (MLS) Architecture</title>
            <author fullname="Benjamin Beurdouche">
              <organization>Inria &amp; Mozilla</organization>
            </author>
            <author fullname="Eric Rescorla">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Emad Omara">
              <organization>Google</organization>
            </author>
            <author fullname="Srinivas Inguva">
              <organization>Twitter</organization>
            </author>
            <author fullname="Albert Kwon">
              <organization>MIT</organization>
            </author>
            <author fullname="Alan Duric">
              <organization>Wire</organization>
            </author>
            <date day="4" month="October" year="2021"/>
            <abstract>
              <t>   The Messaging Layer Security (MLS) protocol [MLSPROTO] document has
   the role of defining a Group Key Agreement, all the necessary
   cryptographic operations, and serialization/deserialization functions
   necessary to create a scalable and secure group messaging protocol.
   The MLS protocol is meant to protect against eavesdropping,
   tampering, message forgery, and provide good properties such as
   forward-secrecy (FS) and post-compromise security (PCS) in the case
   of past or future device compromises.

   This document, on the other hand is intended to describe a general
   secure group messaging infrastructure and its security goals.  It
   provides guidance on building a group messaging system and discusses
   security and privacy tradeoffs offered by multiple security mechanism
   that are part of the MLS protocol (ie. frequency of public encryption
   key rotation).

   The document also extends the guidance to parts of the infrastructure
   that are not standardized by the MLS Protocol document and left to
   the application or the infrastructure architects to design.

   While the recommendations of this document are not mandatory to
   follow in order to interoperate at the protocol level, most will
   vastly influence the overall security guarantees that are achieved by
   the overall messaging system.  This is especially true in case of
   active adversaries that are able to compromise clients, the delivery
   service or the authentication service.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-mls-architecture-07"/>
        </reference>
        <reference anchor="I-D.ietf-trans-rfc6962-bis">
          <front>
            <title>Certificate Transparency Version 2.0</title>
            <author fullname="Ben Laurie">
              <organization>Google UK Ltd.</organization>
            </author>
            <author fullname="Adam Langley">
              <organization>Google Inc.</organization>
            </author>
            <author fullname="Emilia Kasper">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Eran Messeri">
              <organization>Google UK Ltd.</organization>
            </author>
            <author fullname="Rob Stradling">
              <organization>Sectigo Ltd.</organization>
            </author>
            <date day="31" month="August" year="2021"/>
            <abstract>
              <t>This document describes version 2.0 of the Certificate Transparency (CT) protocol for publicly logging the existence of Transport Layer Security (TLS) server certificates as they are issued or observed, in a manner that allows anyone to audit certification authority (CA) activity and notice the issuance of suspect certificates as well as to audit the certificate logs themselves. The intent is that eventually clients would refuse to honor certificates that do not appear in a log, effectively forcing CAs to add all issued certificates to the logs.

 This document obsoletes RFC 6962. It also specifies a new TLS extension that is used to send various CT log artifacts.

 Logs are network services that implement the protocol operations for submissions and queries that are defined in this document.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-trans-rfc6962-bis-42"/>
        </reference>
        <reference anchor="RFC5116">
          <front>
            <title>An Interface and Algorithms for Authenticated Encryption</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms.  The interface and registry can be used as an application-independent set of cryptoalgorithm suites.  This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5116"/>
          <seriesInfo name="DOI" value="10.17487/RFC5116"/>
        </reference>
        <reference anchor="RFC6125">
          <front>
            <title>Representation and Verification of Domain-Based Application Service Identity within Internet Public Key Infrastructure Using X.509 (PKIX) Certificates in the Context of Transport Layer Security (TLS)</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <author fullname="J. Hodges" initials="J." surname="Hodges">
              <organization/>
            </author>
            <date month="March" year="2011"/>
            <abstract>
              <t>Many application technologies enable secure communication between two entities by means of Internet Public Key Infrastructure Using X.509 (PKIX) certificates in the context of Transport Layer Security (TLS). This document specifies procedures for representing and verifying the identity of application services in such interactions.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6125"/>
          <seriesInfo name="DOI" value="10.17487/RFC6125"/>
        </reference>
        <reference anchor="RFC8032">
          <front>
            <title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <author fullname="I. Liusvaara" initials="I." surname="Liusvaara">
              <organization/>
            </author>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document describes elliptic curve signature scheme Edwards-curve Digital Signature Algorithm (EdDSA).  The algorithm is instantiated with recommended parameters for the edwards25519 and edwards448 curves.  An example implementation and test vectors are provided.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8032"/>
          <seriesInfo name="DOI" value="10.17487/RFC8032"/>
        </reference>
        <reference anchor="RFC7696">
          <front>
            <title>Guidelines for Cryptographic Algorithm Agility and Selecting Mandatory-to-Implement Algorithms</title>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <date month="November" year="2015"/>
            <abstract>
              <t>Many IETF protocols use cryptographic algorithms to provide confidentiality, integrity, authentication, or digital signature.  Communicating peers must support a common set of cryptographic algorithms for these mechanisms to work properly.  This memo provides guidelines to ensure that protocols have the ability to migrate from one mandatory-to-implement algorithm suite to another over time.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="201"/>
          <seriesInfo name="RFC" value="7696"/>
          <seriesInfo name="DOI" value="10.17487/RFC7696"/>
        </reference>
        <reference anchor="CLINIC">
          <front>
            <title>I Know Why You Went to the Clinic: Risks and Realization of HTTPS Traffic Analysis</title>
            <author fullname="Brad Miller" initials="B." surname="Miller">
              <organization/>
            </author>
            <author fullname="Ling Huang" initials="L." surname="Huang">
              <organization/>
            </author>
            <author fullname="A. D. Joseph" initials="A." surname="Joseph">
              <organization/>
            </author>
            <author fullname="J. D. Tygar" initials="J." surname="Tygar">
              <organization/>
            </author>
            <date year="2014"/>
          </front>
          <seriesInfo name="Privacy Enhancing Technologies" value="pp. 143-163"/>
          <seriesInfo name="DOI" value="10.1007/978-3-319-08506-7_8"/>
        </reference>
        <reference anchor="HCJ16">
          <front>
            <title>HTTPS traffic analysis and client identification using passive SSL/TLS fingerprinting</title>
            <author fullname="Martin Husák" initials="M." surname="Husák">
              <organization/>
            </author>
            <author fullname="Milan Čermák" initials="M." surname="Čermák">
              <organization/>
            </author>
            <author fullname="Tomáš Jirsík" initials="T." surname="Jirsík">
              <organization/>
            </author>
            <author fullname="Pavel Čeleda" initials="P." surname="Čeleda">
              <organization/>
            </author>
            <date month="February" year="2016"/>
          </front>
          <seriesInfo name="EURASIP Journal on Information Security" value="Vol. 2016"/>
          <seriesInfo name="DOI" value="10.1186/s13635-016-0030-7"/>
        </reference>
      </references>
    </references>
    <section anchor="protocol-origins-of-example-trees">
      <name>Protocol Origins of Example Trees</name>
      <t>Protocol operations in MLS give rise to specific forms of ratchet tree,
typically affecting a whole direct path at once.  In this section, we describe
the protocol operations that could have given rise to the various example trees
in this document.</t>
      <t>To construct the tree in <xref target="full-tree"/>:</t>
      <ul spacing="normal">
        <li>A creates a group with B, ..., G</li>
        <li>Each member sends an empty Commit setting its direct path</li>
      </ul>
      <t>To construct the tree in <xref target="resolution-tree"/>:</t>
      <ul spacing="normal">
        <li>A creates a group with B, C, D, as well as some members outside this subtree</li>
        <li>D removes C, setting Z and the top node (as well as any further nodes in the
direct path)</li>
        <li>A member outside this subtree removes B, blanking B's direct path</li>
        <li>A adds a new member at C with a partial Commit, adding it as unmerged at Z</li>
      </ul>
      <t>To construct the tree in <xref target="evolution-tree"/>:</t>
      <ul spacing="normal">
        <li>A creates a group with B, C, D</li>
        <li>B sends a full Commit, setting X and Y</li>
        <li>D removes C, setting Z and Y</li>
        <li>
          <t>B adds a new member at C with a full Commit
          </t>
          <ul spacing="normal">
            <li>The Add proposal adds C as unmerged at Z and Y</li>
            <li>The path in the Commit resets X and Y, clearing Y's unmerged leaves</li>
          </ul>
        </li>
      </ul>
      <t>To construct the tree in <xref target="parent-hash-tree"/>:</t>
      <ul spacing="normal">
        <li>A creates a group with B, ... G</li>
        <li>A removes F in a full Commit, setting T, U, and W</li>
        <li>E sends an empty Commit, setting X, Y, and W</li>
        <li>A adds a new member at F in a partial Commit, adding F as unmerged at X, Y,
and W</li>
        <li>A removes D, resetting T, U, and W (in particular, F is no longer unmerged at
W)</li>
        <li>
          <t>A adds new memebers at D and H in a partial commit
          </t>
          <ul spacing="normal">
            <li>D is added as unmerged at U, W</li>
            <li>H is added as unmerged at Y, W</li>
          </ul>
        </li>
      </ul>
    </section>
    <section anchor="array-based-trees">
      <name>Array-Based Trees</name>
      <t>One benefit of using left-balanced trees is that they admit a simple
flat array representation.  In this representation, leaf nodes are
even-numbered nodes, with the n-th leaf at 2*n.  Intermediate nodes
are held in odd-numbered nodes.  For example, tree with 11 leaves has
the following structure:</t>
      <artwork><![CDATA[
                                                   X
                           X
               X                       X                       X
         X           X           X           X           X
      X     X     X     X     X     X     X     X     X     X     X
Node: 0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20
Leaf: 0     1     2     3     4     5     6     7     8     9    10
]]></artwork>
      <t>This allows us to compute relationships between tree nodes simply by
manipulating indices, rather than having to maintain complicated structures in
memory. The basic rule is that the high-order bits of parent and child nodes
indices have the following relation (where <tt>x</tt> is an arbitrary bit string):</t>
      <artwork><![CDATA[
parent=01x => left=00x, right=10x
]]></artwork>
      <t>Since node relationships are implicit, the algorithms for adding and removing
nodes at the right edge of the tree are quite simple:</t>
      <ul spacing="normal">
        <li>Add: Append a blank parent node to the array of nodes, then append the new
leaf node</li>
        <li>Remove: Remove the rightmost two nodes from the array of nodes</li>
      </ul>
      <t>The following python code demonstrates the tree computations necessary to use an
array-based tree for MLS.</t>
      <artwork><![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 number of nodes needed to represent a tree with n leaves.
def node_width(n):
    if n == 0:
        return 0
    else:
        return 2*(n - 1) + 1

# The index of the root node of a tree with n leaves.
def root(n):
    w = node_width(n)
    return (1 << log2(w)) - 1

# The left child of an intermediate node. Note that because the tree is
# left-balanced, there is no dependency on the size of the tree.
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. Depends on the number of
# leaves because the straightforward calculation can take you beyond the
# edge of the tree.
def right(x, n):
    k = level(x)
    if k == 0:
        raise Exception('leaf node has no children')

    r = x ^ (0x03 << (k - 1))
    while r >= node_width(n):
        r = left(r)
    return r

# The immediate parent of a node. May be beyond the right edge of the
# tree.
def parent_step(x):
    k = level(x)
    b = (x >> (k + 1)) & 0x01
    return (x | (1 << k)) ^ (b << (k + 1))

# The parent of a node. As with the right child calculation, we have to
# walk back until the parent is within the range of the tree.
def parent(x, n):
    if x == root(n):
        raise Exception('root node has no parent')

    p = parent_step(x)
    while p >= node_width(n):
        p = parent_step(p)
    return p

# The other child of the node's parent.
def sibling(x, n):
    p = parent(x, n)
    if x < p:
        return right(p, n)
    else:
        return left(p)

# The direct path of a node, ordered from leaf to root.
def direct_path(x, n):
    r = root(n)
    if x == r:
        return []

    d = []
    while x != r:
        x = parent(x, n)
        d.append(x)
    return d

# The copath of a node, ordered from leaf to root.
def copath(x, n):
    if x == root(n):
        return []

    d = direct_path(x, n)
    d.insert(0, x)
    d.pop()
    return [sibling(y, n) for y in d]

# The common ancestor of two nodes is the lowest node that is in the
# direct paths of both leaves.
def common_ancestor_semantic(x, y, n):
    dx = set([x]) | set(direct_path(x, n))
    dy = set([y]) | set(direct_path(y, n))
    dxy = dx & dy
    if len(dxy) == 0:
        raise Exception('failed to find common ancestor')

    return min(dxy, key=level)

# The common ancestor of two nodes is the lowest node that is in the
# direct paths of both leaves.
def common_ancestor_direct(x, y, _):
    # Handle cases where one is an ancestor of the other
    lx, ly = level(x)+1, level(y)+1
    if (lx <= ly) and (x>>ly == y>>ly):
      return y
    elif (ly <= lx) and (x>>lx == y>>lx):
      return x

    # Handle other cases
    xn, yn = x, y
    k = 0
    while xn != yn:
       xn, yn = xn >> 1, yn >> 1
       k += 1
    return (xn << k) + (1 << (k-1)) - 1
]]></artwork>
    </section>
    <section anchor="link-based-trees">
      <name>Link-Based Trees</name>
      <t>An implementation may choose to store ratchet trees in a "link-based"
representation, where each node stores references to its parents and/or
children.   (As opposed to the array-based representation suggested above, where
these relationships are computed from relationships between nodes' indices in
the array.)  Such an implementation needs to update these links to maintain the
left-balanced structure of the tree as the tree is extended to add new members,
or truncated when memebers are removed.</t>
      <t>The following code snippet shows how these algorithms could be implemented in
Python.</t>
      <artwork><![CDATA[
class Node:
    def __init__(self, value, parent=None, left=None, right=None):
        self.value = value    # Value of the node
        self.parent = parent  # Parent node
        self.left = left      # Left child node
        self.right = right    # Right child node

    def leaf(self):
        return self.left == None and self.right == None

    def span(self):
        if self.leaf():
            return 1
        return self.left.span() + self.right.span()

    def full(self):
        span = self.span()
        while span % 2 == 0:
            span >>= 1
        return span == 1

    def rightmost_leaf(self):
        X = self
        while X.right != None:
            X = X.right
        return X

class Tree:
    def __init__(self):
        self.root = None  # Root node of the tree, initially empty

    def extend(self, N):
        if self.root == None:
            self.root = N
            return

        # Identify the proper point to insert the new parent node
        X = self.root.rightmost_leaf()
        while X.full() and X != self.root:
            X = X.parent

        # If X is not full, insert the new parent under X
        P = Node("_", right=N)
        N.parent = P
        if not X.full():
            P.parent = X
            P.left = X.right
            X.right.parent = P
            X.right = P
            return

        # If X is full, then X is the root, so P replaces the root
        P.left = self.root
        self.root.parent = P
        self.root = P
        return

    def truncate(self):
        X = self.root.rightmost_leaf()
        if X == self.root:
            self.root = None
            return

        # If X's parent is the root, then shift the root to the left
        if X.parent == self.root:
            self.root = self.root.left
            self.root.parent = None
            return

        # Otherwise, reassign the right child of the parent's parent
        Q = X.parent.parent
        Q.right = X.parent.left
        Q.right.parent = Q
        return
]]></artwork>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAJd7JmIAA9S9a3sTR7Yo/L1+RR/neTb2jCRsICSBkD3GNgknXPxiIJlJ
cuS21LZ7kNTa3S0bD3B++1nXqlXVLQNJ9uX13hlsqbsuq1at+2U4HLq2bGfF
vezleZE9LZomPysXZ9mT/Kqos6NisqrL9irbfPrkaCs7rKu2mlQzl5+c1MXF
vQw+ddNqssjnMMC0zk/bYVm0p8P5rBku5eHhzm03ydvirKqv7mXl4rRyrlzW
97K2XjXtre3tb7Zvubwu8nt+OvemuLqs6um97PGiLepF0Q73cXDnmjZfTMf5
rFrAhFdF45blvewXmGeQNVXd1sVpA79dzfGX35zLV+15Vd9z2TCDmZt72YtR
9jCHARuXwQ+v+0U5Oc/rqf2iqs/yRfmvvC2rxb1sr2wmFX1ezPNydi+rZyd/
K5cXo+YtjExf0OAPYfBiVU+r1eS8MBM8LBb/zOflIv02nuXxoi7z7N+yp9W/
ytkst/MhTP924l8eTap5NDHs6kV1UtSt3VW+PM+Lmf0imq8zfs0v1PR8Z4r/
PcqewrLKSb4wk/zvahF/HG/pUT4pTqrqjZ3rn3N5/m+nJ51ZDkbZ83le52aK
g3k+NR/GE3xfVWezwg4P/0wrfPpvZ/RdZ4ofR9ledb4Yfg/4Vdm9/Ji3dQkA
S7+NZ3y1KC+KusE7UZ1mz9+ewoN2/nnxtzc8EMw8Wr0BXAeMr+fw+kWBQM/r
lmHf5vVZ0d7Lztt22dy7ebNY1uWiHZX5pB7BnDdvbe98dfPu3buj5fSUX+B7
uvF8kR0sps2wrYb4L/wxqa+WvLzd5moxOa+rRbVqsu/rarU0d/qybM+zoxa+
PQs3+/sVAAtuWdFs0Cz+ytDP8CPACU/s5U22VxdzAE7yzZPVmyL7Pq/rvG2T
rzr4Y2YsLkr6clHU9NUUaMi9DKDy9XB7Z7jzNXwI1+FkVsC4cCkAkvvPH492
tkc7O9vf3DxY1dXR4QiBOLr1lYOHm/Jskc/6YX95eTni7wn0QNKam82ymJSn
sDKEbHMzmutmdCBIOffpa7h19H22OwNyB+Ceb8Rrvzvc2Rne2u6BtN/4S6Cs
VZ0dFjXgw2Yx3UofeFq9LYFU5/UMEHpZvilwd0cHe9/fi1Z1AGAFrJhke6v6
ooCzARypzvCWXw0AC4COAtFrMkDO7OAU9lkWizZ6ivFnkAG+j7JbG72Aa4rJ
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
3hRHmxprJgg2kNrj8uyW6WWFTaykINhRkc82NzaioDff54klq+NkYG9Vjs0L
XumNPHqmyAKDKgquT9boRTgx3UUV71j5cso1RHTQOgvaoxn0ygASaWSPezyW
Dl8cCBPVdnz37n+9eLT3zc7X21TkZ78wTQCxeSolkJoarxbjyUlqqgNySKcz
IOme/BdRM03naJcSJm26kIVRjw/eAq2fqLGBe3wdmy17Ovnj/qMYQFh9JxQ7
H0RqfQQ1hcxJAXqB9wek7cSOpIUY/TXI5GiwYwLenq3sAdEcbInGb/oX4CN5
Rx4luaMu/Bekrfv22tSBrRNJtXNXr+kDGSYOCcJxgLbBtxtIN3ZG29lG9lde
bEzCed38rGwCKaIu5r6LinnE29ZdfgQ2eKe4N1zUNo3Zp++bp1bT8l+FGA74
iouTiSHJh0+uTOqzR92lyKJBpwUcNj+r8zkpb+aNrM3fSPGoJp+hm/yMK897
dEEpVG0zZM5y3Oj1qeatbT7+8elWz4sY7OT+ElV+MbNpCZTOaxjuPWeLQV1d
wgDH28c2NBG2D5xhiPEPtFOJe+CAPjp4BVyv3BqaUPuUNV+6FiY+oWDKWPtN
eotJSCmyJi5vFgqBsPKKNb98Hoduy0dc0zvypBR6TnI+lLLZJ3uoHDuWomfd
95Sj1FJqGNWOkawiWrP3nsVJH/IuQQmLFcO1b87R2NLxigccWpu3jnsXDjGm
GkXry4e8X//Va/qKoePLk3xn8fYPDBv9pBcUG72g6lnUcDUt0MdUkUgv6580
O/zwZLLJ3znusnmjUMKCBNtbfwaw/or1YCIKh7ABxoAFDjauAwH+z4NMnvxj
O+t81HdehL//RcdFc/2RPfWC9VtiS999HKjf8szf/Xk76pww3uBrj/czJ4gp
wm++OJARz5UeWcnGE05LY4liTcvT00KSGmqse8XZKEe+ulGyXma20Q7W55d0
v8EskN6mzDR23EOac0aOg5RvH8anwzcbmX/6LVU+raNn+Wn5ZsOvOzuOi2z7
d+Dp+JsNGZuz1vvG5m/s2CDynJbC6ViI16flm43MPB2K9phn6enwTdglsO/V
vBcm4Rt5+t09jTQ6wLMfKkpo7lT2RWE/H8rnH6Srt+5Mnt+wzjHh3SaUj7M8
+tokOWqTJNkeCNha5GXP/zx0uWJW+HN10luvLjmNSOYzetKxHehYLZO+60ms
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
Kh0DAA==

-->

</rfc>
