<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.6.5 (Ruby 3.1.2) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-ietf-mls-protocol-19" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="MLS">The Messaging Layer Security (MLS) Protocol</title>

    <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>Phoenix R&amp;D</organization>
      <address>
        <email>ietf@raphaelrobert.com</email>
      </address>
    </author>
    <author initials="J." surname="Millican" fullname="Jon Millican">
      <organization>Meta Platforms</organization>
      <address>
        <email>jmillican@meta.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="2023" month="March" day="20"/>

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



  </front>

  <middle>


<section anchor="introduction"><name>Introduction</name>

<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
distribute symmetric "sender keys" over existing 1:1
secure channels, and then for each member to send messages to the
group encrypted with their own sender key. On the one hand, using sender keys
improves efficiency relative to pairwise transmission of individual messages, and
it provides forward secrecy (with the addition of a hash ratchet).
On the other hand, it is difficult to achieve post-compromise security with
sender keys, requiring a number of key update messages that scales as the square
of the group size.
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-18</t>

<t><list style="symbols">
  <t>Make the document standards track</t>
  <t>Make the ratchet tree non-malleable (*)</t>
  <t>Use ExpandWithLabel to derive welcome key (*)</t>
  <t>Change MLS-Exporter label from "exporter" to "exported" (*)</t>
  <t>Loosen chain requirements (*)</t>
  <t>Clarify transcript hash initialization</t>
  <t>GREASE for MLS registries</t>
  <t>Move pseudocode out of KDFLabel definition.</t>
  <t>Rename PrivateContentTBE to PrivateMessageContent</t>
  <t>Fix DecryptWithLabel argument order for Welcome</t>
  <t>Responses to IESG reviews</t>
  <t>Describe varint length check more clearly</t>
</list></t>

<t>draft-17</t>

<t><list style="symbols">
  <t>Rename MLSCiphertext and MLSPlaintext to PrivateMessage and PublicMesssage respectively (*)</t>
  <t>Add label and context to public-key encryption (*)</t>
  <t>Include leaf index in LeafNodeTBS for better parent-hash guarantees (*)</t>
  <t>Make ProtocolVersion two bytes (*)</t>
  <t>Clarify group creation (*)</t>
  <t>Validate additional properties of unmerged leaves (*)</t>
  <t>Clarify that the AS needs to vet the signature key</t>
  <t>Remove "MLS" prefix on structs</t>
  <t>Credentials should be replaced before expiring</t>
  <t>Add a section discussing the security of the sender data protection</t>
  <t>Minor fixes in presentation language.</t>
  <t>Allow multiple welcomes per commit</t>
  <t>Remove reference to BasicCredential.</t>
  <t>Client aware of its own removal in group</t>
  <t>Create IANA registries for signature and export labels</t>
  <t>Complete IANA media type registration</t>
  <t>Make more vendor code points available</t>
  <t>Update Recommended column definition to match 8447bis</t>
  <t>Responses to early ARTART review</t>
  <t>Responses to early OPSDIR review</t>
  <t>Responses to early TSV-ART review</t>
</list></t>

<t>draft-16</t>

<t><list style="symbols">
  <t>Fix GroupInfoTBS (*)</t>
  <t>Make reference to h2 informative</t>
</list></t>

<t>draft-15</t>

<t><list style="symbols">
  <t>Include ciphersuite in group context (*)</t>
  <t>Add new new_proposal_member SenderType (*)</t>
  <t>Always use a full tree (*)</t>
  <t>Change KeyPackage identifier extension to be LeafNode identifier (*)</t>
  <t>Use new tree for context in path secret encryption (*)</t>
  <t>Use a hash function for hash identifiers (*)</t>
  <t>Add a marker byte to tree hash input structs (*)</t>
  <t>Recommend that group ids are generated randomly (*)</t>
  <t>Update external senders extension to have SignaturePublicKey and Credential (*)</t>
  <t>Replace LeafNodeRef with leaf index (*)</t>
  <t>Remove AppAck proposal (*)</t>
  <t>Make padding arbitrary-size and all-zero (*)</t>
  <t>Require that unmerged_leaves be ordered</t>
  <t>Derive the commit secret from the end of the UpdatePath, not the root</t>
  <t>Specify the precise points in the protocol where credential validation must be done</t>
  <t>Make PSK provisions more uniform, e.g., always generating a fresh random nonce</t>
  <t>Improve parent hash guarantees with stricter checks on tree correctness</t>
  <t>Streamline some structs, e.g., folding GroupContext into GroupInfo</t>
  <t>Provide clearer rules for validating and applying commits</t>
  <t>Clarify tree hash and parent hash, and correct examples</t>
  <t>Clean up struct names and references to outdated structs</t>
  <t>Cite AEAD limits draft</t>
</list></t>

<t>draft-14</t>

<t><list style="symbols">
  <t>Ensure that a signature public key is always intelligible (*)</t>
  <t>Clean up terminology of derived secrets/keys</t>
  <t>Fix parent hash (*)</t>
  <t>Specify compatibility behavior around new credentials</t>
  <t>Add Path Required to Proposal Type template</t>
  <t>Sub-group branching requires fresh key packages for each member</t>
  <t>Use <spanx style="verb">aasvg</spanx> and typed code blocks</t>
  <t>Require init key and leaf key to be different</t>
  <t>Preconfigured senders extension and removal of signature key indirection</t>
</list></t>

<t>draft-13</t>

<t><list style="symbols">
  <t>TLS syntax updates (including variable-header-length vectors) (*)</t>
  <t>Stop generating redundant PKE key pairs. (*)</t>
  <t>Move validation of identity change to the AS</t>
  <t>Add message/mls MIME type registration</t>
  <t>Split LeafNode from KeyPackage (*)</t>
  <t>Remove endpoint_id (*)</t>
  <t>Reorganize to make section layout more sane</t>
  <t>Forbid proposals by reference in external commits (*)</t>
  <t>Domain separation for KeyPackage and Proposal references (*)</t>
  <t>Downgrade MUST to SHOULD for commit senders including all valid commits</t>
  <t>Stronger parent hashes for authenticated identities (*)</t>
  <t>Move wire_format to a separate tagged-union structure MLSMessage</t>
  <t>Generalize tree extend/truncate algorithms</t>
  <t>Add algorithms for link-based trees</t>
  <t>Forbid self-Update entirely (*)</t>
  <t>Consolidate resumption PSK cases (*)</t>
  <t>384 Ciphersuite Addition</t>
  <t>Remove explicit version pin on HPKE (*)</t>
  <t>Remove the requirement for Add in external commit (*)</t>
  <t>Use smaller, fixed-size hash-based identifiers (*)</t>
  <t>Be explicit that Credentials can attest to multiple identities (*)</t>
</list></t>

<t>draft-12</t>

<t><list style="symbols">
  <t>Use the GroupContext to derive the joiner_secret (*)</t>
  <t>Make PreSharedKeys non optional in GroupSecrets (*)</t>
  <t>Update name for this particular key (*)</t>
  <t>Truncate tree size on removal (*)</t>
  <t>Use HPKE draft-08 (*)</t>
  <t>Clarify requirements around identity in MLS groups (*)</t>
  <t>Signal the intended wire format for MLS messages (*)</t>
  <t>Inject GroupContext as HPKE info instead of AAD (*)</t>
  <t>Clarify extension handling and make extension updatable (*)</t>
  <t>Improve extensibility of Proposals (*)</t>
  <t>Constrain proposal in External Commit (*)</t>
  <t>Remove the notion of a 'leaf index' (*)</t>
  <t>Add group_context_extensions proposal ID (*)</t>
  <t>Add RequiredCapabilities extension (*)</t>
  <t>Use cascaded KDF instead of concatenation to consolidate PSKs (*)</t>
  <t>Use key package hash to index clients in message structs (*)</t>
  <t>Don't require PublicGroupState for external init (*)</t>
  <t>Make ratchet tree section clearer.</t>
  <t>Handle non-member sender cases in MLSPlaintextTBS</t>
  <t>Clarify encoding of signatures with NIST curves</t>
  <t>Remove OPEN ISSUEs and TODOs</t>
  <t>Normalize the description of the zero vector</t>
</list></t>

<t>draft-11</t>

<t><list style="symbols">
  <t>Include subtree keys in parent hash (*)</t>
  <t>Pin HPKE to draft-07 (*)</t>
  <t>Move joiner secret to the end of the first key schedule epoch (*)</t>
  <t>Add an AppAck proposal</t>
  <t>Make initializations of transcript hashes consistent</t>
</list></t>

<t>draft-10</t>

<t><list style="symbols">
  <t>Allow new members to join via an external Commit (*)</t>
  <t>Enable proposals to be sent inline in a Commit (*)</t>
  <t>Re-enable constant-time Add (*)</t>
  <t>Change expiration extension to lifetime extension (*)</t>
  <t>Make the tree in the Welcome optional (*)</t>
  <t>PSK injection, re-init, sub-group branching (*)</t>
  <t>Require the initial init_secret to be a random value (*)</t>
  <t>Remove explicit sender data nonce (*)</t>
  <t>Do not encrypt to joiners in UpdatePath generation (*)</t>
  <t>Move MLSPlaintext signature under the confirmation tag (*)</t>
  <t>Explicitly authenticate group membership with MLSPLaintext (*)</t>
  <t>Clarify X509Credential structure (*)</t>
  <t>Remove unneeded interim transcript hash from GroupInfo (*)</t>
  <t>IANA considerations</t>
  <t>Derive an authentication secret</t>
  <t>Use Extract/Expand from HPKE KDF</t>
  <t>Clarify that application messages MUST be encrypted</t>
</list></t>

<t>draft-09</t>

<t><list style="symbols">
  <t>Remove blanking of nodes on Add (*)</t>
  <t>Change epoch numbers to uint64 (*)</t>
  <t>Add PSK inputs (*)</t>
  <t>Add key schedule exporter (*)</t>
  <t>Sign the updated direct path on Commit, using "parent hashes" and one
signature per leaf (*)</t>
  <t>Use structured types for external senders (*)</t>
  <t>Redesign Welcome to include confirmation and use derived keys (*)</t>
  <t>Remove ignored proposals (*)</t>
  <t>Always include an Update with a Commit (*)</t>
  <t>Add per-message entropy to guard against nonce reuse (*)</t>
  <t>Use the same hash ratchet construct for both application and handshake keys (*)</t>
  <t>Add more ciphersuites</t>
  <t>Use HKDF to derive key pairs (*)</t>
  <t>Mandate expiration of ClientInitKeys (*)</t>
  <t>Add extensions to GroupContext and flesh out the extensibility story (*)</t>
  <t>Rename ClientInitKey to KeyPackage</t>
</list></t>

<t>draft-08</t>

<t><list style="symbols">
  <t>Change ClientInitKeys so that they only refer to one ciphersuite (*)</t>
  <t>Decompose group operations into Proposals and Commits (*)</t>
  <t>Enable Add and Remove proposals from outside the group (*)</t>
  <t>Replace Init messages with multi-recipient Welcome message (*)</t>
  <t>Add extensions to ClientInitKeys for expiration and downgrade resistance (*)</t>
  <t>Allow multiple Proposals and a single Commit in one MLSPlaintext (*)</t>
</list></t>

<t>draft-07</t>

<t><list style="symbols">
  <t>Initial version of the Tree based Application Key Schedule (*)</t>
  <t>Initial definition of the Init message for group creation (*)</t>
  <t>Fix issue with the transcript used for newcomers (*)</t>
  <t>Clarifications on message framing and HPKE contexts (*)</t>
</list></t>

<t>draft-06</t>

<t><list style="symbols">
  <t>Reorder blanking and update in the Remove operation (*)</t>
  <t>Rename the GroupState structure to GroupContext (*)</t>
  <t>Rename UserInitKey to ClientInitKey</t>
  <t>Resolve the circular dependency that draft-05 introduced in the
confirmation MAC calculation (*)</t>
  <t>Cover the entire MLSPlaintext in the transcript hash (*)</t>
</list></t>

<t>draft-05</t>

<t><list style="symbols">
  <t>Common framing for handshake and application messages (*)</t>
  <t>Handshake message encryption (*)</t>
  <t>Convert from literal state to a commitment via the "tree hash" (*)</t>
  <t>Add credentials to the tree and remove the "roster" concept (*)</t>
  <t>Remove the secret field from tree node values</t>
</list></t>

<t>draft-04</t>

<t><list style="symbols">
  <t>Updating the language to be similar to the Architecture document</t>
  <t>ECIES is now renamed in favor of HPKE (*)</t>
  <t>Using a KDF instead of a Hash in TreeKEM (*)</t>
</list></t>

<t>draft-03</t>

<t><list style="symbols">
  <t>Added ciphersuites and signature schemes (*)</t>
  <t>Re-ordered fields in UserInitKey to make parsing easier (*)</t>
  <t>Fixed inconsistencies between Welcome and GroupState (*)</t>
  <t>Added encryption of the Welcome message (*)</t>
</list></t>

<t>draft-02</t>

<t><list style="symbols">
  <t>Removed ART (*)</t>
  <t>Allowed partial trees to avoid double-joins (*)</t>
  <t>Added explicit key confirmation (*)</t>
</list></t>

<t>draft-01</t>

<t><list style="symbols">
  <t>Initial description of the Message Protection mechanism. (*)</t>
  <t>Initial specification proposal for the Application Key Schedule
using the per-participant chaining of the Application Secret design. (*)</t>
  <t>Initial specification proposal for an encryption mechanism to protect
Application Messages using an AEAD scheme. (*)</t>
  <t>Initial specification proposal for an authentication mechanism
of Application Messages using signatures. (*)</t>
  <t>Initial specification proposal for a padding mechanism to improving
protection of Application Messages against traffic analysis. (*)</t>
  <t>Inversion of the Group Init Add and Application Secret derivations
in the Handshake Key Schedule to be ease chaining in case we switch
design. (*)</t>
  <t>Removal of the UserAdd construct and split of GroupAdd into Add
and Welcome messages (*)</t>
  <t>Initial proposal for authenticating handshake messages by signing
over group state and including group state in the key schedule (*)</t>
  <t>Added an appendix with example code for tree math</t>
  <t>Changed the ECIES mechanism used by TreeKEM so that it uses nonces
generated from the shared secret</t>
</list></t>

<t>draft-00</t>

<t><list style="symbols">
  <t>Initial adoption of draft-barnes-mls-protocol-01 as a WG item.</t>
</list></t>

</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 clients 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>Group Context:</dt>
  <dd>
    <t>An object that summarizes the shared, public state of the group. The group
context is typically distributed in a signed GroupInfo message, which is provided
to new members to help them join a group.</t>
  </dd>
  <dt>Signature Key:</dt>
  <dd>
    <t>A signing key pair used to authenticate the sender of a message.</t>
  </dd>
  <dt>Proposal:</dt>
  <dd>
    <t>A message that proposes a change to the group, e.g., adding or removing a
member.</t>
  </dd>
  <dt>Commit:</dt>
  <dd>
    <t>A message that implements the changes to the group proposed in a set of
Proposals.</t>
  </dd>
  <dt>PublicMessage:</dt>
  <dd>
    <t>An MLS protocol message that is signed by its sender and authenticated as
coming from a member of the group in a particular epoch, but not encrypted.</t>
  </dd>
  <dt>PrivateMessage:</dt>
  <dd>
    <t>An MLS protocol message that is both signed by its sender, authenticated as
coming from a member of the group in a particular epoch, and encrypted so
that it is confidential to the members of the group in that epoch.</t>
  </dd>
  <dt>Handshake Message:</dt>
  <dd>
    <t>A PublicMessage or PrivateMessage carrying an MLS Proposal or Commit
object, as opposed to application data.</t>
  </dd>
  <dt>Application Message:</dt>
  <dd>
    <t>A PrivateMessage carrying application data.</t>
  </dd>
</dl>

<t>Terminology specific to tree computations is described in
<xref target="ratchet-tree-terminology"/>.</t>

<t>In general, symmetric values are referred to as "keys" or "secrets"
interchangeably.  Either term denotes a value that MUST be kept confidential to
a Client.  When labeling individual values, we typically use "secret" to refer
to a value that is used derive further secret values, and "key" to refer to a
value that is used with an algorithm such as HMAC or an AEAD algorithm.</t>

<t>The PublicMessage and PrivateMessage formats are defined in <xref target="message-framing"/>.
Security notions such as forward secrecy and post-compromise
security are defined in <xref target="security-considerations"/>.</t>

<t>As detailed in <xref target="grease"/>, MLS uses the "Generate Random Extensions And Sustain
Extensibility" (GREASE) approach to maintaining extensibility, where senders insert random
values into fields in which receivers are required to ignore unknown values.
Specific "GREASE values" for this purpose are registered in the appropriate IANA
registries.</t>

<section anchor="presentation-language"><name>Presentation Language</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>

<figure><sourcecode type="tls"><![CDATA[
struct {
    uint8 present;
    select (present) {
        case 0: struct{};
        case 1: T value;
    };
} optional<T>;
]]></sourcecode></figure>

</section>
<section anchor="variable-size-vector-length-headers"><name>Variable-size Vector Length 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 <spanx style="verb">V</spanx>. For example:</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    uint32 fixed<0..255>;
    opaque variable<V>;
} StructWithVectors;
]]></sourcecode></figure>

<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, so that the
overall value is 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>

<texttable title="Summary of Integer Encodings" anchor="integer-summary">
      <ttcol align='left'>Prefix</ttcol>
      <ttcol align='left'>Length</ttcol>
      <ttcol align='left'>Usable Bits</ttcol>
      <ttcol align='left'>Min</ttcol>
      <ttcol align='left'>Max</ttcol>
      <c>00</c>
      <c>1</c>
      <c>6</c>
      <c>0</c>
      <c>63</c>
      <c>01</c>
      <c>2</c>
      <c>14</c>
      <c>64</c>
      <c>16383</c>
      <c>10</c>
      <c>4</c>
      <c>30</c>
      <c>16384</c>
      <c>1073741823</c>
      <c>11</c>
      <c>invalid</c>
      <c>-</c>
      <c>-</c>
      <c>-</c>
</texttable>

<t>Vectors that start with "11" prefix are invalid and MUST be rejected.</t>

<t>For example:</t>

<t><list style="symbols">
  <t>The four byte length value 0x9d7f3e7d decodes to 494878333.</t>
  <t>The two byte length value 0x7bbd decodes to 15293.</t>
  <t>The single byte length value 0x25 decodes to 37.</t>
</list></t>

<t>The following figure adapts the pseudocode provided in <xref target="RFC9000"/> to add a
check for minimum-length encoding:</t>

<figure><sourcecode type="pseudocode"><![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
  if prefix == 3:
    raise Exception('invalid variable length integer prefix')

  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()

  // Check if the value would fit in half the provided length.
  if prefix >= 1 && v < (1 << (8*(length/2) - 2)):
    raise Exception('minimum encoding was not used')

  return v
]]></sourcecode></figure>

<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
interoperability problems, implementations SHOULD provide a clear error when
such an overflow condition occurs.</t>

</section>
</section>
</section>
<section anchor="protocol-overview"><name>Protocol Overview</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>

<t><list style="symbols">
  <t>An Authentication Service (AS) that enables group members to authenticate the
credentials presented by other group members.</t>
  <t>A Delivery Service (DS) that routes MLS messages among the participants in the
protocol.</t>
</list></t>

<t>MLS assumes a trusted AS but a largely untrusted DS. <xref target="authentication-service-compromise"/>
describes the impact of compromise or
misbehavior of an AS. MLS is designed to protect the confidentiality and integrity of
the group data even in the face of a compromised DS;
in general, the DS is just expected to reliably deliver messages.
<xref target="delivery-service-compromise"/> describes the impact of compromise or
misbehavior of a DS.</t>

<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. That secret
can then be used to protect messages sent from one participant in the
group to the other participants using the MLS framing layer
or can be exported for use with other protocols. 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, and so on.</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>

<t><list style="symbols">
  <t>A <em>KeyPackage</em> object describes a client's capabilities and provides keys that
can be used to add the client to a group.</t>
  <t>A <em>Proposal</em> message proposes a change to be made in the next epoch, such as
adding or removing a member</t>
  <t>A <em>Commit</em> message initiates a new epoch by instructing members of the group
to implement a collection of proposals</t>
  <t>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</t>
</list></t>

<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. A client publishes a KeyPackage via the DS, thus enabling other
clients to add it to groups. When a group member wants to add a new member
to a group it uses the new member's KeyPackage to add the new member to
the group and construct a Welcome message with which the new member can
initialize its local state.</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:
A <em>PublicMessage</em> provides sender authentication for unencrypted Proposal and Commit
messages.  A <em>PrivateMessage</em> 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 title="Overview of MLS group evolution"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="400" width="584" viewBox="0 0 584 400" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 8,128 L 8,288" fill="none" stroke="black"/>
<path d="M 208,48 L 208,200" fill="none" stroke="black"/>
<path d="M 208,216 L 208,368" fill="none" stroke="black"/>
<path d="M 272,64 L 272,96" fill="none" stroke="black"/>
<path d="M 272,120 L 272,192" fill="none" stroke="black"/>
<path d="M 272,216 L 272,288" fill="none" stroke="black"/>
<path d="M 272,312 L 272,352" fill="none" stroke="black"/>
<path d="M 336,48 L 336,200" fill="none" stroke="black"/>
<path d="M 336,216 L 336,368" fill="none" stroke="black"/>
<path d="M 576,128 L 576,288" fill="none" stroke="black"/>
<path d="M 48,208 L 72,208" fill="none" stroke="black"/>
<path d="M 200,208 L 216,208" fill="none" stroke="black"/>
<path d="M 336,208 L 352,208" fill="none" stroke="black"/>
<path d="M 512,208 L 528,208" fill="none" stroke="black"/>
<path d="M 8,128 L 48,208" fill="none" stroke="black"/>
<path d="M 536,208 L 576,288" fill="none" stroke="black"/>
<path d="M 8,288 L 48,208" fill="none" stroke="black"/>
<path d="M 536,208 L 576,128" fill="none" stroke="black"/>
<path d="M 224,32 C 215.16936,32 208,39.16936 208,48" fill="none" stroke="black"/>
<path d="M 320,32 C 328.83064,32 336,39.16936 336,48" fill="none" stroke="black"/>
<path d="M 224,384 C 215.16936,384 208,376.83064 208,368" fill="none" stroke="black"/>
<path d="M 320,384 C 328.83064,384 336,376.83064 336,368" fill="none" stroke="black"/>
<polygon class="arrowhead" points="536,208 524,202.4 524,213.6 " fill="black" transform="rotate(0,528,208)"/>
<polygon class="arrowhead" points="360,208 348,202.4 348,213.6 " fill="black" transform="rotate(0,352,208)"/>
<polygon class="arrowhead" points="280,352 268,346.4 268,357.6 " fill="black" transform="rotate(90,272,352)"/>
<polygon class="arrowhead" points="280,288 268,282.4 268,293.6 " fill="black" transform="rotate(90,272,288)"/>
<polygon class="arrowhead" points="280,192 268,186.4 268,197.6 " fill="black" transform="rotate(90,272,192)"/>
<polygon class="arrowhead" points="280,96 268,90.4 268,101.6 " fill="black" transform="rotate(90,272,96)"/>
<polygon class="arrowhead" points="224,208 212,202.4 212,213.6 " fill="black" transform="rotate(0,216,208)"/>
<polygon class="arrowhead" points="80,208 68,202.4 68,213.6 " fill="black" transform="rotate(0,72,208)"/>
<g class="text">
<text x="272" y="36">...</text>
<text x="360" y="84">Key</text>
<text x="412" y="84">Schedule</text>
<text x="276" y="116">epoch_secret</text>
<text x="56" y="148">Ratchet</text>
<text x="532" y="148">Secret</text>
<text x="52" y="164">Tree</text>
<text x="532" y="164">Tree</text>
<text x="136" y="212">commit_secret</text>
<text x="276" y="212">epoch_secret</text>
<text x="432" y="212">encryption_secret</text>
<text x="276" y="308">epoch_secret</text>
<text x="272" y="388">...</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
                          .-    ...    -.
                         |               |
                         |       |       |
                         |       |       | Key Schedule
                         |       V       |
                         |  epoch_secret |
.                        |       |       |                             .
|\ Ratchet               |       |       |                     Secret /|
| \ Tree                 |       |       |                      Tree / |
|  \                     |       |       |                          /  |
|   \                    |       V       |                         /   |
|    +--> commit_secret --> epoch_secret --> encryption_secret -->+    |
|   /                    |       |       |                         \   |
|  /                     |       |       |                          \  |
| /                      |       |       |                           \ |
|/                       |       |       |                            \|
'                        |       V       |                             '
                         |  epoch_secret |
                         |       |       |
                         |       |       |
                         |       V       |
                         |               |
                          '-    ...    -'
]]></artwork></artset></figure>

<t><list style="symbols">
  <t>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>.</t>
  <t>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>), as well as the derivation of
a variety of other secrets (see <xref target="epoch-derived-secrets"/>), for example:
  <list style="symbols">
      <t>An <em>encryption secret</em> that is used to initialize the secret tree for the
epoch.</t>
      <t>An <em>exporter secret</em> that allows other protocols to leverage MLS as a
generic authenticated group key exchange.</t>
      <t>A <em>resumption secret</em> that members can use to prove their membership in the
group, e.g., when creating a subgroup or a successor group.</t>
    </list></t>
  <t>A <em>secret tree</em> derived from the key schedule that represents shared secrets
used by the members of the group for encrypting and authenticating messages.
Each epoch has a distinct secret tree.</t>
</list></t>

<t>Each member of the group maintains a partial view of these components 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 and not to members who have been removed. Commits thus maintain the property that
the epoch secret is confidential to the members in the current epoch.</t>

<t>For each Commit that adds one or more members to the group, there are one or more corresponding
Welcome messages.  Each Welcome message provides new members with the information
they need to initialize their views of the key schedule and ratchet tree, so
that these views align with the views held by other members of the group
in this 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>

<t><list style="symbols">
  <t>Adding a member, initiated by a current member;</t>
  <t>Updating the keys that represent a member in the tree;</t>
  <t>Removing a member.</t>
</list></t>

<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
PublicMessage or PrivateMessage objects.</t>

<t>Before the initialization of a group, clients publish KeyPackages to a directory
provided by the DS (see <xref target="prepublish-flow"/>).</t>

<figure title="Clients A, B, and C publish KeyPackages to the directory" anchor="prepublish-flow"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="288" width="568" viewBox="0 0 568 288" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 8,128 L 8,272" fill="none" stroke="black"/>
<path d="M 144,128 L 144,152" fill="none" stroke="black"/>
<path d="M 144,168 L 144,272" fill="none" stroke="black"/>
<path d="M 280,128 L 280,152" fill="none" stroke="black"/>
<path d="M 280,168 L 280,200" fill="none" stroke="black"/>
<path d="M 280,216 L 280,272" fill="none" stroke="black"/>
<path d="M 416,128 L 416,272" fill="none" stroke="black"/>
<path d="M 536,128 L 536,272" fill="none" stroke="black"/>
<path d="M 400,64 L 456,64" fill="none" stroke="black"/>
<path d="M 488,64 L 544,64" fill="none" stroke="black"/>
<path d="M 8,160 L 408,160" fill="none" stroke="black"/>
<path d="M 144,208 L 408,208" fill="none" stroke="black"/>
<path d="M 280,256 L 408,256" fill="none" stroke="black"/>
<path d="M 400,64 C 391.16936,64 384,71.16936 384,80" fill="none" stroke="black"/>
<path d="M 456,64 C 464.83064,64 472,56.83064 472,48" fill="none" stroke="black"/>
<path d="M 488,64 C 479.16936,64 472,56.83064 472,48" fill="none" stroke="black"/>
<path d="M 544,64 C 552.83064,64 560,71.16936 560,80" fill="none" stroke="black"/>
<polygon class="arrowhead" points="416,256 404,250.4 404,261.6 " fill="black" transform="rotate(0,408,256)"/>
<polygon class="arrowhead" points="416,208 404,202.4 404,213.6 " fill="black" transform="rotate(0,408,208)"/>
<polygon class="arrowhead" points="416,160 404,154.4 404,165.6 " fill="black" transform="rotate(0,408,160)"/>
<g class="text">
<text x="436" y="36">Delivery</text>
<text x="504" y="36">Service</text>
<text x="528" y="100">Group</text>
<text x="8" y="116">A</text>
<text x="144" y="116">B</text>
<text x="280" y="116">C</text>
<text x="416" y="116">Directory</text>
<text x="536" y="116">Channel</text>
<text x="64" y="148">KeyPackageA</text>
<text x="200" y="196">KeyPackageB</text>
<text x="336" y="244">KeyPackageC</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
                                                  Delivery Service
                                                          |
                                                .--------' '--------.
                                               |                     |
                                                               Group
A                B                C            Directory       Channel
|                |                |                |              |
| KeyPackageA    |                |                |              |
+------------------------------------------------->|              |
|                |                |                |              |
|                | KeyPackageB    |                |              |
|                +-------------------------------->|              |
|                |                |                |              |
|                |                | KeyPackageC    |              |
|                |                +--------------->|              |
|                |                |                |              |
]]></artwork></artset></figure>

<t><xref target="create-flow"/> shows how these prepublished KeyPackages are used to create a group.
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 Delivery Service does it update its
state to reflect the new member's addition.</t>

<t>Once A has updated its state, the new member has processed the Welcome, and any
other group members have processed the Commit, they will all have consistent
representations of the group state, including a group secret that is known only
to the members the group. The new member will be able to read and send new
messages to the group, but messages sent before they were added to the group
will not be accessible.</t>

<figure title="Client A creates a group with clients B and C" anchor="create-flow"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="512" width="560" viewBox="0 0 560 512" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 8,64 L 8,496" fill="none" stroke="black"/>
<path d="M 128,104 L 128,152" fill="none" stroke="black"/>
<path d="M 128,168 L 128,264" fill="none" stroke="black"/>
<path d="M 128,280 L 128,344" fill="none" stroke="black"/>
<path d="M 128,360 L 128,392" fill="none" stroke="black"/>
<path d="M 128,408 L 128,456" fill="none" stroke="black"/>
<path d="M 128,472 L 128,496" fill="none" stroke="black"/>
<path d="M 248,104 L 248,152" fill="none" stroke="black"/>
<path d="M 248,168 L 248,264" fill="none" stroke="black"/>
<path d="M 248,280 L 248,344" fill="none" stroke="black"/>
<path d="M 248,360 L 248,456" fill="none" stroke="black"/>
<path d="M 368,64 L 368,152" fill="none" stroke="black"/>
<path d="M 368,168 L 368,264" fill="none" stroke="black"/>
<path d="M 368,280 L 368,344" fill="none" stroke="black"/>
<path d="M 368,360 L 368,456" fill="none" stroke="black"/>
<path d="M 528,64 L 528,496" fill="none" stroke="black"/>
<path d="M 16,96 L 368,96" fill="none" stroke="black"/>
<path d="M 8,160 L 520,160" fill="none" stroke="black"/>
<path d="M 8,208 L 120,208" fill="none" stroke="black"/>
<path d="M 16,272 L 528,272" fill="none" stroke="black"/>
<path d="M 8,352 L 520,352" fill="none" stroke="black"/>
<path d="M 8,400 L 240,400" fill="none" stroke="black"/>
<path d="M 16,464 L 528,464" fill="none" stroke="black"/>
<path d="M 136,480 L 528,480" fill="none" stroke="black"/>
<polygon class="arrowhead" points="528,352 516,346.4 516,357.6 " fill="black" transform="rotate(0,520,352)"/>
<polygon class="arrowhead" points="528,160 516,154.4 516,165.6 " fill="black" transform="rotate(0,520,160)"/>
<polygon class="arrowhead" points="248,400 236,394.4 236,405.6 " fill="black" transform="rotate(0,240,400)"/>
<polygon class="arrowhead" points="144,480 132,474.4 132,485.6 " fill="black" transform="rotate(180,136,480)"/>
<polygon class="arrowhead" points="128,208 116,202.4 116,213.6 " fill="black" transform="rotate(0,120,208)"/>
<polygon class="arrowhead" points="24,464 12,458.4 12,469.6 " fill="black" transform="rotate(180,16,464)"/>
<polygon class="arrowhead" points="24,272 12,266.4 12,277.6 " fill="black" transform="rotate(180,16,272)"/>
<polygon class="arrowhead" points="24,96 12,90.4 12,101.6 " fill="black" transform="rotate(180,16,96)"/>
<g class="text">
<text x="528" y="36">Group</text>
<text x="8" y="52">A</text>
<text x="128" y="52">B</text>
<text x="248" y="52">C</text>
<text x="368" y="52">Directory</text>
<text x="528" y="52">Channel</text>
<text x="128" y="68">|</text>
<text x="248" y="68">|</text>
<text x="132" y="84">KeyPackageB,</text>
<text x="232" y="84">KeyPackageC</text>
<text x="420" y="132">Add(A-&gt;AB)</text>
<text x="424" y="148">Commit(Add)</text>
<text x="68" y="196">Welcome(B)</text>
<text x="420" y="244">Add(A-&gt;AB)</text>
<text x="424" y="260">Commit(Add)</text>
<text x="428" y="324">Add(AB-&gt;ABC)</text>
<text x="424" y="340">Commit(Add)</text>
<text x="188" y="388">Welcome(C)</text>
<text x="428" y="436">Add(AB-&gt;ABC)</text>
<text x="424" y="452">Commit(Add)</text>
<text x="248" y="500">|</text>
<text x="368" y="500">|</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![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></artset></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 (see <xref target="update-flow"/>).
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 secrets corresponding to the sender's leaf in the tree.</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. Since the purpose of sending an Update is to proactively
constrain a compromise window, the right frequency is usually on the order of
hours or days, not milliseconds. For example, an application might send an
Update each time a member sends an application message after receiving from
other members, or daily if no application messages are sent.</t>

<t>The MLS architecture recommends that MLS be operated over a secure transport
(see <xref section="7.1" sectionFormat="of" target="I-D.ietf-mls-architecture"/>).  Such transport protocols
will typically provide functions such as congestion control that manage the
impact of an MLS-using application on other applications sharing the same
network.  Applications should take care that they do not send MLS messages at a
rate that will cause problems such as network congestion, especially if they are
not following the above recommendation (e.g., sending MLS directly over UDP instead).</t>

<figure title="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." anchor="update-flow"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="304" width="528" viewBox="0 0 528 304" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 8,64 L 8,288" fill="none" stroke="black"/>
<path d="M 128,64 L 128,120" fill="none" stroke="black"/>
<path d="M 128,136 L 128,200" fill="none" stroke="black"/>
<path d="M 128,248 L 128,288" fill="none" stroke="black"/>
<path d="M 248,64 L 248,88" fill="none" stroke="black"/>
<path d="M 248,152 L 248,200" fill="none" stroke="black"/>
<path d="M 248,264 L 248,288" fill="none" stroke="black"/>
<path d="M 368,64 L 368,88" fill="none" stroke="black"/>
<path d="M 368,168 L 368,200" fill="none" stroke="black"/>
<path d="M 488,64 L 488,288" fill="none" stroke="black"/>
<path d="M 128,96 L 480,96" fill="none" stroke="black"/>
<path d="M 16,128 L 488,128" fill="none" stroke="black"/>
<path d="M 136,144 L 488,144" fill="none" stroke="black"/>
<path d="M 256,160 L 488,160" fill="none" stroke="black"/>
<path d="M 8,208 L 480,208" fill="none" stroke="black"/>
<path d="M 16,240 L 488,240" fill="none" stroke="black"/>
<path d="M 136,256 L 488,256" fill="none" stroke="black"/>
<path d="M 256,272 L 488,272" fill="none" stroke="black"/>
<polygon class="arrowhead" points="488,208 476,202.4 476,213.6 " fill="black" transform="rotate(0,480,208)"/>
<polygon class="arrowhead" points="488,96 476,90.4 476,101.6 " fill="black" transform="rotate(0,480,96)"/>
<polygon class="arrowhead" points="264,272 252,266.4 252,277.6 " fill="black" transform="rotate(180,256,272)"/>
<polygon class="arrowhead" points="264,160 252,154.4 252,165.6 " fill="black" transform="rotate(180,256,160)"/>
<polygon class="arrowhead" points="144,256 132,250.4 132,261.6 " fill="black" transform="rotate(180,136,256)"/>
<polygon class="arrowhead" points="144,144 132,138.4 132,149.6 " fill="black" transform="rotate(180,136,144)"/>
<polygon class="arrowhead" points="24,240 12,234.4 12,245.6 " fill="black" transform="rotate(180,16,240)"/>
<polygon class="arrowhead" points="24,128 12,122.4 12,133.6 " fill="black" transform="rotate(180,16,128)"/>
<g class="text">
<text x="488" y="36">Group</text>
<text x="8" y="52">A</text>
<text x="128" y="52">B</text>
<text x="184" y="52">...</text>
<text x="248" y="52">Z</text>
<text x="368" y="52">Directory</text>
<text x="496" y="52">Channel</text>
<text x="176" y="84">Update(B)</text>
<text x="248" y="116">|</text>
<text x="368" y="116">|</text>
<text x="416" y="116">Update(B)</text>
<text x="64" y="196">Commit(Upd)</text>
<text x="128" y="228">|</text>
<text x="248" y="228">|</text>
<text x="368" y="228">|</text>
<text x="424" y="228">Commit(Upd)</text>
<text x="368" y="292">|</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
                                                          Group
A              B     ...      Z          Directory        Channel
|              |              |              |              |
|              | Update(B)    |              |              |
|              +------------------------------------------->|
|              |              |              | Update(B)    |
|<----------------------------------------------------------+
|              |<-------------------------------------------+
|              |              |<----------------------------+
|              |              |              |              |
| Commit(Upd)  |              |              |              |
+---------------------------------------------------------->|
|              |              |              | Commit(Upd)  |
|<----------------------------------------------------------+
|              |<-------------------------------------------+
|              |              |<----------------------------+
|              |              |              |              |
]]></artwork></artset></figure>

<t>Members are removed from the group in a similar way, as shown in <xref target="remove-flow"/>.
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 mechanisms.</t>

<figure title="Client Z removes client B from the group" anchor="remove-flow"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="240" width="520" viewBox="0 0 520 240" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 8,64 L 8,224" fill="none" stroke="black"/>
<path d="M 128,64 L 128,168" fill="none" stroke="black"/>
<path d="M 128,184 L 128,224" fill="none" stroke="black"/>
<path d="M 248,64 L 248,168" fill="none" stroke="black"/>
<path d="M 248,200 L 248,224" fill="none" stroke="black"/>
<path d="M 368,64 L 368,104" fill="none" stroke="black"/>
<path d="M 368,120 L 368,168" fill="none" stroke="black"/>
<path d="M 488,64 L 488,224" fill="none" stroke="black"/>
<path d="M 248,112 L 480,112" fill="none" stroke="black"/>
<path d="M 16,176 L 488,176" fill="none" stroke="black"/>
<path d="M 136,192 L 488,192" fill="none" stroke="black"/>
<path d="M 256,208 L 488,208" fill="none" stroke="black"/>
<polygon class="arrowhead" points="488,112 476,106.4 476,117.6 " fill="black" transform="rotate(0,480,112)"/>
<polygon class="arrowhead" points="264,208 252,202.4 252,213.6 " fill="black" transform="rotate(180,256,208)"/>
<polygon class="arrowhead" points="144,192 132,186.4 132,197.6 " fill="black" transform="rotate(180,136,192)"/>
<polygon class="arrowhead" points="24,176 12,170.4 12,181.6 " fill="black" transform="rotate(180,16,176)"/>
<g class="text">
<text x="488" y="36">Group</text>
<text x="8" y="52">A</text>
<text x="128" y="52">B</text>
<text x="184" y="52">...</text>
<text x="248" y="52">Z</text>
<text x="368" y="52">Directory</text>
<text x="488" y="52">Channel</text>
<text x="296" y="84">Remove(B)</text>
<text x="304" y="100">Commit(Rem)</text>
<text x="416" y="148">Remove(B)</text>
<text x="424" y="164">Commit(Rem)</text>
<text x="368" y="228">|</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
                                                          Group
A              B     ...      Z          Directory       Channel
|              |              |              |              |
|              |              | Remove(B)    |              |
|              |              | Commit(Rem)  |              |
|              |              +---------------------------->|
|              |              |              |              |
|              |              |              | Remove(B)    |
|              |              |              | Commit(Rem)  |
|<----------------------------------------------------------+
|              |<-------------------------------------------+
|              |              |<----------------------------+
|              |              |              |              |
]]></artwork></artset></figure>

<t>Note that the flows in this section are examples; applications can arrange
message flows in other ways.  For example:</t>

<t><list style="symbols">
  <t>Welcome messages don't necessarily need to be sent directly to new joiners.
Since they are encrypted to new joiners, they could be distributed more
broadly, say if the application only had access to a broadcast channel for the
group.</t>
  <t>Proposal messages don't need to be immediately sent to all group members.  They need to
be available to the committer before generating a commit, and to other members before
processing the commit.</t>
  <t>The sender of a Commit doesn't necessarily have to wait to receive its own
Commit back before advancing its state. It only needs to know that its Commit
will be the next one applied by the group, say based on a promise from an
orchestration server.</t>
</list></t>

</section>
<section anchor="external-joins"><name>External Joins</name>

<t>In addition to the Welcome-based flow for adding a new member to the group, it
is also possible for a new member to join by means of an "external Commit".
This mechanism can be used when the existing members don't have a KeyPackage for
the new member, for example, in the case of an "open" group that can be joined
by new members without asking permission from existing members.</t>

<t><xref target="groupinfo-flow"/> shows a typical  message flow for an external join. To enable
a new member to join the group in this way, a member of the group (A, B)
publishes a GroupInfo object that includes the GroupContext for the group as
well as a public key that can be used to encrypt a secret to the existing
members of the group.  When the new member Z wishes to join, they download the
GroupInfo object and use it to form a Commit of a special form that adds Z to
the group (as detailed in <xref target="joining-via-external-commits"/>).  The existing
members of the group process this external Commit in a similar way to a normal
Commit, advancing to a new epoch in which Z is now a member of the group.</t>

<figure title="Client A publishes a GroupInfo object and Client Z uses
it to join the group" anchor="groupinfo-flow"><artwork><![CDATA[
                                                          Group
A              B              Z          Directory        Channel
|              |              |              |              |
| GroupInfo    |              |              |              |
+------------------------------------------->|              |
|              |              | GroupInfo    |              |
|              |              |<-------------+              |
|              |              |              |              |
|              |              | Commit(ExtZ) |              |
|              |              +---------------------------->|
|              |              |              | Commit(ExtZ) |
|<----------------------------------------------------------+
|              |<-------------------------------------------+
|              |              |<----------------------------+
|              |              |              |              |
]]></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.  A group member that wishes to
inject a PSK issues a PreSharedKey proposal (<xref target="presharedkey"/>) describing the
PSK to be injected.  When this proposal is committed, the corresponding PSK will
be incorporated into the key schedule as described in <xref target="pre-shared-keys"/>.</t>

<t>Linking epochs in this way
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, illustrated in
<xref target="psk-reinit"/> and <xref target="psk-branch"/>. Reinitialization
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 title="Reinitializing a group" anchor="psk-reinit"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="240" width="272" viewBox="0 0 272 240" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 48,40 L 48,112" fill="none" stroke="black"/>
<path d="M 224,136 L 224,208" fill="none" stroke="black"/>
<path d="M 56,80 L 72,80" fill="none" stroke="black"/>
<polygon class="arrowhead" points="232,208 220,202.4 220,213.6 " fill="black" transform="rotate(90,224,208)"/>
<polygon class="arrowhead" points="64,80 52,74.4 52,85.6 " fill="black" transform="rotate(180,56,80)"/>
<polygon class="arrowhead" points="56,112 44,106.4 44,117.6 " fill="black" transform="rotate(90,48,112)"/>
<g class="text">
<text x="56" y="36">epoch_A_[n-1]</text>
<text x="108" y="84">ReInit</text>
<text x="48" y="132">epoch_A_[n]</text>
<text x="224" y="132">epoch_B_[0]</text>
<text x="48" y="148">.</text>
<text x="48" y="164">.</text>
<text x="136" y="164">PSK(usage=reinit)</text>
<text x="132" y="180">.....................&gt;</text>
<text x="224" y="228">epoch_B_[1]</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
epoch_A_[n-1]
     |
     |
     |<-- ReInit
     |
     V
epoch_A_[n]           epoch_B_[0]
     .                     |
     .  PSK(usage=reinit)  |
     .....................>|
                           |
                           V
                      epoch_B_[1]
]]></artwork></artset></figure>

<figure title="Branching a group" anchor="psk-branch"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="144" width="272" viewBox="0 0 272 144" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 48,40 L 48,112" fill="none" stroke="black"/>
<path d="M 224,40 L 224,112" fill="none" stroke="black"/>
<polygon class="arrowhead" points="232,112 220,106.4 220,117.6 " fill="black" transform="rotate(90,224,112)"/>
<polygon class="arrowhead" points="56,112 44,106.4 44,117.6 " fill="black" transform="rotate(90,48,112)"/>
<g class="text">
<text x="48" y="36">epoch_A_[n]</text>
<text x="224" y="36">epoch_B_[0]</text>
<text x="136" y="68">PSK(usage=branch)</text>
<text x="136" y="84">....................&gt;</text>
<text x="56" y="132">epoch_A_[n+1]</text>
<text x="224" y="132">epoch_B_[1]</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
epoch_A_[n]           epoch_B_[0]
     |                     |
     |  PSK(usage=branch)  |
     |....................>|
     |                     |
     V                     V
epoch_A_[n+1]         epoch_B_[1]
]]></artwork></artset></figure>

<t>Applications may also choose to use resumption PSKs to link epochs in other
ways.  For example, <xref target="psk-reinject"/> shows a case where a resumption PSK
from epoch <spanx style="verb">n</spanx> is injected into epoch <spanx style="verb">n+k</spanx>.  This demonstrates that the members
of the group at epoch <spanx style="verb">n+k</spanx> were also members at epoch <spanx style="verb">n</spanx>, irrespective of any
changes to these members' keys due to Updates or Commits.</t>

<figure title="Reinjecting entropy from an earlier epoch" anchor="psk-reinject"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="304" width="248" viewBox="0 0 248 304" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 48,40 L 48,176" fill="none" stroke="black"/>
<path d="M 48,200 L 48,272" fill="none" stroke="black"/>
<polygon class="arrowhead" points="56,272 44,266.4 44,277.6 " fill="black" transform="rotate(90,48,272)"/>
<polygon class="arrowhead" points="56,176 44,170.4 44,181.6 " fill="black" transform="rotate(90,48,176)"/>
<g class="text">
<text x="48" y="36">epoch_A_[n]</text>
<text x="156" y="68">PSK(usage=application)</text>
<text x="136" y="84">.....................</text>
<text x="216" y="100">.</text>
<text x="216" y="116">.</text>
<text x="40" y="132">.</text>
<text x="56" y="132">.</text>
<text x="216" y="132">...</text>
<text x="216" y="148">.</text>
<text x="216" y="164">.</text>
<text x="216" y="180">.</text>
<text x="64" y="196">epoch_A_[n+k-1]</text>
<text x="216" y="196">.</text>
<text x="216" y="212">.</text>
<text x="216" y="228">.</text>
<text x="136" y="244">&lt;....................</text>
<text x="56" y="292">epoch_A_[n+k]</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
epoch_A_[n]
     |
     |  PSK(usage=application)
     |.....................
     |                    .
     |                    .
    ...                  ...
     |                    .
     |                    .
     V                    .
epoch_A_[n+k-1]           .
     |                    .
     |                    .
     |<....................
     |
     V
epoch_A_[n+k]
]]></artwork></artset></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 <spanx style="verb">log(N)</spanx> encryptions to subtrees, instead of the <spanx style="verb">N-1</spanx>
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>Every tree used in this protocol is a perfect binary tree, that is, a complete
balanced binary tree with <spanx style="verb">2^d</spanx> leaves all at the same depth <spanx style="verb">d</spanx>.  This
structure is unique for a given depth <spanx style="verb">d</spanx>.</t>

<t>There are multiple ways that an implementation might represent a ratchet tree in
memory.  A convenient property of left-balanced binary trees (including the
complete trees used here) is that they can be represented as an array of nodes,
with node relationships computed based on the nodes' indices in the array.  A
more traditional representation based on linked node objects may also 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 anchor="ratchet-tree-nodes"><name>Ratchet Tree Nodes</name>

<t>Each leaf node in a ratchet tree is given an <em>index</em> (or <em>leaf index</em>), starting
at <spanx style="verb">0</spanx> from the left to <spanx style="verb">2^d - 1</spanx> at the right (for a tree with <spanx style="verb">2^d</spanx> leaves). A tree
with <spanx style="verb">2^d</spanx> leaves has <spanx style="verb">2^(d+1) - 1</spanx> nodes, including parent nodes.</t>

<t>Each node in a ratchet tree is either <em>blank</em> (containing no value) or it holds
an HPKE public key with some associated data:</t>

<t><list style="symbols">
  <t>A public key (for the HPKE scheme in use, see <xref target="ciphersuites"/>)</t>
  <t>A credential (only for leaf nodes, see <xref target="credentials"/>)</t>
  <t>An ordered list of "unmerged" leaves (see <xref target="views"/>)</t>
  <t>A hash of certain information about the node's parent, as of the last time the
node was changed (see <xref target="parent-hashes"/>).</t>
</list></t>

<t>As described in <xref target="views"/>, different members know different subsets of the set
of private keys corresponding to the public keys in nodes in the tree.  The
private key corresponding to a parent node is known only to members at leaf
nodes that are descedants of that node.  The private key corresponding to a leaf
node is known only to the member at that leaf node.  A leaf node is <em>unmerged</em>
relative to one of its ancestor nodes if the member at the leaf node does not
know the private key corresponding to the ancestor node.</t>

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

<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 the root contains the set of keys which are collectively necessary to
encrypt to every node in the group. The resolution
of a node is effectively a depth-first, left-first enumeration of the nearest
non-blank nodes below the node:</t>

<t><list style="symbols">
  <t>The resolution of a non-blank node comprises the node itself,
followed by its list of unmerged leaves, if any</t>
  <t>The resolution of a blank leaf node is the empty list</t>
  <t>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</t>
</list></t>

<t>For example, consider the following subtree, where the <spanx style="verb">_</spanx> character
represents a blank node and unmerged leaves are indicated in square
brackets:</t>

<figure title="A tree with blanks and unmerged leaves" anchor="resolution-tree"><artwork type="ascii-art"><![CDATA[
               ...
               /
              _
        ______|______
       /             \
      X[B]            _
    __|__           __|__
   /     \         /     \
  _       _       Y       _
 / \     / \     / \     / \
A   B   _   D   E   F   _   H

0   1   2   3   4   5   6   7
]]></artwork></figure>

<t>In this tree, we can see all of the above rules in play:</t>

<t><list style="symbols">
  <t>The resolution of node X is the list [X, B]</t>
  <t>The resolution of leaf 2 or leaf 6 is the empty list []</t>
  <t>The resolution of top node is the list [X, B, Y, H]</t>
</list></t>

</section>
<section anchor="paths-through-a-ratchet-tree"><name>Paths through a Ratchet Tree</name>

<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.</t>

<t>The <em>copath</em> of a node is the node's sibling concatenated with the list of
siblings of all the nodes in its direct path, excluding the root.</t>

<t>The <em>filtered direct path</em> of a leaf node L is the node's direct path, with any
node removed whose child on the copath of L has an empty resolution (keeping in
mind that any unmerged leaves of the copath child count toward its resolution).
The removed nodes do not need their own key pairs because encrypting to the
node's key pair would be equivalent to encrypting to its non-copath child.</t>

<t>For example, consider the following tree (where blank nodes are indicated with
<spanx style="verb">_</spanx>, but also assigned a label for reference):</t>

<figure title="A complete tree with five members, with labels for blank
parent nodes" anchor="full-tree"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="240" width="256" viewBox="0 0 256 240" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 56,104 L 56,128" fill="none" stroke="black"/>
<path d="M 120,48 L 120,64" fill="none" stroke="black"/>
<path d="M 184,112 L 184,128" fill="none" stroke="black"/>
<path d="M 72,64 L 168,64" fill="none" stroke="black"/>
<path d="M 40,128 L 72,128" fill="none" stroke="black"/>
<path d="M 168,128 L 200,128" fill="none" stroke="black"/>
<path d="M 72,128 L 80,144" fill="none" stroke="black"/>
<path d="M 92,168 L 96,176" fill="none" stroke="black"/>
<path d="M 168,64 L 176,80" fill="none" stroke="black"/>
<path d="M 200,128 L 208,144" fill="none" stroke="black"/>
<path d="M 220,168 L 224,176" fill="none" stroke="black"/>
<path d="M 32,144 L 40,128" fill="none" stroke="black"/>
<path d="M 64,80 L 72,64" fill="none" stroke="black"/>
<path d="M 80,176 L 84,168" fill="none" stroke="black"/>
<path d="M 160,144 L 168,128" fill="none" stroke="black"/>
<path d="M 208,176 L 212,168" fill="none" stroke="black"/>
<g class="text">
<text x="120" y="36">W</text>
<text x="136" y="36">=</text>
<text x="164" y="36">root</text>
<text x="64" y="100">_=U</text>
<text x="184" y="100">Y</text>
<text x="24" y="164">T</text>
<text x="96" y="164">_=V</text>
<text x="152" y="164">X</text>
<text x="224" y="164">_=Z</text>
<text x="16" y="180">/</text>
<text x="32" y="180">\</text>
<text x="144" y="180">/</text>
<text x="160" y="180">\</text>
<text x="8" y="196">A</text>
<text x="40" y="196">B</text>
<text x="72" y="196">_</text>
<text x="104" y="196">_</text>
<text x="136" y="196">E</text>
<text x="168" y="196">F</text>
<text x="200" y="196">G</text>
<text x="240" y="196">_=H</text>
<text x="8" y="228">0</text>
<text x="40" y="228">1</text>
<text x="72" y="228">2</text>
<text x="104" y="228">3</text>
<text x="136" y="228">4</text>
<text x="168" y="228">5</text>
<text x="200" y="228">6</text>
<text x="232" y="228">7</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
              W = root
              |
        .-----+-----.
       /             \
      _=U             Y
      |               |
    .-+-.           .-+-.
   /     \         /     \
  T       _=V     X       _=Z
 / \     / \     / \     / \
A   B   _   _   E   F   G   _=H

0   1   2   3   4   5   6   7
]]></artwork></artset></figure>

<t>In this tree, the direct paths, copaths, and filtered direct paths for the leaf
nodes are as follows:</t>

<texttable>
      <ttcol align='left'>Node</ttcol>
      <ttcol align='left'>Direct path</ttcol>
      <ttcol align='left'>Copath</ttcol>
      <ttcol align='left'>Filtered Direct Path</ttcol>
      <c>A</c>
      <c>T, U, W</c>
      <c>B, V, Y</c>
      <c>T, W</c>
      <c>B</c>
      <c>T, U, W</c>
      <c>A, V, Y</c>
      <c>T, W</c>
      <c>E</c>
      <c>X, Y, W</c>
      <c>F, Z, U</c>
      <c>X, Y, W</c>
      <c>F</c>
      <c>X, Y, W</c>
      <c>E, Z, U</c>
      <c>X, Y, W</c>
      <c>G</c>
      <c>Z, Y, W</c>
      <c>H, X, U</c>
      <c>Y, W</c>
</texttable>

</section>
</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>

<figure><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></figure>

<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 key of
an intermediate node above them.  Such a member has an <em>unmerged</em> leaf at the
intermediate node.  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 with regard to all of its ancestors when it is
first added, because the process of adding the leaf does not give it access to
the private keys for 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 <spanx style="verb">_</spanx>
represents a blank node, <spanx style="verb">?</spanx> represents an unknown private key, and <spanx style="verb">pk(X)</spanx>
represents the public key corresponding to the private key <spanx style="verb">X</spanx>:</t>

<figure><artwork type="ascii-art"><![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></figure>

<t>Note how the tree invariant applies: Each member knows only their own leaf,
the private key AB is known only to A and B, and the private key ABCD
is known to all four members. This also illustrates another important
point: it is possible for there to be "holes" on the path from a member's leaf
to the root in which the member knows the key both above and below
a given node, but not for that node, as in the case with D.</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>

<t><list style="symbols">
  <t>HPKE parameters:
  <list style="symbols">
      <t>A Key Encapsulation Mechanism (KEM)</t>
      <t>A Key Derivation Function (KDF)</t>
      <t>An Authenticated Encryption with Associated Data (AEAD) encryption algorithm</t>
    </list></t>
  <t>A hash algorithm</t>
  <t>A MAC algorithm</t>
  <t>A signature algorithm</t>
</list></t>

<t>MLS uses HPKE for public-key encryption <xref target="RFC9180"/>.  The
<spanx style="verb">DeriveKeyPair</spanx> 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. The ciphersuites are
defined in <xref target="mls-ciphersuites"/>.</t>

<section anchor="public-keys"><name>Public Keys</name>

<t>HPKE public keys are opaque values in a format defined by the underlying
protocol (see Section 4 of <xref target="RFC9180"/> for more information).</t>

<figure><sourcecode type="tls"><![CDATA[
opaque HPKEPublicKey<V>;
]]></sourcecode></figure>

<t>Signature public keys are likewise represented as opaque values in a format
defined by the ciphersuite's signature scheme.</t>

<figure><sourcecode type="tls"><![CDATA[
opaque SignaturePublicKey<V>;
]]></sourcecode></figure>

<t>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, P-384, or P-521), the public key is represented as an
encoded UncompressedPointRepresentation struct, as defined in <xref target="RFC8446"/>.</t>

</section>
<section anchor="signing"><name>Signing</name>

<t>The signature algorithm specified in a group's ciphersuite is the mandatory algorithm
to be used for signing messages within the group.  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>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 <spanx style="verb">r</spanx> and <spanx style="verb">s</spanx> as specified in <xref target="RFC8032"/>.</t>

<t>To disambiguate different signatures used in MLS, each signed value is prefixed
by a label as shown below:</t>

<figure><sourcecode type="pseudocode"><![CDATA[
SignWithLabel(SignatureKey, Label, Content) =
    Signature.Sign(SignatureKey, SignContent)

VerifyWithLabel(VerificationKey, Label, Content, SignatureValue) =
    Signature.Verify(VerificationKey, SignContent, SignatureValue)
]]></sourcecode></figure>

<t>Where SignContent is specified as:</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    opaque label<V>;
    opaque content<V>;
} SignContent;
]]></sourcecode></figure>

<t>And its fields set to:</t>

<figure><sourcecode type="pseudocode"><![CDATA[
label = "MLS 1.0 " + Label;
content = Content;
]]></sourcecode></figure>

<t>Here, the functions <spanx style="verb">Signature.Sign</spanx> and <spanx style="verb">Signature.Verify</spanx> are defined by the
signature algorithm.  If MLS extensions require signatures by group members,
they should re-use the SignWithLabel construction, using a distinct label.  To
avoid collisions in these labels, an IANA registry is defined in
<xref target="mls-signature-labels"/>.</t>

</section>
<section anchor="public-key-encryption"><name>Public-Key Encryption</name>

<t>As with signing, MLS includes a label and context in encryption operations to
avoid confusion between ciphertexts produced for different purposes.  Encryption
and decryption including this label and context are done as follows:</t>

<figure><sourcecode type="pseudocode"><![CDATA[
EncryptWithLabel(PublicKey, Label, Context, Plaintext) =
  SealBase(PublicKey, EncryptContext, "", Plaintext)

DecryptWithLabel(PrivateKey, Label, Context, KEMOutput, Ciphertext) =
  OpenBase(KEMOutput, PrivateKey, EncryptContext, "", Ciphertext)
]]></sourcecode></figure>

<t>Where EncryptContext is specified as:</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
  opaque label<V>;
  opaque context<V>;
} EncryptContext;
]]></sourcecode></figure>

<t>And its fields set to:</t>

<figure><artwork><![CDATA[
label = "MLS 1.0 " + Label;
context = Context;
]]></artwork></figure>

<t>Here, the functions <spanx style="verb">SealBase</spanx> and <spanx style="verb">OpenBase</spanx> are defined <xref target="RFC9180"/>, using the
HPKE algorithms specified by the group's ciphersuite.  If MLS extensions
require HPKE encryption operations, they should re-use the EncryptWithLabel
construction, using a distinct label.  To avoid collisions in these labels, an
IANA registry is defined in <xref target="mls-public-key-encryption-labels"/>.</t>

</section>
</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>

<figure><sourcecode type="tls"><![CDATA[
opaque HashReference<V>;

HashReference KeyPackageRef;
HashReference ProposalRef;
]]></sourcecode></figure>

<figure><sourcecode type="pseudocode"><![CDATA[
MakeKeyPackageRef(value) = RefHash("MLS 1.0 KeyPackage Reference", value)
MakeProposalRef(value)   = RefHash("MLS 1.0 Proposal Reference", value)

RefHash(label, value) = Hash(RefHashInput)
]]></sourcecode></figure>

<t>Where RefHashInput is defined as:</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
  opaque label<V>;
  opaque value<V>;
} RefHashInput;
]]></sourcecode></figure>

<t>And its fields set to:</t>

<figure><sourcecode type="pseudocode"><![CDATA[
label = label;
value = value;
]]></sourcecode></figure>

<t>For a KeyPackageRef, the <spanx style="verb">value</spanx> input is the encoded KeyPackage, and the
ciphersuite specified in the KeyPackage determines the KDF used.  For a
ProposalRef, the <spanx style="verb">value</spanx> input is the AuthenticatedContent 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>Each member of a group presents a credential that provides one or more
identities for the member, and associates them with the member's signing key.
The identities and signing key are verified by the Authentication Service in use
for a group.</t>

<t>It is up to the application to decide which identifier or identifiers to use at
the application level.  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>

<figure><sourcecode type="tls"><![CDATA[
// See IANA registry for registered values
uint16 CredentialType;

struct {
    opaque cert_data<V>;
} Certificate;

struct {
    CredentialType credential_type;
    select (Credential.credential_type) {
        case basic:
            opaque identity<V>;

        case x509:
            Certificate certificates<V>;
    };
} Credential;
]]></sourcecode></figure>

<t>A "basic" credential is a bare assertion of an identity, without any additional
information.  The format of the encoded identity is defined by the application.</t>

<t>For an X.509 credential, each entry in the <spanx style="verb">certificates</spanx> field represents a single DER-encoded
X.509 certificate. The chain is ordered such that the first entry (certificates[0]) is
the end-entity certificate. The public key encoded in the
<spanx style="verb">subjectPublicKeyInfo</spanx> of the end-entity certificate MUST be identical to the
<spanx style="verb">signature_key</spanx> in the LeafNode containing this credential. A chain MAY omit any
non-leaf certificates that supported peers are known to already possess.</t>

<section anchor="credential-validation"><name>Credential Validation</name>

<t>The application using MLS is responsible for specifying which identifiers it
finds acceptable for each member in a group.  In other words, following the
model that <xref target="RFC6125"/> describes for TLS, the application maintains a list of
"reference identifiers" for the members of a group, and the credentials provide
"presented identifiers".  A member of a group is authenticated by first
validating that the member's credential legitimately represents some presented
identifiers, and then ensuring that the reference identifiers for the member are
authenticated by those presented identifiers.</t>

<t>The parts of the system that perform these functions are collectively referred
to as the Authentication Service (AS) <xref target="I-D.ietf-mls-architecture"/>.  A
member's credential is said to be <em>validated with the AS</em> when the AS verifies
that the credential's presented identifiers are correctly associated with the
<spanx style="verb">signature_key</spanx> field in the member's LeafNode, and verifies that those
identifiers match the reference identifiers for the member.</t>

<t>Whenever a new credential is introduced in the group, it MUST be validated with
the AS.  In particular, at the following events in the protocol:</t>

<t><list style="symbols">
  <t>When a member receives a KeyPackage that it will use in an Add proposal to add
a new member to the group.</t>
  <t>When a member receives a GroupInfo object that it will use to join a group,
either via a Welcome or via an External Commit</t>
  <t>When a member receives an Add proposal adding a member to the group.</t>
  <t>When a member receives an Update proposal whose LeafNode has a new credential
for the member.</t>
  <t>When a member receives a Commit with an UpdatePath whose LeafNode has a new
credential for the committer.</t>
  <t>When an <spanx style="verb">external_senders</spanx> extension is added to the group, or an existing
<spanx style="verb">external_senders</spanx> extension is updated.</t>
</list></t>

<t>In cases where a member's credential is being replaced, such as Update and
Commit cases above, the AS MUST also verify that the set of presented
identifiers in the new credential is valid as a successor to the set of
presented identifiers in the old credential, according to the application's
policy.</t>

</section>
<section anchor="credential-expiry-and-revocation"><name>Credential Expiry and Revocation</name>

<t>In some credential schemes, a valid credential can "expire", or become invalid
after a certain point in time. For example, each X.509 certificate has a
<spanx style="verb">notAfter</spanx> field, expressing a time after which the certificate is not valid.</t>

<t>Expired credentials can cause operational problems in light of the validation
requirements of <xref target="credential-validation"/>.  Applications can apply some
operational practices and adaptations to Authentication Service policies to
moderate these impacts.</t>

<t>In general, to avoid operational problems such as new joiners rejecting expired
credentials in a group, applications that use such credentials should ensure to
the extent practical that all of the credentials in use in a group are valid at
all times.</t>

<t>If a member finds that its credential has expired (or will soon), it should
issue an Update or Commit that replaces it with a valid credential.  For this
reason, members SHOULD accept Update proposals and Commits issued by members
with expired credentials, if the credential in the Update or Commit is valid.</t>

<t>Similarly, when a client is processing messages sent some time in the past
(e.g., syncing up with a group after being offline), the client SHOULD accept
signatures from members with expired credentials, since the credential may
have been valid at the time the message was sent.</t>

<t>If a member finds that another member's credential has expired, they may issue a
Remove that removes that member.  For example, an application could require a
member preparing to issue a Commit to check the tree for expired credentials and
include Remove proposals for those members in its Commit.  In situations where
the group tree is known to the DS, the DS could also monitor the tree for
expired credentials and issue external Remove proposals.</t>

<t>Some credential schemes also allow credentials to be revoked.  Revocation is
similar to expiry, in that a previously valid credential becomes invalid.
As such, most of the considerations above also apply to revoked credentials.
However, applications may want to treat revoked credentials differently, e.g.,
removing members with revoked credentials while allowing members with expired
credentials time to update.</t>

</section>
<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>Internally to the protocol, group members are uniquely identified by their leaf
index. However, a leaf index is only valid for referring to members in a given
epoch. The same leaf index may represent a different member, or no member at
all, in a subsequent epoch.</t>

<t>The Credentials presented by the clients in a group authenticate
application-level identifiers for the clients.  However, 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>If needed, applications may add application-specific identifiers to the
<spanx style="verb">extensions</spanx> field of a LeafNode object with the <spanx style="verb">application_id</spanx> extension.</t>

<figure><sourcecode type="tls"><![CDATA[
opaque application_id<V>;
]]></sourcecode></figure>

<t>However, applications MUST NOT rely on the data in an <spanx style="verb">application_id</spanx> extension
as if it were authenticated by the Authentication Service, and SHOULD gracefully
handle cases where the identifier presented is not unique.</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.</t>

<t>In most of the protocol, messages are handled in the form of
AuthenticatedContent objects.  These structures contain the content of the
message itself as well as information to authenticate the sender (see
<xref target="content-authentication"/>).  The additional protections required to transmit
these messages over an untrusted channel (group membership authentication or
AEAD encryption) are added by encoding the AuthenticatedContent as an
PublicMessage or PrivateMessage message, which can then be sent as an MLSMessage.
Likewise, these protections are enforced (via membership verification or AEAD
decryption) when decoding an PublicMessage or PrivateMessage into an
AuthenticatedContent object.</t>

<t>PrivateMessage represents a signed and encrypted message, with
protections for both the content of the message and related
metadata.  PublicMessage represents a message that is only signed,
and not encrypted.  Applications MUST use PrivateMessage to encrypt
application messages and SHOULD use PrivateMessage to encode
handshake messages, but MAY transmit handshake messages encoded
as PublicMessage objects in cases where it is necessary for the
Delivery Service to examine such messages.</t>

<figure><sourcecode type="tls"><![CDATA[
enum {
    reserved(0),
    mls10(1),
    (65535)
} ProtocolVersion;

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

enum {
    reserved(0),
    member(1),
    external(2),
    new_member_proposal(3),
    new_member_commit(4),
    (255)
} SenderType;

struct {
    SenderType sender_type;
    select (Sender.sender_type) {
        case member:
            uint32 leaf_index;
        case external:
            uint32 sender_index;
        case new_member_commit:
        case new_member_proposal:
            struct{};
    };
} Sender;

// See IANA registry for registered values
uint16 WireFormat;

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

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

struct {
    ProtocolVersion version = mls10;
    WireFormat wire_format;
    select (MLSMessage.wire_format) {
        case mls_public_message:
            PublicMessage public_message;
        case mls_private_message:
            PrivateMessage private_message;
        case mls_welcome:
            Welcome welcome;
        case mls_group_info:
            GroupInfo group_info;
        case mls_key_package:
            KeyPackage key_package;
    };
} MLSMessage;
]]></sourcecode></figure>

<t>Messages from senders that aren't in the group are sent as PublicMessage. See
<xref target="external-proposals"/> and <xref target="joining-via-external-commits"/> for more details.</t>

<t>The following structure is used to fully describe the data transmitted in
plaintexts or ciphertexts.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    WireFormat wire_format;
    FramedContent content;
    FramedContentAuthData auth;
} AuthenticatedContent;
]]></sourcecode></figure>

<t>The following figure illustrates how the various structures described in this
section relate to each other, and the high-level operations used to produce and
consume them:</t>

<figure title="Relationships among MLS objects"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="512" width="728" viewBox="0 0 728 512" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 32,416 L 32,448" fill="none" stroke="black"/>
<path d="M 120,416 L 120,448" fill="none" stroke="black"/>
<path d="M 208,416 L 208,448" fill="none" stroke="black"/>
<path d="M 248,448 L 248,480" fill="none" stroke="black"/>
<path d="M 272,48 L 272,64" fill="none" stroke="black"/>
<path d="M 296,160 L 296,192" fill="none" stroke="black"/>
<path d="M 296,224 L 296,240" fill="none" stroke="black"/>
<path d="M 320,352 L 320,384" fill="none" stroke="black"/>
<path d="M 320,416 L 320,448" fill="none" stroke="black"/>
<path d="M 368,128 L 368,160" fill="none" stroke="black"/>
<path d="M 368,240 L 368,272" fill="none" stroke="black"/>
<path d="M 392,48 L 392,96" fill="none" stroke="black"/>
<path d="M 392,128 L 392,272" fill="none" stroke="black"/>
<path d="M 392,304 L 392,352" fill="none" stroke="black"/>
<path d="M 464,352 L 464,384" fill="none" stroke="black"/>
<path d="M 464,416 L 464,448" fill="none" stroke="black"/>
<path d="M 512,48 L 512,64" fill="none" stroke="black"/>
<path d="M 544,144 L 544,256" fill="none" stroke="black"/>
<path d="M 544,320 L 544,384" fill="none" stroke="black"/>
<path d="M 272,64 L 512,64" fill="none" stroke="black"/>
<path d="M 296,160 L 368,160" fill="none" stroke="black"/>
<path d="M 544,192 L 560,192" fill="none" stroke="black"/>
<path d="M 296,240 L 368,240" fill="none" stroke="black"/>
<path d="M 320,352 L 464,352" fill="none" stroke="black"/>
<path d="M 544,352 L 560,352" fill="none" stroke="black"/>
<path d="M 32,448 L 464,448" fill="none" stroke="black"/>
<path d="M 528,128 C 536.83064,128 544,135.16936 544,144" fill="none" stroke="black"/>
<path d="M 528,272 C 536.83064,272 544,264.83064 544,256" fill="none" stroke="black"/>
<path d="M 528,304 C 536.83064,304 544,311.16936 544,320" fill="none" stroke="black"/>
<path d="M 528,400 C 536.83064,400 544,392.83064 544,384" fill="none" stroke="black"/>
<polygon class="arrowhead" points="472,384 460,378.4 460,389.6 " fill="black" transform="rotate(90,464,384)"/>
<polygon class="arrowhead" points="400,272 388,266.4 388,277.6 " fill="black" transform="rotate(90,392,272)"/>
<polygon class="arrowhead" points="400,96 388,90.4 388,101.6 " fill="black" transform="rotate(90,392,96)"/>
<polygon class="arrowhead" points="376,272 364,266.4 364,277.6 " fill="black" transform="rotate(90,368,272)"/>
<polygon class="arrowhead" points="328,384 316,378.4 316,389.6 " fill="black" transform="rotate(90,320,384)"/>
<polygon class="arrowhead" points="304,192 292,186.4 292,197.6 " fill="black" transform="rotate(90,296,192)"/>
<polygon class="arrowhead" points="256,480 244,474.4 244,485.6 " fill="black" transform="rotate(90,248,480)"/>
<g class="text">
<text x="276" y="36">Proposal</text>
<text x="396" y="36">Commit</text>
<text x="504" y="36">Application</text>
<text x="572" y="36">Data</text>
<text x="384" y="116">FramedContent</text>
<text x="612" y="196">Asymmetric</text>
<text x="296" y="212">FramedContentAuthData</text>
<text x="588" y="212">Sign</text>
<text x="616" y="212">/</text>
<text x="652" y="212">Verify</text>
<text x="396" y="292">AuthenticatedContent</text>
<text x="608" y="356">Symmetric</text>
<text x="600" y="372">Protect</text>
<text x="640" y="372">/</text>
<text x="688" y="372">Unprotect</text>
<text x="32" y="404">Welcome</text>
<text x="116" y="404">KeyPackage</text>
<text x="208" y="404">GroupInfo</text>
<text x="320" y="404">PublicMessage</text>
<text x="460" y="404">PrivateMessage</text>
<text x="252" y="500">MLSMessage</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
                              Proposal        Commit     Application Data
                                 |              |              |
                                 +--------------+--------------+
                                                |
                                                V
                                         FramedContent
                                             |  |                -.
                                             |  |                  |
                                    +--------+  |                  |
                                    |           |                  |
                                    V           |                  +-- Asymmetric
                          FramedContentAuthData |                  |   Sign / Verify
                                    |           |                  |
                                    +--------+  |                  |
                                             |  |                  |
                                             V  V                -'
                                       AuthenticatedContent
                                                |                -.
                                                |                  |
                                                |                  |
                                       +--------+--------+         +-- Symmetric
                                       |                 |         |   Protect / Unprotect
                                       V                 V         |
Welcome  KeyPackage  GroupInfo   PublicMessage    PrivateMessage -'
   |          |          |             |                 |
   |          |          |             |                 |
   +----------+----------+----+--------+-----------------+
                              |
                              V
                          MLSMessage
]]></artwork></artset></figure>

<section anchor="content-authentication"><name>Content Authentication</name>

<t>FramedContent is authenticated using the FramedContentAuthData structure.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    ProtocolVersion version = mls10;
    WireFormat wire_format;
    FramedContent content;
    select (FramedContentTBS.content.sender.sender_type) {
        case member:
        case new_member_commit:
            GroupContext context;
        case external:
        case new_member_proposal:
            struct{};
    };
} FramedContentTBS;

opaque MAC<V>;

struct {
    /* SignWithLabel(., "FramedContentTBS", FramedContentTBS) */
    opaque signature<V>;
    select (FramedContent.content_type) {
        case commit:
            /*
              MAC(confirmation_key,
                  GroupContext.confirmed_transcript_hash)
            */
            MAC confirmation_tag;
        case application:
        case proposal:
            struct{};
    };
} FramedContentAuthData;
]]></sourcecode></figure>

<t>The signature is computed using <spanx style="verb">SignWithLabel</spanx> with label
<spanx style="verb">"FramedContentTBS"</spanx> and with a content that covers the message content and
the wire format that will be used for this message. If the sender's
<spanx style="verb">sender_type</spanx> is <spanx style="verb">member</spanx>, the content also covers the GroupContext for the
current epoch so that signatures are specific to a given group and epoch.</t>

<t>The sender MUST use the private key corresponding to the following signature key
depending on the sender's <spanx style="verb">sender_type</spanx>:</t>

<t><list style="symbols">
  <t><spanx style="verb">member</spanx>: The signature key contained in the LeafNode at the index
indicated by <spanx style="verb">leaf_index</spanx> in the ratchet tree.</t>
  <t><spanx style="verb">external</spanx>: The signature key at the index
indicated by <spanx style="verb">sender_index</spanx> in the <spanx style="verb">external_senders</spanx> group context
extension (see <xref target="external-senders-extension"/>). The
<spanx style="verb">content_type</spanx> of the message MUST be <spanx style="verb">proposal</spanx>.</t>
  <t><spanx style="verb">new_member_commit</spanx>: The signature key in the LeafNode in
  the Commit's path (see <xref target="joining-via-external-commits"/>). The
  <spanx style="verb">content_type</spanx> of the message MUST be <spanx style="verb">commit</spanx>.</t>
  <t><spanx style="verb">new_member_proposal</spanx>: The signature key in the LeafNode in
  the KeyPackage embedded in an External Add Proposal. The
  <spanx style="verb">content_type</spanx> of the message MUST be <spanx style="verb">proposal</spanx> and the
  <spanx style="verb">proposal_type</spanx> of the Proposal MUST be <spanx style="verb">add</spanx>.</t>
</list></t>

<t>Recipients of an MLSMessage MUST verify the signature with the key depending on
the <spanx style="verb">sender_type</spanx> of the sender as described above.</t>

<t>The confirmation tag value confirms that the members of the group have arrived
at the same state of the group. A FramedContentAuthData is said to be valid when both
the <spanx style="verb">signature</spanx> and <spanx style="verb">confirmation_tag</spanx> fields are valid.</t>

</section>
<section anchor="encoding-and-decoding-a-public-message"><name>Encoding and Decoding a Public Message</name>

<t>Messages that are authenticated but not encrypted are encoded using the PublicMessage structure.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    FramedContent content;
    FramedContentAuthData auth;
    select (PublicMessage.content.sender.sender_type) {
        case member:
            MAC membership_tag;
        case external:
        case new_member_commit:
        case new_member_proposal:
            struct{};
    };
} PublicMessage;
]]></sourcecode></figure>

<t>The <spanx style="verb">membership_tag</spanx> field in the PublicMessage object authenticates the sender's
membership in the group. For messages sent by members, it MUST be set to the
following value:</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
  FramedContentTBS content_tbs;
  FramedContentAuthData auth;
} AuthenticatedContentTBM;
]]></sourcecode></figure>

<figure><sourcecode type="pseudocode"><![CDATA[
membership_tag = MAC(membership_key, AuthenticatedContentTBM)
]]></sourcecode></figure>

<t>When decoding an PublicMessage into an AuthenticatedContent,
the application MUST check <spanx style="verb">membership_tag</spanx> and MUST check that the
FramedContentAuthData is valid.</t>

</section>
<section anchor="encoding-and-decoding-a-private-message"><name>Encoding and Decoding a Private Message</name>

<t>Authenticated and encrypted messages are encoded using the PrivateMessage structure.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    opaque group_id<V>;
    uint64 epoch;
    ContentType content_type;
    opaque authenticated_data<V>;
    opaque encrypted_sender_data<V>;
    opaque ciphertext<V>;
} PrivateMessage;
]]></sourcecode></figure>

<t><spanx style="verb">encrypted_sender_data</spanx> and <spanx style="verb">ciphertext</spanx> are encrypted using the AEAD function
specified by the ciphersuite in use, using as input the structures SenderData
and PrivateMessageContent.</t>

<section anchor="content-encryption"><name>Content Encryption</name>

<t>Content to be encrypted is encoded in a PrivateMessageContent structure.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    select (PrivateMessage.content_type) {
        case application:
          opaque application_data<V>;

        case proposal:
          Proposal proposal;

        case commit:
          Commit commit;
    };

    FramedContentAuthData auth;
    opaque padding[length_of_padding];
} PrivateMessageContent;
]]></sourcecode></figure>

<t>The <spanx style="verb">padding</spanx> field is set by the sender, by first encoding the content (via the
<spanx style="verb">select</spanx>) and the <spanx style="verb">auth</spanx> field, then appending the chosen number of zero bytes.
A receiver identifies the padding field in a plaintext decoded from
<spanx style="verb">PrivateMessage.ciphertext</spanx> by first decoding the content and the <spanx style="verb">auth</spanx> field;
then the <spanx style="verb">padding</spanx> field comprises any remaining octets of plaintext.  The
<spanx style="verb">padding</spanx> field MUST be filled with all zero bytes.  A receiver MUST verify that
there are no non-zero bytes in the <spanx style="verb">padding</spanx> field, and if this check fails, the
enclosing PrivateMessage MUST be rejected as malformed.  This check ensures that
the padding process is deterministic, so that, for example, padding cannot be
used as a covert channel.</t>

<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
four-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 <spanx style="verb">reuse_guard</spanx> 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>

<figure><artwork type="ascii-art"><![CDATA[
+-+-+-+-+---------...---+
|   Key Schedule Nonce  |
+-+-+-+-+---------...---+
           XOR
+-+-+-+-+---------...---+
| Guard |       0       |
+-+-+-+-+---------...---+
           ===
+-+-+-+-+---------...---+
| Encrypt/Decrypt Nonce |
+-+-+-+-+---------...---+
]]></artwork></figure>

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

<figure><sourcecode type="tls"><![CDATA[
struct {
    opaque group_id<V>;
    uint64 epoch;
    ContentType content_type;
    opaque authenticated_data<V>;
} PrivateContentAAD;
]]></sourcecode></figure>

<t>When decoding a PrivateMessageContent, the application MUST check that the
FramedContentAuthData is valid.</t>

<t>It is up to the application to decide what <spanx style="verb">authenticated_data</spanx> to provide and
how much padding to add to a given message (if any).  The overall size of the
AAD and ciphertext MUST fit within the limits established for the group's AEAD
algorithm in [!I-D.irtf-cfrg-aead-limits].</t>

</section>
<section anchor="sender-data-encryption"><name>Sender Data Encryption</name>

<t>The "sender data" used to look up the key for content encryption is
encrypted with the ciphersuite's AEAD with a key and nonce derived from both the
<spanx style="verb">sender_data_secret</spanx> and a sample of the encrypted content. Before being
encrypted, the sender data is encoded as an object of the following form:</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    uint32 leaf_index;
    uint32 generation;
    opaque reuse_guard[4];
} SenderData;
]]></sourcecode></figure>

<t>When constructing a SenderData object from a Sender object, the sender MUST verify
Sender.sender_type is <spanx style="verb">member</spanx> and use Sender.leaf_index for
SenderData.leaf_index.</t>

<t>The <spanx style="verb">reuse_guard</spanx> 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
<spanx style="verb">KDF.Nh</spanx> bytes of the ciphertext generated in the previous section. If the
length of the ciphertext is less than <spanx style="verb">KDF.Nh</spanx>, the whole ciphertext is used.
In pseudocode, the key and nonce are derived as:</t>

<figure><sourcecode type="pseudocode"><![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)
]]></sourcecode></figure>

<t>The Additional Authenticated Data (AAD) for the SenderData ciphertext is the
first three fields of PrivateMessage:</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    opaque group_id<V>;
    uint64 epoch;
    ContentType content_type;
} SenderDataAAD;
]]></sourcecode></figure>

<t>When parsing a SenderData struct as part of message decryption, the recipient
MUST verify that the leaf index indicated in the <spanx style="verb">leaf_index</spanx> field identifies a
non-blank node.</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>

<figure><sourcecode type="tls"><![CDATA[
struct {
    HPKEPublicKey encryption_key;
    opaque parent_hash<V>;
    uint32 unmerged_leaves<V>;
} ParentNode;
]]></sourcecode></figure>

<t>The <spanx style="verb">encryption_key</spanx> field contains an HPKE public key whose private key is held only
by the members at the leaves among its descendants.  The <spanx style="verb">parent_hash</spanx> field
contains a hash of this node's parent node, as described in <xref target="parent-hashes"/>.
The <spanx style="verb">unmerged_leaves</spanx> field lists the leaves under this parent node that are
unmerged, according to their indices among all the leaves in the tree.  The
entries in the <spanx style="verb">unmerged_leaves</spanx> vector MUST be sorted in increasing order.</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>

<figure><sourcecode type="tls"><![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>;
    CredentialType credentials<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 encryption_key;
    SignaturePublicKey signature_key;
    Credential credential;
    Capabilities capabilities;

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

        case update:
            struct{};

        case commit:
            opaque parent_hash<V>;
    };

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

struct {
    HPKEPublicKey encryption_key;
    SignaturePublicKey signature_key;
    Credential credential;
    Capabilities capabilities;

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

        case update:
            struct{};

        case commit:
            opaque parent_hash<V>;
    };

    Extension extensions<V>;

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

        case update:
            opaque group_id<V>;
            uint32 leaf_index;

        case commit:
            opaque group_id<V>;
            uint32 leaf_index;
    };
} LeafNodeTBS;
]]></sourcecode></figure>

<t>The <spanx style="verb">encryption_key</spanx> field contains 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 <spanx style="verb">signature_key</spanx> field contains the
member's public signing key. The <spanx style="verb">credential</spanx> field contains information
authenticating both the member's identity and the provided signing key, as
described in <xref target="credentials"/>.</t>

<t>The <spanx style="verb">capabilities</spanx> field indicates what protocol versions, ciphersuites,
extensions, credential types, and non-default proposal types are supported by a client.
Proposal and extension types defined in this document are considered "default" and thus need
not be listed, while any credential types the application wishes to use MUST
be listed. Extensions that appear in the <spanx style="verb">extensions</spanx> field of a LeafNode
MUST be included in the <spanx style="verb">extensions</spanx> field of the <spanx style="verb">capabilities</spanx> field, and the
credential type used in the LeafNode MUST be included in the <spanx style="verb">credentials</spanx> field
of the <spanx style="verb">capabilities</spanx> field.  As discussed in <xref target="extensibility"/>, unknown values
in <spanx style="verb">capabilities</spanx> MUST be ignored, and the creator of a <spanx style="verb">capabilities</spanx> field
SHOULD include some random GREASE values to help ensure that other clients correctly
ignore unknown values.</t>

<t>The <spanx style="verb">leaf_node_source</spanx> 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 <spanx style="verb">lifetime</spanx> or <spanx style="verb">parent_hash</spanx>, and whether the <spanx style="verb">group_id</spanx> 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 <spanx style="verb">group_id</spanx>.</t>

<t>In the case where the leaf was added to the tree based on a pre-published
KeyPackage, the <spanx style="verb">lifetime</spanx> 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. In
order to avoid disagreements about whether a LeafNode has a valid lifetime, the
clients in a group SHOULD maintain time synchronization (e.g., using the Network
Time Protocol <xref target="RFC5905"/>).</t>

<t>In the case where the leaf node was inserted into the tree via a Commit message,
the <spanx style="verb">parent_hash</spanx> field contains the parent hash for this leaf node (see
<xref target="parent-hashes"/>).</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>

<t><list style="symbols">
  <t>When a LeafNode is downloaded in a KeyPackage, before it is used
to add the client to the group</t>
  <t>When a LeafNode is received by a group member in an Add, Update, or Commit
message</t>
  <t>When a client validates a ratchet tree, e.g., when joining a group or after
processing a commit</t>
</list></t>

<t>The client verifies the validity of a LeafNode using the following steps:</t>

<t><list style="symbols">
  <t>Verify that the credential in the LeafNode is valid as described in
<xref target="credential-validation"/>.</t>
  <t>Verify that the signature on the LeafNode is valid using <spanx style="verb">signature_key</spanx>.</t>
  <t>Verify that the LeafNode is compatible with the group's parameters.  If the
GroupContext has a <spanx style="verb">required_capabilities</spanx> extension, then the required
extensions, proposals, and credential types MUST be listed in the LeafNode's
<spanx style="verb">capabilities</spanx> field.</t>
  <t>Verify that the credential type is supported by all members of the group, as
specified by the <spanx style="verb">capabilities</spanx> field of each member's LeafNode, and that the
<spanx style="verb">capabilities</spanx> field of this LeafNode indicates support for all the credential
types currently in use by other members.</t>
  <t>Verify the <spanx style="verb">lifetime</spanx> field:
  <list style="symbols">
      <t>If the LeafNode appears in a message being sent by the client, e.g., a
proposal or a commit, then the client MUST verify that the current time is within
the range of the <spanx style="verb">lifetime</spanx> field.</t>
      <t>If instead the LeafNode appears in a message being received by the client, e.g.,
a proposal, a commit, or a ratchet tree of the group the client is joining, it is
RECOMMENDED that the client verifies that the current time is within the range
of the <spanx style="verb">lifetime</spanx> field.  (This check is not mandatory because the LeafNode
might have expired in the time between when the message was sent and when it
was received.)</t>
    </list></t>
  <t>Verify that the extensions in the LeafNode are supported by checking that the
ID for each extension in the <spanx style="verb">extensions</spanx> field is listed in the
<spanx style="verb">capabilities.extensions</spanx> field of the LeafNode.</t>
  <t>Verify the <spanx style="verb">leaf_node_source</spanx> field:
  <list style="symbols">
      <t>If the LeafNode appears in a KeyPackage, verify that <spanx style="verb">leaf_node_source</spanx> is
set to <spanx style="verb">key_package</spanx>.</t>
      <t>If the LeafNode appears in an Update proposal, verify that <spanx style="verb">leaf_node_source</spanx>
is set to <spanx style="verb">update</spanx> and that <spanx style="verb">encryption_key</spanx> represents a different public
key than the <spanx style="verb">encryption_key</spanx> in the leaf node being replaced by the Update
proposal.</t>
      <t>If the LeafNode appears in the <spanx style="verb">leaf_node</spanx> value of the UpdatePath in
a Commit, verify that <spanx style="verb">leaf_node_source</spanx> is set to <spanx style="verb">commit</spanx>.</t>
    </list></t>
  <t>Verify that the following fields are unique among the members of the group:
  <list style="symbols">
      <t><spanx style="verb">signature_key</spanx></t>
      <t><spanx style="verb">encryption_key</spanx></t>
    </list></t>
</list></t>

</section>
<section anchor="ratchet-tree-evolution"><name>Ratchet Tree Evolution</name>

<t>Whenever a member initiates an epoch change (i.e., commits; see <xref target="commit"/>),
they may need to refresh the key pairs of their leaf and of the nodes on their
leaf's direct path in order to maintain forward secrecy and post-compromise
security.</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>A member updates the nodes along its direct path as follows:</t>

<t><list style="symbols">
  <t>Blank all the nodes on the direct path from the leaf to the root.</t>
  <t>Generate a fresh HPKE key pair for the leaf.</t>
  <t>Generate a sequence of path secrets, one for each node on the leaf's filtered direct
path, as follows. In this setting, <spanx style="verb">path_secret[0]</spanx> refers to the first parent node
in the filtered direct path, <spanx style="verb">path_secret[1]</spanx> to the second parent node, and so on.</t>
</list></t>

<figure><sourcecode type="pseudocode"><![CDATA[
path_secret[0] is sampled at random
path_secret[n] = DeriveSecret(path_secret[n-1], "path")
]]></sourcecode></figure>

<t><list style="symbols">
  <t>Compute the sequence of HPKE key pairs <spanx style="verb">(node_priv,node_pub)</spanx>, one for each
node on the leaf's direct path, as follows.</t>
</list></t>

<figure><sourcecode type="pseudocode"><![CDATA[
node_secret[n] = DeriveSecret(path_secret[n], "node")
node_priv[n], node_pub[n] = KEM.DeriveKeyPair(node_secret[n])
]]></sourcecode></figure>

<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 title="A full tree with one unmerged leaf" anchor="evolution-tree"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="176" width="120" viewBox="0 0 120 176" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 56,48 L 56,64" fill="none" stroke="black"/>
<path d="M 40,64 L 72,64" fill="none" stroke="black"/>
<path d="M 72,64 L 80,80" fill="none" stroke="black"/>
<path d="M 32,80 L 40,64" fill="none" stroke="black"/>
<g class="text">
<text x="56" y="36">Y</text>
<text x="24" y="100">X</text>
<text x="100" y="100">Z[C]</text>
<text x="16" y="116">/</text>
<text x="32" y="116">\</text>
<text x="80" y="116">/</text>
<text x="96" y="116">\</text>
<text x="8" y="132">A</text>
<text x="40" y="132">B</text>
<text x="72" y="132">C</text>
<text x="104" y="132">D</text>
<text x="8" y="164">0</text>
<text x="40" y="164">1</text>
<text x="72" y="164">2</text>
<text x="104" y="164">3</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
      Y
      |
    .-+-.
   /     \
  X       Z[C]
 / \     / \
A   B   C   D

0   1   2   3
]]></artwork></artset></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>

<figure title="Derivation of ratchet tree keys along a direct path"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="272" width="560" viewBox="0 0 560 272" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 48,64 L 48,96" fill="none" stroke="black"/>
<path d="M 48,144 L 48,176" fill="none" stroke="black"/>
<path d="M 128,32 L 152,32" fill="none" stroke="black"/>
<path d="M 288,32 L 344,32" fill="none" stroke="black"/>
<path d="M 128,112 L 152,112" fill="none" stroke="black"/>
<path d="M 288,112 L 344,112" fill="none" stroke="black"/>
<path d="M 104,192 L 152,192" fill="none" stroke="black"/>
<path d="M 304,192 L 344,192" fill="none" stroke="black"/>
<path d="M 368,224 L 416,224" fill="none" stroke="black"/>
<path d="M 448,224 L 496,224" fill="none" stroke="black"/>
<path d="M 368,224 C 359.16936,224 352,216.83064 352,208" fill="none" stroke="black"/>
<path d="M 416,224 C 424.83064,224 432,231.16936 432,240" fill="none" stroke="black"/>
<path d="M 448,224 C 439.16936,224 432,231.16936 432,240" fill="none" stroke="black"/>
<path d="M 496,224 C 504.83064,224 512,216.83064 512,208" fill="none" stroke="black"/>
<polygon class="arrowhead" points="352,192 340,186.4 340,197.6 " fill="black" transform="rotate(0,344,192)"/>
<polygon class="arrowhead" points="352,112 340,106.4 340,117.6 " fill="black" transform="rotate(0,344,112)"/>
<polygon class="arrowhead" points="352,32 340,26.4 340,37.6 " fill="black" transform="rotate(0,344,32)"/>
<polygon class="arrowhead" points="160,192 148,186.4 148,197.6 " fill="black" transform="rotate(0,152,192)"/>
<polygon class="arrowhead" points="160,112 148,106.4 148,117.6 " fill="black" transform="rotate(0,152,112)"/>
<polygon class="arrowhead" points="160,32 148,26.4 148,37.6 " fill="black" transform="rotate(0,152,32)"/>
<polygon class="arrowhead" points="56,144 44,138.4 44,149.6 " fill="black" transform="rotate(270,48,144)"/>
<polygon class="arrowhead" points="56,64 44,58.4 44,69.6 " fill="black" transform="rotate(270,48,64)"/>
<g class="text">
<text x="60" y="36">path_secret[1]</text>
<text x="220" y="36">node_secret[1]</text>
<text x="408" y="36">node_priv[1],</text>
<text x="512" y="36">node_pub[1]</text>
<text x="60" y="116">path_secret[0]</text>
<text x="220" y="116">node_secret[0]</text>
<text x="408" y="116">node_priv[0],</text>
<text x="512" y="116">node_pub[0]</text>
<text x="48" y="196">leaf_secret</text>
<text x="228" y="196">leaf_node_secret</text>
<text x="396" y="196">leaf_priv,</text>
<text x="476" y="196">leaf_pub</text>
<text x="432" y="260">leaf_node</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![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></artset></figure>

<t>After applying the UpdatePath, the tree will have the following structure:</t>

<figure title="Placement of keys in a ratchet tree"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="192" width="256" viewBox="0 0 256 192" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 176,144 L 176,160" fill="none" stroke="black"/>
<path d="M 192,48 L 192,64" fill="none" stroke="black"/>
<path d="M 112,32 L 176,32" fill="none" stroke="black"/>
<path d="M 176,64 L 208,64" fill="none" stroke="black"/>
<path d="M 112,96 L 144,96" fill="none" stroke="black"/>
<path d="M 88,160 L 176,160" fill="none" stroke="black"/>
<path d="M 208,64 L 216,80" fill="none" stroke="black"/>
<path d="M 168,80 L 176,64" fill="none" stroke="black"/>
<polygon class="arrowhead" points="184,144 172,138.4 172,149.6 " fill="black" transform="rotate(270,176,144)"/>
<polygon class="arrowhead" points="184,32 172,26.4 172,37.6 " fill="black" transform="rotate(0,176,32)"/>
<polygon class="arrowhead" points="152,96 140,90.4 140,101.6 " fill="black" transform="rotate(0,144,96)"/>
<g class="text">
<text x="52" y="36">node_priv[1]</text>
<text x="196" y="36">Y'</text>
<text x="52" y="100">node_priv[0]</text>
<text x="164" y="100">X'</text>
<text x="236" y="100">Z[C]</text>
<text x="152" y="116">/</text>
<text x="168" y="116">\</text>
<text x="216" y="116">/</text>
<text x="232" y="116">\</text>
<text x="144" y="132">A</text>
<text x="176" y="132">B</text>
<text x="208" y="132">C</text>
<text x="240" y="132">D</text>
<text x="40" y="164">leaf_priv</text>
<text x="144" y="180">0</text>
<text x="176" y="180">1</text>
<text x="208" y="180">2</text>
<text x="240" y="180">3</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
node_priv[1] --------> Y'
                       |
                     .-+-.
                    /     \
node_priv[0] ----> X'      Z[C]
                  / \     / \
                 A   B   C   D
                     ^
leaf_priv -----------+
                 0   1   2   3
]]></artwork></artset></figure>

</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 broadcasts
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>

<t><list style="symbols">
  <t>The public key for the node</t>
  <t>One or more encrypted copies of the path secret corresponding to
the node</t>
</list></t>

<t>The path secret value for a given node is encrypted to the subtree
rooted at the parent's non-updated child, i.e., 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>A member of the group <em>updates their direct path</em> by computing new values for
their leaf node and the nodes along their filtered direct path:</t>

<t><list style="numbers">
  <t>Blank all nodes along the direct path of the sender's leaf.</t>
  <t>Compute updated path secrets and public keys for the nodes on the sender's
filtered direct path.
  <list style="symbols">
      <t>Generate a sequence of path secrets of the same length as the filtered
direct path, as defined in <xref target="ratchet-tree-evolution"/></t>
      <t>For each node in the filtered direct path, replace the node's public key
with the <spanx style="verb">node_pub[n]</spanx> value derived from the corresponding path secret
<spanx style="verb">path_secret[n]</spanx>.</t>
    </list></t>
  <t>Compute the new parent hashes for the nodes along the filtered direct path
and the sender's leaf node.</t>
  <t>Update the leaf node for the sender.
  <list style="symbols">
      <t>Set the <spanx style="verb">leaf_node_source</spanx> to <spanx style="verb">commit</spanx>.</t>
      <t>Set the <spanx style="verb">encryption_key</spanx> to the public key of a freshly sampled key pair</t>
      <t>Set the parent hash to the parent hash for the leaf.</t>
      <t>Re-sign the leaf node with its new contents</t>
    </list></t>
</list></t>

<t>Since the new leaf node effectively updates an existing leaf node in the group,
it MUST adhere to the same restrictions as LeafNodes used in <spanx style="verb">Update</spanx> proposals
(aside from <spanx style="verb">leaf_node_source</spanx>). The application MAY specify other changes to
the leaf node, e.g., providing a new signature key, updated capabilities, or
different extensions.</t>

<t>The member then <em>encrypts path secrets to the group</em>.  For each node in the
member's filtered direct path, the member takes the following steps:</t>

<t><list style="numbers">
  <t>Compute the resolution of the node's child that is on the copath of the
sender (the child that is not in the direct path of the sender).  Any new
member (from an Add proposal) added in the same Commit MUST be excluded from
this resolution.</t>
  <t>For each node in the resolution, encrypt the path secret for the direct
path node using the public key of the resolution node, as defined in
<xref target="update-paths"/></t>
</list></t>

<t>The recipient of an UpdatePath performs the corresponding steps.  First, the
recipient <em>merges UpdatePath into the tree</em>:</t>

<t><list style="numbers">
  <t>Blank all nodes on the direct path of the sender's leaf.</t>
  <t>For all nodes on the filtered direct path of the sender's leaf,
  <list style="symbols">
      <t>Set the public key to the public key in the UpdatePath.</t>
      <t>Set the list of unmerged leaves to the empty list.</t>
    </list></t>
  <t>Compute parent hashes for the nodes in the sender's filtered direct path,
and verify that the <spanx style="verb">parent_hash</spanx> field of the leaf node matches the parent
hash for the first node in its filtered direct path.
  <list style="symbols">
      <t>Note that these hashes are computed 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 its parent hash.</t>
    </list></t>
</list></t>

<t>Second, the recipient <em>decrypts the path secrets</em>:</t>

<t><list style="numbers">
  <t>Identify a node in the filtered direct path for which the recipient
is in the subtree of the non-updated child.</t>
  <t>Identify a node in the resolution of the copath node for
which the recipient has a private key.</t>
  <t>Decrypt the path secret for the parent of the copath node using
the private key from the resolution node.</t>
  <t>Derive path secrets for ancestors of that node in the sender's filtered
direct path using the algorithm described above.</t>
  <t>Derive the node secrets and node key pairs from the path secrets.</t>
  <t>Verify that the derived public keys are the same as the corresponding public
keys sent in the UpdatePath.</t>
  <t>Store the derived private keys in the corresponding ratchet tree nodes.</t>
</list></t>

<t>For example, in order to communicate the example update described in
<xref target="ratchet-tree-evolution"/>, the member at node B would transmit the following
values:</t>

<texttable>
      <ttcol align='left'>Public Key</ttcol>
      <ttcol align='left'>Ciphertext(s)</ttcol>
      <c><spanx style="verb">node_pub[1]</spanx></c>
      <c><spanx style="verb">E(pk(Z), path_secret[1])</spanx>, <spanx style="verb">E(pk(C), path_secret[1]</spanx>)</c>
      <c><spanx style="verb">node_pub[0]</spanx></c>
      <c><spanx style="verb">E(pk(A), path_secret[0])</spanx></c>
</texttable>

<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>A recipient at node A would decrypt <spanx style="verb">E(pk(A), path_secret\[0\])</spanx> to obtain
<spanx style="verb">path_secret\[0\]</spanx>, then use it to derive <spanx style="verb">path_secret[1]</spanx> and the resulting
node secrets and key pairs.  Thus, A would have the private keys to nodes X'
and Y', in accordance with the tree invariant.</t>

<t>Similarly, a recipient at node D would decrypt <spanx style="verb">E(pk(Z), path_secret[1])</spanx> to
obtain <spanx style="verb">path_secret[1]</spanx>, then use it to derive the node secret and key pair
for the node Y'.  As required to maintain the tree invariant, node D does not
receive the private key for the node X', since X' is not an ancestor of D.</t>

<t>After processing the update, each recipient MUST delete outdated key material,
specifically:</t>

<t><list style="symbols">
  <t>The path secrets and node secrets used to derive each updated node key pair.</t>
  <t>Each outdated node key pair that was replaced by the update.</t>
</list></t>

</section>
<section anchor="update-paths"><name>Update Paths</name>

<t>As described in <xref target="commit"/>, each Commit message may optionally contain an
UpdatePath, with a new LeafNode and set of parent nodes for the sender's
filtered direct path. For each parent node, the UpdatePath contains a new
public key and encrypted path secret. The parent nodes are kept in the same
order as the filtered direct path.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    opaque kem_output<V>;
    opaque ciphertext<V>;
} HPKECiphertext;

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

struct {
    LeafNode leaf_node;
    UpdatePathNode nodes<V>;
} UpdatePath;
]]></sourcecode></figure>

<t>For each <spanx style="verb">UpdatePathNode</spanx>, the resolution of the corresponding copath node MUST
exclude all new leaf nodes added as part of the current Commit. The length of
the <spanx style="verb">encrypted_path_secret</spanx> vector MUST be equal to the length of the resolution
of the copath node (excluding new leaf nodes), with each ciphertext being the
encryption to the respective resolution node.</t>

<t>The HPKECiphertext values are encrypted and decrypted as follows:</t>

<figure><sourcecode type="pseudocode"><![CDATA[
(kem_output, ciphertext) =
  EncryptWithLabel(node_public_key, "UpdatePathNode",
                   group_context, path_secret)

path_secret =
  DecryptWithLabel(node_private_key, "UpdatePathNode",
                   group_context, kem_output, ciphertext)
]]></sourcecode></figure>

<t>Here <spanx style="verb">node_public_key</spanx> is the public key of the node for which the path secret is
encrypted, <spanx style="verb">group_context</spanx> is the provisional GroupContext object for
the group, and the <spanx style="verb">EncryptWithLabel</spanx> function is as defined in
<xref target="public-key-encryption"/>.</t>

</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"/>).  Since the tree is
always full, adding or removing leaves corresponds to increasing or decreasing
the depth of the tree, resulting in the number of leaves being doubled or
halved. These operations are also known as <em>extending</em> and <em>truncating</em> the
tree.</t>

<t>Leaves are always added and removed at the right edge of the tree.  When the
size of the tree needs to be increased, a new blank root node is added, whose
left subtree is the existing tree and right subtree is a new all-blank subtree.
This operation is typically done when adding a member to the group.</t>

<figure title="Extending the tree to make room for a third member"><artwork type="ascii-art"><![CDATA[
                  _ <-- new blank root                    _
                __|__                                   __|__
               /     \                                 /     \
  X    ===>   X       _ <-- new blank subtree ===>    X       _
 / \         / \     / \                             / \     / \
A   B       A   B   _   _                           A   B   C   _
                                                            ^
                                                            |
                                                            +-- new member
]]></artwork></figure>

<t>When the right subtree of the tree no longer has any non-blank nodes, it can be
safely removed.  The root of the tree and the right subtree are discarded
(whether or not the root node is blank). The left child of the root becomes the
new root node, and the left subtree becomes the new tree.  This operation is
typically done after removing a member from the group.</t>

<figure title="Cleaning up after removing member C"><artwork type="ascii-art"><![CDATA[
               Y                  Y
             __|__              __|__
            /     \            /     \
           X       _   ===>   X       _   ==>   X <-- new root
          / \     / \        / \     / \       / \
         A   B   C   _      A   B   _   _     A   B
                 ^
                 |
removed member --+
]]></artwork></figure>

<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="tree-hashes"><name>Tree Hashes</name>

<t>MLS hashes the contents of the tree in two ways to authenticate different
properties of the tree.  <em>Tree hashes</em> are defined in this section, and <em>parent
hashes</em> are defined in <xref target="parent-hashes"/>.</t>

<t>Each node in a ratchet tree has a tree hash that summarizes the subtree below
that node.  The tree hash of the root is used in the GroupContext to confirm
that the group agrees on the whole tree.  Tree hashes are computed recursively
from the leaves up to the root.</t>

<figure title="Composition of the tree hash"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="112" width="128" viewBox="0 0 128 112" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 24,32 L 40,32" fill="none" stroke="black"/>
<path d="M 72,48 L 88,80" fill="none" stroke="black"/>
<path d="M 40,80 L 56,48" fill="none" stroke="black"/>
<polygon class="arrowhead" points="80,48 68,42.4 68,53.6 " fill="black" transform="rotate(243.43494882292202,72,48)"/>
<polygon class="arrowhead" points="64,48 52,42.4 52,53.6 " fill="black" transform="rotate(296.565051177078,56,48)"/>
<polygon class="arrowhead" points="48,32 36,26.4 36,37.6 " fill="black" transform="rotate(0,40,32)"/>
<g class="text">
<text x="8" y="36">P</text>
<text x="72" y="36">th(P)</text>
<text x="24" y="100">th(L)</text>
<text x="104" y="100">th(R)</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
P --> th(P)
      ^ ^
     /   \
    /     \
th(L)     th(R)
]]></artwork></artset></figure>

<t>The tree hash of an individual node is the hash of the node's <spanx style="verb">TreeHashInput</spanx>
object, which may contain either a <spanx style="verb">LeafNodeHashInput</spanx> or a
<spanx style="verb">ParentNodeHashInput</spanx> depending on the type of node. <spanx style="verb">LeafNodeHashInput</spanx> objects
contain the <spanx style="verb">leaf_index</spanx> and the <spanx style="verb">LeafNode</spanx> (if any). <spanx style="verb">ParentNodeHashInput</spanx>
objects contain the <spanx style="verb">ParentNode</spanx> (if any) and the tree hash of the node's left
and right children.  For both parent and leaf nodes, the optional node value
MUST be absent if the node is blank and present if the node contains a value.</t>

<figure><sourcecode type="tls"><![CDATA[
enum {
    reserved(0),
    leaf(1),
    parent(2),
    (255)
} NodeType;

struct {
  NodeType node_type;
  select (TreeHashInput.node_type) {
    case leaf:   LeafNodeHashInput leaf_node;
    case parent: ParentNodeHashInput parent_node;
  };
} TreeHashInput;

struct {
    uint32 leaf_index;
    optional<LeafNode> leaf_node;
} LeafNodeHashInput;

struct {
    optional<ParentNode> parent_node;
    opaque left_hash<V>;
    opaque right_hash<V>;
} ParentNodeHashInput;
]]></sourcecode></figure>

<t>The tree hash of an entire tree corresponds to the tree hash of the root node,
which is computed recursively by starting at the leaf nodes and building up.</t>

</section>
<section anchor="parent-hashes"><name>Parent Hashes</name>

<t>While tree hashes summarize the state of a tree at point in time, parent hashes
capture information about how keys in the tree were populated.</t>

<t>When a client sends a commit to change a group, it can include an UpdatePath to
assign new keys to the nodes along its filtered direct path.  When a client
computes an UpdatePath (as defined in <xref target="synchronizing-views-of-the-tree"/>), it
computes and signs a parent hash that summarizes the state of the tree after the
UpdatePath has been applied.  These summaries are constructed in a chain from
the root to the member's leaf so that the part of the chain closer to the root
can be overwritten as nodes set in one UpdatePath are reset by a later
UpdatePath.</t>

<figure title="Inputs to a parent hash"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="176" width="216" viewBox="0 0 216 176" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 112,96 L 128,96" fill="none" stroke="black"/>
<path d="M 160,112 L 176,144" fill="none" stroke="black"/>
<path d="M 128,144 L 144,112" fill="none" stroke="black"/>
<path d="M 160,80 L 176,48" fill="none" stroke="black"/>
<polygon class="arrowhead" points="168,112 156,106.4 156,117.6 " fill="black" transform="rotate(243.43494882292202,160,112)"/>
<polygon class="arrowhead" points="168,80 156,74.4 156,85.6 " fill="black" transform="rotate(116.56505117707799,160,80)"/>
<polygon class="arrowhead" points="136,144 124,138.4 124,149.6 " fill="black" transform="rotate(116.56505117707799,128,144)"/>
<polygon class="arrowhead" points="136,96 124,90.4 124,101.6 " fill="black" transform="rotate(0,128,96)"/>
<g class="text">
<text x="192" y="36">ph(Q)</text>
<text x="52" y="100">P.public_key</text>
<text x="160" y="100">ph(P)</text>
<text x="80" y="164">N.parent_hash</text>
<text x="192" y="164">th(S)</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
                     ph(Q)
                     /
                    /
                   V
P.public_key --> ph(P)
                 / ^
                /   \
               V     \
   N.parent_hash     th(S)
]]></artwork></artset></figure>

<t>As a result, the signature over the parent hash in each member's leaf
effectively signs the subtree of the tree that hasn't been changed since that
leaf was last changed in an UpdatePath.  A new member joining the group uses
these parent hashes to verify that the parent nodes in the tree were set by
members of the group, not chosen by an external attacker.  For an example of how
this works, see <xref target="ph-evolution"/>.</t>

<t>Consider a ratchet tree with a non-blank parent node P and children D and S (for
"parent", "direct path", and "sibling"), with D and P in the direct path of a
leaf node L (for "leaf"):</t>

<figure title="Nodes involved in a parent hash computation" anchor="parent-hash-nodes"><artwork type="ascii-art"><![CDATA[
         ...
         /
        P
      __|__
     /     \
    D       S
   / \     / \
 ... ... ... ...
 /
L
]]></artwork></figure>

<t>The parent hash of P changes whenever an <spanx style="verb">UpdatePath</spanx> object is applied to
the ratchet tree along a path from a leaf L traversing node D (and hence also
P). The new "Parent hash of P (with copath child S)" is obtained by hashing P's
<spanx style="verb">ParentHashInput</spanx> struct.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    HPKEPublicKey encryption_key;
    opaque parent_hash<V>;
    opaque original_sibling_tree_hash<V>;
} ParentHashInput;
]]></sourcecode></figure>

<t>The field <spanx style="verb">encryption_key</spanx> contains the HPKE public key of P. If P is the root,
then the <spanx style="verb">parent_hash</spanx> field is set to a zero-length octet string. Otherwise,
<spanx style="verb">parent_hash</spanx> is the Parent Hash of the next node after P on the filtered
direct path of the leaf L. This way, P's Parent Hash fixes
the new HPKE public key of each non-blank node 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, <spanx style="verb">original_sibling_tree_hash</spanx> is the tree hash of S in the ratchet tree
modified as follows: For each leaf L in <spanx style="verb">P.unmerged_leaves</spanx>, blank L and remove
it from the <spanx style="verb">unmerged_leaves</spanx> sets of all parent nodes.</t>

<t>Observe that <spanx style="verb">original_sibling_tree_hash</spanx> does not change between updates of P.
This property is crucial for the correctness of the protocol.</t>

<t>Note that <spanx style="verb">original_sibling_tree_hash</spanx> is the tree hash of S, not the parent
hash.  The <spanx style="verb">parent_hash</spanx> field in ParentHashInput captures information about the
nodes above P. the <spanx style="verb">original_sibling_tree_hash</spanx> captures information about the
subtree under S that is not being updated (and thus the subtree to which a path
secret for P would be encrypted according to <xref target="synchronizing-views-of-the-tree"/>).</t>

<t>For example, in the following tree:</t>

<figure title="A tree illustrating parent hash computations." anchor="parent-hash-tree"><artwork type="ascii-art"><![CDATA[
              W [F]
        ______|_____
       /             \
      U               Y [F]
    __|__           __|__
   /     \         /     \
  T       _       _       _
 / \     / \     / \     / \
A   B   C   D   E   F   G   _
]]></artwork></figure>

<t>With P = W and S = Y, <spanx style="verb">original_sibling_tree_hash</spanx> is the tree hash of the
following tree:</t>

<figure><artwork type="ascii-art"><![CDATA[
      Y
    __|__
   /     \
  _       _
 / \     / \
E   _   G   _
]]></artwork></figure>

<t>Because <spanx style="verb">W.unmerged_leaves</spanx> includes F, F is blanked and removed from
<spanx style="verb">Y.unmerged_leaves</spanx>.</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 a group's tree on joining.) More generally, if none of the entries
in <spanx style="verb">P.unmerged_leaves</spanx> is in the subtree under S (and thus no leaves were blanked),
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>

<section anchor="using-parent-hashes"><name>Using Parent Hashes</name>

<t>In ParentNode objects and LeafNode objects with <spanx style="verb">leaf_node_source</spanx> set to
<spanx style="verb">commit</spanx>, the value of the <spanx style="verb">parent_hash</spanx> field is the parent hash of the next
non-blank parent node above the node in question (the next node in the filtered
direct path).  Using the node labels in <xref target="parent-hash-nodes"/>, the
<spanx style="verb">parent_hash</spanx> field of D is equal to the parent hash of P with copath child S.
This is the case even when the node D is a leaf node.</t>

<t>The <spanx style="verb">parent_hash</spanx> field of a LeafNode is signed by the member.  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
prevents malicious insiders from constructing artificial ratchet trees with a
node D whose HPKE secret key is known to the insider yet where the insider isn't
assigned a leaf in the subtree rooted at D. 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 D is valid with respect to a parent node P if the
following criteria hold.  Here C and S are the children of P (for "child" and
"sibling"), with C being the child that is on the direct path of D (possibly D
itself) and S the other child:</t>

<t><list style="symbols">
  <t>D is a descendant of P in the tree.</t>
  <t>The <spanx style="verb">parent_hash</spanx> field of D is equal to the parent hash of P with copath
child S.</t>
  <t>D is in the resolution of C, and the intersection of P's <spanx style="verb">unmerged_leaves</spanx>
with the subtree under C is equal to the resolution of C with D removed.</t>
</list></t>

<t>These checks verify that D and P were updated at the same time (in the same
UpdatePath), and that they were neighbors in the UpdatePath because the nodes in
between them would have omitted from the filtered direct path.</t>

<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 <spanx style="verb">parent_hash</spanx> for the committer's new leaf and
verify that it matches the <spanx style="verb">parent_hash</spanx> value in the supplied <spanx style="verb">leaf_node</spanx>.
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>
<section anchor="key-schedule"><name>Key Schedule</name>

<t>Group keys are derived using the <spanx style="verb">Extract</spanx> and <spanx style="verb">Expand</spanx> functions from the KDF
for the group's ciphersuite, as well as the functions defined below:</t>

<figure><sourcecode type="pseudocode"><![CDATA[
ExpandWithLabel(Secret, Label, Context, Length) =
    KDF.Expand(Secret, KDFLabel, Length)

DeriveSecret(Secret, Label) =
    ExpandWithLabel(Secret, Label, "", KDF.Nh)
]]></sourcecode></figure>

<t>Where KDFLabel is specified as:</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    uint16 length;
    opaque label<V>;
    opaque context<V>;
} KDFLabel;
]]></sourcecode></figure>

<t>And its fields set to:</t>

<figure><sourcecode type="pseudocode"><![CDATA[
length = Length;
label = "MLS 1.0 " + Label;
context = Context;
]]></sourcecode></figure>

<t>The value <spanx style="verb">KDF.Nh</spanx> is the size of an output from <spanx style="verb">KDF.Extract</spanx>, in bytes.  In
the below diagram:</t>

<t><list style="symbols">
  <t>KDF.Extract takes its salt argument from the top and its Input
Key Material (IKM) argument from the left</t>
  <t>DeriveSecret takes its Secret argument from the incoming arrow</t>
  <t><spanx style="verb">0</spanx> represents an all-zero byte string of length <spanx style="verb">KDF.Nh</spanx>.</t>
</list></t>

<t>When processing a handshake message, a client combines the
following information to derive new epoch secrets:</t>

<t><list style="symbols">
  <t>The init secret from the previous epoch</t>
  <t>The commit secret for the current epoch</t>
  <t>The GroupContext object for current epoch</t>
</list></t>

<t>Given these inputs, the derivation of secrets for an epoch
proceeds as shown in the following diagram:</t>

<figure title="The MLS key schedule"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="656" width="584" viewBox="0 0 584 656" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 216,48 L 216,80" fill="none" stroke="black"/>
<path d="M 216,112 L 216,144" fill="none" stroke="black"/>
<path d="M 216,176 L 216,208" fill="none" stroke="black"/>
<path d="M 216,232 L 216,272" fill="none" stroke="black"/>
<path d="M 216,304 L 216,384" fill="none" stroke="black"/>
<path d="M 216,416 L 216,448" fill="none" stroke="black"/>
<path d="M 216,472 L 216,560" fill="none" stroke="black"/>
<path d="M 216,592 L 216,624" fill="none" stroke="black"/>
<path d="M 152,96 L 168,96" fill="none" stroke="black"/>
<path d="M 152,288 L 168,288" fill="none" stroke="black"/>
<path d="M 216,336 L 240,336" fill="none" stroke="black"/>
<path d="M 216,512 L 240,512" fill="none" stroke="black"/>
<polygon class="arrowhead" points="248,512 236,506.4 236,517.6 " fill="black" transform="rotate(0,240,512)"/>
<polygon class="arrowhead" points="248,336 236,330.4 236,341.6 " fill="black" transform="rotate(0,240,336)"/>
<polygon class="arrowhead" points="224,624 212,618.4 212,629.6 " fill="black" transform="rotate(90,216,624)"/>
<polygon class="arrowhead" points="224,560 212,554.4 212,565.6 " fill="black" transform="rotate(90,216,560)"/>
<polygon class="arrowhead" points="224,448 212,442.4 212,453.6 " fill="black" transform="rotate(90,216,448)"/>
<polygon class="arrowhead" points="224,384 212,378.4 212,389.6 " fill="black" transform="rotate(90,216,384)"/>
<polygon class="arrowhead" points="224,272 212,266.4 212,277.6 " fill="black" transform="rotate(90,216,272)"/>
<polygon class="arrowhead" points="224,208 212,202.4 212,213.6 " fill="black" transform="rotate(90,216,208)"/>
<polygon class="arrowhead" points="224,144 212,138.4 212,149.6 " fill="black" transform="rotate(90,216,144)"/>
<polygon class="arrowhead" points="224,80 212,74.4 212,85.6 " fill="black" transform="rotate(90,216,80)"/>
<polygon class="arrowhead" points="176,288 164,282.4 164,293.6 " fill="black" transform="rotate(0,168,288)"/>
<polygon class="arrowhead" points="176,96 164,90.4 164,101.6 " fill="black" transform="rotate(0,168,96)"/>
<g class="text">
<text x="232" y="36">init_secret_[n-1]</text>
<text x="88" y="100">commit_secret</text>
<text x="224" y="100">KDF.Extract</text>
<text x="220" y="164">ExpandWithLabel(.,</text>
<text x="336" y="164">"joiner",</text>
<text x="448" y="164">GroupContext_[n],</text>
<text x="552" y="164">KDF.Nh)</text>
<text x="224" y="228">joiner_secret</text>
<text x="44" y="292">psk_secret</text>
<text x="104" y="292">(or</text>
<text x="132" y="292">0)</text>
<text x="224" y="292">KDF.Extract</text>
<text x="312" y="340">DeriveSecret(.,</text>
<text x="420" y="340">"welcome")</text>
<text x="256" y="356">=</text>
<text x="324" y="356">welcome_secret</text>
<text x="220" y="404">ExpandWithLabel(.,</text>
<text x="332" y="404">"epoch",</text>
<text x="440" y="404">GroupContext_[n],</text>
<text x="544" y="404">KDF.Nh)</text>
<text x="220" y="468">epoch_secret</text>
<text x="312" y="516">DeriveSecret(.,</text>
<text x="412" y="516">&lt;label&gt;)</text>
<text x="256" y="532">=</text>
<text x="300" y="532">&lt;secret&gt;</text>
<text x="224" y="580">DeriveSecret(.,</text>
<text x="320" y="580">"init")</text>
<text x="224" y="644">init_secret_[n]</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![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></artset></figure>

<t>A number of values are derived from the epoch secret for different purposes:</t>

<texttable title="Epoch-derived secrets" anchor="epoch-derived-secrets">
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Secret</ttcol>
      <ttcol align='left'>Purpose</ttcol>
      <c>"sender data"</c>
      <c><spanx style="verb">sender_data_secret</spanx></c>
      <c>Deriving keys to encrypt sender data</c>
      <c>"encryption"</c>
      <c><spanx style="verb">encryption_secret</spanx></c>
      <c>Deriving message encryption keys (via the secret tree)</c>
      <c>"exporter"</c>
      <c><spanx style="verb">exporter_secret</spanx></c>
      <c>Deriving exported secrets</c>
      <c>"external"</c>
      <c><spanx style="verb">external_secret</spanx></c>
      <c>Deriving the external init key</c>
      <c>"confirm"</c>
      <c><spanx style="verb">confirmation_key</spanx></c>
      <c>Computing the confirmation MAC for an epoch</c>
      <c>"membership"</c>
      <c><spanx style="verb">membership_key</spanx></c>
      <c>Computing the membership MAC for an PublicMessage</c>
      <c>"resumption"</c>
      <c><spanx style="verb">resumption_psk</spanx></c>
      <c>Proving membership in this epoch (via a PSK injected later)</c>
      <c>"authentication"</c>
      <c><spanx style="verb">epoch_authenticator</spanx></c>
      <c>Confirming that two clients have the same view of the group</c>
</texttable>

<t>The <spanx style="verb">external_secret</spanx> is used to derive an HPKE key pair whose private key is
held by the entire group:</t>

<figure><sourcecode type="pseudocode"><![CDATA[
external_priv, external_pub = KEM.DeriveKeyPair(external_secret)
]]></sourcecode></figure>

<t>The public key <spanx style="verb">external_pub</spanx> 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>

<figure><sourcecode type="tls"><![CDATA[
struct {
    ProtocolVersion version = mls10;
    CipherSuite cipher_suite;
    opaque group_id<V>;
    uint64 epoch;
    opaque tree_hash<V>;
    opaque confirmed_transcript_hash<V>;
    Extension extensions<V>;
} GroupContext;
]]></sourcecode></figure>

<t>The fields in this state have the following semantics:</t>

<t><list style="symbols">
  <t>The <spanx style="verb">cipher_suite</spanx> is the cipher suite used by the group.</t>
  <t>The <spanx style="verb">group_id</spanx> field is an application-defined identifier for the
group.</t>
  <t>The <spanx style="verb">epoch</spanx> field represents the current version of the group.</t>
  <t>The <spanx style="verb">tree_hash</spanx> 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"/>.</t>
  <t>The <spanx style="verb">confirmed_transcript_hash</spanx> field contains a running hash over
the messages that led to this state.</t>
  <t>The <spanx style="verb">extensions</spanx> field contains the details of any protocol extensions that
apply to the group.</t>
</list></t>

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

<t><list style="symbols">
  <t>The <spanx style="verb">group_id</spanx> field is constant.</t>
  <t>The <spanx style="verb">epoch</spanx> field increments by one for each Commit message that
is processed.</t>
  <t>The <spanx style="verb">tree_hash</spanx> is updated to represent the current tree and
credentials.</t>
  <t>The <spanx style="verb">confirmed_transcript_hash</spanx> field is updated with the data for an
AuthenticatedContent encoding a Commit message as described below.</t>
  <t>The <spanx style="verb">extensions</spanx> field changes when a GroupContextExtensions proposal is
committed.</t>
</list></t>

</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 AuthenticatedContent
object in which they were sent.</t>

<t>The transcript hash comprises two individual hashes:</t>

<t><list style="symbols">
  <t>A <spanx style="verb">confirmed_transcript_hash</spanx> that represents a transcript over the whole
history of Commit messages, up to and including the signature of the most
recent Commit.</t>
  <t>An <spanx style="verb">interim_transcript_hash</spanx> that covers the confirmed transcript hash plus
the <spanx style="verb">confirmation_tag</spanx> of the most recent Commit.</t>
</list></t>

<t>New members compute the interim transcript hash using the <spanx style="verb">confirmation_tag</spanx>
field of the GroupInfo struct, while existing members can compute it directly.</t>

<t>Each Commit message updates these hashes by way of its enclosing
AuthenticatedContent.  The AuthenticatedContent struct is split into
ConfirmedTranscriptHashInput and InterimTranscriptHashInput. The former is used to
update the confirmed transcript hash and the latter to update the interim
transcript hash.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    WireFormat wire_format;
    FramedContent content; /* with content_type == commit */
    opaque signature<V>;
} ConfirmedTranscriptHashInput;

struct {
    MAC confirmation_tag;
} InterimTranscriptHashInput;
]]></sourcecode></figure>

<figure><sourcecode type="pseudocode"><![CDATA[
confirmed_transcript_hash_[0] = ""; /* zero-length octet string */
interim_transcript_hash_[0] = ""; /* zero-length octet string */

confirmed_transcript_hash_[epoch] =
    Hash(interim_transcript_hash_[epoch - 1] ||
        ConfirmedTranscriptHashInput_[epoch]);

interim_transcript_hash_[epoch] =
    Hash(confirmed_transcript_hash_[epoch] ||
        InterimTranscriptHashInput_[epoch]);
]]></sourcecode></figure>

<t>In this notation, <spanx style="verb">ConfirmedTranscriptHashInput_[epoch]</spanx> and
<spanx style="verb">InterimTranscriptHashInput_[epoch]</spanx> are based on the Commit that initiated the
epoch with epoch number <spanx style="verb">epoch.  (Note that the </spanx>epoch<spanx style="verb"> field in this
Commit will be set to </spanx>epoch - 1`, since it is sent within the previous epoch.)</t>

<t>The transcript hash <spanx style="verb">ConfirmedTranscriptHashInput_[epoch]</spanx> is used as the
<spanx style="verb">confirmed_transcript_hash</spanx> input to the <spanx style="verb">confirmation_tag</spanx> field for this
Commit. Each Commit thus confirms the whole transcript of Commits up to that
point, except for the latest Commit's confirmation tag.</t>

<figure title="Evolution of the transcript hashes through two epoch changes"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="720" width="576" viewBox="0 0 576 720" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 8,272 L 8,304" fill="none" stroke="black"/>
<path d="M 8,512 L 8,544" fill="none" stroke="black"/>
<path d="M 32,192 L 32,208" fill="none" stroke="black"/>
<path d="M 32,432 L 32,448" fill="none" stroke="black"/>
<path d="M 104,224 L 104,264" fill="none" stroke="black"/>
<path d="M 104,464 L 104,504" fill="none" stroke="black"/>
<path d="M 168,192 L 168,208" fill="none" stroke="black"/>
<path d="M 168,432 L 168,448" fill="none" stroke="black"/>
<path d="M 208,272 L 208,304" fill="none" stroke="black"/>
<path d="M 208,512 L 208,544" fill="none" stroke="black"/>
<path d="M 240,176 L 240,304" fill="none" stroke="black"/>
<path d="M 240,416 L 240,544" fill="none" stroke="black"/>
<path d="M 312,304 L 312,368" fill="none" stroke="black"/>
<path d="M 312,544 L 312,608" fill="none" stroke="black"/>
<path d="M 392,176 L 392,304" fill="none" stroke="black"/>
<path d="M 392,416 L 392,544" fill="none" stroke="black"/>
<path d="M 424,112 L 424,144" fill="none" stroke="black"/>
<path d="M 424,272 L 424,304" fill="none" stroke="black"/>
<path d="M 424,352 L 424,384" fill="none" stroke="black"/>
<path d="M 424,512 L 424,544" fill="none" stroke="black"/>
<path d="M 424,592 L 424,624" fill="none" stroke="black"/>
<path d="M 496,64 L 496,104" fill="none" stroke="black"/>
<path d="M 496,144 L 496,264" fill="none" stroke="black"/>
<path d="M 496,304 L 496,344" fill="none" stroke="black"/>
<path d="M 496,384 L 496,504" fill="none" stroke="black"/>
<path d="M 496,544 L 496,584" fill="none" stroke="black"/>
<path d="M 496,624 L 496,656" fill="none" stroke="black"/>
<path d="M 568,112 L 568,144" fill="none" stroke="black"/>
<path d="M 568,272 L 568,304" fill="none" stroke="black"/>
<path d="M 568,352 L 568,384" fill="none" stroke="black"/>
<path d="M 568,512 L 568,544" fill="none" stroke="black"/>
<path d="M 568,592 L 568,624" fill="none" stroke="black"/>
<path d="M 424,112 L 568,112" fill="none" stroke="black"/>
<path d="M 424,144 L 568,144" fill="none" stroke="black"/>
<path d="M 48,176 L 152,176" fill="none" stroke="black"/>
<path d="M 240,176 L 392,176" fill="none" stroke="black"/>
<path d="M 176,208 L 240,208" fill="none" stroke="black"/>
<path d="M 48,224 L 152,224" fill="none" stroke="black"/>
<path d="M 392,224 L 496,224" fill="none" stroke="black"/>
<path d="M 8,272 L 208,272" fill="none" stroke="black"/>
<path d="M 240,272 L 392,272" fill="none" stroke="black"/>
<path d="M 424,272 L 568,272" fill="none" stroke="black"/>
<path d="M 208,288 L 232,288" fill="none" stroke="black"/>
<path d="M 400,288 L 424,288" fill="none" stroke="black"/>
<path d="M 8,304 L 208,304" fill="none" stroke="black"/>
<path d="M 240,304 L 392,304" fill="none" stroke="black"/>
<path d="M 424,304 L 568,304" fill="none" stroke="black"/>
<path d="M 424,352 L 568,352" fill="none" stroke="black"/>
<path d="M 312,368 L 416,368" fill="none" stroke="black"/>
<path d="M 424,384 L 568,384" fill="none" stroke="black"/>
<path d="M 48,416 L 152,416" fill="none" stroke="black"/>
<path d="M 240,416 L 392,416" fill="none" stroke="black"/>
<path d="M 176,448 L 240,448" fill="none" stroke="black"/>
<path d="M 48,464 L 152,464" fill="none" stroke="black"/>
<path d="M 392,464 L 496,464" fill="none" stroke="black"/>
<path d="M 8,512 L 208,512" fill="none" stroke="black"/>
<path d="M 240,512 L 392,512" fill="none" stroke="black"/>
<path d="M 424,512 L 568,512" fill="none" stroke="black"/>
<path d="M 208,528 L 232,528" fill="none" stroke="black"/>
<path d="M 400,528 L 424,528" fill="none" stroke="black"/>
<path d="M 8,544 L 208,544" fill="none" stroke="black"/>
<path d="M 240,544 L 392,544" fill="none" stroke="black"/>
<path d="M 424,544 L 568,544" fill="none" stroke="black"/>
<path d="M 424,592 L 568,592" fill="none" stroke="black"/>
<path d="M 312,608 L 416,608" fill="none" stroke="black"/>
<path d="M 424,624 L 568,624" fill="none" stroke="black"/>
<path d="M 48,176 C 39.16936,176 32,183.16936 32,192" fill="none" stroke="black"/>
<path d="M 152,176 C 160.83064,176 168,183.16936 168,192" fill="none" stroke="black"/>
<path d="M 48,224 C 39.16936,224 32,216.83064 32,208" fill="none" stroke="black"/>
<path d="M 152,224 C 160.83064,224 168,216.83064 168,208" fill="none" stroke="black"/>
<path d="M 48,416 C 39.16936,416 32,423.16936 32,432" fill="none" stroke="black"/>
<path d="M 152,416 C 160.83064,416 168,423.16936 168,432" fill="none" stroke="black"/>
<path d="M 48,464 C 39.16936,464 32,456.83064 32,448" fill="none" stroke="black"/>
<path d="M 152,464 C 160.83064,464 168,456.83064 168,448" fill="none" stroke="black"/>
<polygon class="arrowhead" points="504,656 492,650.4 492,661.6 " fill="black" transform="rotate(90,496,656)"/>
<polygon class="arrowhead" points="504,584 492,578.4 492,589.6 " fill="black" transform="rotate(90,496,584)"/>
<polygon class="arrowhead" points="504,504 492,498.4 492,509.6 " fill="black" transform="rotate(90,496,504)"/>
<polygon class="arrowhead" points="504,344 492,338.4 492,349.6 " fill="black" transform="rotate(90,496,344)"/>
<polygon class="arrowhead" points="504,264 492,258.4 492,269.6 " fill="black" transform="rotate(90,496,264)"/>
<polygon class="arrowhead" points="504,104 492,98.4 492,109.6 " fill="black" transform="rotate(90,496,104)"/>
<polygon class="arrowhead" points="424,608 412,602.4 412,613.6 " fill="black" transform="rotate(0,416,608)"/>
<polygon class="arrowhead" points="424,368 412,362.4 412,373.6 " fill="black" transform="rotate(0,416,368)"/>
<polygon class="arrowhead" points="408,528 396,522.4 396,533.6 " fill="black" transform="rotate(180,400,528)"/>
<polygon class="arrowhead" points="408,288 396,282.4 396,293.6 " fill="black" transform="rotate(180,400,288)"/>
<polygon class="arrowhead" points="240,528 228,522.4 228,533.6 " fill="black" transform="rotate(0,232,528)"/>
<polygon class="arrowhead" points="240,288 228,282.4 228,293.6 " fill="black" transform="rotate(0,232,288)"/>
<polygon class="arrowhead" points="184,448 172,442.4 172,453.6 " fill="black" transform="rotate(180,176,448)"/>
<polygon class="arrowhead" points="184,208 172,202.4 172,213.6 " fill="black" transform="rotate(180,176,208)"/>
<polygon class="arrowhead" points="112,504 100,498.4 100,509.6 " fill="black" transform="rotate(90,104,504)"/>
<polygon class="arrowhead" points="112,264 100,258.4 100,269.6 " fill="black" transform="rotate(90,104,264)"/>
<g class="text">
<text x="496" y="36">...</text>
<text x="496" y="132">interim_[N-1]</text>
<text x="80" y="196">Ratchet</text>
<text x="132" y="196">Tree</text>
<text x="296" y="196">wire_format</text>
<text x="64" y="212">Key</text>
<text x="116" y="212">Schedule</text>
<text x="280" y="212">content</text>
<text x="288" y="228">epoch</text>
<text x="320" y="228">=</text>
<text x="344" y="228">N-1</text>
<text x="292" y="244">commit</text>
<text x="288" y="260">signature</text>
<text x="108" y="292">confirmation_key_[N]</text>
<text x="316" y="292">confirmation_tag</text>
<text x="496" y="292">confirmed_[N]</text>
<text x="496" y="372">interim_[N]</text>
<text x="80" y="436">Ratchet</text>
<text x="132" y="436">Tree</text>
<text x="296" y="436">wire_format</text>
<text x="64" y="452">Key</text>
<text x="116" y="452">Schedule</text>
<text x="280" y="452">content</text>
<text x="288" y="468">epoch</text>
<text x="320" y="468">=</text>
<text x="336" y="468">N</text>
<text x="292" y="484">commit</text>
<text x="288" y="500">signature</text>
<text x="108" y="532">confirmation_key_[N+1]</text>
<text x="316" y="532">confirmation_tag</text>
<text x="496" y="532">confirmed_[N+1]</text>
<text x="496" y="612">interim_[N+1]</text>
<text x="496" y="692">...</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
                                                             ...

                                                              |
                                                              |
                                                              V
                                                     +-----------------+
                                                     |  interim_[N-1]  |
                                                     +--------+--------+
                                                              |
     .--------------.         +------------------+            |
    |  Ratchet Tree  |        | wire_format      |            |
    |  Key Schedule  |<-------+ content          |            |
     '-------+------'         |   epoch = N-1    +------------+
             |                |   commit         |            |
             V                | signature        |            V
 +------------------------+   +------------------+   +-----------------+
 |  confirmation_key_[N]  +-->| confirmation_tag |<--+  confirmed_[N]  |
 +------------------------+   +--------+---------+   +--------+--------+
                                       |                      |
                                       |                      V
                                       |             +-----------------+
                                       +------------>|   interim_[N]   |
                                                     +--------+--------+
                                                              |
     .--------------.         +------------------+            |
    |  Ratchet Tree  |        | wire_format      |            |
    |  Key Schedule  |<-------+ content          |            |
     '-------+------'         |   epoch = N      +------------+
             |                |   commit         |            |
             V                | signature        |            V
 +------------------------+   +------------------+   +-----------------+
 | confirmation_key_[N+1] +-->| confirmation_tag |<--+ confirmed_[N+1] |
 +------------------------+   +--------+---------+   +--------+--------+
                                       |                      |
                                       |                      V
                                       |             +-----------------+
                                       +------------>|  interim_[N+1]  |
                                                     +--------+--------+
                                                              |
                                                              V

                                                             ...
]]></artwork></artset></figure>

</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 a new member
is joining via an external commit.</t>

<t>In this process, the joiner sends a new <spanx style="verb">init_secret</spanx> value to the group using
the HPKE export method.  The joiner then uses that <spanx style="verb">init_secret</spanx> with
information provided in the GroupInfo and an external Commit to initialize
their copy of the key schedule for the new epoch.</t>

<figure><sourcecode type="pseudocode"><![CDATA[
kem_output, context = SetupBaseS(external_pub, "")
init_secret = context.export("MLS 1.0 external init secret", KDF.Nh)
]]></sourcecode></figure>

<t>Members of the group receive the <spanx style="verb">kem_output</spanx> in an ExternalInit proposal and
perform the corresponding calculation to retrieve the <spanx style="verb">init_secret</spanx> value.</t>

<figure><sourcecode type="pseudocode"><![CDATA[
context = SetupBaseR(kem_output, external_priv, "")
init_secret = context.export("MLS 1.0 external init secret", KDF.Nh)
]]></sourcecode></figure>

<t>In both cases, the <spanx style="verb">info</spanx> 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 that 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 by the 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>

<figure><sourcecode type="tls"><![CDATA[
enum {
  reserved(0),
  external(1),
  resumption(2),
  (255)
} PSKType;

enum {
  reserved(0),
  application(1),
  reinit(2),
  branch(3),
  (255)
} 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;
]]></sourcecode></figure>

<t>Each time a client injects a PSK into a group, the <spanx style="verb">psk_nonce</spanx> of its
PreSharedKeyID MUST be set to a fresh random value of length <spanx style="verb">KDF.Nh</spanx>, where
<spanx style="verb">KDF</spanx> is the KDF for the ciphersuite of the group into which the PSK is being
injected. This ensures that even when a PSK is used multiple times, the value
used as an input into the key schedule is different each time.</t>

<t>Upon receiving a Commit with a <spanx style="verb">PreSharedKey</spanx> proposal or a GroupSecrets object
with the <spanx style="verb">psks</spanx> field set, the receiving Client includes them in the key
schedule in the order listed in the Commit, or in the <spanx style="verb">psks</spanx> field respectively.
For resumption PSKs, the PSK is defined as the <spanx style="verb">resumption_psk</spanx> of the group and
epoch specified in the <spanx style="verb">PreSharedKeyID</spanx> object. Specifically, <spanx style="verb">psk_secret</spanx> is
computed as follows:</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    PreSharedKeyID id;
    uint16 index;
    uint16 count;
} PSKLabel;
]]></sourcecode></figure>

<figure><sourcecode type="pseudocode"><![CDATA[
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]
]]></sourcecode></figure>

<t>Here <spanx style="verb">0</spanx> represents the all-zero vector of length <spanx style="verb">KDF.Nh</spanx>. The <spanx style="verb">index</spanx> field in
<spanx style="verb">PSKLabel</spanx> corresponds to the index of the PSK in the <spanx style="verb">psk</spanx> array, while the
<spanx style="verb">count</spanx> field contains the total number of PSKs.  In other words, the PSKs are
chained together with KDF.Extract invocations (labeled "Extract" for brevity
in the diagram), as follows:</t>

<figure title="Computatation of a PSK secret from a set of PSKs"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="256" width="568" viewBox="0 0 568 256" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 400,96 L 400,144" fill="none" stroke="black"/>
<path d="M 400,192 L 400,224" fill="none" stroke="black"/>
<path d="M 88,80 L 104,80" fill="none" stroke="black"/>
<path d="M 184,80 L 200,80" fill="none" stroke="black"/>
<path d="M 344,80 L 360,80" fill="none" stroke="black"/>
<path d="M 88,160 L 104,160" fill="none" stroke="black"/>
<path d="M 184,160 L 200,160" fill="none" stroke="black"/>
<path d="M 344,160 L 360,160" fill="none" stroke="black"/>
<path d="M 88,240 L 104,240" fill="none" stroke="black"/>
<path d="M 184,240 L 200,240" fill="none" stroke="black"/>
<path d="M 344,240 L 360,240" fill="none" stroke="black"/>
<polygon class="arrowhead" points="408,224 396,218.4 396,229.6 " fill="black" transform="rotate(90,400,224)"/>
<polygon class="arrowhead" points="408,144 396,138.4 396,149.6 " fill="black" transform="rotate(90,400,144)"/>
<polygon class="arrowhead" points="368,240 356,234.4 356,245.6 " fill="black" transform="rotate(0,360,240)"/>
<polygon class="arrowhead" points="368,160 356,154.4 356,165.6 " fill="black" transform="rotate(0,360,160)"/>
<polygon class="arrowhead" points="368,80 356,74.4 356,85.6 " fill="black" transform="rotate(0,360,80)"/>
<polygon class="arrowhead" points="208,240 196,234.4 196,245.6 " fill="black" transform="rotate(0,200,240)"/>
<polygon class="arrowhead" points="208,160 196,154.4 196,165.6 " fill="black" transform="rotate(0,200,160)"/>
<polygon class="arrowhead" points="208,80 196,74.4 196,85.6 " fill="black" transform="rotate(0,200,80)"/>
<polygon class="arrowhead" points="112,240 100,234.4 100,245.6 " fill="black" transform="rotate(0,104,240)"/>
<polygon class="arrowhead" points="112,160 100,154.4 100,165.6 " fill="black" transform="rotate(0,104,160)"/>
<polygon class="arrowhead" points="112,80 100,74.4 100,85.6 " fill="black" transform="rotate(0,104,80)"/>
<g class="text">
<text x="144" y="36">0</text>
<text x="400" y="36">0</text>
<text x="440" y="36">=</text>
<text x="508" y="36">psk_secret_[0]</text>
<text x="144" y="52">|</text>
<text x="400" y="52">|</text>
<text x="32" y="84">psk_[0]</text>
<text x="144" y="84">Extract</text>
<text x="272" y="84">ExpandWithLabel</text>
<text x="400" y="84">Extract</text>
<text x="440" y="84">=</text>
<text x="508" y="84">psk_secret_[1]</text>
<text x="144" y="116">0</text>
<text x="144" y="132">|</text>
<text x="32" y="164">psk_[1]</text>
<text x="144" y="164">Extract</text>
<text x="272" y="164">ExpandWithLabel</text>
<text x="400" y="164">Extract</text>
<text x="440" y="164">=</text>
<text x="508" y="164">psk_secret_[2]</text>
<text x="400" y="180">|</text>
<text x="144" y="196">0</text>
<text x="392" y="196">.</text>
<text x="408" y="196">.</text>
<text x="144" y="212">|</text>
<text x="40" y="244">psk_[n-1]</text>
<text x="144" y="244">Extract</text>
<text x="272" y="244">ExpandWithLabel</text>
<text x="400" y="244">Extract</text>
<text x="440" y="244">=</text>
<text x="508" y="244">psk_secret_[n]</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![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></artset></figure>

<t>In particular, if there are no PreSharedKey proposals in a given Commit, then
the resulting <spanx style="verb">psk_secret</spanx> is <spanx style="verb">psk_secret_[0]</spanx>, the all-zero vector.</t>

</section>
<section anchor="exporters"><name>Exporters</name>

<t>The main MLS key schedule provides an <spanx style="verb">exporter_secret</spanx> which can
be used by an application to derive new secrets for use outside of MLS.</t>

<figure><sourcecode type="pseudocode"><![CDATA[
MLS-Exporter(Label, Context, Length) =
       ExpandWithLabel(DeriveSecret(exporter_secret, Label),
                         "exported", Hash(Context), Length)
]]></sourcecode></figure>

<t>Applications SHOULD provide a unique label to <spanx style="verb">MLS-Exporter</spanx> that
identifies the secret's intended purpose. This is to help prevent the same
secret from being generated and used in two different places. To help avoid
the same label being used in different applications, an IANA registry for these
labels has been defined in <xref target="mls-exporter-labels"/>.</t>

<t>The exported values are bound to the group epoch from which the
<spanx style="verb">exporter_secret</spanx> is derived, and hence reflect 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-psk"><name>Resumption PSK</name>

<t>The main MLS key schedule provides a <spanx style="verb">resumption_psk</spanx> 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="subgroup-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 <spanx style="verb">resumption_psk</spanx> may be stored.</t>

</section>
<section anchor="epoch-authenticators"><name>Epoch Authenticators</name>

<t>The main MLS key schedule provides a per-epoch <spanx style="verb">epoch_authenticator</spanx>. If one
member of the group is being impersonated by an active attacker, the
<spanx style="verb">epoch_authenticator</spanx> computed by their client will differ from those computed
by the other group members.</t>

<t>This property can be used to construct defenses against impersonation attacks
that are effective even if members' signature keys are compromised. As a trivial
example, if the users of the clients in an MLS group were to meet in person and
reliably confirm that their epoch authenticator values were equal (using some
suitable user interface), then each user would be assured that the others were
not being impersonated in the current epoch. As soon as the epoch changed,
though, they would need to re-do this confirmation. The state of the group would
have changed, possibly introducing an attacker.</t>

<t>More generally, in order for the members of an MLS group to obtain concrete
authentication protections using the <spanx style="verb">epoch_authenticator</spanx>, they will need to
use it in some secondary protocol (such as the face-to-face protocol above).
The details of that protocol will then determine the specific authentication
protections provided to the MLS 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 <spanx style="verb">encryption_secret</spanx> 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>

<figure title="Derivation of secrets from parent to children within a secret tree"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="160" width="456" viewBox="0 0 456 160" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 72,40 L 72,128" fill="none" stroke="black"/>
<path d="M 248,80 L 248,88" fill="none" stroke="black"/>
<path d="M 72,80 L 96,80" fill="none" stroke="black"/>
<path d="M 72,128 L 96,128" fill="none" stroke="black"/>
<polygon class="arrowhead" points="104,128 92,122.4 92,133.6 " fill="black" transform="rotate(0,96,128)"/>
<polygon class="arrowhead" points="104,80 92,74.4 92,85.6 " fill="black" transform="rotate(0,96,80)"/>
<g class="text">
<text x="84" y="36">tree_node_[N]_secret</text>
<text x="176" y="84">ExpandWithLabel(.</text>
<text x="288" y="84">"tree",</text>
<text x="352" y="84">"left",</text>
<text x="416" y="84">KDF.Nh)</text>
<text x="112" y="100">=</text>
<text x="228" y="100">tree_node_[left(N)]_secret</text>
<text x="180" y="132">ExpandWithLabel(.,</text>
<text x="288" y="132">"tree",</text>
<text x="356" y="132">"right",</text>
<text x="424" y="132">KDF.Nh)</text>
<text x="112" y="148">=</text>
<text x="232" y="148">tree_node_[right(N)]_secret</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![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></artset></figure>

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

<figure title="Initialization of the hash ratchets from the leaves of a secret tree"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="160" width="472" viewBox="0 0 472 160" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 72,40 L 72,128" fill="none" stroke="black"/>
<path d="M 72,80 L 96,80" fill="none" stroke="black"/>
<path d="M 72,128 L 96,128" fill="none" stroke="black"/>
<polygon class="arrowhead" points="104,128 92,122.4 92,133.6 " fill="black" transform="rotate(0,96,128)"/>
<polygon class="arrowhead" points="104,80 92,74.4 92,85.6 " fill="black" transform="rotate(0,96,80)"/>
<g class="text">
<text x="84" y="36">tree_node_[N]_secret</text>
<text x="180" y="84">ExpandWithLabel(.,</text>
<text x="308" y="84">"handshake",</text>
<text x="376" y="84">"",</text>
<text x="424" y="84">KDF.Nh)</text>
<text x="112" y="100">=</text>
<text x="252" y="100">handshake_ratchet_secret_[N]_[0]</text>
<text x="180" y="132">ExpandWithLabel(.,</text>
<text x="316" y="132">"application",</text>
<text x="392" y="132">"",</text>
<text x="440" y="132">KDF.Nh)</text>
<text x="112" y="148">=</text>
<text x="260" y="148">application_ratchet_secret_[N]_[0]</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
tree_node_[N]_secret
        |
        |
        +--> ExpandWithLabel(., "handshake", "", KDF.Nh)
        |    = handshake_ratchet_secret_[N]_[0]
        |
        +--> ExpandWithLabel(., "application", "", KDF.Nh)
             = application_ratchet_secret_[N]_[0]
]]></artwork></artset></figure>

<section anchor="encryption-keys"><name>Encryption Keys</name>

<t>As described in <xref target="message-framing"/>, MLS encrypts three different
types of information:</t>

<t><list style="symbols">
  <t>Metadata (sender information)</t>
  <t>Handshake messages (Proposal and Commit)</t>
  <t>Application messages</t>
</list></t>

<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
<spanx style="verb">sender_data_secret</spanx> 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>The following figure shows a secret tree for a four-member group, with the
handshake and application ratchets that member D will use for sending and the
first two application keys and nonces.</t>

<figure title="Secret tree for a four-member group" anchor="secret-tree-example"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="320" width="200" viewBox="0 0 200 320" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 56,48 L 56,64" fill="none" stroke="black"/>
<path d="M 128,176 L 128,208" fill="none" stroke="black"/>
<path d="M 128,240 L 128,272" fill="none" stroke="black"/>
<path d="M 160,160 L 160,192" fill="none" stroke="black"/>
<path d="M 160,224 L 160,256" fill="none" stroke="black"/>
<path d="M 40,64 L 72,64" fill="none" stroke="black"/>
<path d="M 144,160 L 176,160" fill="none" stroke="black"/>
<path d="M 160,192 L 176,192" fill="none" stroke="black"/>
<path d="M 144,224 L 176,224" fill="none" stroke="black"/>
<path d="M 160,256 L 176,256" fill="none" stroke="black"/>
<path d="M 72,64 L 80,80" fill="none" stroke="black"/>
<path d="M 32,80 L 40,64" fill="none" stroke="black"/>
<g class="text">
<text x="56" y="36">G</text>
<text x="24" y="100">E</text>
<text x="88" y="100">F</text>
<text x="16" y="116">/</text>
<text x="32" y="116">\</text>
<text x="80" y="116">/</text>
<text x="96" y="116">\</text>
<text x="8" y="132">A</text>
<text x="40" y="132">B</text>
<text x="72" y="132">C</text>
<text x="104" y="132">D</text>
<text x="96" y="148">/</text>
<text x="112" y="148">\</text>
<text x="88" y="164">HR0</text>
<text x="128" y="164">AR0</text>
<text x="188" y="164">K0</text>
<text x="188" y="196">N0</text>
<text x="128" y="228">AR1</text>
<text x="188" y="228">K1</text>
<text x="188" y="260">N1</text>
<text x="128" y="292">AR2</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
       G
       |
     .-+-.
    /     \
   E       F
  / \     / \
 A   B   C   D
            / \
          HR0  AR0--+--K0
                |   |
                |   +--N0
                |
               AR1--+--K1
                |   |
                |   +--N1
                |
               AR2
]]></artwork></artset></figure>

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

<figure><sourcecode type="pseudocode"><![CDATA[
DeriveTreeSecret(Secret, Label, Generation, Length) =
    ExpandWithLabel(Secret, Label, Generation, Length)
]]></sourcecode></figure>

<t>Where <spanx style="verb">Generation</spanx> is encoded as a big endian uint32.</t>

<figure><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="208" width="416" viewBox="0 0 416 208" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 56,40 L 56,160" fill="none" stroke="black"/>
<path d="M 56,64 L 80,64" fill="none" stroke="black"/>
<path d="M 56,112 L 80,112" fill="none" stroke="black"/>
<polygon class="arrowhead" points="88,112 76,106.4 76,117.6 " fill="black" transform="rotate(0,80,112)"/>
<polygon class="arrowhead" points="88,64 76,58.4 76,69.6 " fill="black" transform="rotate(0,80,64)"/>
<polygon class="arrowhead" points="64,160 52,154.4 52,165.6 " fill="black" transform="rotate(90,56,160)"/>
<g class="text">
<text x="92" y="36">ratchet_secret_[N]_[j]</text>
<text x="168" y="68">DeriveTreeSecret(.,</text>
<text x="284" y="68">"nonce",</text>
<text x="332" y="68">j,</text>
<text x="380" y="68">AEAD.Nn)</text>
<text x="96" y="84">=</text>
<text x="192" y="84">ratchet_nonce_[N]_[j]</text>
<text x="168" y="116">DeriveTreeSecret(.,</text>
<text x="276" y="116">"key",</text>
<text x="316" y="116">j,</text>
<text x="372" y="116">AEAD.Nk)</text>
<text x="96" y="132">=</text>
<text x="184" y="132">ratchet_key_[N]_[j]</text>
<text x="80" y="180">DeriveTreeSecret(.,</text>
<text x="200" y="180">"secret",</text>
<text x="252" y="180">j,</text>
<text x="296" y="180">KDF.Nh)</text>
<text x="8" y="196">=</text>
<text x="116" y="196">ratchet_secret_[N]_[j+1]</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![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></artset></figure>

<t>Here, <spanx style="verb">AEAD.Nn</spanx> and <spanx style="verb">AEAD.Nk</spanx> 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>

<t><list style="symbols">
  <t>S was used to encrypt or (successfully) decrypt a message, or if</t>
  <t>a key, nonce, or secret derived from S has been consumed. (This goes for
values derived via DeriveSecret as well as ExpandWithLabel.)</t>
</list></t>

<t>Here, S may be the <spanx style="verb">init_secret</spanx>, <spanx style="verb">commit_secret</spanx>, <spanx style="verb">epoch_secret</spanx>,
<spanx style="verb">encryption_secret</spanx> 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>

<t><list style="symbols">
  <t>the <spanx style="verb">commit_secret</spanx>, <spanx style="verb">joiner_secret</spanx>, <spanx style="verb">epoch_secret</spanx>, <spanx style="verb">encryption_secret</spanx> of
that epoch n as well as the <spanx style="verb">init_secret</spanx> of the previous epoch n-1,</t>
  <t>all node secrets in the Secret Tree on the path from the root to the leaf with
node L,</t>
  <t>the first j secrets in the application data ratchet of node L and</t>
  <t><spanx style="verb">application_ratchet_nonce_[L]_[j]</spanx> and <spanx style="verb">application_ratchet_key_[L]_[j]</spanx>.</t>
</list></t>

<t>Concretely, consider the Secret Tree shown in <xref target="secret-tree-example"/>.  Client
A, B, or C would generate the illustrated values on receiving a message from D
with generation equal to 1, having not received a message with generation 0
(e.g., due to out-of-order delivery).  In such a case, the following values
would be consumed:</t>

<t><list style="symbols">
  <t>The key K1 and nonce N1 used to decrypt the message</t>
  <t>The application ratchet secrets AR1 and AR0</t>
  <t>The tree secrets D, F, G (recall that G is the <spanx style="verb">encryption_secret</spanx> for the
epoch)</t>
  <t>The <spanx style="verb">epoch_secret</spanx>, <spanx style="verb">commit_secret</spanx>, <spanx style="verb">psk_secret</spanx>, and <spanx style="verb">joiner_secret</spanx> for the
current epoch</t>
</list></t>

<t>Other values may be retained (not consumed):</t>

<t><list style="symbols">
  <t>K0 and N0 for decryption of an out-of-order message with generation 0</t>
  <t>AR2 for derivation of further message decryption keys and nonces</t>
  <t>HR0 for protection of handshake messages from D</t>
  <t>E and C for deriving secrets used by senders A, B, and C</t>
</list></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>

<t><list style="numbers">
  <t>A protocol version and ciphersuite that the client supports,</t>
  <t>a public key that others can use to encrypt a Welcome message to this client
(an "init key"), and</t>
  <t>the content of the leaf node that should be added to the tree to represent
this client.</t>
</list></t>

<t>KeyPackages are intended to be used only once and SHOULD NOT
be reused except in the 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 <spanx style="verb">init_key</spanx> MUST be a public key for the asymmetric encryption
scheme defined by <spanx style="verb">cipher_suite</spanx>, and it MUST be unique among the set of
KeyPackages created by this client.  Likewise, the <spanx style="verb">leaf_node</spanx> field MUST be
valid for the ciphersuite, including both the <spanx style="verb">encryption_key</spanx> and
<spanx style="verb">signature_key</spanx> 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 <spanx style="verb">SignWithLabel</spanx> with a label
<spanx style="verb">KeyPackageTBS</spanx> and a <spanx style="verb">Content</spanx> input comprising all of the fields except for the
signature field.</t>

<figure><sourcecode type="tls"><![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;
]]></sourcecode></figure>

<t>If a client receives a KeyPackage carried within an MLSMessage object, then it
MUST verify that the <spanx style="verb">version</spanx> field of the KeyPackage has the same value as the
<spanx style="verb">version</spanx> field of the MLSMessage.  The <spanx style="verb">version</spanx> 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 <spanx style="verb">leaf_node.capabilities</spanx> indicates what protocol versions,
ciphersuites, credential types, and non-default proposal/extension types are supported
by the client.  (Proposal and extension 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 <spanx style="verb">leaf_node.leaf_node_source</spanx> of the LeafNode in a KeyPackage MUST be
set to <spanx style="verb">key_package</spanx>.</t>

<t>Extensions included in the <spanx style="verb">extensions</spanx> or <spanx style="verb">leaf_node.extensions</spanx> fields MUST
be included in the <spanx style="verb">leaf_node.capabilities</spanx> field.  As discussed in
<xref target="extensibility"/>, unknown extensions in <spanx style="verb">KeyPackage.extensions</spanx> MUST be
ignored, and the creator of a <spanx style="verb">KeyPackage</spanx> object SHOULD include some random GREASE
extensions to help ensure that other clients correctly ignore unknown
extensions.</t>

<section anchor="keypackage-validation"><name>KeyPackage Validation</name>

<t>The validity of a KeyPackage needs to be verified at a few stages:</t>

<t><list style="symbols">
  <t>When a KeyPackage is downloaded by a group member, before it is used
to add the client to the group</t>
  <t>When a KeyPackage is received by a group member in an Add message</t>
</list></t>

<t>The client verifies the validity of a KeyPackage using the following steps:</t>

<t><list style="symbols">
  <t>Verify that the ciphersuite and protocol version of the KeyPackage match
those in the <spanx style="verb">GroupContext</spanx>.</t>
  <t>Verify that the <spanx style="verb">leaf_node</spanx> of the KeyPackage is valid for a KeyPackage
according to <xref target="leaf-node-validation"/>.</t>
  <t>Verify that the signature on the KeyPackage is valid using the public key
in <spanx style="verb">leaf_node.credential</spanx>.</t>
  <t>Verify that the value of <spanx style="verb">leaf_node.encryption_key</spanx> is different from the value of
the <spanx style="verb">init_key</spanx> field.</t>
</list></t>

</section>
</section>
<section anchor="group-creation"><name>Group Creation</name>

<t>A group is always created with a single member, the "creator".  Other members
are then added to the group using the usual Add/Commit mechanism.</t>

<t>The creator of a group is responsible for setting the group ID, ciphersuite, and
initial extensions for the group.  If the creator intends to add other members
at the time of creation, then it SHOULD Fetch KeyPackages for the members to be
added, and select a ciphersuite and extensions according to the capabilities of
the members.  To protect against downgrade attacks, the creator MUST use the
<spanx style="verb">capabilities</spanx> information in these KeyPackages to verify that the chosen
version and ciphersuite is the best option supported by all members.</t>

<t>Group IDs SHOULD be constructed in such a way that there's an overwhelmingly low
probability of honest group creators generating the same group ID, even without
assistance from the Delivery Service. For example, by making the group ID a
freshly generated random value of size <spanx style="verb">KDF.Nh</spanx>. The Delivery Service MAY
attempt to ensure that group IDs are globally unique by rejecting the creation
of new groups with a previously used ID.</t>

<t>The creator of a group MUST take the following steps to initialize the group:</t>

<t><list style="symbols">
  <t>Initialize a one-member group with the following initial values:
  <list style="symbols">
      <t>Ratchet tree: A tree with a single node, a leaf containing an HPKE public
key and credential for the creator</t>
      <t>Group ID: A value set by the creator</t>
      <t>Epoch: 0</t>
      <t>Tree hash: The root hash of the above ratchet tree</t>
      <t>Confirmed transcript hash: The zero-length octet string</t>
      <t>Epoch secret: A fresh random value of size <spanx style="verb">KDF.Nh</spanx></t>
      <t>Extensions: Any values of the creator's choosing</t>
    </list></t>
  <t>Calculate the interim transcript hash:
  <list style="symbols">
      <t>Derive the <spanx style="verb">confirmation_key</spanx> for the epoch as described in
<xref target="key-schedule"/>.</t>
      <t>Compute a <spanx style="verb">confirmation_tag</spanx> over the empty <spanx style="verb">confirmed_transcript_hash</spanx>
using the <spanx style="verb">confirmation_key</spanx> as described in <xref target="content-authentication"/>.</t>
      <t>Compute the updated <spanx style="verb">interim_transcript_hash</spanx> from the
<spanx style="verb">confirmed_transcript_hash</spanx> and the <spanx style="verb">confirmation_tag</spanx> as described in
<xref target="transcript-hashes"/></t>
    </list></t>
</list></t>

<t>At this point, the creator's state represents a one-member group with a fully
initialized key schedule, transcript hashes, etc.  Proposals and Commits can be
generated for this group state just like any other state of the group, such as
Add proposals and Commits to add other members to the group.  A GroupInfo object
for this group state can also be published to facilitate external joins.</t>

<t>Members other than the creator join either by being sent a Welcome message (as
described in <xref target="joining-via-welcome-message"/>) or by sending an external Commit
(see <xref target="joining-via-external-commits"/>).</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 <spanx style="verb">required_capabilities</spanx> extension in the GroupContext.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    ExtensionType extension_types<V>;
    ProposalType proposal_types<V>;
    CredentialType credential_types<V>;
} RequiredCapabilities;
]]></sourcecode></figure>

<t>This extension lists the extensions, proposals, and credential 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. Note that this is not true for
credential types.</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 are updated, a GroupContextExtensions
proposal is deemed invalid if it contains a <spanx style="verb">required_capabilities</spanx> 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>

<t><list style="numbers">
  <t>A member of the old group sends a ReInit proposal (see <xref target="reinit"/>)</t>
  <t>A member of the old group sends a Commit covering the ReInit proposal</t>
  <t>A member of the old group creates an initial Commit setting up a new group
that matches the ReInit and sends a Welcome message
  <list style="symbols">
      <t>The <spanx style="verb">version</spanx>, <spanx style="verb">cipher_suite</spanx>, <spanx style="verb">group_id</spanx>, and <spanx style="verb">extensions</spanx> fields of the GroupContext object in the Welcome
message MUST be the same as the corresponding fields in the ReInit
proposal. The <spanx style="verb">epoch</spanx> in the Welcome message MUST be 1.</t>
      <t>The Welcome MUST specify a PreSharedKeyID of type <spanx style="verb">resumption</spanx> with usage
<spanx style="verb">reinit</spanx>, where the <spanx style="verb">group_id</spanx> field matches the old group and the <spanx style="verb">epoch</spanx>
field indicates the epoch after the Commit covering the ReInit.</t>
    </list></t>
</list></t>

<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
recreate the group instead.  This flexibility avoids situations where a group
gets stuck between steps 2 and 3.</t>

<t>Resumption PSKs with usage <spanx style="verb">reinit</spanx> MUST NOT be used in other contexts.  A
PreSharedKey proposal with type <spanx style="verb">resumption</spanx> and usage <spanx style="verb">reinit</spanx> MUST be
considered invalid.</t>

</section>
<section anchor="subgroup-branching"><name>Subgroup 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.</t>

<t>A member can create a subgroup by performing the following steps:</t>

<t><list style="numbers">
  <t>Fetch a new KeyPackage for each group member that should be included in the
subgroup.</t>
  <t>Create an initial Commit message that sets up the new group and contains a
PreSharedKey proposal of type <spanx style="verb">resumption</spanx> with usage <spanx style="verb">branch</spanx>. To avoid key
re-use, the <spanx style="verb">psk_nonce</spanx> included in the <spanx style="verb">PreSharedKeyID</spanx> object MUST be a
randomly sampled nonce of length <spanx style="verb">KDF.Nh</spanx>.</t>
  <t>Send the corresponding Welcome message to the subgroup members.</t>
</list></t>

<t>A client receiving a Welcome including a PreSharedKey of type <spanx style="verb">resumption</spanx> with
usage <spanx style="verb">branch</spanx> MUST verify that the new group reflects a subgroup branched from
the referenced group by checking:</t>

<t><list style="symbols">
  <t>The <spanx style="verb">version</spanx> and <spanx style="verb">ciphersuite</spanx> values in the Welcome are the same as
those used by the old group.</t>
  <t>The <spanx style="verb">epoch</spanx> in the Welcome message MUST be 1.</t>
  <t>Each LeafNode in a new subgroup MUST match some LeafNode in the original
group. In this context, a pair of LeafNodes is said to "match" if the
identifiers presented by their respective credentials are considered
equivalent by the application.</t>
</list></t>

<t>Resumption PSKs with usage <spanx style="verb">branch</spanx> MUST NOT be used in other contexts.  A
PreSharedKey proposal with type <spanx style="verb">resumption</spanx> and usage <spanx style="verb">branch</spanx> 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>

<t><list style="numbers">
  <t>A proposal to make the change is broadcast to the group in a Proposal message</t>
  <t>A member of the group or a new member broadcasts a Commit message that causes
one or more proposed changes to enter into effect</t>
</list></t>

<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 a FramedContent by way of a Proposal structure
that indicates their type:</t>

<figure><sourcecode type="tls"><![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 group_context_extensions: GroupContextExtensions;
    };
} Proposal;
]]></sourcecode></figure>

<t>On receiving a FramedContent containing a Proposal, a client MUST verify the
signature inside FramedContentAuthData and that the <spanx style="verb">epoch</spanx> field of the enclosing
FramedContent is equal to the <spanx style="verb">epoch</spanx> field of the current GroupContext object.
If the verification is successful, 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.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    KeyPackage key_package;
} Add;
]]></sourcecode></figure>

<t>An Add proposal is invalid if the KeyPackage is invalid according to
<xref target="keypackage-validation"/>.</t>

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

<t><list style="symbols">
  <t>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 as
described in <xref target="adding-and-removing-leaves"/> and L is assigned the leftmost new
blank leaf.</t>
  <t>For each non-blank intermediate node along the path from the leaf L
to the root, add L's leaf index to the <spanx style="verb">unmerged_leaves</spanx> list for the node.</t>
  <t>Set the leaf node L to a new node containing the LeafNode object carried in
the <spanx style="verb">leaf_node</spanx> field of the KeyPackage in the Add.</t>
</list></t>

</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>

<figure><sourcecode type="tls"><![CDATA[
struct {
    LeafNode leaf_node;
} Update;
]]></sourcecode></figure>

<t>An Update proposal is invalid if the LeafNode is invalid for an Update
proposal according to <xref target="leaf-node-validation"/>.</t>

<t>A member of the group applies an Update message by taking the following steps:</t>

<t><list style="symbols">
  <t>Replace the sender's LeafNode with the one contained in the Update proposal</t>
  <t>Blank the intermediate nodes along the path from the sender's leaf to the root</t>
</list></t>

</section>
<section anchor="remove"><name>Remove</name>

<t>A Remove proposal requests that the member with the leaf index <spanx style="verb">removed</spanx> be removed
from the group.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    uint32 removed;
} Remove;
]]></sourcecode></figure>

<t>A Remove proposal is invalid if the <spanx style="verb">removed</spanx> field does not identify a non-blank
leaf node.</t>

<t>A member of the group applies a Remove message by taking the following steps:</t>

<t><list style="symbols">
  <t>Identify the leaf node matching <spanx style="verb">removed</spanx>.  Let L be this leaf node.</t>
  <t>Replace the leaf node L with a blank node</t>
  <t>Blank the intermediate nodes along the path from L to the root</t>
  <t>Truncate the tree by removing the right subtree until there is at least one
non-blank leaf node in the right subtree.  If the rightmost non-blank leaf has
index L, then this will result in the tree having <spanx style="verb">2^d</spanx> leaves, where <spanx style="verb">d</spanx> is
the smallest value such that <spanx style="verb">2^d &gt; L</spanx>.</t>
</list></t>

</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>

<figure><sourcecode type="tls"><![CDATA[
struct {
    PreSharedKeyID psk;
} PreSharedKey;
]]></sourcecode></figure>

<t>A PreSharedKey proposal is invalid if any of the following is true:</t>

<t><list style="symbols">
  <t>The <spanx style="verb">psktype</spanx> in the PreSharedKeyID struct is set to <spanx style="verb">resumption</spanx> and
the <spanx style="verb">usage</spanx> is <spanx style="verb">reinit</spanx> or <spanx style="verb">branch</spanx>.</t>
  <t>The <spanx style="verb">psk_nonce</spanx> is not of length <spanx style="verb">KDF.Nh</spanx>.</t>
</list></t>

<t>The <spanx style="verb">psk_nonce</spanx> MUST be randomly sampled. When processing
a Commit message that includes one or more PreSharedKey proposals, group
members derive <spanx style="verb">psk_secret</spanx> as described in <xref target="pre-shared-keys"/>, where the
order of the PSKs corresponds to the order of the <spanx style="verb">PreSharedKey</spanx> 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>

<figure><sourcecode type="tls"><![CDATA[
struct {
    opaque group_id<V>;
    ProtocolVersion version;
    CipherSuite cipher_suite;
    Extension extensions<V>;
} ReInit;
]]></sourcecode></figure>

<t>A ReInit proposal is invalid if the <spanx style="verb">version</spanx> field is less than the version
for the current group.</t>

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

</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>

<figure><sourcecode type="tls"><![CDATA[
struct {
  opaque kem_output<V>;
} ExternalInit;
]]></sourcecode></figure>

<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 <spanx style="verb">kem_output</spanx> field contains the required KEM output.</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>

<figure><sourcecode type="tls"><![CDATA[
struct {
  Extension extensions<V>;
} GroupContextExtensions;
]]></sourcecode></figure>

<t>A GroupContextExtensions proposal is invalid if it includes a
<spanx style="verb">required_capabilities</spanx> extension and some members of the group do not support
some of the required capabilities (including those added in the same commit,
and excluding those removed).</t>

<t>A member of the group applies a GroupContextExtensions proposal with the
following steps:</t>

<t><list style="symbols">
  <t>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.)</t>
</list></t>

<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 in two cases. One case, indicated by an <spanx style="verb">external</spanx> SenderType
is useful in cases where, for example, an automated 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.</t>

<t>ReInit proposals can also be sent to the group by an <spanx style="verb">external</spanx> sender, for
example to enforce a changed policy regarding MLS version or ciphersuite.</t>

<t>The <spanx style="verb">external</spanx> SenderType requires that signers are pre-provisioned
to the clients within a group and can only be used if the
<spanx style="verb">external_senders</spanx> extension is present in the group's GroupContext.</t>

<t>The other case, indicated by a <spanx style="verb">new_member_proposal</spanx> SenderType is useful when
existing members of the group can independently authorize the addition of an
MLS client proposing it be added to the group. External proposals which are not
authorized are considered invalid.</t>

<t>An external proposal MUST be sent as a PublicMessage object, since the sender
will not have the keys necessary to construct a PrivateMessage object.</t>

<section anchor="external-senders-extension"><name>External Senders Extension</name>

<t>The <spanx style="verb">external_senders</spanx> extension is a group context extension that contains
the credentials and signature keys of senders that are permitted to send
external proposals to the group.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
  SignaturePublicKey signature_key;
  Credential credential;
} ExternalSender;

ExternalSender external_senders<V>;
]]></sourcecode></figure>

</section>
</section>
</section>
<section anchor="proposal-list-validation"><name>Proposal List Validation</name>

<t>A group member creating a commit and a group member processing a Commit
MUST verify that the list of committed proposals is valid using one of the following
procedures, depending on whether the commit is external or not.  If the list of
proposals is invalid, then the Commit message MUST be rejected as invalid.</t>

<t>For a regular, i.e. not external, commit the list is invalid if any of the following
occurs:</t>

<t><list style="symbols">
  <t>It contains an individual proposal that is invalid as specified in <xref target="proposals"/>.</t>
  <t>It contains an Update proposal generated by the committer.</t>
  <t>It contains a Remove proposal that removes the committer.</t>
  <t>It contains multiple Update and/or Remove proposals that apply to the same leaf.
If the committer has received multiple such proposals they SHOULD prefer any Remove
received, or the most recent Update if there are no Removes.</t>
  <t>It contains multiple Add proposals that contain KeyPackages that represent the same
client according to the application (for example, identical signature keys).</t>
  <t>It contains an Add proposal with a KeyPackage that represents a client already
in the group according to the application, unless there is a Remove proposal
in the list removing the matching client from the group.</t>
  <t>It contains multiple PreSharedKey proposals that reference the same PreSharedKeyID.</t>
  <t>It contains multiple GroupContextExtensions proposals.</t>
  <t>It contains a ReInit proposal together with any other proposal. If the committer has
received other proposals during the epoch, they SHOULD prefer them over the
ReInit proposal, allowing the ReInit to be resent and applied in a subsequent
epoch.</t>
  <t>It contains an ExternalInit proposal.</t>
  <t>It contains a proposal with a non-default proposal type that is not supported by some
members of the group that will process the Commit (i.e., members being added
or removed by the Commit do not need to support the proposal type).</t>
  <t>After processing the commit the ratchet tree is invalid, in particular, if it
contains any leaf node that is invalid according to <xref target="leaf-node-validation"/>.</t>
</list></t>

<t>An application may extend the above procedure by additional rules, for example,
requiring application-level permissions to add members, or rules concerning
non-default proposal types.</t>

<t>For an external commit, the list is valid if it contains only the following proposals
(not necessarily in this order):</t>

<t><list style="symbols">
  <t>Exactly one ExternalInit</t>
  <t>At most one Remove proposal, with which the joiner removes an
old version of themselves. If a Remove proposal is present, then the LeafNode in the
<spanx style="verb">path</spanx> field of the external commit MUST meet the same criteria as would the LeafNode
in an Update for the removed leaf (see <xref target="update"/>). In particular, the <spanx style="verb">credential</spanx>
in the LeafNode MUST present a set of identifiers that is acceptable to the
application for the removed participant.</t>
  <t>Zero or more PreSharedKey proposals.</t>
  <t>No other proposals.</t>
</list></t>

<t>Proposal types defined in the future may make updates to the above validation
logic to incorporate considerations related to proposals of the new type.</t>

</section>
<section anchor="applying-a-proposal-list"><name>Applying a Proposal List</name>

<t>The sections above defining each proposal type describe how each individual
proposal is applied.  When creating or processing a Commit, a client applies a
list of proposals to the ratchet tree and GroupContext. The client MUST apply
the proposals in the list in the following order:</t>

<t><list style="symbols">
  <t>If there is a GroupContextExtensions proposal, replace the <spanx style="verb">extensions</spanx> field
of the GroupContext for the group with the contents of the proposal.  The
new <spanx style="verb">extensions</spanx> MUST be used for evaluating other proposals in this list. For
example, if a GroupContextExtensions proposal adds a <spanx style="verb">required_capabilities</spanx>
extension, then any Add proposals need to indicate support for those
capabilities.</t>
  <t>Apply any Update proposals to the ratchet tree, in any order.</t>
  <t>Apply any Remove proposals to the ratchet tree, in any order.</t>
  <t>Apply any Add proposals to the ratchet tree, in the order they appear in the list.</t>
  <t>Look up the PSK secrets for any PreSharedKey proposals, in the order they
appear in the list.  These secrets are then used to advance the key schedule
later in Commit processing.</t>
  <t>If there is an ExternalInit proposal, use it to derive the <spanx style="verb">init_secret</spanx> for
use later in Commit processing.</t>
  <t>If there is a ReInit proposal, note its parameters for application later in
Commit processing.</t>
</list></t>

<t>Proposal types defined in the future MUST specify how the above steps are to be
adjusted to accommodate the application of proposals of the new type.</t>

</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 AuthenticatedContent object in which the proposal was sent (see <xref target="hash-based-identifiers"/>).</t>

<figure><sourcecode type="tls"><![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;
]]></sourcecode></figure>

<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>A sender and a receiver of a Commit MUST verify that the committed list of
proposals is valid as specified in <xref target="proposal-list-validation"/>. A list is invalid if, for example,
it includes an Update and a Remove for the same member, or an Add when the sender does not have
the application-level permission to add new users.</t>

<t>The sender of a Commit SHOULD include all proposals that it has received
during the current epoch, that are valid according to the rules for their
proposal types and according to application policy, as long as this results in
a valid proposal list.</t>

<t>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 <spanx style="verb">proposals</spanx> 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 <spanx style="verb">path</spanx> field of a Commit MUST be populated.  The <spanx style="verb">path</spanx> 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>

<t><list style="symbols">
  <t><spanx style="verb">add</spanx></t>
  <t><spanx style="verb">psk</spanx></t>
  <t><spanx style="verb">reinit</spanx></t>
</list></t>

<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 <spanx style="verb">path</spanx> field of a Commit is as
follows:</t>

<figure><sourcecode type="pseudocode"><![CDATA[
pathRequiredTypes = [
    update,
    remove,
    external_init,
    group_context_extensions
]

pathRequired = false

for proposal in commit.proposals:
    pathRequired = pathRequired ||
                   (proposal.msg_type in pathRequiredTypes)

if len(commit.proposals) == 0 || pathRequired:
    assert(commit.path != null)
]]></sourcecode></figure>

<t>To summarize, a Commit can have three different configurations, with different
uses:</t>

<t><list style="numbers">
  <t>An "empty" Commit that references no proposals, which updates the committer's
contribution to the group and provides PCS with regard to the committer.</t>
  <t>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.</t>
  <t>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.</t>
</list></t>

<section anchor="creating-a-commit"><name>Creating a Commit</name>

<t>When creating or processing a Commit, a client updates the ratchet tree and
GroupContext for the group.  These values advance from an "old" state reflecting
the current epoch to a "new" state reflecting the new epoch initiated by the
Commit.  When the Commit includes an UpdatePath, a "provisional" group context
is constructed that reflects changes due to the proposals and UpdatePath, but
with the old confirmed transcript hash.</t>

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

<t><list style="symbols">
  <t>Verify that the list of proposals to be committed is valid as specified in
<xref target="proposal-list-validation"/>.</t>
  <t>Construct an initial Commit object with the <spanx style="verb">proposals</spanx>
field populated from Proposals received during the current epoch, and an empty
<spanx style="verb">path</spanx> field.</t>
  <t>Create the new ratchet tree and GroupContext by applying the list of proposals
to the old ratchet tree and GroupContext, as defined in
<xref target="applying-a-proposal-list"/></t>
  <t>Decide whether to populate the <spanx style="verb">path</spanx> field: If the <spanx style="verb">path</spanx> 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 <spanx style="verb">path</spanx> field at its discretion.</t>
  <t>If populating the <spanx style="verb">path</spanx> field:  <list style="symbols">
      <t>If this is an external commit, assign the sender the leftmost blank leaf
node in the new ratchet tree.  If there are no blank leaf nodes in the new
ratchet tree, expand the tree to the right as defined in
<xref target="adding-and-removing-leaves"/> and assign the leftmost new blank leaf to the
sender.</t>
      <t>Update the sender's direct path in the ratchet tree as described in
<xref target="synchronizing-views-of-the-tree"/>.  Define
<spanx style="verb">commit_secret</spanx> as the value <spanx style="verb">path_secret[n+1]</spanx> derived from the
last path secret value (<spanx style="verb">path_secret[n]</spanx>) derived for the UpdatePath.</t>
      <t>Construct a provisional GroupContext object containing the following values:
      <list style="symbols">
          <t><spanx style="verb">group_id</spanx>: Same as the old GroupContext</t>
          <t><spanx style="verb">epoch</spanx>: The epoch number for the new epoch</t>
          <t><spanx style="verb">tree_hash</spanx>: The tree hash of the new ratchet tree</t>
          <t><spanx style="verb">confirmed_transcript_hash</spanx>: Same as the old GroupContext</t>
          <t><spanx style="verb">extensions</spanx>: The new GroupContext extensions (possibly updated by a
GroupContextExtensions proposal)</t>
        </list></t>
      <t>Encrypt the path secrets resulting from the tree update to the group as
described in <xref target="synchronizing-views-of-the-tree"/>, using the provisional
group context as the context for HPKE encryption.</t>
      <t>Create an UpdatePath containing the sender's new leaf node and the new
public keys and encrypted path secrets along the sender's filtered direct
path.  Assign this UpdatePath to the <spanx style="verb">path</spanx> field in the Commit.</t>
    </list></t>
  <t>If not populating the <spanx style="verb">path</spanx> field: Set the <spanx style="verb">path</spanx> field in the Commit to the
null optional.  Define <spanx style="verb">commit_secret</spanx> as the all-zero vector of length
<spanx style="verb">KDF.Nh</spanx> (the same length as a <spanx style="verb">path_secret</spanx> value would be).</t>
  <t>Derive the <spanx style="verb">psk_secret</spanx> 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 <spanx style="verb">proposals</spanx> vector.</t>
  <t>Construct a FramedContent object containing the Commit object. Sign the
FramedContent using the old GroupContext as context.
  <list style="symbols">
      <t>Use the FramedContent to update the confirmed transcript hash and update
the new GroupContext.</t>
      <t>Use the <spanx style="verb">init_secret</spanx> from the previous epoch, the <spanx style="verb">commit_secret</spanx> and the
<spanx style="verb">psk_secret</spanx> as defined in the previous steps, and the new GroupContext to
compute the new <spanx style="verb">joiner_secret</spanx>, <spanx style="verb">welcome_secret</spanx>, <spanx style="verb">epoch_secret</spanx>, and
derived secrets for the new epoch.</t>
      <t>Use the <spanx style="verb">confirmation_key</spanx> for the new epoch to compute the
<spanx style="verb">confirmation_tag</spanx> value.</t>
      <t>Calculate the interim transcript hash using the new confirmed transcript
hash and the <spanx style="verb">confirmation_tag</spanx> from the FramedContentAuthData.</t>
    </list></t>
  <t>Protect the AuthenticatedContent object using keys from the old epoch:
  <list style="symbols">
      <t>If encoding as PublicMessage, compute the <spanx style="verb">membership_tag</spanx> value using the
<spanx style="verb">membership_key</spanx>.</t>
      <t>If encoding as a PrivateMessage, encrypt the message using the
<spanx style="verb">sender_data_secret</spanx> and the next (key, nonce) pair from the sender's
handshake ratchet.</t>
    </list></t>
  <t>Construct a GroupInfo reflecting the new state:
  <list style="symbols">
      <t>Group ID, epoch, tree, confirmed transcript hash, interim transcript
hash, and group context extensions from the new state</t>
      <t>The confirmation_tag from the FramedContentAuthData object</t>
      <t>Other extensions as defined by the application</t>
      <t>Optionally derive an external keypair as described in <xref target="key-schedule"/>
(required for External Commits, see <xref target="joining-via-external-commits"/>)</t>
      <t>Sign the GroupInfo using the member's private signing key</t>
      <t>Encrypt the GroupInfo using the key and nonce derived from the <spanx style="verb">joiner_secret</spanx>
for the new epoch (see <xref target="joining-via-welcome-message"/>)</t>
    </list></t>
  <t>For each new member in the group:
  <list style="symbols">
      <t>Identify the lowest common ancestor in the tree of the new member's
leaf node and the member sending the Commit</t>
      <t>If the <spanx style="verb">path</spanx> field was populated above: Compute the path secret
corresponding to the common ancestor node</t>
      <t>Compute an EncryptedGroupSecrets object that encapsulates the <spanx style="verb">init_secret</spanx>
for the current epoch and the path secret (if present).</t>
    </list></t>
  <t>Construct one or more Welcome messages 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 <spanx style="verb">psks</spanx> MUST be the same as the order of
PreSharedKey proposals in the <spanx style="verb">proposals</spanx> vector.  As discussed on
<xref target="joining-via-welcome-message"/>, the committer is free to choose how many
Welcome messages to construct.  However, the set of Welcome messages produced
in this step MUST cover every new member added in the Commit.</t>
  <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 <spanx style="verb">PreSharedKeyID</spanx> with the following
parameters:
  <list style="symbols">
      <t><spanx style="verb">psktype</spanx>: <spanx style="verb">resumption</spanx></t>
      <t><spanx style="verb">usage</spanx>: <spanx style="verb">reinit</spanx></t>
      <t><spanx style="verb">group_id</spanx>: The group ID for the current group</t>
      <t><spanx style="verb">epoch</spanx>: The epoch that the group will be in after this Commit</t>
    </list></t>
</list></t>

</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>

<t><list style="symbols">
  <t>Verify that the <spanx style="verb">epoch</spanx> field of the enclosing FramedContent is equal
to the <spanx style="verb">epoch</spanx> field of the current GroupContext object</t>
  <t>Unprotect the Commit using the keys from the current epoch:
  <list style="symbols">
      <t>If the message is encoded as PublicMessage, verify the membership MAC using
the <spanx style="verb">membership_key</spanx></t>
      <t>If the message is encoded as PrivateMessage, decrypt the message using the
<spanx style="verb">sender_data_secret</spanx> and the (key, nonce) pair from the step on the sender's
hash ratchet indicated by the <spanx style="verb">generation</spanx> field.</t>
    </list></t>
  <t>Verify that the signature on the FramedContent message as described in
<xref target="content-authentication"/>.</t>
  <t>Verify that the <spanx style="verb">proposals</spanx> vector is valid as specified in <xref target="proposal-list-validation"/>.</t>
  <t>Verify that all PreSharedKey proposals in the <spanx style="verb">proposals</spanx> vector are available.</t>
  <t>Create the new ratchet tree and GroupContext by applying the list of proposals
to the old ratchet tree and GroupContext, as defined in
<xref target="applying-a-proposal-list"/></t>
  <t>Verify that the <spanx style="verb">path</spanx> value is populated if the <spanx style="verb">proposals</spanx> vector contains
any Update or Remove proposals, or if it's empty. Otherwise, the <spanx style="verb">path</spanx> value
MAY be omitted.</t>
  <t>If the <spanx style="verb">path</spanx> value is populated, validate it and apply it to the tree:  <list style="symbols">
      <t>If this is an external commit, assign the sender the leftmost blank leaf
node in the new ratchet tree.  If there are no blank leaf nodes in the new
ratchet tree, add a blank leaf to the right side of the new ratchet tree and
assign it to the sender.</t>
      <t>Validate the LeafNode as specified in <xref target="leaf-node-validation"/>.  The
<spanx style="verb">leaf_node_source</spanx> field MUST be set to <spanx style="verb">commit</spanx>.</t>
      <t>Verify that the <spanx style="verb">encryption_key</spanx> value in the LeafNode is different from the
committer's current leaf node.</t>
      <t>Verify that none of the public keys in the UpdatePath appear in any node of
the new ratchet tree.</t>
      <t>Merge the UpdatePath into the new ratchet tree as described in
<xref target="synchronizing-views-of-the-tree"/>.</t>
      <t>Construct a provisional GroupContext object containing the following values:
      <list style="symbols">
          <t><spanx style="verb">group_id</spanx>: Same as the old GroupContext</t>
          <t><spanx style="verb">epoch</spanx>: The epoch number for the new epoch</t>
          <t><spanx style="verb">tree_hash</spanx>: The tree hash of the new ratchet tree</t>
          <t><spanx style="verb">confirmed_transcript_hash</spanx>: Same as the old GroupContext</t>
          <t><spanx style="verb">extensions</spanx>: The new GroupContext extensions (possibly updated by a
GroupContextExtensions proposal)</t>
        </list></t>
      <t>Decrypt the path secrets for UpdatePath as described in
<xref target="synchronizing-views-of-the-tree"/>, using the provisional GroupContext as
the context for HPKE decryption.</t>
      <t>Define <spanx style="verb">commit_secret</spanx> as the value <spanx style="verb">path_secret[n+1]</spanx> derived from the
last path secret value (<spanx style="verb">path_secret[n]</spanx>) derived for the UpdatePath.</t>
    </list></t>
  <t>If the <spanx style="verb">path</spanx> value is not populated: Define <spanx style="verb">commit_secret</spanx> as the all-zero
vector of length <spanx style="verb">KDF.Nh</spanx> (the same length as a <spanx style="verb">path_secret</spanx> value would be).</t>
  <t>Update the confirmed and interim transcript hashes using the new Commit, and
generate the new GroupContext.</t>
  <t>Derive the <spanx style="verb">psk_secret</spanx> 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 <spanx style="verb">proposals</spanx> vector.</t>
  <t>Use the <spanx style="verb">init_secret</spanx> from the previous epoch, the <spanx style="verb">commit_secret</spanx> and the
<spanx style="verb">psk_secret</spanx> as defined in the previous steps, and the new GroupContext to
compute the new <spanx style="verb">joiner_secret</spanx>, <spanx style="verb">welcome_secret</spanx>, <spanx style="verb">epoch_secret</spanx>, and
derived secrets for the new epoch.</t>
  <t>Use the <spanx style="verb">confirmation_key</spanx> for the new epoch to compute the confirmation tag
for this message, as described below, and verify that it is the same as the
<spanx style="verb">confirmation_tag</spanx> field in the FramedContentAuthData object.</t>
  <t>If the above checks are successful, consider the new GroupContext object
as the current state of the group.</t>
  <t>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"/>.</t>
</list></t>

<t>Note that clients need to be prepared to receive a valid Commit message which removes
them from the group. In this case, the client cannot send any more messages in the
group and SHOULD promptly delete its group state and secret tree. (A client might keep
the secret tree for a short time to decrypt late messages in the previous epoch.)</t>

</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>

<figure><sourcecode type="tls"><![CDATA[
struct {
    GroupContext group_context;
    Extension extensions<V>;
    MAC confirmation_tag;
    uint32 signer;
    /* SignWithLabel(., "GroupInfoTBS", GroupInfoTBS) */
    opaque signature<V>;
} GroupInfo;
]]></sourcecode></figure>

<t>The <spanx style="verb">group_context</spanx> field represents the current state of the group.  The
<spanx style="verb">extensions</spanx> field allows the sender to provide additional data that might be
useful to new joiners.  The <spanx style="verb">confirmation_tag</spanx> represents the  confirmation tag
from the Commit that initiated the current epoch, or for epoch 0, the
confirmation tag computed in the creation of the group (see <xref target="group-creation"/>).
(In either case, the creator of a GroupInfo may recompute the confirmation tag
as <spanx style="verb">MAC(confirmation_key, confirmed_transcript_hash)</spanx>.)</t>

<t>As discussed in <xref target="extensibility"/>, unknown extensions in <spanx style="verb">GroupInfo.extensions</spanx>
MUST be ignored, and the creator of a <spanx style="verb">GroupInfo</spanx> object SHOULD include some
random GREASE extensions to help ensure that other clients correctly ignore unknown
extensions.  Extensions in <spanx style="verb">GroupInfo.group_context.extensions</spanx>, however, MUST
be supported by the new joiner.</t>

<t>New members MUST verify that <spanx style="verb">group_id</spanx> is unique among the groups they're
currently participating in.</t>

<t>New members also MUST verify the <spanx style="verb">signature</spanx> using the public key taken from the
leaf node of the ratchet tree with leaf index <spanx style="verb">signer</spanx>. The
signature covers the following structure, comprising all the fields in the
GroupInfo above <spanx style="verb">signature</spanx>:</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    GroupContext group_context;
    Extension extensions<V>;
    MAC confirmation_tag;
    uint32 signer;
} GroupInfoTBS;
]]></sourcecode></figure>

<section anchor="joining-via-welcome-message"><name>Joining via Welcome Message</name>

<t>The sender of a Commit message is responsible for sending a Welcome message to
each new member added via Add proposals.  The format of the Welcome message
allows a single Welcome message to be encrypted for multiple new members.  It is
up to the committer to decide how many Welcome messages to create for a given
Commit. The committer could create one Welcome that is encrypted for all new
members, a different Welcome for each new member, or Welcome messages for
batches of new members (according to some batching scheme that works well for
the application).  The processes for creating and processing the Welcome are the
same in all cases, aside from the set of new members for whom a given Welcome is
encrypted.</t>

<t>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 multiple new members,
information describing the group is encrypted with a symmetric key and nonce
derived from the <spanx style="verb">joiner_secret</spanx> for the new epoch.  The <spanx style="verb">joiner_secret</spanx> 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 <spanx style="verb">epoch_secret</spanx>, they can populate the <spanx style="verb">psks</spanx> field
indicating which PSK to use.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
  opaque path_secret<V>;
} PathSecret;

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

struct {
  KeyPackageRef new_member;
  HPKECiphertext encrypted_group_secrets;
} EncryptedGroupSecrets;

struct {
  CipherSuite cipher_suite;
  EncryptedGroupSecrets secrets<V>;
  opaque encrypted_group_info<V>;
} Welcome;
]]></sourcecode></figure>

<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 <spanx style="verb">ratchet_tree</spanx>.  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>

<t><list style="symbols">
  <t>Identify an entry in the <spanx style="verb">secrets</spanx> array where the <spanx style="verb">new_member</spanx>
value corresponds to one of this client's KeyPackages, using the hash
indicated by the <spanx style="verb">cipher_suite</spanx> 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.</t>
  <t>Decrypt the <spanx style="verb">encrypted_group_secrets</spanx> value with the algorithms indicated by
the ciphersuite and the private key <spanx style="verb">init_key_priv</spanx> corresponding to
<spanx style="verb">init_key</spanx> in the referenced KeyPackage.</t>
</list></t>

<figure><sourcecode type="pseudocode"><![CDATA[
encrypted_group_secrets = EncryptWithLabel(init_key, "Welcome",
                                           encrypted_group_info, group_secrets)

group_secrets = DecryptWithLabel(init_key_priv, "Welcome",
                                 encrypted_group_info, kem_output, ciphertext)
]]></sourcecode></figure>

<t><list style="symbols">
  <t>If a <spanx style="verb">PreSharedKeyID</spanx> is part of the GroupSecrets and the client is not in
possession of the corresponding PSK, return an error. Additionally, if a
<spanx style="verb">PreSharedKeyID</spanx> has type <spanx style="verb">resumption</spanx> with usage <spanx style="verb">reinit</spanx> or <spanx style="verb">branch</spanx>, verify
that it is the only such PSK.</t>
  <t>From the <spanx style="verb">joiner_secret</spanx> in the decrypted GroupSecrets object and the PSKs
specified in the <spanx style="verb">GroupSecrets</spanx>, derive the <spanx style="verb">welcome_secret</spanx> and using that
the <spanx style="verb">welcome_key</spanx> and <spanx style="verb">welcome_nonce</spanx>. Use the key and nonce to decrypt the
<spanx style="verb">encrypted_group_info</spanx> field.</t>
</list></t>

<figure><sourcecode type="pseudocode"><![CDATA[
welcome_nonce = ExpandWithLabel(welcome_secret, "nonce", "", AEAD.Nn)
welcome_key = ExpandWithLabel(welcome_secret, "key", "", AEAD.Nk)
]]></sourcecode></figure>

<t><list style="symbols">
  <t>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 is taken from the LeafNode of the
ratchet tree with leaf index <spanx style="verb">signer</spanx>. If the node is blank or if
signature verification fails, return an error.</t>
  <t>Verify that the <spanx style="verb">group_id</spanx> is unique among the groups that the client is
currently participating in.</t>
  <t>Verify that the <spanx style="verb">cipher_suite</spanx> in the GroupInfo matches the <spanx style="verb">cipher_suite</spanx> in
the KeyPackage.</t>
  <t>Verify the integrity of the ratchet tree.  <list style="symbols">
      <t>Verify that the tree hash of the ratchet tree matches the <spanx style="verb">tree_hash</spanx> field
in GroupInfo.</t>
      <t>For each non-empty parent node, verify that it is "parent-hash valid",
as described in <xref target="verifying-parent-hashes"/>.</t>
      <t>For each non-empty leaf node, validate the LeafNode as described in
<xref target="leaf-node-validation"/>.</t>
      <t>For each non-empty parent node and each entry in the node's
<spanx style="verb">unmerged_leaves</spanx> field:      <list style="symbols">
          <t>Verify that the entry represents a non-blank leaf node that is a
descendant of the parent node.</t>
          <t>Verify that every non-blank intermediate node beween the leaf node and the
parent node also has an entry for the leaf node in its <spanx style="verb">unmerged_leaves</spanx>.</t>
          <t>Verify that the encryption key in the parent node does not appear in any
other node of the tree.</t>
        </list></t>
    </list></t>
  <t>Identify a leaf whose LeafNode is
identical to the one in the KeyPackage.  If no such field exists, return an
error.  Let <spanx style="verb">my_leaf</spanx> represent this leaf in the tree.</t>
  <t>Construct a new group state using the information in the GroupInfo object.
  <list style="symbols">
      <t>The GroupContext is the <spanx style="verb">group_context</spanx> field from the GroupInfo object.</t>
      <t>The new member's position in the tree is at the leaf <spanx style="verb">my_leaf</spanx>, as defined
above.</t>
      <t>Update the leaf <spanx style="verb">my_leaf</spanx> with the private key corresponding to the
public key in the node.</t>
      <t>If the <spanx style="verb">path_secret</spanx> value is set in the GroupSecrets object: Identify the
lowest common ancestor of the leaf node <spanx style="verb">my_leaf</spanx> and of the node of
the member with leaf index <spanx style="verb">GroupInfo.signer</spanx>. Set the private key for
this node to the private key derived from the <spanx style="verb">path_secret</spanx>.</t>
      <t>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.</t>
    </list></t>
  <t>Use the <spanx style="verb">joiner_secret</spanx> from the GroupSecrets object to generate the epoch secret
and other derived secrets for the current epoch.</t>
  <t>Set the confirmed transcript hash in the new state to the value of the
<spanx style="verb">confirmed_transcript_hash</spanx> in the GroupInfo.</t>
  <t>Verify the confirmation tag in the GroupInfo using the derived confirmation
key and the <spanx style="verb">confirmed_transcript_hash</spanx> from the GroupInfo.</t>
  <t>Use the confirmed transcript hash and confirmation tag to compute the interim
transcript hash in the new state.</t>
  <t>If a <spanx style="verb">PreSharedKeyID</spanx> was used that has type <spanx style="verb">resumption</spanx> with usage <spanx style="verb">reinit</spanx>
or <spanx style="verb">branch</spanx>, verify that the <spanx style="verb">epoch</spanx> field in the GroupInfo is equal to 1.  <list style="symbols">
      <t>For usage <spanx style="verb">reinit</spanx>, verify that the last Commit to the referenced group
contains a ReInit proposal and that the <spanx style="verb">group_id</spanx>, <spanx style="verb">version</spanx>,
<spanx style="verb">cipher_suite</spanx>, and <spanx style="verb">group_context.extensions</spanx> fields of the GroupInfo match
the ReInit proposal. Additionally, verify that all the members of the old
group are also members of the new group, according to the application.</t>
      <t>For usage <spanx style="verb">branch</spanx>, verify that the <spanx style="verb">version</spanx> and <spanx style="verb">cipher_suite</spanx> of the new
group match those of the old group, and that the members of the new group
compose a subset of the members of the old group, according to the
application.</t>
    </list></t>
</list></t>

</section>
<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>

<t><list style="symbols">
  <t>group ID</t>
  <t>epoch ID</t>
  <t>ciphersuite</t>
  <t>public tree hash</t>
  <t>confirmed transcript hash</t>
  <t>confirmation tag of the most recent Commit</t>
  <t>group extensions</t>
  <t>external public key</t>
</list></t>

<t>In other words, to join a group via an External Commit, a new member needs a
GroupInfo with an <spanx style="verb">external_pub</spanx> extension present in its <spanx style="verb">extensions</spanx> field.</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    HPKEPublicKey external_pub;
} ExternalPub;
]]></sourcecode></figure>

<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 <spanx style="verb">tree_hash</spanx> field is used the same way as in the Welcome message.
The full tree can be included via the <spanx style="verb">ratchet_tree</spanx> 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>

<t><list style="symbols">
  <t>External Commits MUST contain a <spanx style="verb">path</spanx> 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.</t>
  <t>The Commit MUST NOT include any proposals by reference, since an external
joiner cannot determine the validity of proposals sent within the group</t>
  <t>External Commits MUST be signed by the new member.  In particular, the
signature on the enclosing AuthenticatedContent MUST verify using the public key for
the credential in the <spanx style="verb">leaf_node</spanx> of the <spanx style="verb">path</spanx> field.</t>
  <t>When processing a Commit, both existing and new members MUST use the external
init secret as described in <xref target="external-initialization"/>.</t>
  <t>The sender type for the AuthenticatedContent encapsulating the External Commit MUST be
<spanx style="verb">new_member_commit</spanx>.</t>
</list></t>

<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="ratchet-tree-extension"><name>Ratchet Tree Extension</name>

<t>By default, a GroupInfo message only provides the joiner with a hash of
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 <spanx style="verb">ratchet_tree</spanx>, containing a <spanx style="verb">ratchet_tree</spanx> object of the following form:</t>

<figure><sourcecode type="tls"><![CDATA[
struct {
    NodeType node_type;
    select (Node.node_type) {
        case leaf:   LeafNode leaf_node;
        case parent: ParentNode parent_node;
    };
} Node;

optional<Node> ratchet_tree<V>;
]]></sourcecode></figure>

<t>Each entry in the <spanx style="verb">ratchet_tree</spanx> vector provides the value for a node in the
tree, or the null optional for a blank node.</t>

<t>The nodes are listed in the order specified by a left-to-right in-order
traversal of the ratchet 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>If the tree has <spanx style="verb">2^d</spanx> leaves, then it has <spanx style="verb">2^(d+1) - 1</spanx> nodes.  The
<spanx style="verb">ratchet_tree</spanx> vector logically has this number of entries, but the sender
MUST NOT include blank nodes after the last non-blank node.  The receiver MUST
check that the last node in <spanx style="verb">ratchet_tree</spanx> is non-blank, and extend it to the
right until it has a length of the form <spanx style="verb">2^(d+1) - 1</spanx>, adding the minimum number
of blank values possible.  (Obviously, this may be done "virtually", by
synthesizing blank nodes when required, as opposed to actually changing the
structure in memory.)</t>

<t>The leaves of the tree are stored in even-numbered entries in the array (the
leaf with index <spanx style="verb">L</spanx> in array position <spanx style="verb">2*L</spanx>). The root node of the tree is at
position <spanx style="verb">2^d - 1</spanx> 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>

<figure><sourcecode type="python"><![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
    d = 0
    while (2**(d+1)) < len(nodes):
       d += 1
    R = 2**d - 1
    root = Node(nodes[R])
    root.left = subtree_root(nodes[:R])
    root.right = subtree_root(nodes[(R+1):])
    return root
]]></sourcecode></figure>

<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>For example, the following tree with six non-blank leaves would be represented
as an array of eleven elements, <spanx style="verb">[A, W, B, X, C, _, D, Y, E, Z, F]</spanx>.  The above
decoding procedure would identify the subtree roots as follows (using R to
represent a subtree root):</t>

<figure title="Left-to-right in-order traversal of a six-member tree"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="304" width="240" viewBox="0 0 240 304" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 56,112 L 56,128" fill="none" stroke="black"/>
<path d="M 120,48 L 120,64" fill="none" stroke="black"/>
<path d="M 184,104 L 184,128" fill="none" stroke="black"/>
<path d="M 72,64 L 168,64" fill="none" stroke="black"/>
<path d="M 40,128 L 72,128" fill="none" stroke="black"/>
<path d="M 168,128 L 200,128" fill="none" stroke="black"/>
<path d="M 8,256 L 104,256" fill="none" stroke="black"/>
<path d="M 136,256 L 232,256" fill="none" stroke="black"/>
<path d="M 8,272 L 40,272" fill="none" stroke="black"/>
<path d="M 72,272 L 104,272" fill="none" stroke="black"/>
<path d="M 136,272 L 168,272" fill="none" stroke="black"/>
<path d="M 200,272 L 232,272" fill="none" stroke="black"/>
<path d="M 72,128 L 80,144" fill="none" stroke="black"/>
<path d="M 92,168 L 96,176" fill="none" stroke="black"/>
<path d="M 168,64 L 176,80" fill="none" stroke="black"/>
<path d="M 200,128 L 208,144" fill="none" stroke="black"/>
<path d="M 220,168 L 224,176" fill="none" stroke="black"/>
<path d="M 32,144 L 40,128" fill="none" stroke="black"/>
<path d="M 64,80 L 72,64" fill="none" stroke="black"/>
<path d="M 80,176 L 84,168" fill="none" stroke="black"/>
<path d="M 160,144 L 168,128" fill="none" stroke="black"/>
<path d="M 208,176 L 212,168" fill="none" stroke="black"/>
<polygon class="arrowhead" points="240,272 228,266.4 228,277.6 " fill="black" transform="rotate(0,232,272)"/>
<polygon class="arrowhead" points="240,256 228,250.4 228,261.6 " fill="black" transform="rotate(0,232,256)"/>
<polygon class="arrowhead" points="208,272 196,266.4 196,277.6 " fill="black" transform="rotate(180,200,272)"/>
<polygon class="arrowhead" points="176,272 164,266.4 164,277.6 " fill="black" transform="rotate(0,168,272)"/>
<polygon class="arrowhead" points="144,272 132,266.4 132,277.6 " fill="black" transform="rotate(180,136,272)"/>
<polygon class="arrowhead" points="144,256 132,250.4 132,261.6 " fill="black" transform="rotate(180,136,256)"/>
<polygon class="arrowhead" points="112,272 100,266.4 100,277.6 " fill="black" transform="rotate(0,104,272)"/>
<polygon class="arrowhead" points="112,256 100,250.4 100,261.6 " fill="black" transform="rotate(0,104,256)"/>
<polygon class="arrowhead" points="80,272 68,266.4 68,277.6 " fill="black" transform="rotate(180,72,272)"/>
<polygon class="arrowhead" points="48,272 36,266.4 36,277.6 " fill="black" transform="rotate(0,40,272)"/>
<polygon class="arrowhead" points="16,272 4,266.4 4,277.6 " fill="black" transform="rotate(180,8,272)"/>
<polygon class="arrowhead" points="16,256 4,250.4 4,261.6 " fill="black" transform="rotate(180,8,256)"/>
<g class="text">
<text x="120" y="36">Y</text>
<text x="56" y="100">X</text>
<text x="184" y="100">_</text>
<text x="24" y="164">W</text>
<text x="88" y="164">_</text>
<text x="152" y="164">Z</text>
<text x="216" y="164">_</text>
<text x="16" y="180">/</text>
<text x="32" y="180">\</text>
<text x="144" y="180">/</text>
<text x="160" y="180">\</text>
<text x="8" y="196">A</text>
<text x="40" y="196">B</text>
<text x="72" y="196">C</text>
<text x="104" y="196">D</text>
<text x="136" y="196">E</text>
<text x="168" y="196">F</text>
<text x="200" y="196">_</text>
<text x="232" y="196">_</text>
<text x="168" y="228">1</text>
<text x="8" y="244">0</text>
<text x="24" y="244">1</text>
<text x="40" y="244">2</text>
<text x="56" y="244">3</text>
<text x="72" y="244">4</text>
<text x="88" y="244">5</text>
<text x="104" y="244">6</text>
<text x="120" y="244">7</text>
<text x="136" y="244">8</text>
<text x="152" y="244">9</text>
<text x="168" y="244">0</text>
<text x="120" y="260">R</text>
<text x="56" y="276">R</text>
<text x="184" y="276">R</text>
<text x="8" y="292">-</text>
<text x="24" y="292">R</text>
<text x="40" y="292">-</text>
<text x="72" y="292">-</text>
<text x="88" y="292">R</text>
<text x="104" y="292">-</text>
<text x="136" y="292">-</text>
<text x="152" y="292">R</text>
<text x="168" y="292">-</text>
<text x="200" y="292">-</text>
<text x="216" y="292">R</text>
<text x="232" y="292">-</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
              Y
              |
        .-----+-----.
       /             \
      X               _
      |               |
    .-+-.           .-+-.
   /     \         /     \
  W       _       Z       _
 / \     / \     / \     / \
A   B   C   D   E   F   _   _

                    1
0 1 2 3 4 5 6 7 8 9 0
<-----------> R <----------->
<---> R <--->   <---> R <--->
- R -   - R -   - R -   - R -
]]></artwork></artset></figure>

<t>The presence of a <spanx style="verb">ratchet_tree</spanx> 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 <spanx style="verb">tree_hash</spanx> of the GroupContext before
using the tree for MLS operations.</t>

</section>
</section>
</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="additional-ciphersuites"><name>Additional 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="RFC9113"/>.</t>

</section>
<section anchor="proposals-1"><name>Proposals</name>

<t>Commit messages do not have an extension field because the set of proposals 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="credential-extensibility"><name>Credential Extensibility</name>

<t>In order to ensure that MLS provides meaningful authentication it is important
that each member is able to authenticate some identity information for each
other member.  Identity information is encoded in Credentials, so this property
is provided by ensuring that members use compatible credential types.</t>

<t>The types of credential that may be used in a group is restricted to what all
members of the group support, as specified by the <spanx style="verb">capabilities</spanx> field of each
LeafNode in the ratchet tree. An application can introduce new credential types
by choosing an unallocated identifier from the registry in
<xref target="mls-credential-types"/> and indicating support for the credential type in
published LeafNodes, whether in Update proposals to existing groups or
KeyPackages that are added to new groups. Once all members in a group indicate
support for the credential type, members can start using LeafNodes with the new
credential. Application may enforce that certain credential types always remain
supported by adding a <spanx style="verb">required_capabilities</spanx> extension to the group's
GroupContext, which would prevent any member from being added to the group that
doesn't support them.</t>

<t>In future extensions to MLS, it may be useful to allow a member to present more
than one credential.  For example, such credentials might present different
attributes attested by different authorities.  To be consistent with the general
principle stated at the beginning of this section, such an extension would need
to ensure that each member can authenticate some identity for each other member.
For each pair of members (Alice, Bob), Alice would need to present at least one
credential of a type that Bob supports.</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>

<t><list style="symbols">
  <t>In KeyPackages, to describe additional information related to the client</t>
  <t>In LeafNodes, to describe additional information about the client or its
participation in the group (once in the ratchet tree)</t>
  <t>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</t>
  <t>In the GroupContext object, to ensure that all members of the group have the
same view of the parameters in use</t>
</list></t>

<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 <spanx style="verb">capabilities</spanx> field of their LeafNode. New
members of a group are informed of the group's GroupContext extensions via the
<spanx style="verb">extensions</spanx> field in the <spanx style="verb">group_context</spanx> field of the GroupInfo object. The
<spanx style="verb">extensions</spanx> field in a GroupInfo object (outside of the <spanx style="verb">group_context</spanx> field)
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 the secure and forward-compatible
negotiation of extensions.  For this to work, implementations MUST correctly
handle extensible fields:</t>

<t><list style="symbols">
  <t>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.</t>
  <t>A client processing a KeyPackage object MUST ignore all unrecognized values
in the <spanx style="verb">capabilities</spanx> field of the <spanx style="verb">LeafNode</spanx>, and all unknown extensions in
the <spanx style="verb">extensions</spanx> and <spanx style="verb">leaf_node.extensions</spanx> fields.  Otherwise, it could fail
to interoperate with newer clients.</t>
  <t>A client processing a GroupInfo object MUST ignore all unrecognized
extensions in the <spanx style="verb">extensions</spanx> field.</t>
  <t>Any field containing a list of extensions MUST NOT have more than one
extension of any given type.</t>
  <t>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 <spanx style="verb">capabilities</spanx>
field MUST indicate support for each extension in the GroupContext.</t>
  <t>A client joining a group MUST verify that it supports every extension in the
GroupContext for the group.  Otherwise, it MUST treat the enclosing
GroupInfo message as invalid and not join the group.</t>
</list></t>

<t>Note that the latter two requirements mean that all MLS GroupContext 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>The parameters of a group may be changed by sending a GroupContextExtensions
proposal to enable additional extensions (<xref target="groupcontextextensions"/>), or
by reinitializing the group (<xref target="reinitialization"/>).</t>

</section>
<section anchor="grease"><name>GREASE</name>

<t>As described in <xref target="extensions"/>, clients are required to ignore unknown values
for certain parameters.  To help ensure that other clients implement this
behavior, a client can follow the “Generate Random Extensions And Sustain
Extensibility” or GREASE approach described in <xref target="RFC8701"/>.  In the context of
MLS, this means that a client generating a KeyPackage, LeafNode, or GroupInfo object includes
random values in certain fields which would be ignored by a
correctly-implemented client processing the message.  A client that incorrectly
rejects unknown code points will fail to process such a message, providing a
signal to its implementer that the client needs to be fixed.</t>

<t>When generating the following fields, an MLS client SHOULD include a random
selection of values chosen from these GREASE values:</t>

<t><list style="symbols">
  <t><spanx style="verb">LeafNode.capabilities.ciphersuites</spanx></t>
  <t><spanx style="verb">LeafNode.capabilities.extensions</spanx></t>
  <t><spanx style="verb">LeafNode.capabilities.proposals</spanx></t>
  <t><spanx style="verb">LeafNode.capabilities.credentials</spanx></t>
  <t><spanx style="verb">LeafNode.extensions</spanx></t>
  <t><spanx style="verb">KeyPackage.extensions</spanx></t>
  <t><spanx style="verb">GroupInfo.extensions</spanx></t>
</list></t>

<t>For the KeyPackage and GroupInfo extensions, the <spanx style="verb">extension_data</spanx> for GREASE
extensions MAY have any contents selected by the sender, since they will be
ignored by a correctly-implemented receiver.  For example, a sender might
populate these extensions with a randomly-sized amount of random data.</t>

<t>A set of values reserved for GREASE have been registered in the various
registries in <xref target="iana-considerations"/>.  This prevents conflict between GREASE
and real future values.  The following values are reserved in each registry:
<spanx style="verb">0x0A0A</spanx>, <spanx style="verb">0x1A1A</spanx>, <spanx style="verb">0x2A2A</spanx>, <spanx style="verb">0x3A3A</spanx>, <spanx style="verb">0x4A4A</spanx>, <spanx style="verb">0x5A5A</spanx>, <spanx style="verb">0x6A6A</spanx>, <spanx style="verb">0x7A7A</spanx>,
<spanx style="verb">0x8A8A</spanx>, <spanx style="verb">0x9A9A</spanx>, <spanx style="verb">0xAAAA</spanx>, <spanx style="verb">0xBABA</spanx>, <spanx style="verb">0xCACA</spanx>, <spanx style="verb">0xDADA</spanx>, and <spanx style="verb">0xEAEA</spanx>.  (The
value <spanx style="verb">0xFAFA</spanx> falls within the private use range.) These values MUST only
appear in the fields listed above, and not, for example, in the <spanx style="verb">proposal_type</spanx>
field of a Proposal.  Clients MUST NOT implement any special processing rules
for how to handle these values when receiving them, since this negates their
utility for detecting extensibility failures.
GREASE values MUST be handled using normal logic for processing unsupported
values.  When comparing lists of capabilities to identify mutually-supported
capabilities, clients MUST represent their own capabilities with a list
containing only the capabilities actually supported, without any GREASE values.
In other words, lists including GREASE values are only sent to other clients;
representations of a client's own capabilities MUST NOT contain GREASE values.</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 <spanx style="verb">epoch</spanx> field of the enclosing FramedContent.
If the changes implied by a Commit message 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>Applications MUST have an established way to resolve conflicting Commit messages
for the same epoch. They can do this either by preventing conflicting messages
from occurring in the first place, or by developing rules for deciding which
Commit out of several sent in an epoch will be canonical. The approach chosen
MUST minimize the amount of time that forked or previous group states are kept
in memory, and promptly delete them once they're no longer necessary to ensure
forward secrecy.</t>

<t>The generation of Commit messages MUST NOT modify a client's state, since the
client doesn't know at that time whether the changes implied by the Commit
message will conflict with another Commit or not. Similarly, the Welcome
message corresponding to a Commit MUST NOT be delivered to a new
joiner until it's clear that the Commit has been accepted.</t>

<t>Regardless of how messages are kept in sequence, there is a risk that
in a sufficiently busy group, a given member may never
be able to send a Commit message because they always lose to other
members. The degree to which this is a practical problem will depend
on the dynamics of the application.</t>

</section>
<section anchor="application-messages"><name>Application Messages</name>

<t>The primary purpose of handshake messages are to provide an authenticated group
key exchange to clients. In order to protect application messages sent among the
members of a group, the <spanx style="verb">encryption_secret</spanx> provided by the key schedule is used
to derive a sequence of nonces and keys for message encryption. Every epoch
moves the key schedule forward which triggers the creation of a new secret
tree, as described in <xref target="secret-tree"/>, along with a new set of symmetric
ratchets of nonces and keys for each member.</t>

<t>Each client maintains their own local copy of the 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>The group identifier and epoch allow a recipient to know which group secrets
should be used and from which <spanx style="verb">epoch_secret</spanx> to start computing other secrets.
The sender identifier and content type is used to identify which
symmetric ratchet to use from the secret tree. The
<spanx style="verb">generation</spanx> counter determines how far into the ratchet to iterate in
order to produce the required nonce and key for encryption or decryption.</t>

<section anchor="padding"><name>Padding</name>

<t>Application messages MAY 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?", then the answer "Wednesday" could be leaked
to an adversary solely by the ciphertext length.</t>

<t>The length of the <spanx style="verb">padding</spanx> field in <spanx style="verb">PrivateMessageContent</spanx> can be
chosen by the sender at the time of message encryption. Senders may use padding
to reduce the ability of attackers outside the group to infer the size of the
encrypted content.  Note, however, that the transports used to carry MLS
messages may have maximum message sizes, so padding schemes SHOULD avoid
increasing message size beyond any such limits that exist in a given
deployment scenario.</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 <xref target="I-D.irtf-cfrg-aead-limits"/>.</t>

<t>Note that each change to the group through a handshake message will also set a
new <spanx style="verb">encryption_secret</spanx>. 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
generation counter, a client can receive messages out of order. When messages
are received out of order, the client moves the sender ratchet forward to match
the received generation counter. Any unused nonce and key pairs from the ratchet
are potentially stored so that they can be used to decrypt the messages which
were delayed or reordered.</t>

<t>Applications SHOULD define a policy on how long to keep unused nonce and key
pairs for a sender, and the maximum number to keep. This is in addition to
ensuring that these secrets are deleted according to the deletion schedule
defined in <xref target="deletion-schedule"/>. Applications SHOULD also define a policy
limiting the maximum number of steps that clients will move the ratchet forward
in response to a new message.  Messages received with a generation counter
that's too much higher than the last message received would then be rejected.
This avoids causing a denial-of-service attack by requiring the recipient to
perform an excessive number of key derivations. For example, a malicious group
member could send a message with <spanx style="verb">generation = 0xffffffff</spanx> at the beginning of a
new epoch, forcing recipients to perform billions of key derivations unless they
apply limits of the type discussed above.</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.  The Security Considerations section of <xref target="I-D.ietf-mls-architecture"/>
provides some citations to detailed security analyses.</t>

<section anchor="transport-security"><name>Transport Security</name>

<t>Because MLS messages are protected at the message level, the
confidentiality and integrity of the group state do not depend on
those messages being protected in transit. However, an attacker who
can observe those messages in transit will be able to learn about the
group state, including potentially the group membership (see
<xref target="group-membership"/> below). Such an attacker might also be able to
mount denial-of-service attacks on the group or exclude new members by
selectively removing messages in transit. In order to prevent this
form of attack, it is RECOMMENDED that all MLS messages be carried
over a secure transport such as TLS <xref target="RFC8446"/> or QUIC <xref target="RFC9000"/>.</t>

</section>
<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 is
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="confidentiality-of-sender-data"><name>Confidentiality of Sender Data</name>

<t>The PrivateMessage framing encrypts "sender data" that identifies which group
member sent an encrypted message, as described in <xref target="sender-data-encryption"/>.
As with the QUIC header protection scheme <xref section="5.4" sectionFormat="comma" target="RFC9001"/>, this scheme
is a variant of the HN1 construction analyzed in <xref target="NAN"/>.  A sample of the
ciphertext is combined with a <spanx style="verb">sender_data_secret</spanx> to derive a key and nonce
that are used for AEAD encryption of the sender data.</t>

<t><spanx style="verb">pseudocode
(key, nonce) = PRF(sender_data_secret, sample)
encrypted_sender_data =
  AEAD.Seal(key, nonce, sender_data_aad, sender_data)
</spanx></t>

<t>The only differences between this construction and HN1 as described in <xref target="NAN"/> are
(1) that it uses authenticated encryption instead of unauthenticated encryption
and (2) that it protects information used to derive a nonce instead of the nonce
itself.</t>

<t>Since the <spanx style="verb">sender_data_secret</spanx> is distinct from the content encryption key, it
follows that the sender data encryption scheme achieves AE2 security as defined
in <xref target="NAN"/>, and therefore guarantees the confidentiality of the sender data.</t>

<t>Use of the same <spanx style="verb">sender_data_secret</spanx> and ciphertext sample more than once risks
compromising sender data protection by reusing an AEAD (key, nonce) pair.  For
example, in many AEAD schemes, reusing a key and nonce reveals the exclusive OR
of the two plaintexts. Assuming the ciphertext output of the AEAD algorithm is
indistinguishable from random data (i.e., the AEAD is AE1-secure in the phrasing
of <xref target="NAN"/>), the odds of two ciphertext samples being identical is roughly
2<sup>-L/2</sup>, i.e., the birthday bound.</t>

<t>The AEAD algorithms for ciphersuites defined in this document all provide this
property. The size of the sample depends on the ciphersuite's hash function, but
in all cases, the probability of collision is no more than 2<sup>-128</sup>.
Any future ciphersuite MUST use an AE1-secure AEAD algorithm.</t>

</section>
<section anchor="confidentiality-of-group-metadata"><name>Confidentiality of Group Metadata</name>

<t>MLS does not provide confidentiality protection to some messages and fields
within messages:</t>

<t><list style="symbols">
  <t>KeyPackage messages</t>
  <t>GroupInfo messages</t>
  <t>The unencrypted portion of a Welcome message</t>
  <t>Any Proposal or Commit messages sent as PublicMessage messages</t>
  <t>The unencrypted header fields in PrivateMessage messages</t>
  <t>The lengths of encrypted Welcome and PrivateMessage messages</t>
</list></t>

<t>The only mechanism MLS provides for confidentially distributing a group's
ratchet tree to new members is to send it in a Welcome message as a
<spanx style="verb">ratchet_tree</spanx> extension.  If an application distributes the tree in some other
way, its security will depend on that application mechanism.</t>

<t>A party observing these fields might be able to infer certain properties of the
group:</t>

<t><list style="symbols">
  <t>Group ID</t>
  <t>Current epoch and frequency of epoch changes</t>
  <t>Frequency of messages within an epoch</t>
  <t>Group extensions</t>
  <t>Group membership</t>
</list></t>

<t>The amount of metadata exposed to parties outside the group, and thus the
ability of these parties to infer the group's properties, depends on several
aspects of the DS design, such as:</t>

<t><list style="symbols">
  <t>How KeyPackages are distributed</t>
  <t>How the ratchet tree is distributed</t>
  <t>How prospective external joiners get a GroupInfo object for the group</t>
  <t>Whether Proposal and Commit messages are sent as PublicMessage or PrivateMessage</t>
</list></t>

<t>In the remainder of this section, we note the ways that the above properties of
the group are reflected in unprotected group messages, as a guide to
understanding how they might be exposed or protected in a given application.</t>

<section anchor="groupid-epoch-and-message-frequency"><name>GroupID, Epoch, and Message Frequency</name>

<t>MLS provides no mechanism to protect the group ID and epoch of a message from
the DS, so the group ID and the frequency of messages and epoch changes are not
protected against inspection by the DS. However, any modifications to these
will cause decryption failure.</t>

</section>
<section anchor="group-extensions"><name>Group Extensions</name>

<t>A group's extensions are first set by the group's creator and then updated by
GroupContextExtensions proposals.  A GroupContextExtension proposal sent as
a PublicMessage leaks the group's extensions.</t>

<t>A new member learns the group's extensions via a GroupInfo object.  When the new
member joins via a Welcome message, the Welcome message's encryption protects
the GroupInfo message.  When the new member joins via an external join, they
must be provided with a GroupInfo object.  Protection of this GroupInfo object
is up to the application -- if it is transmitted over a channel that is not
confidential to the group and the new joiner, then it will leak the group's
extensions.</t>

</section>
<section anchor="group-membership"><name>Group Membership</name>

<t>The group's membership is represented directly by its ratchet tree, since each
member's LeafNode contains members' cryptographic keys, a credential that
contains information about the member's identity, and possibly other
identifiers.  Applications that expose the group's ratchet tree outside the
group also leak the group's membership.</t>

<t>Changes to the group's membership are made by means of Add and Remove proposals.
If these proposals are sent as PublicMessage, then information will be leaked
about the corresponding changes to the group's membership.  A party that sees
all of these changes can reconstruct the group membership.</t>

<t>Welcome messages contain a hash of each KeyPackage for which the Welcome message
is encrypted.  If a party has access to a pool of KeyPackages and observes a
Welcome message, then they can identify the KeyPackage representing the new
member.  If the party can also associate the Welcome with a group, then the
party can infer that the identified new member was added to that group.</t>

<t>Note that these information leaks reveal the group's membership only to the degree
that that membership is revealed by the contents of a member's LeafNode in the
ratchet tree.  In some cases, this may be quite direct, e.g., due to credentials
attesting to identifiers such as email addresses.  An application could
construct a member's leaf node to be less identifying, e.g., by using a
pseudonymous credential and frequently rotating encryption and signature keys.</t>

</section>
</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 <spanx style="verb">membership_tag</spanx> 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 have the
required PSKs.</t>

</section>
<section anchor="forward-secrecy-and-post-compromise-security"><name>Forward Secrecy and Post-Compromise Security</name>

<t>Forward secrecy and post-compromise security are important security notions for
long-lived MLS groups.  Forward secrecy means that messages sent at a certain
point in time are secure in the face of later compromise of a group member.
Post-compromise security means that messages are secure even if a group member
was compromised at some point in the past.</t>

<figure title="Forward secrecy and post-compromise security"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="176" width="448" viewBox="0 0 448 176" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 152,80 L 152,160" fill="none" stroke="black"/>
<path d="M 192,48 L 192,88" fill="none" stroke="black"/>
<path d="M 232,80 L 232,160" fill="none" stroke="black"/>
<path d="M 8,96 L 144,96" fill="none" stroke="black"/>
<path d="M 160,96 L 224,96" fill="none" stroke="black"/>
<path d="M 240,96 L 440,96" fill="none" stroke="black"/>
<path d="M 8,128 L 144,128" fill="none" stroke="black"/>
<path d="M 240,128 L 368,128" fill="none" stroke="black"/>
<polygon class="arrowhead" points="448,96 436,90.4 436,101.6 " fill="black" transform="rotate(0,440,96)"/>
<polygon class="arrowhead" points="376,128 364,122.4 364,133.6 " fill="black" transform="rotate(0,368,128)"/>
<polygon class="arrowhead" points="200,88 188,82.4 188,93.6 " fill="black" transform="rotate(90,192,88)"/>
<polygon class="arrowhead" points="16,128 4,122.4 4,133.6 " fill="black" transform="rotate(180,8,128)"/>
<g class="text">
<text x="196" y="36">Compromise</text>
<text x="420" y="116">Time</text>
<text x="48" y="148">Forward</text>
<text x="112" y="148">Secrecy</text>
<text x="304" y="148">Post-Compromise</text>
<text x="292" y="164">Security</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
                   Compromise
                       |
                       |
                  |    V    |
------------------|---------|------------------------->
                  |         |                     Time
<-----------------|         |---------------->
  Forward Secrecy |         | Post-Compromise
                  |         |   Security
]]></artwork></artset></figure>

<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
public keys whose private keys had previously been compromised. Note
that sending an Update proposal does not achieve PCS until another
member includes it in a Commit. Members can achieve immediate PCS by
sending their own Commit and populating the <spanx style="verb">path</spanx> field, as described
in <xref target="commit"/>. To be clear, in all these cases, the PCS guarantees
come into effect when the members of the group process the relevant
Commit, not when the sender creates it.</t>

<t>Forward secrecy between epochs is provided by deleting private keys from past
versions 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.
Note that group secrets and message encryption keys are shared by the
group, and thus there is a risk to forward secrecy as long as any
member has not deleted these keys. This is a particular risk if a member
is offline for a long period of time. Applications SHOULD have mechanisms
for evicting group members which are offline for too long (i.e., have
not changed their key within some period).</t>

<t>New groups are also at risk of using previously compromised keys (as with
post-compromise security), if a member is added to a new group via an old
KeyPackage whose corresponding private key has been compromised.  This risk can
be mitigated by having clients regularly generate new KeyPackages and upload
them to the Delivery Service.  This way, the key material used to add a member
to a new group is more likely to be fresh and less likely to be compromised.</t>

</section>
<section anchor="uniqueness-of-ratchet-tree-key-pairs"><name>Uniqueness of Ratchet Tree Key Pairs</name>

<t>The encryption and signature keys stored in the <spanx style="verb">encryption_key</spanx> and
<spanx style="verb">signature_key</spanx> fields of ratchet tree nodes MUST be distinct from one another.
If two members' leaf nodes have the same signature key, for example, then the
data origin authentication properties afforded by signatures within the group
are degraded.</t>

<t>Uniqueness of keys in leaf nodes is assured by explicit checks on leaf nodes
being added to the tree by Add or Update proposals, or in the <spanx style="verb">path</spanx> field of a
Commit.  Details can be found in <xref target="leaf-node-validation"/>,
<xref target="proposal-list-validation"/>, and <xref target="processing-a-commit"/>.  Uniqueness of
encryption keys in parent nodes is assured by checking that the keys in an
UpdatePath are not found elsewhere in the tree (see <xref target="processing-a-commit"/>.</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="delivery-service-compromise"><name>Delivery Service Compromise</name>

<t>MLS is designed to protect the confidentiality and integrity of
the group data even in the face of a compromised DS. However, a compromised
DS can still mount some attacks. While it cannot forge messages,
it can selectively delay or remove them. This can in some cases be
observed by detecting gaps in the per-sender generation counter,
though it may not always be possible to distinguish an attack from message
loss. In addition, the DS can permanently block messages to and from
a group member. This will not always be detectable by other members.
If an application uses the DS to resolve conflicts between
simultaneous Commits (see <xref target="sequencing"/>), it is also possible for the
DS to influence which Commit is applied, even to the point of
preventing a member from ever having its Commits applied.</t>

<t>When put together, these abilities potentially allow a DS to collude
with an attacker who has compromised a member's state to defeat PCS by
suppressing the valid Update and Commit messages from the member that
would lock out the attacker and update the member's leaf to a new,
uncompromised state. Aside from the SenderData.generation value, MLS
leaves loss detection up to the application.</t>

</section>
<section anchor="authentication-service-compromise"><name>Authentication Service Compromise</name>

<t>Authentication Service compromise is much more serious than compromise
of the Delivery Service. A compromised AS can assert a binding for a
signature key and identity pair of its choice, thus allowing
impersonation of a given user. This ability is sufficient to allow the
AS to join new groups as if it were that user. Depending on the
application architecture, it may also be sufficient to allow the
compromised AS to join the group as an existing user, for instance as
if it were a new device associated with the same user. If
the application uses a transparency mechanism such as CONIKS
<xref target="CONIKS"/> or Key Transparency <xref target="KT"/>, then it may be possible for end
users to detect this kind of misbehavior by the AS.  It is also possible to
construct schemes in which the various clients owned by a user vouch
for each other, e.g., by signing each others' keys.</t>

</section>
<section anchor="additional-policy-enforcement"><name>Additional Policy Enforcement</name>

<t>The DS and AS may also apply additional policies to MLS operations to obtain
additional security properties. For example, MLS enables any participant to add
or remove members of a group; a DS could enforce a policy that only certain
members are allowed to perform these operations. MLS authenticates all members
of a group; a DS could help ensure that only clients with certain types of
credentials are admitted. MLS provides no inherent protection against denial of
service; a DS could also enforce rate limits in order to mitigate
these risks.</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 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 reinitialize the group 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. These members
will either need to add themselves back with an external Commit, or reinitialize
the group from scratch.</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. MLS does not
provide a built-in mechanism for such acknowledgements, but they can
be added at the application layer.</t>

</section>
</section>
<section anchor="iana-considerations"><name>IANA Considerations</name>

<t>This document requests the creation of the following new IANA registries:</t>

<t><list style="symbols">
  <t>MLS Ciphersuites (<xref target="mls-ciphersuites"/>)</t>
  <t>MLS Wire Formats (<xref target="mls-wire-formats"/>)</t>
  <t>MLS Extension Types (<xref target="mls-extension-types"/>)</t>
  <t>MLS Proposal Types (<xref target="mls-proposal-types"/>)</t>
  <t>MLS Credential Types (<xref target="mls-credential-types"/>)</t>
  <t>MLS Signature Labels (<xref target="mls-signature-labels"/>)</t>
  <t>MLS Public Key Encryption Labels (<xref target="mls-public-key-encryption-labels"/>)</t>
  <t>MLS Exporter Labels (<xref target="mls-exporter-labels"/>)</t>
</list></t>

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

<figure><sourcecode type="pseudocode"><![CDATA[
CipherSuite MLS_LVL_KEM_AEAD_HASH_SIG = VALUE;
]]></sourcecode></figure>

<t>Where VALUE is represented as a sixteen-bit integer:</t>

<figure><sourcecode type="tls"><![CDATA[
uint16 CipherSuite;
]]></sourcecode></figure>

<texttable>
      <ttcol align='left'>Component</ttcol>
      <ttcol align='left'>Contents</ttcol>
      <c>LVL</c>
      <c>The security level (in bits)</c>
      <c>KEM</c>
      <c>The KEM algorithm used for HPKE in ratchet tree operations</c>
      <c>AEAD</c>
      <c>The AEAD algorithm used for HPKE and message protection</c>
      <c>HASH</c>
      <c>The hash algorithm used for HPKE and the MLS transcript hash</c>
      <c>SIG</c>
      <c>The Signature algorithm used for message authentication</c>
</texttable>

<t>The columns in the registry are as follows:</t>

<t><list style="symbols">
  <t>Value: The numeric value of the ciphersuite</t>
  <t>Name: The name of the ciphersuite</t>
</list></t>

<t>[[ RFC EDITOR: This section should be the same as the corresponding text in
draft-ietf-tls-rfc8447bis.  Please align the two documents if they have diverged
in the approval process. ]]</t>

<t><list style="symbols">
  <t>Recommended: Whether support for this ciphersuite is recommended by the IETF.
Valid values are "Y", "N", and "D", as described below.  The default
value of the "Recommended" column is "N".  Setting the Recommended item to "Y"
or "D", or changing an item whose current value is "Y" or "D", requires
Standards Action <xref target="RFC8126"/>.  <list style="symbols">
      <t>Y: Indicates that the IETF has consensus that the item is RECOMMENDED. This
only means that the associated mechanism is fit for the purpose for which it
was defined. Careful reading of the documentation for the mechanism is
necessary to understand the applicability of that mechanism. The IETF could
recommend mechanisms that have limited applicability, but will provide
applicability statements that describe any limitations of the mechanism or
necessary constraints on its use.</t>
      <t>N: Indicates that the item has not been evaluated by the IETF and that the
IETF has made no statement about the suitability of the associated
mechanism. This does not necessarily mean that the mechanism is flawed, only
that no consensus exists. The IETF might have consensus to leave an item
marked as "N" on the basis of it having limited applicability or usage
constraints.</t>
      <t>D: Indicates that the item is discouraged and SHOULD NOT or MUST NOT be
used. This marking could be used to identify mechanisms that might result in
problems if they are used, such as a weak cryptographic algorithm or a
mechanism that might cause interoperability problems in deployment.</t>
    </list></t>
  <t>Reference: The document where this ciphersuite is defined</t>
</list></t>

<t>Initial contents:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>R</ttcol>
      <ttcol align='left'>Ref</ttcol>
      <c>0x0000</c>
      <c>RESERVED</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x0001</c>
      <c>MLS_128_DHKEMX25519_AES128GCM_SHA256_Ed25519</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0002</c>
      <c>MLS_128_DHKEMP256_AES128GCM_SHA256_P256</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0003</c>
      <c>MLS_128_DHKEMX25519_CHACHA20POLY1305_SHA256_Ed25519</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0004</c>
      <c>MLS_256_DHKEMX448_AES256GCM_SHA512_Ed448</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0005</c>
      <c>MLS_256_DHKEMP521_AES256GCM_SHA512_P521</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0006</c>
      <c>MLS_256_DHKEMX448_CHACHA20POLY1305_SHA512_Ed448</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0007</c>
      <c>MLS_256_DHKEMP384_AES256GCM_SHA384_P384.</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0A0A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x1A1A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x2A2A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x3A3A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x4A4A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x5A5A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x6A6A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x7A7A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x8A8A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x9A9A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xAAAA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xBABA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xCACA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xDADA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xEAEA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xF000 - 0xFFFF</c>
      <c>Reserved for Private Use</c>
      <c>-</c>
      <c>RFC XXXX</c>
</texttable>

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

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>KEM</ttcol>
      <ttcol align='left'>KDF</ttcol>
      <ttcol align='left'>AEAD</ttcol>
      <ttcol align='left'>Hash</ttcol>
      <ttcol align='left'>Signature</ttcol>
      <c>0x0001</c>
      <c>0x0020</c>
      <c>0x0001</c>
      <c>0x0001</c>
      <c>SHA256</c>
      <c>ed25519</c>
      <c>0x0002</c>
      <c>0x0010</c>
      <c>0x0001</c>
      <c>0x0001</c>
      <c>SHA256</c>
      <c>ecdsa_secp256r1_sha256</c>
      <c>0x0003</c>
      <c>0x0020</c>
      <c>0x0001</c>
      <c>0x0003</c>
      <c>SHA256</c>
      <c>ed25519</c>
      <c>0x0004</c>
      <c>0x0021</c>
      <c>0x0003</c>
      <c>0x0002</c>
      <c>SHA512</c>
      <c>ed448</c>
      <c>0x0005</c>
      <c>0x0012</c>
      <c>0x0003</c>
      <c>0x0002</c>
      <c>SHA512</c>
      <c>ecdsa_secp521r1_sha512</c>
      <c>0x0006</c>
      <c>0x0021</c>
      <c>0x0003</c>
      <c>0x0003</c>
      <c>SHA512</c>
      <c>ed448</c>
      <c>0x0007</c>
      <c>0x0011</c>
      <c>0x0002</c>
      <c>0x0002</c>
      <c>SHA384</c>
      <c>ecdsa_secp384r1_sha384</c>
</texttable>

<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>In addition to the general requirements of <xref target="additional-ciphersuites"/>, future
ciphersuites MUST meet the requirements of <xref target="confidentiality-of-sender-data"/>.</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. Clients may also choose ChaCha20Poly1305 or AES-GCM, e.g., 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
<spanx style="verb">MLS_128_DHKEMX25519_AES128GCM_SHA256_Ed25519</spanx> which uses
Curve25519 for key exchange, AES-128-GCM for HPKE, HKDF over SHA2-256, and
Ed25519 for signatures.  MLS clients MUST implement this ciphersuite.</t>

<t>New ciphersuite values are assigned by IANA as described in
<xref target="iana-considerations"/>.</t>

</section>
<section anchor="mls-wire-formats"><name>MLS Wire Formats</name>

<t>This registry lists identifiers for the types of messages that can be sent in
MLS.  The wire format field is two bytes wide, so the valid wire format values
are in the range 0x0000 to 0xFFFF.</t>

<t>Template:</t>

<t><list style="symbols">
  <t>Value: The numeric value of the wire format</t>
  <t>Name: The name of the wire format</t>
  <t>Recommended: Same as in <xref target="mls-ciphersuites"/></t>
  <t>Reference: The document where this wire format is defined</t>
</list></t>

<t>Initial contents:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>R</ttcol>
      <ttcol align='left'>Ref</ttcol>
      <c>0x0000</c>
      <c>RESERVED</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x0001</c>
      <c>mls_public_message</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0002</c>
      <c>mls_private_message</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0003</c>
      <c>mls_welcome</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0004</c>
      <c>mls_group_info</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0005</c>
      <c>mls_key_package</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xF000 - 0xFFFF</c>
      <c>Reserved for Private Use</c>
      <c>-</c>
      <c>RFC XXXX</c>
</texttable>

</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>

<t><list style="symbols">
  <t>Value: The numeric value of the extension type</t>
  <t>Name: The name of the extension type</t>
  <t>Message(s): The messages in which the extension may appear, drawn from the following
list:  <list style="symbols">
      <t>KP: KeyPackage objects</t>
      <t>LN: LeafNode objects</t>
      <t>GC: GroupContext objects</t>
      <t>GI: GroupInfo objects</t>
    </list></t>
  <t>Recommended: Same as in <xref target="mls-ciphersuites"/></t>
  <t>Reference: The document where this extension is defined</t>
</list></t>

<t>Initial contents:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Message(s)</ttcol>
      <ttcol align='left'>R</ttcol>
      <ttcol align='left'>Ref</ttcol>
      <c>0x0000</c>
      <c>RESERVED</c>
      <c>N/A</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x0001</c>
      <c>application_id</c>
      <c>LN</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0002</c>
      <c>ratchet_tree</c>
      <c>GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0003</c>
      <c>required_capabilities</c>
      <c>GC</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0004</c>
      <c>external_pub</c>
      <c>GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0005</c>
      <c>external_senders</c>
      <c>GC</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0A0A</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x1A1A</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x2A2A</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x3A3A</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x4A4A</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x5A5A</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x6A6A</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x7A7A</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x8A8A</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x9A9A</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xAAAA</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xBABA</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xCACA</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xDADA</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xEAEA</c>
      <c>GREASE</c>
      <c>KP, GI</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xF000  - 0xFFFF</c>
      <c>Reserved for Private Use</c>
      <c>N/A</c>
      <c>-</c>
      <c>RFC XXXX</c>
</texttable>

</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>

<t><list style="symbols">
  <t>Value: The numeric value of the proposal type</t>
  <t>Name: The name of the proposal type</t>
  <t>Recommended: Same as in <xref target="mls-ciphersuites"/></t>
  <t>Path Required: Whether a Commit covering a proposal of this type is required
to have its <spanx style="verb">path</spanx> field populated (see <xref target="commit"/>).</t>
  <t>Reference: The document where this extension is defined</t>
</list></t>

<t>Initial contents:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>R</ttcol>
      <ttcol align='left'>Path</ttcol>
      <ttcol align='left'>Ref</ttcol>
      <c>0x0000</c>
      <c>RESERVED</c>
      <c>-</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x0001</c>
      <c>add</c>
      <c>Y</c>
      <c>N</c>
      <c>RFC XXXX</c>
      <c>0x0002</c>
      <c>update</c>
      <c>Y</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0003</c>
      <c>remove</c>
      <c>Y</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0004</c>
      <c>psk</c>
      <c>Y</c>
      <c>N</c>
      <c>RFC XXXX</c>
      <c>0x0005</c>
      <c>reinit</c>
      <c>Y</c>
      <c>N</c>
      <c>RFC XXXX</c>
      <c>0x0006</c>
      <c>external_init</c>
      <c>Y</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0007</c>
      <c>group_context_extensions</c>
      <c>Y</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0A0A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x1A1A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x2A2A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x3A3A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x4A4A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x5A5A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x6A6A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x7A7A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x8A8A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x9A9A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0xAAAA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0xBABA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0xCACA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0xDADA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0xEAEA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0xF000  - 0xFFFF</c>
      <c>Reserved for Private Use</c>
      <c>-</c>
      <c>-</c>
      <c>RFC XXXX</c>
</texttable>

</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>

<t><list style="symbols">
  <t>Value: The numeric value of the credential type</t>
  <t>Name: The name of the credential type</t>
  <t>Recommended: Same as in <xref target="mls-ciphersuites"/></t>
  <t>Reference: The document where this credential is defined</t>
</list></t>

<t>Initial contents:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>R</ttcol>
      <ttcol align='left'>Ref</ttcol>
      <c>0x0000</c>
      <c>RESERVED</c>
      <c>-</c>
      <c>RFC XXXX</c>
      <c>0x0001</c>
      <c>basic</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0002</c>
      <c>x509</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x0A0A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x1A1A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x2A2A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x3A3A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x4A4A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x5A5A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x6A6A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x7A7A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x8A8A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0x9A9A</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xAAAA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xBABA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xCACA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xDADA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xEAEA</c>
      <c>GREASE</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>0xF000  - 0xFFFF</c>
      <c>Reserved for Private Use</c>
      <c>-</c>
      <c>RFC XXXX</c>
</texttable>

</section>
<section anchor="mls-signature-labels"><name>MLS Signature Labels</name>

<t>The <spanx style="verb">SignWithLabel</spanx> function defined in <xref target="signing"/> avoids the risk of
confusion between signatures in different contexts.  Each context is assigned a
distinct label that is incorporated into the signature.  This registry records
the labels defined in this document, and allows additional labels to be
registered in case extensions add other types of signature using the same
signature keys used elsewhere in MLS.</t>

<t>Template:</t>

<t><list style="symbols">
  <t>Label: The string to be used as the <spanx style="verb">Label</spanx> parameter to <spanx style="verb">SignWithLabel</spanx></t>
  <t>Recommended: Same as in <xref target="mls-ciphersuites"/></t>
  <t>Reference: The document where this credential is defined</t>
</list></t>

<t>Initial contents:</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>R</ttcol>
      <ttcol align='left'>Ref</ttcol>
      <c>"FramedContentTBS"</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>"LeafNodeTBS"</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>"KeyPackageTBS"</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>"GroupInfoTBS"</c>
      <c>Y</c>
      <c>RFC XXXX</c>
</texttable>

</section>
<section anchor="mls-public-key-encryption-labels"><name>MLS Public Key Encryption Labels</name>

<t>The <spanx style="verb">EncryptWithLabel</spanx> function defined in <xref target="public-key-encryption"/> avoids the
risk of confusion between ciphertexts produced for different purposes in
different contexts.  Each context is assigned a distinct label that is
incorporated into the signature.  This registry records the labels defined in
this document, and allows additional labels to be registered in case extensions
add other types of public-key encryption using the same HPKE keys used elsewhere
in MLS.</t>

<t>Template:</t>

<t><list style="symbols">
  <t>Label: The string to be used as the <spanx style="verb">Label</spanx> parameter to <spanx style="verb">EncryptWithLabel</spanx></t>
  <t>Recommended: Same as in <xref target="mls-ciphersuites"/></t>
  <t>Reference: The document where this credential is defined</t>
</list></t>

<t>Initial contents:</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>R</ttcol>
      <ttcol align='left'>Ref</ttcol>
      <c>"UpdatePathNode"</c>
      <c>Y</c>
      <c>RFC XXXX</c>
      <c>"Welcome"</c>
      <c>Y</c>
      <c>RFC XXXX</c>
</texttable>

</section>
<section anchor="mls-exporter-labels"><name>MLS Exporter Labels</name>

<t>The exporter function defined in <xref target="exporters"/> allows applications to derive key
material from the MLS key schedule.  Like the TLS exporter <xref target="RFC8446"/>, the MLS
exporter uses a label to distinguish between different applications' use of the
exporter.  This registry allows applications to register their usage to avoid
collisions.</t>

<t>Template:</t>

<t><list style="symbols">
  <t>Label: The string to be used as the <spanx style="verb">Label</spanx> parameter to <spanx style="verb">MLS-Exporter</spanx></t>
  <t>Recommended: Same as in <xref target="mls-ciphersuites"/></t>
  <t>Reference: The document where this credential is defined</t>
</list></t>

<t>The registry has no initial contents, since it is intended to be used by
applications, not the core protocol.  The table below is intended only to show
the column layout of the registry.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Recommended</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>(N/A)</c>
      <c>(N/A)</c>
      <c>(N/A)</c>
</texttable>

</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="mls-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 (e.g., HTTP <xref target="RFC9113"/>) to convey MLS messages.</t>

<dl>
  <dt>Type name:</dt>
  <dd>
    <t>message</t>
  </dd>
  <dt>Subtype name:</dt>
  <dd>
    <t>mls</t>
  </dd>
  <dt>Required parameters:</dt>
  <dd>
    <t>none</t>
  </dd>
  <dt>Optional parameters:</dt>
  <dd>
    <dl>
      <dt>version</dt>
      <dd><t/></dd>
      <dt>  version:</dt>
      <dd>
        <t>The MLS protocol version expressed as a string
  <spanx style="verb">&lt;major&gt;.&lt;minor&gt;</spanx>.  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.</t>
      </dd>
    </dl>
  </dd>
  <dt>Encoding considerations:</dt>
  <dd>
    <t>MLS messages are represented using the TLS
presentation language <xref target="RFC8446"></xref>. Therefore MLS messages need to be
treated as binary data.</t>
  </dd>
  <dt>Security considerations:</dt>
  <dd>
    <t>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.</t>
  </dd>
  <dt>Interoperability considerations:</dt>
  <dd>
    <t>N/A</t>
  </dd>
  <dt>Published specification:</dt>
  <dd>
    <t>RFC XXXX</t>
  </dd>
  <dt>Applications that use this media type:</dt>
  <dd>
    <t>MLS-based messaging applications</t>
  </dd>
  <dt>Fragment identifier considerations:</dt>
  <dd>
    <t>N/A</t>
  </dd>
</dl>

<t>Additional information:</t>

<t><list style="symbols">
  <t>Deprecated alias names for this type: N/A</t>
  <t>Magic number(s): N/A</t>
  <t>File extension(s): N/A</t>
  <t>Macintosh file type code(s): N/A</t>
</list></t>

<dl>
  <dt>Person &amp; email address to contact for further information:</dt>
  <dd>
    <t>IETF MLS Working Group <eref target="mailto:mls@ietf.org">mls@ietf.org</eref></t>
  </dd>
  <dt>Intended usage:</dt>
  <dd>
    <t>COMMON</t>
  </dd>
  <dt>Restrictions on usage:</dt>
  <dd>
    <t>N/A</t>
  </dd>
  <dt>Author:</dt>
  <dd>
    <t>IETF MLS Working Group</t>
  </dd>
  <dt>Change controller:</dt>
  <dd>
    <t>IESG</t>
  </dd>
  <dt>Provisional registration? (standards tree only):</dt>
  <dd>
    <t>No</t>
  </dd>
</dl>

</section>
</section>


  </middle>

  <back>


    <references title='Normative References'>





<reference anchor='RFC2119' target='https://www.rfc-editor.org/info/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' target='https://www.rfc-editor.org/info/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' target='https://www.rfc-editor.org/info/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' target='https://www.rfc-editor.org/info/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='RFC8126' target='https://www.rfc-editor.org/info/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' target='https://www.rfc-editor.org/info/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 title='Informative References'>

<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></organization>
    </author>
    <author initials="C." surname="Cremers" fullname="Cas Cremers">
      <organization></organization>
    </author>
    <author initials="L." surname="Garratt" fullname="Luke Garratt">
      <organization></organization>
    </author>
    <author initials="J." surname="Millican" fullname="Jon Millican">
      <organization></organization>
    </author>
    <author initials="K." surname="Milner" fullname="Kevin Milner">
      <organization></organization>
    </author>
    <date year="2018" month="January" day="18"/>
  </front>
</reference>


<reference anchor='DoubleRatchet' target='http://dx.doi.org/10.1109/eurosp.2017.27'>
  <front>
    <title>A Formal Security Analysis of the Signal Messaging Protocol</title>
    <author fullname='Katriel Cohn-Gordon' surname='Cohn-Gordon'/>
    <author fullname='Cas Cremers' surname='Cremers'/>
    <author fullname='Benjamin Dowling' surname='Dowling'/>
    <author fullname='Luke Garratt' surname='Garratt'/>
    <author fullname='Douglas Stebila' surname='Stebila'/>
    <author>
      <organization>IEEE</organization>
    </author>
    <date month='April' year='2017'/>
  </front>
  <refcontent>2017 IEEE European Symposium on Security and Privacy (EuroS&amp;amp;P)</refcontent>
  <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></organization>
    </author>
    <author initials="M." surname="Marlinspike" fullname="Moxie Marlinspike">
      <organization></organization>
    </author>
    <date year="2016" month="November" day="20"/>
  </front>
</reference>


<reference anchor='SHS' target='http://dx.doi.org/10.6028/nist.fips.180-4'>
  <front>
    <title>Secure Hash Standard</title>
    <author fullname='Quynh H. Dang' surname='Dang'/>
    <author>
      <organization>National Institute of Standards and Technology</organization>
    </author>
    <date month='July' year='2015'/>
  </front>
  <seriesInfo name='DOI' value='10.6028/nist.fips.180-4'/>
</reference>

<reference anchor='NAN' target='http://dx.doi.org/10.1007/978-3-030-26948-7_9'>
  <front>
    <title>Nonces Are Noticed: AEAD Revisited</title>
    <author fullname='Mihir Bellare' surname='Bellare'/>
    <author fullname='Ruth Ng' surname='Ng'/>
    <author fullname='Björn Tackmann' surname='Tackmann'/>
    <author>
      <organization>Springer International Publishing</organization>
    </author>
    <date year='2019'/>
  </front>
  <refcontent>Advances in Cryptology – CRYPTO 2019, pp. 235-265</refcontent>
  <seriesInfo name='DOI' value='10.1007/978-3-030-26948-7_9'/>
</reference>


<reference anchor="CONIKS" target="https://www.usenix.org/system/files/conference/usenixsecurity15/sec15-paper-melara.pdf">
  <front>
    <title>CONIKS: Bringing Key Transparency to End Users</title>
    <author initials="M. S." surname="Melara" fullname="Marcela S. Melara">
      <organization></organization>
    </author>
    <author initials="A." surname="Blankstein" fullname="Aaron Blankstein">
      <organization></organization>
    </author>
    <author initials="J." surname="Bonneau" fullname="Joseph Bonneau">
      <organization></organization>
    </author>
    <author initials="E. W." surname="Felten" fullname="Edward W. Felten">
      <organization></organization>
    </author>
    <author initials="M. J." surname="Freedman" fullname="Michael J. Freedman">
      <organization></organization>
    </author>
    <date year="2015"/>
  </front>
</reference>
<reference anchor="KT" target="https://github.com/google/keytransparency/blob/master/docs/design.md">
  <front>
    <title>Key Transparency Design Doc</title>
    <author >
      <organization></organization>
    </author>
    <date year="2020" month="June" day="26"/>
  </front>
</reference>




<reference anchor='RFC9000' target='https://www.rfc-editor.org/info/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' target='https://datatracker.ietf.org/doc/html/draft-ietf-mls-architecture-10'>
   <front>
      <title>The Messaging Layer Security (MLS) Architecture</title>
      <author fullname='Benjamin Beurdouche' initials='B.' surname='Beurdouche'>
         <organization>Inria &amp; Mozilla</organization>
      </author>
      <author fullname='Eric Rescorla' initials='E.' surname='Rescorla'>
         <organization>Mozilla</organization>
      </author>
      <author fullname='Emad Omara' initials='E.' surname='Omara'>
         <organization>Google</organization>
      </author>
      <author fullname='Srinivas Inguva' initials='S.' surname='Inguva'>
         <organization>Twitter</organization>
      </author>
      <author fullname='Alan Duric' initials='A.' surname='Duric'>
         <organization>Wire</organization>
      </author>
      <date day='16' month='December' year='2022'/>
      <abstract>
	 <t>   The Messaging Layer Security (MLS) protocol (I-D.ietf-mls-protocol)
   specification has the role of defining a Group Key Agreement
   protocol, including all the cryptographic operations and
   serialization/deserialization functions necessary for scalable and
   secure group messaging.  The MLS protocol is meant to protect against
   eavesdropping, tampering, message forgery, and provide further
   properties such as Forward Secrecy (FS) and Post-Compromise Security
   (PCS) in the case of past or future device compromises.

   This document describes 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 mechanisms that are part of
   the MLS protocol (e.g., frequency of public encryption key rotation).

   The document also provides guidance for 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, they affect
   the overall security guarantees that are achieved by a messaging
   application.  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-10'/>
   
</reference>



<reference anchor='RFC5116' target='https://www.rfc-editor.org/info/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='RFC8032' target='https://www.rfc-editor.org/info/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='RFC6125' target='https://www.rfc-editor.org/info/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='RFC5905' target='https://www.rfc-editor.org/info/rfc5905'>
<front>
<title>Network Time Protocol Version 4: Protocol and Algorithms Specification</title>
<author fullname='D. Mills' initials='D.' surname='Mills'><organization/></author>
<author fullname='J. Martin' initials='J.' role='editor' surname='Martin'><organization/></author>
<author fullname='J. Burbank' initials='J.' surname='Burbank'><organization/></author>
<author fullname='W. Kasch' initials='W.' surname='Kasch'><organization/></author>
<date month='June' year='2010'/>
<abstract><t>The Network Time Protocol (NTP) is widely used to synchronize computer clocks in the Internet.  This document describes NTP version 4 (NTPv4), which is backwards compatible with NTP version 3 (NTPv3), described in RFC 1305, as well as previous versions of the protocol. NTPv4 includes a modified protocol header to accommodate the Internet Protocol version 6 address family.  NTPv4 includes fundamental improvements in the mitigation and discipline algorithms that extend the potential accuracy to the tens of microseconds with modern workstations and fast LANs.  It includes a dynamic server discovery scheme, so that in many cases, specific server configuration is not required.  It corrects certain errors in the NTPv3 design and implementation and includes an optional extension mechanism.   [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5905'/>
<seriesInfo name='DOI' value='10.17487/RFC5905'/>
</reference>



<reference anchor='RFC7696' target='https://www.rfc-editor.org/info/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='RFC9113' target='https://www.rfc-editor.org/info/rfc9113'>
<front>
<title>HTTP/2</title>
<author fullname='M. Thomson' initials='M.' role='editor' surname='Thomson'><organization/></author>
<author fullname='C. Benfield' initials='C.' role='editor' surname='Benfield'><organization/></author>
<date month='June' year='2022'/>
<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 latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t><t>This document obsoletes RFCs 7540 and 8740.</t></abstract>
</front>
<seriesInfo name='RFC' value='9113'/>
<seriesInfo name='DOI' value='10.17487/RFC9113'/>
</reference>



<reference anchor='RFC8701' target='https://www.rfc-editor.org/info/rfc8701'>
<front>
<title>Applying Generate Random Extensions And Sustain Extensibility (GREASE) to TLS Extensibility</title>
<author fullname='D. Benjamin' initials='D.' surname='Benjamin'><organization/></author>
<date month='January' year='2020'/>
<abstract><t>This document describes GREASE (Generate Random Extensions And Sustain Extensibility), a mechanism to prevent extensibility failures in the TLS ecosystem. It reserves a set of TLS protocol values that may be advertised to ensure peers correctly handle unknown values.</t></abstract>
</front>
<seriesInfo name='RFC' value='8701'/>
<seriesInfo name='DOI' value='10.17487/RFC8701'/>
</reference>

<reference anchor='CLINIC' target='http://dx.doi.org/10.1007/978-3-319-08506-7_8'>
  <front>
    <title>I Know Why You Went to the Clinic: Risks and Realization of HTTPS Traffic Analysis</title>
    <author fullname='Brad Miller' surname='Miller'/>
    <author fullname='Ling Huang' surname='Huang'/>
    <author fullname='A. D. Joseph' surname='Joseph'/>
    <author fullname='J. D. Tygar' surname='Tygar'/>
    <author>
      <organization>Springer International Publishing</organization>
    </author>
    <date year='2014'/>
  </front>
  <refcontent>Privacy Enhancing Technologies, pp. 143-163</refcontent>
  <seriesInfo name='DOI' value='10.1007/978-3-319-08506-7_8'/>
</reference>

<reference anchor='HCJ16' target='http://dx.doi.org/10.1186/s13635-016-0030-7'>
  <front>
    <title>HTTPS traffic analysis and client identification using passive SSL/TLS fingerprinting</title>
    <author fullname='Martin Husák' surname='Husák'/>
    <author fullname='Milan Čermák' surname='Čermák'/>
    <author fullname='Tomáš Jirsík' surname='Jirsík'/>
    <author fullname='Pavel Čeleda' surname='Čeleda'/>
    <author>
      <organization>Springer Science and Business Media LLC</organization>
    </author>
    <date day='26' month='February' year='2016'/>
  </front>
  <refcontent>EURASIP Journal on Information Security, vol. 2016, no. 1</refcontent>
  <seriesInfo name='DOI' value='10.1186/s13635-016-0030-7'/>
</reference>


<reference anchor='I-D.irtf-cfrg-aead-limits' target='https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-aead-limits-06'>
   <front>
      <title>Usage Limits on AEAD Algorithms</title>
      <author fullname='Felix Günther' initials='F.' surname='Günther'>
         <organization>ETH Zurich</organization>
      </author>
      <author fullname='Martin Thomson' initials='M.' surname='Thomson'>
         <organization>Mozilla</organization>
      </author>
      <author fullname='Christopher A. Wood' initials='C. A.' surname='Wood'>
         <organization>Cloudflare</organization>
      </author>
      <date day='30' month='January' year='2023'/>
      <abstract>
	 <t>   An Authenticated Encryption with Associated Data (AEAD) algorithm
   provides confidentiality and integrity.  Excessive use of the same
   key can give an attacker advantages in breaking these properties.
   This document provides simple guidance for users of common AEAD
   functions about how to limit the use of keys in order to bound the
   advantage given to an attacker.  It considers limits in both single-
   and multi-key settings.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-irtf-cfrg-aead-limits-06'/>
   
</reference>



<reference anchor='RFC9001' target='https://www.rfc-editor.org/info/rfc9001'>
<front>
<title>Using TLS to Secure QUIC</title>
<author fullname='M. Thomson' initials='M.' role='editor' surname='Thomson'><organization/></author>
<author fullname='S. Turner' initials='S.' role='editor' surname='Turner'><organization/></author>
<date month='May' year='2021'/>
<abstract><t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t></abstract>
</front>
<seriesInfo name='RFC' value='9001'/>
<seriesInfo name='DOI' value='10.17487/RFC9001'/>
</reference>




    </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>

<t><list style="symbols">
  <t>A creates a group with B, ..., G</t>
  <t>F sends an empty Commit, setting X, Y, W</t>
  <t>G removes C and D, blanking V, U, and setting Y, W</t>
  <t>B sends an empty Commit, setting T and W</t>
</list></t>

<t>To construct the tree in <xref target="resolution-tree"/>:</t>

<t><list style="symbols">
  <t>A creates a group with B, ..., H, as well as some members outside this subtree</t>
  <t>F sends an empty Commit, setting Y and its ancestors</t>
  <t>D removes B and C, with the following effects:
  <list style="symbols">
      <t>Blank the direct paths of B and C</t>
      <t>Set X, the top node, and any further nodes in the direct path of D</t>
    </list></t>
  <t>Someone outside this subtree removes G, blanking the direct path of G</t>
  <t>A adds a new member at B with a partial Commit, adding B as unmerged at X</t>
</list></t>

<t>To construct the tree in <xref target="evolution-tree"/>:</t>

<t><list style="symbols">
  <t>A creates a group with B, C, D</t>
  <t>B sends a full Commit, setting X and Y</t>
  <t>D removes C, setting Z and Y</t>
  <t>B adds a new member at C with a full Commit
  <list style="symbols">
      <t>The Add proposal adds C as unmerged at Z and Y</t>
      <t>The path in the Commit resets X and Y, clearing Y's unmerged leaves</t>
    </list></t>
</list></t>

<t>To construct the tree in <xref target="parent-hash-tree"/>:</t>

<t><list style="symbols">
  <t>A creates a group with B, ..., G</t>
  <t>A removes F in a full Commit, setting T, U, and W</t>
  <t>E sends an empty Commit, setting Y and W</t>
  <t>A adds a new member at F in a partial Commit, adding F as unmerged at Y and W</t>
</list></t>

</section>
<section anchor="ph-evolution"><name>Evolution of Parent Hashes</name>

<t>To better understand how parent hashes are maintained, let's look in detail at
how they evolve in a small group.  Consider the following sequence of
operations:</t>

<t><list style="numbers">
  <t>A initializes a new group</t>
  <t>A adds B to the group with a full Commit</t>
  <t>B adds C and D to the group with a full Commit</t>
  <t>C sends an empty Commit.</t>
</list></t>

<figure title="Building a four-member tree to illustrate parent hashes"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="144" width="432" viewBox="0 0 432 144" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 216,48 L 216,64" fill="none" stroke="black"/>
<path d="M 376,48 L 376,64" fill="none" stroke="black"/>
<path d="M 200,64 L 232,64" fill="none" stroke="black"/>
<path d="M 360,64 L 392,64" fill="none" stroke="black"/>
<path d="M 32,78 L 48,78" fill="none" stroke="black"/><path d="M 32,82 L 48,82" fill="none" stroke="black"/>
<path d="M 128,78 L 144,78" fill="none" stroke="black"/><path d="M 128,82 L 144,82" fill="none" stroke="black"/>
<path d="M 288,78 L 304,78" fill="none" stroke="black"/><path d="M 288,82 L 304,82" fill="none" stroke="black"/>
<path d="M 232,64 L 240,80" fill="none" stroke="black"/>
<path d="M 252,104 L 256,112" fill="none" stroke="black"/>
<path d="M 392,64 L 400,80" fill="none" stroke="black"/>
<path d="M 192,80 L 200,64" fill="none" stroke="black"/>
<path d="M 240,112 L 244,104" fill="none" stroke="black"/>
<path d="M 352,80 L 360,64" fill="none" stroke="black"/>
<polygon class="arrowhead" points="312,80 300,74.4 300,85.6 " fill="black" transform="rotate(0,304,80)"/>
<polygon class="arrowhead" points="152,80 140,74.4 140,85.6 " fill="black" transform="rotate(0,144,80)"/>
<polygon class="arrowhead" points="56,80 44,74.4 44,85.6 " fill="black" transform="rotate(0,48,80)"/>
<g class="text">
<text x="216" y="36">Y</text>
<text x="380" y="36">Y'</text>
<text x="88" y="100">X</text>
<text x="188" y="100">X'</text>
<text x="256" y="100">_=Z</text>
<text x="348" y="100">X'</text>
<text x="412" y="100">Z'</text>
<text x="80" y="116">/</text>
<text x="96" y="116">\</text>
<text x="176" y="116">/</text>
<text x="192" y="116">\</text>
<text x="336" y="116">/</text>
<text x="352" y="116">\</text>
<text x="400" y="116">/</text>
<text x="416" y="116">\</text>
<text x="8" y="132">A</text>
<text x="72" y="132">A</text>
<text x="104" y="132">B</text>
<text x="168" y="132">A</text>
<text x="200" y="132">B</text>
<text x="232" y="132">C</text>
<text x="264" y="132">D</text>
<text x="328" y="132">A</text>
<text x="360" y="132">B</text>
<text x="392" y="132">C</text>
<text x="424" y="132">D</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
                          Y                   Y'
                          |                   |
                        .-+-.               .-+-.
   ==>         ==>     /     \     ==>     /     \
          X           X'      _=Z         X'      Z'
         / \         / \     / \         / \     / \
A       A   B       A   B   C   D       A   B   C   D
]]></artwork></artset></figure>

<t>Then the parent hashes associated to the nodes will be updated as follows (where
we use the shorthand <spanx style="verb">ph</spanx> for parent hash, <spanx style="verb">th</spanx> for tree hash, and <spanx style="verb">osth</spanx> for
original sibling tree hash):</t>

<t><list style="numbers">
  <t>A adds B: set X  <list style="symbols">
      <t><spanx style="verb">A.parent_hash = ph(X) = H(X, ph="", osth=th(B))</spanx></t>
    </list></t>
  <t>B adds C, D: set B', X', Y  <list style="symbols">
      <t><spanx style="verb">X'.parent_hash = ph(Y)  = H(Y, ph="", osth=th(Z))</spanx>,
where <spanx style="verb">th(Z)</spanx> covers <spanx style="verb">(C, _, D)</spanx></t>
      <t><spanx style="verb">B'.parent_hash = ph(X') = H(X', ph=X'.parent_hash, osth=th(A))</spanx></t>
    </list></t>
  <t>C sends empty Commit: set C', Z', Y'  <list style="symbols">
      <t><spanx style="verb">Z'.parent_hash = ph(Y') = H(Y', ph="", osth=th(X'))</spanx>, where
<spanx style="verb">th(X')</spanx> covers <spanx style="verb">(A, X', B')</spanx></t>
      <t><spanx style="verb">C'.parent_hash = ph(Z') = H(Z', ph=Z'.parent_hash, osth=th(D))</spanx></t>
    </list></t>
</list></t>

<t>When a new member joins, they will receive a tree that has the following parent
hash values, and compute the indicated parent-hash validity relationships:</t>

<texttable>
      <ttcol align='left'>Node</ttcol>
      <ttcol align='left'>Parent hash value</ttcol>
      <ttcol align='left'>Valid?</ttcol>
      <c>A</c>
      <c>H(X, ph="", osth=th(B))</c>
      <c>No, B changed</c>
      <c>B'</c>
      <c>H(X', ph=X'.parent_hash, osth=th(A))</c>
      <c>Yes</c>
      <c>C'</c>
      <c>H(Z', ph=Z'.parent_hash, osth=th(D))</c>
      <c>Yes</c>
      <c>D</c>
      <c>(none, never sent an UpdatePath)</c>
      <c>N/A</c>
      <c>X'</c>
      <c>H(Y, ph="", osth=th(Z))</c>
      <c>No, Y and Z changed</c>
      <c>Z'</c>
      <c>H(Y', ph="", osth=th(X'))</c>
      <c>Yes</c>
</texttable>

<t>In other words, the joiner will find the following path-hash links in the tree:</t>

<figure title="Parent-hash links connect all non-empty parent nodes to leaves"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="160" width="112" viewBox="0 0 112 160" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 56,48 L 56,64" fill="none" stroke="black"/>
<path d="M 56,64 L 72,64" fill="none" stroke="black"/>
<path d="M 72,64 L 80,80" fill="none" stroke="black"/>
<g class="text">
<text x="60" y="36">Y'</text>
<text x="28" y="100">X'</text>
<text x="92" y="100">Z'</text>
<text x="32" y="116">\</text>
<text x="80" y="116">/</text>
<text x="8" y="132">A</text>
<text x="44" y="132">B'</text>
<text x="76" y="132">C'</text>
<text x="104" y="132">D</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
       Y'
       |
       +-.
          \
   X'      Z'
    \     /
 A   B'  C'  D
]]></artwork></artset></figure>

<t>Since these chains collectively cover all non-blank parent nodes in the tree,
the tree is parent-hash valid.</t>

<t>Note that this tree, though valid, contains invalid parent-hash links. If a
client were checking parent hashes top-down from Y', for example, they would
find that X' has an invalid parent hash relative to Y', but that Z' has valid
parent hash.  Likewise, if the client were checking bottom-up, they would find
that the chain from B' ends in an invalid link from X' to Y'.  These invalid
links are the natural result of multiple clients having committed.</t>

<t>Note also the way the tree hash and the parent hash interact.  The parent hash
of node C' includes the tree hash of node D.  The parent hash of node Z'
includes the tree hash of X', which covers nodes A and B' (including the parent
hash of B').  Although the tree hash and the parent hash depend on each other,
the dependency relationships are structured so that there's never a circular
dependency.</t>

<t>In the particular case where a new member first receives the tree for a group
(e.g., in a ratchet tree GroupInfo extension <xref target="ratchet-tree-extension"/>), the
parent hashes will be expressed in the tree representation, but the tree hash
need not be.  Instead, the new member will recompute the tree hashes for all the
nodes in the tree, verifying that this matches the tree hash in the GroupInfo
object.  Then, if the tree is valid, then the subtree hashes computed in this
way will align with the inputs needed for parent hash validation (except where
recomputation is needed to account for unmerged leaves).</t>

</section>
<section anchor="array-based-trees"><name>Array-Based Trees</name>

<t>One benefit of using complete balanced trees is that they admit a simple
flat array representation.  In this representation, leaf nodes are
even-numbered nodes, with the <spanx style="verb">n</spanx>-th leaf at <spanx style="verb">2*n</spanx>.  Intermediate nodes
are held in odd-numbered nodes.  For example, the tree with 8 leaves has
the following structure:</t>

<figure title="An 8-member tree represented as an array"><artset><artwork  type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="288" width="400" viewBox="0 0 400 288" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
<path d="M 128,112 L 128,128" fill="none" stroke="black"/>
<path d="M 224,48 L 224,64" fill="none" stroke="black"/>
<path d="M 320,112 L 320,128" fill="none" stroke="black"/>
<path d="M 144,64 L 304,64" fill="none" stroke="black"/>
<path d="M 96,128 L 160,128" fill="none" stroke="black"/>
<path d="M 288,128 L 352,128" fill="none" stroke="black"/>
<path d="M 88,176 L 96,192" fill="none" stroke="black"/>
<path d="M 160,128 L 168,144" fill="none" stroke="black"/>
<path d="M 184,176 L 192,192" fill="none" stroke="black"/>
<path d="M 280,176 L 288,192" fill="none" stroke="black"/>
<path d="M 304,64 L 312,80" fill="none" stroke="black"/>
<path d="M 352,128 L 360,144" fill="none" stroke="black"/>
<path d="M 376,176 L 384,192" fill="none" stroke="black"/>
<path d="M 64,192 L 72,176" fill="none" stroke="black"/>
<path d="M 88,144 L 96,128" fill="none" stroke="black"/>
<path d="M 136,80 L 144,64" fill="none" stroke="black"/>
<path d="M 160,192 L 168,176" fill="none" stroke="black"/>
<path d="M 256,192 L 264,176" fill="none" stroke="black"/>
<path d="M 280,144 L 288,128" fill="none" stroke="black"/>
<path d="M 352,192 L 360,176" fill="none" stroke="black"/>
<g class="text">
<text x="224" y="36">X</text>
<text x="128" y="100">X</text>
<text x="320" y="100">X</text>
<text x="80" y="164">X</text>
<text x="176" y="164">X</text>
<text x="272" y="164">X</text>
<text x="368" y="164">X</text>
<text x="56" y="212">X</text>
<text x="104" y="212">X</text>
<text x="152" y="212">X</text>
<text x="200" y="212">X</text>
<text x="248" y="212">X</text>
<text x="296" y="212">X</text>
<text x="344" y="212">X</text>
<text x="392" y="212">X</text>
<text x="24" y="244">Node:</text>
<text x="56" y="244">0</text>
<text x="80" y="244">1</text>
<text x="104" y="244">2</text>
<text x="128" y="244">3</text>
<text x="152" y="244">4</text>
<text x="176" y="244">5</text>
<text x="200" y="244">6</text>
<text x="224" y="244">7</text>
<text x="248" y="244">8</text>
<text x="272" y="244">9</text>
<text x="292" y="244">10</text>
<text x="316" y="244">11</text>
<text x="340" y="244">12</text>
<text x="364" y="244">13</text>
<text x="388" y="244">14</text>
<text x="24" y="276">Leaf:</text>
<text x="56" y="276">0</text>
<text x="104" y="276">1</text>
<text x="152" y="276">2</text>
<text x="200" y="276">3</text>
<text x="248" y="276">4</text>
<text x="296" y="276">5</text>
<text x="344" y="276">6</text>
<text x="392" y="276">7</text>
</g>
</svg>
</artwork><artwork  type="ascii-art"><![CDATA[
                           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

Leaf: 0     1     2     3     4     5     6     7
]]></artwork></artset></figure>

<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 <spanx style="verb">x</spanx> is an arbitrary bit string):</t>

<figure><sourcecode type="pseudocode"><![CDATA[
parent=01x => left=00x, right=10x
]]></sourcecode></figure>

<t>Since node relationships are implicit, the algorithms for adding and removing
nodes at the right edge of the tree are quite simple.  If there are <spanx style="verb">N</spanx> nodes in
the array:</t>

<t><list style="symbols">
  <t>Add: Append <spanx style="verb">N + 1</spanx> blank values to the end of the array.</t>
  <t>Remove: Truncate the array to its first <spanx style="verb">(N-1) / 2</spanx> entries.</t>
</list></t>

<t>The following python code demonstrates the tree computations necessary to use an
array-based tree for MLS.</t>

<figure><sourcecode type="python"><![CDATA[
# The exponent of the largest power of 2 less than x. Equivalent to:
#   int(math.floor(math.log(x, 2)))
def log2(x):
    if x == 0:
        return 0

    k = 0
    while (x >> k) > 0:
        k += 1
    return k-1

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

    k = 0
    while ((x >> k) & 0x01) == 1:
        k += 1
    return k

# The 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.
def left(x):
    k = level(x)
    if k == 0:
        raise Exception('leaf node has no children')

    return x ^ (0x01 << (k - 1))

# The right child of an intermediate node.
def right(x):
    k = level(x)
    if k == 0:
        raise Exception('leaf node has no children')

    return x ^ (0x03 << (k - 1))

# The parent of a node.
def parent(x, n):
    if x == root(n):
        raise Exception('root node has no parent')

    k = level(x)
    b = (x >> (k + 1)) & 0x01
    return (x | (1 << k)) ^ (b << (k + 1))

# The other child of the node's parent.
def sibling(x, n):
    p = parent(x, n)
    if x < p:
        return right(p)
    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
]]></sourcecode></figure>

</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
balanced structure of the tree as the tree is extended to add new members,
or truncated when members are removed.</t>

<t>The following code snippet shows how these algorithms could be implemented in
Python.</t>

<figure><sourcecode type="python"><![CDATA[
class Node:
    def __init__(self, value, left=None, right=None):
        self.value = value    # Value of the node
        self.left = left      # Left child node
        self.right = right    # Right child node

    @staticmethod
    def blank_subtree(depth):
        if depth == 1:
            return Node(None)

        L = Node.blank_subtree(depth-1)
        R = Node.blank_subtree(depth-1)
        return Node(None, left=L, right=R)

    def empty(self):
        L_empty = (self.left == None) or self.left.empty()
        R_empty = (self.left == None) or self.left.empty()
        return (self.value == None) and L_empty and R_empty

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

    # Add a blank subtree to the right
    def extend(self):
        if self.depth == 0:
            self.depth = 1
            self.root = Node(None)

        L = self.root
        R = Node.blank_subtree(self.depth)
        self.root = Node(None, left=L, right=R)
        self.depth += 1

    # Truncate the right subtree
    def truncate(self):
        if self.root == None or self.root.right == None:
            raise Exception("Cannot truncate a tree with 0 or 1 nodes")

        if not self.root.right.empty():
            raise Exception("Cannot truncate non-blank subtree")

        self.depth -= 1
        self.root = self.root.left
]]></sourcecode></figure>

</section>

    <section anchor="contributors" numbered="false" toc="include" removeInRFC="false">
        <name>Contributors</name>
    <contact initials="J." surname="Alwen" fullname="Joel Alwen">
      <organization>Amazon</organization>
      <address>
        <email>alwenjo@amazon.com</email>
      </address>
    </contact>
    <contact initials="K." surname="Bhargavan" fullname="Karthikeyan Bhargavan">
      <organization>Inria</organization>
      <address>
        <email>karthikeyan.bhargavan@inria.fr</email>
      </address>
    </contact>
    <contact initials="C." surname="Cremers" fullname="Cas Cremers">
      <organization>CISPA</organization>
      <address>
        <email>cremers@cispa.de</email>
      </address>
    </contact>
    <contact initials="A." surname="Duric" fullname="Alan Duric">
      <organization>Wire</organization>
      <address>
        <email>alan@wire.com</email>
      </address>
    </contact>
    <contact initials="B." surname="Hale" fullname="Britta Hale">
      <organization>Naval Postgraduate School</organization>
      <address>
        <email>britta.hale@nps.edu</email>
      </address>
    </contact>
    <contact initials="S." surname="Inguva" fullname="Srinivas Inguva">
      <organization></organization>
      <address>
        <email>singuva@yahoo.com</email>
      </address>
    </contact>
    <contact initials="K." surname="Kohbrok" fullname="Konrad Kohbrok">
      <organization>Phoenix R&amp;D</organization>
      <address>
        <email>konrad.kohbrok@datashrine.de</email>
      </address>
    </contact>
    <contact initials="A." surname="Kwon" fullname="Albert Kwon">
      <organization>MIT</organization>
      <address>
        <email>kwonal@mit.edu</email>
      </address>
    </contact>
    <contact initials="T." surname="Leavy" fullname="Tom Leavy">
      <organization>Amazon</organization>
      <address>
        <email>tomleavy@amazon.com</email>
      </address>
    </contact>
    <contact initials="B." surname="McMillion" fullname="Brendan McMillion">
      <organization></organization>
      <address>
        <email>brendanmcmillion@gmail.com</email>
      </address>
    </contact>
    <contact initials="M." surname="Mularczyk" fullname="Marta Mularczyk">
      <organization>Amazon</organization>
      <address>
        <email>mulmarta@amazon.com</email>
      </address>
    </contact>
    <contact initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>Mozilla</organization>
      <address>
        <email>ekr@rtfm.com</email>
      </address>
    </contact>
    <contact initials="M." surname="Rosenberg" fullname="Michael Rosenberg">
      <organization>Trail of Bits</organization>
      <address>
        <email>michael.rosenberg@trailofbits.com</email>
      </address>
    </contact>
    <contact initials="T." surname="Wallez" fullname="Théophile Wallez">
      <organization>Inria</organization>
      <address>
        <email>theophile.wallez@inria.fr</email>
      </address>
    </contact>
    <contact initials="T. van der" surname="Merwe" fullname="Thyla van der Merwe">
      <organization>Royal Holloway, University of London</organization>
      <address>
        <email>tjvdmerwe@gmail.com</email>
      </address>
    </contact>
    </section>

  </back>

<!-- ##markdown-source:
H4sIAKGlGGQAA+S96XbbxpYw+r+eAq2sdSwlJC15iuOc5ESTE3U8XUtxcjK0
BJKQhGMSYAOgZMVJv899jvtid49VuwBQsp2kv15fq0/aEgnUsGvXnofhcOia
vJllj5Kj8yx5mtV1epYXZ8mT9CqrksNssqzy5ipZf/rkcCN5UZVNOSlnLh2P
q+ziUQKfumk5KdI5DDCt0tNmmGfN6XA+q4cLeXi49ZmbpE12VlZXj5K6mTqX
L6pHSVMt6+bO5uZnm3dcWmXpIz+be51dXZbV9FFyUDRZVWTNcA/Hdq5u0mJ6
nM7KAua7ymq3yB8lP8E0g6Quq6bKTmv47WqOv/ziXLpszsvqkUuGSZIX9aPk
5SjZSWHA2iXww8t+mU/O02pqvyirs7TIf02bvCweJbt5PSnp82ye5rNHSTUb
f5UvLkb1GxiZvqDBd2DwbFlNy+XkPDMT7GTFv9J5XrS/jWc5KKo8Tf6WPC1/
zWez1M6HIP1q7F8eTcp5NDHs6mU5zqrG7ipdnKfZzH4Rz/fivMyK/E3y8m97
nbkqfrmidzvT/fsoeQpLzCdpYSb897KIP46ne5o1afJiljanZTWv7Yz/mstb
X83hmc5s+6Pk+TytUjPV/jydmg/jib4uy7NZZieAf6YlPv3VGX3XmeLbUbJb
nhfDrwHnSrunb9OmygGI7W/jGb8r8ousqvGalKfJ8zeww6mdf5599ZoHgplH
y9fOTcoC/h4vG0FOhSBMtT27zGgSmONRkmzP0195UhksSfGBf5VfpfSN7MWv
t2rOc7g9KSAbIPVZepGawQjF7Fivw/OjsT7/VY6PjU6rMO5uWie7VTaHXYbR
dg8OX2zb0Sb8xFeTvF6ko2kW3t+ewYL24G5Pwuvf51UW7wumvoQP4y3tAEEA
zPkm5TPld5/BOmfJi7Juzqp0ugTikhxOzksgTGbAMb05Ooc3vyoW9SibLsOw
h1UOpwbbOijOlhcRUOqcPvrqKoURW/AtC5gP/jkfV+XrsJ7WXfLgpcdHr/nx
r6Zpk9bnMHHWAg7esuTby9Ic1dODo2gk+DKdfTXPm3gbR+U8eZKlF1fXYUxT
zmf4TC/K7FRZMYXTeTqhyxu9Oebv5pM5f/XVGX4ev/8UUChNni5naTX59er1
deuYL2dzfLp3HfuAHMnLDChtxcRP4BCooQ6Tva6+qprTeWsdSMWJ3tVZAQA9
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
lnRfeYDSJ/VQZXeyFS4ZXgH6uMZO8SKqMCzfmDJTHFrlpcFTXWGiaqkbxi6l
O1eNI1cSkduFvx9uUaHiY6YsCEHWgAxty8Gz7SflgijUAX5DG0IaApQL6qVZ
XG0M8Uo0NFz/ojc49r/86pXXsqW7gBAeRNuRQUnj3UIg1jExWV2DtVTY6d3t
rJCfBRaZNoX3Zyr4rxzS6gzosOQgSGtwwqyonFqzPuRCc22LLrsrQZZ/b6Sr
NE3fgs488qJHaZ6l72G71OhWWO5O+9cN0SYyLqFieEZ0xoSCv6ssohfPoUu6
yZEggm2J4sffJzgj0y9XKoKI1KPt48Ef3Xw8Pty4tP5mR+uS/TbS9p/rTaGG
Ldr470l0Ss1li/HRA+dlnjQzmacAicu4Zl5xYR8z6k8BFNrK9jBDj6+phKB3
C6rnRVKWTq9DEbDCJrwn3bJjw6Ehn7Opub8g+3HLEv+CnoJPxyIniYLRIX6b
LMmZAeUaruUTugFXlCg0bUAV/Stc22poe9zaeIHT0xTOGwWnY65Mlt9rivYg
gwIZcila+Jp0PP6mTWDQHBL8YfwItS2xUvh0jNoeJ/+ADmHa7MOU95pCc6ng
b6Pz9GJKBortYNyL20e55rzZx2pH3Zbh8pNmlqEg0wce43U2CaNWg9QpQVQl
ravN9CyyR1s9M1OnppCgddfaXNWXlaDPJYmDdpVj8i6kzNfyWs5G2KfDYdES
rQIzHTAF51QA8yRpIcytBBcSZT2T6OZBopvpNJN52sTGaaMpDl8cfRN3NQp2
VyvdruSlIRcN4PZhjNp0LZn9yKbYXlDUBJYAYdhriKrLToPs2ZqmQm2cVtzZ
zXVZ95GKF5A1uFgs0y92Hk7anzAiDjuLm7JTJ6wXBVMRb6JlTJ6byU0wFcCM
VhMhBCZYThpgoKHenxdug6wZTJHZ4ccANGaON5iL7+DUVsc0Q6auz+2otWt9
BrAc5e7NqqyCkOeSWHlUn3XRrA4fTOiOo+LHIuPhpaGhqslrtjaxB3K59B4F
f7jwy0QmzIL338vWs5hrUhTdJqXKMQR8P6YzC/t6DhYjpH/sOTAieYrrmMOE
SxZgDQGv5mqw75mYaALqDwRYBVN/OJo0n4EqPhajtoqDHJak5TrT/SqCBfUM
Y0WfcPCfM5NaDaMHE83wIJu8ZCUtXAPlm/fDfjd9HRnrgrPHsjuqd/OAI5uk
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

-->

</rfc>

