<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.1 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-mls-extensions-03" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.2 -->
  <front>
    <title abbrev="MLS">The Messaging Layer Security (MLS) Extensions</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-mls-extensions-03"/>
    <author initials="R." surname="Robert" fullname="Raphael Robert">
      <organization>Phoenix R&amp;D</organization>
      <address>
        <email>ietf@raphaelrobert.com</email>
      </address>
    </author>
    <date year="2023" month="October" day="23"/>
    <area>Security</area>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 47?>

<t>This document describes extensions to the Messaging Layer Security (MLS) protocol.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/mlswg/mls-extensions"/>.</t>
    </note>
  </front>
  <middle>
    <?line 51?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document describes extensions to <xref target="mls-protocol"/> that are not part of the
main protocol specification. The protocol specification includes a set of core
extensions that are likely to be useful to many applications. The extensions
described in this document are intended to be used by applications that need to
extend the MLS protocol.</t>
      <section anchor="change-log">
        <name>Change Log</name>
        <t>RFC EDITOR PLEASE DELETE THIS SECTION.</t>
        <t>draft-03</t>
        <ul spacing="normal">
          <li>
            <t>Add Last Resort KeyPackage extension</t>
          </li>
          <li>
            <t>Add Safe Extensions framework</t>
          </li>
          <li>
            <t>Add SelfRemove Proposal</t>
          </li>
        </ul>
        <t>draft-02</t>
        <ul spacing="normal">
          <li>
            <t>No changes (prevent expiration)</t>
          </li>
        </ul>
        <t>draft-01</t>
        <ul spacing="normal">
          <li>
            <t>Add Content Advertisement extensions</t>
          </li>
        </ul>
        <t>draft-00</t>
        <ul spacing="normal">
          <li>
            <t>Initial adoption of draft-robert-mls-protocol-00 as a WG item.</t>
          </li>
          <li>
            <t>Add Targeted Messages extension (*)</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="safe-extensions">
      <name>Safe Extensions</name>
      <t>The MLS specification is extensible in a variety of ways (see Section 13 of the
<xref target="RFC9420"/>) and describes the negotiation and other handling of extensions and
their data within the protocol. However, it does not provide guidance on how
extensions can or should safely interact with the base MLS protocol. The goal of
this section is to simplify the task of developing MLS extensions.</t>
      <t>More concretely, this section defines the Safe Extension API, a library of
extension components which simplifies development and security analysis of
extensions, provides general guidance on using the built-in functionality of the
base MLS protocol to build extensions, defines specific examples of extensions
built on top of the Safe Extension API alongside the built-in mechanisms of the
base MLS protocol, defines a number of labels registered in IANA which can be
safely used by extensions, so that the only value an extension developer must
add to the IANA registry themselves is a unique ExtensionType.</t>
      <section anchor="safe-extension-api">
        <name>Safe Extension API</name>
        <t>The Safe Extension API is a library that defines a number of components from
which extensions can be built. In particular, these components provide
extensions the ability to:</t>
        <ul spacing="normal">
          <li>
            <t>Make use of selected private and public key material from the MLS
specification, e.g. to encrypt, decrypt, sign, verify and derive fresh key
material.</t>
          </li>
          <li>
            <t>Inject key material via PSKs in a safe way to facilitate state agreement
without the use of a group context extension.</t>
          </li>
          <li>
            <t>Export secrets from MLS in a way that, in contrast to the built-in export
functionality of MLS, preserves forward secrecy of the exported secrets within
an epoch.</t>
          </li>
        </ul>
        <t>The Safe Extension API is not an extension itself, it only defines components
from which other extensions can be built. Some of these components modify the
MLS protocol and, therefore, so do the extensions built from them.</t>
        <t>Where possible, the API makes use of mechanisms defined in the MLS
specification. For example, part of the safe API is the use of the
<tt>SignWithLabel</tt> function described in Section 5.1.2 of <xref target="RFC9420"/>.</t>
        <section anchor="security">
          <name>Security</name>
          <t>An extension is called safe if it does not modify the base MLS protocol or other
MLS extensions beyond using components of the Safe Extension API. The Safe
Extension API provides the following security guarantee: If an application uses
MLS and only safe MLS extensions, then the security guarantees of the base MLS
protocol and the security guarantees of safe extensions, each analyzed in
isolation, still hold for the composed extended MLS protocol. In other words,
the Safe Extension API protects applications from careless extension
developers. As long as all used extensions are safe, it is not possible that a
combination of extensions  (the developers of which did not know about each
other) impedes the security of the base MLS protocol or any used extension. No
further analysis of the combination is necessary. This also means that any
security vulnerabilities introduced by one extension do not spread to other
extensions or the base MLS.</t>
        </section>
        <section anchor="common-data-structures">
          <name>Common Data Structures</name>
          <t>Most components of the Safe Extension API use the value ExtensionType which is a
unique uint16 identifier assigned to an extension in the MLS Extension Types
IANA registry (see Section 17.3 of <xref target="RFC9420"/>).</t>
          <t>Most Safe Extension API components also use the following data structure, which
provides domain separation by <tt>extension_type</tt> of various <tt>extension_data</tt>.</t>
          <sourcecode type="tls"><![CDATA[
struct {
  ExtensionType extension_type;
  opaque extension_data<V>;
} ExtensionContent;
]]></sourcecode>
          <t>Where <tt>extension_type</tt> is set to the type of the extension to which the
<tt>extension_data</tt> belongs.</t>
          <t>If in addition a label is required, the following data structure is used.</t>
          <sourcecode type="tls"><![CDATA[
struct {
  opaque label;
  ExtensionContent extension_content;
} LabeledExtensionContent;
]]></sourcecode>
        </section>
        <section anchor="safe-hpke">
          <name>Hybrid Public Key Encryption (HPKE)</name>
          <t>This component of the Safe Extension API allows extensions to make use of all
HPKE key pairs generated by MLS. An extension identified by an ExtensionType can
use any HPKE key pair for any operation defined in <xref target="RFC9180"/>, such as
encryption, exporting keys and the PSK mode, as long as the <tt>info</tt> input to
<tt>Setup&lt;MODE&gt;S</tt> and <tt>Setup&lt;MODE&gt;R</tt> is set to LabeledExtensionContent with
<tt>extension_type</tt> set to ExtensionType. The <tt>extension_data</tt> can be set to an
arbitrary Context specified by the extension designer (and can be empty if not
needed). For example, an extension can use a key pair PublicKey, PrivateKey to
encrypt data as follows:</t>
          <sourcecode type="tls"><![CDATA[
SafeEncryptWithContext(ExtensionType, PublicKey, Context, Plaintext) =
    SealBase(PublicKey, LabeledExtensionContent, "", Plaintext)

SafeDecryptWithContext(ExtensionType, PrivateKey, Context, KEMOutput, Ciphertext) =
    OpenBase(KEMOutput, PrivateKey, LabeledExtensionContent, "", Ciphertext)
]]></sourcecode>
          <t>Where the fields of LabeledExtensionContent are set to</t>
          <sourcecode type="tls"><![CDATA[
label = "MLS 1.0 ExtensionData"
extension_type = ExtensionType
extension_data = Context
]]></sourcecode>
          <t>For operations involving the secret key, ExtensionType MUST be set to the
ExtensionType of the implemented extension, and not to the type of any other
extension. In particular, this means that an extension cannot decrypt data meant
for another extension, while extensions can encrypt data to other extensions.</t>
          <t>In general, a ciphertext encrypted with a PublicKey can be decrypted by any
entity who has the corresponding PrivateKey at a given point in time according
to the MLS protocol (or extension). For convenience, the following list
summarizes lifetimes of MLS key pairs.</t>
          <ul spacing="normal">
            <li>
              <t>The key pair of a non-blank ratchet tree node. The PrivateKey of such a key pair
is known to all members in the node’s subtree. In particular, a PrivateKey of a
leaf node is known only to the member in that leaf. A member in the subtree
stores the PrivateKey for a number of epochs, as long as the PublicKey does not
change. The key pair of the root node SHOULD NOT be used, since the external key
pair recalled below gives better security.</t>
            </li>
            <li>
              <t>The external_priv, external_pub key pair used for external initialization. The
external_priv key is known to all group members in the current epoch. A member
stores external_priv only for the current epoch. Using this key pair gives
better security guarantees than using the key pair of the root of the ratchet
tree and should always be preferred.</t>
            </li>
            <li>
              <t>The init_key in a KeyPackage and the corresponding secret key. The secret key
is known only to the owner of the KeyPackage and is deleted immediately after it
is used to join a group.</t>
            </li>
          </ul>
        </section>
        <section anchor="signature-keys">
          <name>Signature Keys</name>
          <t>MLS session states contain a number of signature keys including the ones in the
LeafNode structs. Extensions can safely sign content and verify signatures using
these keys via the SafeSignWithLabel and SafeVerifyWithLabel functions,
respectively, much like how the basic MLS protocol uses SignWithLabel and
VerifyWithLabel.</t>
          <t>In more detail, an extension identified by ExtensionType should sign and verify using:</t>
          <sourcecode type="tls"><![CDATA[
SafeSignWithLabel(ExtensionType, SignatureKey, Label, Content) =
    SignWithLabel(SignatureKey, "LabeledExtensionContent", LabeledExtensionContent)

SafeVerifyWithLabel(ExtensionType, VerificationKey, Label, Content, SignatureValue) =
    VerifyWithLabel(VerificationKey, "LabeledExtensionContent", LabeledExtensionContent, SignatureValue)
]]></sourcecode>
          <t>Where the fields of LabeledExtensionContent are set to</t>
          <sourcecode type="tls"><![CDATA[
label = Label
extension_type = ExtensionType
extension_data = Content
]]></sourcecode>
          <t>For signing operations, the ExtensionType MUST be set to the ExtensionType of
the implemented extension, and not to the type of any other extension. In
particular, this means that an extension cannot produce signatures in place of
other extensions. However, extensions can verify signatures computed by other
extensions. Note that domain separation is ensured by explicitly including the
ExtensionType with every operation.</t>
        </section>
        <section anchor="exporting-secrets">
          <name>Exporting Secrets</name>
          <t>An extension can use MLS as a group key agreement protocol by exporting symmetric keys.
Such keys can be exported (i.e. derived from MLS key material) in two phases per
epoch: Either at the start of the epoch, or during the epoch. Derivation at the
start of the epoch has the added advantage that the source key material is
deleted after use, allowing the derived key material to be deleted later even
during the same MLS epoch to achieve forward secrecy. The following protocol
secrets can be used to derive key from for use by extensions:</t>
          <ul spacing="normal">
            <li>
              <t>epoch_secret at the beginning of an epoch</t>
            </li>
            <li>
              <t>extension_secret during an epoch</t>
            </li>
          </ul>
          <t>The extension_secret is an additional secret derived from the epoch_secret at
the beginning of the epoch in the same way as the other secrets listed in Table
4 of <xref target="RFC9420"/> using the label "extension".</t>
          <t>Any derivation performed by an extension either from the epoch_secret or the
extension_secret has to use the following function:</t>
          <sourcecode type="tls"><![CDATA[
DeriveExtensionSecret(Secret, Label) =
  ExpandWithLabel(Secret, "ExtensionExport " + ExtensionType + " " + Label)
]]></sourcecode>
          <t>Where ExpandWithLabel is defined in Section 8 of <xref target="RFC9420"/> and where ExtensionType
MUST be set to the ExtensionType of the implemented extension.</t>
        </section>
        <section anchor="pre-shared-keys-psks">
          <name>Pre-Shared Keys (PSKs)</name>
          <t>PSKs represent key material that is injected into the MLS key schedule when
creating or processing a commit as defined in Section 8.4 of <xref target="RFC9420"/>. Its
injection into the key schedule means that all group members have to agree on
the value of the PSK.</t>
          <t>While PSKs are typically cryptographic keys which due to their properties add to
the overall security of the group, the PSK mechanism can also be used to ensure
that all members of a group agree on arbitrary pieces of data represented as
octet strings (without the necessity of sending the data itself over the wire).
For example, an extension can use the PSK mechanism to enforce that all group
members have access to and agree on a password or a shared file.</t>
          <t>This is achieved by creating a new epoch via a PSK proposal. Transitioning to
the new epoch requires using the information agreed upon.</t>
          <t>To facilitate using PSKs in a safe way, this document defines a new PSKType for
extensions. This provides domain separation between pre-shared keys used by the
core MLS protocol and applications, and between those used by different extensions.</t>
          <sourcecode type="tls"><![CDATA[
enum {
  reserved(0),
  external(1),
  resumption(2),
  extensions(3),
  (255)
} PSKType;

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

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

    case extensions:
      ExtensionType extension_type;
      opaque psk_id<V>;
  };
  opaque psk_nonce<V>;
} PreSharedKeyID;
]]></sourcecode>
        </section>
        <section anchor="extension-designer-tools">
          <name>Extension Designer Tools</name>
          <t>The safe extension API allows extension designers to sign and encrypt payloads
without the need to register their own IANA labels. Following the same pattern,
this document also provides ways for extension designers to define their own
wire formats, proposals and credentials.</t>
          <section anchor="wire-formats">
            <name>Wire Formats</name>
            <t>Extensions can define their own MLS messages by using the mls_extension_message
MLS Wire Format. The mls_extension_message Wire Format is IANA registered
specifically for this purpose and extends the select statement in the MLSMessage
struct as follows:</t>
            <sourcecode type="tls"><![CDATA[
case mls_extension_message:
    ExtensionContent extension_content;
]]></sourcecode>
            <t>The extension_type in <tt>extension_content</tt> MUST be set to the type of the
extension in question.
Processing of self-defined wire formats has to be defined by the extension.</t>
          </section>
          <section anchor="proposals">
            <name>Proposals</name>
            <t>Similar to wire formats, extensions can define their own proposals by using one
of three dedicated extension proposal types: extension_proposal,
extension_path_proposal and extension_external_propsal. Each type contains the
same ExtensionContent struct, but is validated differently: extension_proposal
requires no UpdatePath and can not be sent by an external sender
extension_path_proposal requires an UpdatePath and can not be sent by an external
sender extensions_external_proposal requires no UpdatePath and can be sent by an
external sender.</t>
            <t>Each of the three proposal types is IANA registered and extends the select
statement in the Proposal struct as follows:</t>
            <sourcecode type="tls"><![CDATA[
case extension_proposal:
    ExtensionContent extension_content;
case extension_path_proposal:
    ExtensionContent extension_content;
case extension_external_proposal:
    ExtensionContent extension_content;
]]></sourcecode>
            <t>The extension_type MUST be set to the type of the extension in question.</t>
            <t>Processing and validation of self-defined proposals has to be defined by the
extension. However, validation rules can lead to a previously valid commit to
become invalid, not the other way around. This is with the exception of proposal
validation for external commits, where self-defined proposals can be declared
valid for use in external commits. More concretely, if an external commit is
invalid, only because the self-defined proposal is part of it (the last rule in
external commit proposal validation in Section 12.2 of <xref target="RFC9420"/>), then the
self-defined validation rules may rule that the commit is instead valid.</t>
          </section>
          <section anchor="credentials">
            <name>Credentials</name>
            <t>Extension designers can also define their own credential types via the IANA
registered extension_credential credential type. The extension_credential
extends the select statement in the Credential struct as follows:</t>
            <sourcecode type="tls"><![CDATA[
case extension_credential:
    ExtensionContent extension_content;
]]></sourcecode>
            <t>The extension_type in the extension_content must be set to that of the extension
in question  with the extension_data containing all other relevant data. Note
that any credential defined in this way has to meet the requirements detailed in
Section 5.3 of the MLS specification.</t>
          </section>
        </section>
      </section>
      <section anchor="extension-design-guidance">
        <name>Extension Design Guidance</name>
        <t>While extensions can modify the protocol flow of MLS and the associated
properties in arbitrary ways, the base MLS protocol already enables a number of
functionalities that extensions can use without modifying MLS itself. Extension
authors should consider using these built-in mechanisms before employing more
intrusive changes to the protocol.</t>
        <section anchor="storing-state-in-extensions">
          <name>Storing State in Extensions</name>
          <t>Every type of MLS extension can have data associated with it and, depending on
the type of extension (KeyPackage Extension, GroupContext Extension, etc.) that
data is included in the corresponding MLS struct. This allows the authors of an
extension to make use of any authentication or confidentiality properties that
the struct is subject to as part of the protocol flow.</t>
          <ul spacing="normal">
            <li>
              <t>GroupContext Extensions: Any data in a group context extension is agreed-upon
by all members of the group in the same way as the rest of the group state. As
part of the GroupContext, it is also sent encrypted to new joiners via Welcome
messages and (depending on the architecture of the application) may be
available to external joiners. Note that in some scenarios, the GroupContext
may also be visible to components  that implement the delivery service.</t>
            </li>
            <li>
              <t>GroupInfo Extensions: GroupInfo extensions are included in the GroupInfo
struct and thus sent encrypted and authenticated by the signer of the
GroupInfo to new joiners as part of Welcome messages. It can thus be used as a
confidential and authenticated channel from the inviting group member to new
joiners. Just like GroupContext extensions, they may also be visible to
external joiners or even parts of the delivery service. Unlike GroupContext
extensions, the GroupInfo struct is not part of the group state that all group
members agree on.</t>
            </li>
            <li>
              <t>KeyPackage Extensions: KeyPackages (and the extensions they include) are
pre-published by individual clients for asynchronous group joining. They are
included in Add proposals and become part of the group state once the Add
proposal is committed. They are, however, removed from the group state when
the owner of the KeyPackage does the first commit with a path. As such,
KeyPackage extensions can be used to communicate data to anyone who wants to
invite the owner to a group, as well as the other members of the group the
owner is added to. Note that KeyPackage extensions are visible to the server
that provides the KeyPackages for download, as well as any part of the
delivery service that can see the public group state.</t>
            </li>
            <li>
              <t>LeafNode Extensions: LeafNodes are a part of every KeyPackage and thus follow
the same lifecycle. However, they are also part of any commit that includes an
UpdatePath and clients generally have a leaf node in each group they are a member
of. Leaf node extensions can thus be used to include member-specific data in a
group state that can be updated by the owner at any time.</t>
            </li>
          </ul>
        </section>
      </section>
    </section>
    <section anchor="extensions">
      <name>Extensions</name>
      <section anchor="appack">
        <name>AppAck</name>
        <t>Type: Proposal</t>
        <section anchor="description">
          <name>Description</name>
          <t>An AppAck proposal is used to acknowledge receipt of application messages.
Though this information implies no change to the group, it is structured as a
Proposal message so that it is included in the group's transcript by being
included in Commit messages.</t>
          <sourcecode type="tls"><![CDATA[
struct {
    uint32 sender;
    uint32 first_generation;
    uint32 last_generation;
} MessageRange;

struct {
    MessageRange received_ranges<V>;
} AppAck;
]]></sourcecode>
          <t>An AppAck proposal represents a set of messages received by the sender in the
current epoch.  Messages are represented by the <tt>sender</tt> and <tt>generation</tt> values
in the MLSCiphertext for the message.  Each MessageRange represents receipt of a
span of messages whose <tt>generation</tt> values form a continuous range from
<tt>first_generation</tt> to <tt>last_generation</tt>, inclusive.</t>
          <t>AppAck proposals are sent as a guard against the Delivery Service dropping
application messages.  The sequential nature of the <tt>generation</tt> field provides
a degree of loss detection, since gaps in the <tt>generation</tt> sequence indicate
dropped messages.  AppAck completes this story by addressing the scenario where
the Delivery Service drops all messages after a certain point, so that a later
generation is never observed.  Obviously, there is a risk that AppAck messages
could be suppressed as well, but their inclusion in the transcript means that if
they are suppressed then the group cannot advance at all.</t>
          <t>The schedule on which sending AppAck proposals are sent is up to the application,
and determines which cases of loss/suppression are detected.  For example:</t>
          <ul spacing="normal">
            <li>
              <t>The application might have the committer include an AppAck proposal whenever a
Commit is sent, so that other members could know when one of their messages
did not reach the committer.</t>
            </li>
            <li>
              <t>The application could have a client send an AppAck whenever an application
message is sent, covering all messages received since its last AppAck.  This
would provide a complete view of any losses experienced by active members.</t>
            </li>
            <li>
              <t>The application could simply have clients send AppAck proposals on a timer, so
that all participants' state would be known.</t>
            </li>
          </ul>
          <t>An application using AppAck proposals to guard against loss/suppression of
application messages also needs to ensure that AppAck messages and the Commits
that reference them are not dropped.  One way to do this is to always encrypt
Proposal and Commit messages, to make it more difficult for the Delivery Service
to recognize which messages contain AppAcks.  The application can also have
clients enforce an AppAck schedule, reporting loss if an AppAck is not received
at the expected time.</t>
        </section>
      </section>
      <section anchor="targeted-messages">
        <name>Targeted messages</name>
        <section anchor="description-1">
          <name>Description</name>
          <t>MLS application messages make sending encrypted messages to all group members
easy and efficient. Sometimes application protocols mandate that messages are
only sent to specific group members, either for privacy or for efficiency
reasons.</t>
          <t>Targeted messages are a way to achieve this without having to create a new group
with the sender and the specific recipients – which might not be possible or
desired. Instead, targeted messages define the format and encryption of a
message that is sent from a member of an existing group to another member of
that group.</t>
          <t>The goal is to provide a one-shot messaging mechanism that provides
confidentiality and authentication.</t>
          <t>Targeted Messages makes use the Safe Extension API as defined in <xref target="safe-extension-api"/>.
reuse mechanisms from <xref target="mls-protocol"/>, in particular <xref target="hpke"/>.</t>
        </section>
        <section anchor="format">
          <name>Format</name>
          <t>This extension uses the <tt>mls_extension_message</tt> WireFormat as defined in Section
<xref target="wire-formats"/>, where the content is a <tt>TargetedMessage</tt>.</t>
          <sourcecode type="tls"><![CDATA[
struct {
  opaque group_id<V>;
  uint64 epoch;
  uint32 recipient_leaf_index;
  opaque authenticated_data<V>;
  opaque encrypted_sender_auth_data<V>;
  opaque hpke_ciphertext<V>;
} TargetedMessage;

enum {
  hpke_auth_psk(0),
  signature_hpke_psk(1),
} TargetedMessageAuthScheme;

struct {
  uint32 sender_leaf_index;
  TargetedMessageAuthScheme authentication_scheme;
  select (authentication_scheme) {
    case HPKEAuthPsk:
    case SignatureHPKEPsk:
      opaque signature<V>;
  }
  opaque kem_output<V>;
} TargetedMessageSenderAuthData;

struct {
  opaque group_id<V>;
  uint64 epoch;
  uint32 recipient_leaf_index;
  opaque authenticated_data<V>;
  TargetedMessageSenderAuthData sender_auth_data;
} TargetedMessageTBM;

struct {
  opaque group_id<V>;
  uint64 epoch;
  uint32 recipient_leaf_index;
  opaque authenticated_data<V>;
  uint32 sender_leaf_index;
  TargetedMessageAuthScheme authentication_scheme;
  opaque kem_output<V>;
  opaque hpke_ciphertext<V>;
} TargetedMessageTBS;

struct {
  opaque group_id<V>;
  uint64 epoch;
  opaque label<V> = "MLS 1.0 targeted message psk";
} PSKId;
]]></sourcecode>
          <t>Note that <tt>TargetedMessageTBS</tt> is only used with the
<tt>TargetedMessageAuthScheme.SignatureHPKEPsk</tt> authentication mode.</t>
        </section>
        <section anchor="encryption">
          <name>Encryption</name>
          <t>Targeted messages uses HPKE to encrypt the message content between two leaves.</t>
          <section anchor="sender-data-encryption">
            <name>Sender data encryption</name>
            <t>In addition, <tt>TargetedMessageSenderAuthData</tt> is encrypted in a similar way to
<tt>MLSSenderData</tt> as described in section 6.3.2 in <xref target="mls-protocol"/>. The
<tt>TargetedMessageSenderAuthData.sender_leaf_index</tt> field is the leaf index of the
sender. The <tt>TargetedMessageSenderAuthData.authentication_scheme</tt> field is the
authentication scheme used to authenticate the sender. The
<tt>TargetedMessageSenderAuthData.signature</tt> field is the signature of the
<tt>TargetedMessageTBS</tt> structure. The <tt>TargetedMessageSenderAuthData.kem_output</tt>
field is the KEM output of the HPKE encryption.</t>
            <t>The key and nonce provided to the AEAD are computed as the KDF of the first
KDF.Nh bytes of the <tt>hpke_ciphertext</tt> generated in the following section. If the
length of the hpke_ciphertext is less than KDF.Nh, the whole hpke_ciphertext is
used. In pseudocode, the key and nonce are derived as:</t>
            <sourcecode type="tls"><![CDATA[
sender_auth_data_secret
  = DeriveExtensionSecret(extension_secret, "targeted message sender auth data")

ciphertext_sample = hpke_ciphertext[0..KDF.Nh-1]

sender_data_key = ExpandWithLabel(sender_auth_data_secret, "key",
                      ciphertext_sample, AEAD.Nk)
sender_data_nonce = ExpandWithLabel(sender_auth_data_secret, "nonce",
                      ciphertext_sample, AEAD.Nn)
]]></sourcecode>
            <t>The Additional Authenticated Data (AAD) for the <tt>SenderAuthData</tt> ciphertext is
the first three fields of <tt>TargetedMessage</tt>:</t>
            <sourcecode type="tls"><![CDATA[
struct {
  opaque group_id<V>;
  uint64 epoch;
  uint32 recipient_leaf_index;
} SenderAuthDataAAD;
]]></sourcecode>
          </section>
          <section anchor="padding">
            <name>Padding</name>
            <t>The <tt>TargetedMessage</tt> structure does not include a padding field. It is the
responsibility of the sender to add padding to the <tt>message</tt> as used in the next
section.</t>
          </section>
        </section>
        <section anchor="authentication">
          <name>Authentication</name>
          <t>For ciphersuites that support it, HPKE <tt>mode_auth_psk</tt> is used for
authentication. For other ciphersuites, HPKE <tt>mode_psk</tt> is used along with a
signature. The authentication scheme is indicated by the <tt>authentication_scheme</tt>
field in <tt>TargetedMessageContent</tt>. See <xref target="guidance-on-authentication-schemes"/>
for more information.</t>
          <t>For the PSK part of the authentication, clients export a dedicated secret:</t>
          <sourcecode type="tls"><![CDATA[
targeted_message_psk
  = DeriveExtensionSecret(extension_secret, "targeted message psk")
]]></sourcecode>
          <t>The functions <tt>SealAuth</tt> and <tt>OpenAuth</tt> defined in <xref target="hpke"/> are used as
described in <xref target="safe-hpke"/> with an empty context. Other functions are defined in
<xref target="mls-protocol"/>.</t>
          <section anchor="authentication-with-hpke">
            <name>Authentication with HPKE</name>
            <t>The sender MUST set the authentication scheme to
<tt>TargetedMessageAuthScheme.HPKEAuthPsk</tt>.</t>
            <t>As described in <xref target="safe-hpke"/> the <tt>hpke_context</tt> is a LabeledExtensionContent struct
with the following content, where <tt>group_context</tt> is the serialized context of
the group.</t>
            <sourcecode type="tls"><![CDATA[
label = "MLS 1.0 ExtensionData"
extension_type = ExtensionType
extension_data = group_context
]]></sourcecode>
            <t>The sender then computes the following:</t>
            <sourcecode type="tls"><![CDATA[
(kem_output, hpke_ciphertext) = SealAuthPSK(receiver_node_public_key,
                                            hpke_context,
                                            targeted_message_tbm,
                                            message,
                                            targeted_message_psk,
                                            psk_id,
                                            sender_node_private_key)
]]></sourcecode>
            <t>The recipient computes the following:</t>
            <sourcecode type="tls"><![CDATA[
message = OpenAuthPSK(kem_output,
                      receiver_node_private_key,
                      hpke_context,
                      targeted_message_tbm,
                      hpke_ciphertext,
                      targeted_message_psk,
                      psk_id,
                      sender_node_public_key)
]]></sourcecode>
          </section>
          <section anchor="authentication-with-signatures">
            <name>Authentication with signatures</name>
            <t>The sender MUST set the authentication scheme to
<tt>TargetedMessageAuthScheme.SignatureHPKEPsk</tt>. The signature is done using the
<tt>signature_key</tt> of the sender's <tt>LeafNode</tt> and the corresponding signature
scheme used in the group.</t>
            <t>The sender then computes the following with <tt>hpke_context</tt> defined as in
<xref target="authentication-with-hpke"/>:</t>
            <sourcecode type="tls"><![CDATA[
(kem_output, hpke_ciphertext) = SealPSK(receiver_node_public_key,
                                        hpke_context,
                                        targeted_message_tbm,
                                        message,
                                        targeted_message_psk,
                                        epoch)
]]></sourcecode>
            <t>The signature is computed as follows, where the <tt>extension_type</tt> is the type of
this extension (see <xref target="iana-considerations"/>).</t>
            <sourcecode type="tls"><![CDATA[
signature = SafeSignWithLabel(extension_type, ., "TargetedMessageTBS", targeted_message_tbs)
]]></sourcecode>
            <t>The recipient computes the following:</t>
            <sourcecode type="tls"><![CDATA[
message = OpenPSK(kem_output,
                  receiver_node_private_key,
                  hpke_context,
                  targeted_message_tbm,
                  hpke_ciphertext,
                  targeted_message_psk,
                  epoch)
]]></sourcecode>
            <t>The recipient MUST verify the message authentication:</t>
            <sourcecode type="tls"><![CDATA[
SafeVerifyWithLabel.verify(extension_type,
                        sender_leaf_node.signature_key,
                        "TargetedMessageTBS",
                        targeted_message_tbs,
                        signature)
]]></sourcecode>
          </section>
        </section>
        <section anchor="guidance-on-authentication-schemes">
          <name>Guidance on authentication schemes</name>
          <t>If the group’s ciphersuite does not support HPKE <tt>mode_auth_psk</tt>,
implementations MUST choose <tt>TargetedMessageAuthScheme.SignatureHPKEPsk</tt>.</t>
          <t>If the group’s ciphersuite does support HPKE <tt>mode_auth_psk</tt>, implementations
CAN choose <tt>TargetedMessageAuthScheme.HPKEAuthPsk</tt> if better efficiency and/or
repudiability is desired. Implementations SHOULD consult
<xref target="hpke-security-considerations"/> beforehand.</t>
        </section>
      </section>
      <section anchor="content-advertisement">
        <name>Content Advertisement</name>
        <section anchor="description-2">
          <name>Description</name>
          <t>This section describes two extensions to MLS. The first allows MLS clients
to advertise their support for specific formats inside MLS <tt>application_data</tt>.
These are expressed using the extensive IANA Media Types registry (formerly
called MIME Types).  The <tt>accepted_media_types</tt> LeafNode extension lists the
formats a client supports inside <tt>application_data</tt>. The second, the
<tt>required_media_types</tt> GroupContext extension specifies which media types
need to be supported by all members of a particular MLS group.
These allow clients to confirm that all members of a group can communicate.
Note that when the membership of a group changes, or when the policy of the
group changes, it is responsibility of the committer to insure that the membership
and policies are compatible.</t>
          <t>Finally, this document defines a minimal framing format so MLS clients can signal
which media type is being sent when multiple formats are permitted in the same group.
As clients are upgraded to support new formats they can use these extensions
to detect when all members support a new or more efficient encoding, or select the
relevant format or formats to send.</t>
          <t>Note that the usage of IANA media types in general does not imply the usage of MIME
Headers <xref target="RFC2045"/> for framing. Vendor-specific media subtypes starting with
<tt>vnd.</tt> can be registered with IANA without standards action as described in
<xref target="RFC6838"/>.  Implementations which wish to send multiple formats in a single
application message, may be interested in the <tt>multipart/alternative</tt> media type
defined in <xref target="RFC2046"/> or may use or define another type with similar semantics
(for example using TLS Presentation Language syntax <xref target="RFC8446"/>).</t>
        </section>
        <section anchor="syntax">
          <name>Syntax</name>
          <t>MediaType is a TLS encoding of a single IANA media type (including top-level
type and subtype) and any of its parameters. Even if the <tt>parameter_value</tt>
would have required formatting as a <tt>quoted-string</tt> in a text encoding, only
the contents inside the <tt>quoted-string</tt> are included in <tt>parameter_value</tt>.
MediaTypeList is an ordered list of MediaType objects.</t>
          <sourcecode type="tls"><![CDATA[
struct {
    opaque parameter_name<V>;
    /* Note: parameter_value never includes the quotation marks of an
     * RFC 2045 quoted-string */
    opaque parameter_value<V>;
} Parameter;

struct {
    /* media_type is an IANA top-level media type, a "/" character,
     * and the IANA media subtype */
    opaque media_type<V>;

    /* a list of zero or more parameters defined for the subtype */
    Parameter parameters<V>;
} MediaType;

struct {
    MediaType media_types<V>;
} MediaTypeList;

MediaTypeList accepted_media_types;
MediaTypeList required_media_types;
]]></sourcecode>
          <t>Example IANA media types with optional parameters:</t>
          <sourcecode type="artwork"><![CDATA[
  image/png
  text/plain ;charset="UTF-8"
  application/json
  application/vnd.example.msgbus+cbor
]]></sourcecode>
          <t>For the example media type for <tt>text/plain</tt>, the <tt>media_type</tt> field
would be <tt>text/plain</tt>, <tt>parameters</tt> would contain a single Parameter
with a <tt>parameter_name</tt> of <tt>charset</tt> and a <tt>parameter_value</tt> of <tt>UTF-8</tt>.</t>
        </section>
        <section anchor="expected-behavior">
          <name>Expected Behavior</name>
          <t>An MLS client which implements this section SHOULD include the
<tt>accepted_media_types</tt> extension in its LeafNodes, listing
all the media types it can receive. As usual, the
client also includes <tt>accepted_media_types</tt> in its <tt>capabilities</tt> field in
its LeafNodes (including LeafNodes inside its KeyPackages).</t>
          <t>When creating a new MLS group for an application using this specification,
the group MAY include a <tt>required_media_type</tt> extension in the GroupContext
Extensions. As usual, the client also includes
<tt>required_media_types</tt> in its <tt>capabilities</tt> field in its LeafNodes
(including LeafNodes inside its KeyPackages). When used in a group, the client
MUST include the <tt>required_media_types</tt> and <tt>accepted_media_types</tt> extensions
in the list of extensions in RequiredCapabilities.</t>
          <t>MLS clients SHOULD NOT add an MLS client to an MLS group with <tt>required_media_types</tt>
unless the MLS client advertises it can support all of the required MediaTypes.
As an exception, a client could be preconfigured to know that certain clients
support the requried types. Likewise, an MLS client is already forbidden from
issuing or committing a GroupContextExtensions Proposal which introduces required
extensions which are not supported by all members in the resulting epoch.</t>
        </section>
        <section anchor="framing-of-applicationdata">
          <name>Framing of application_data</name>
          <t>When an MLS group contains the <tt>required_media_types</tt> GroupContext extension,
the <tt>application_data</tt> sent in that group is interpreted as <tt>ApplicationFraming</tt>
as defined below:</t>
          <sourcecode type="tls"><![CDATA[
  struct {
      MediaType media_type;
      opaque<V> application_content;
  } ApplicationFraming;
]]></sourcecode>
          <t>The <tt>media_type</tt> MAY be zero length, in which case, the media type of the
<tt>application_content</tt> is interpreted as the first MediaType specified in
<tt>required_media_types</tt>.</t>
        </section>
      </section>
      <section anchor="selfremove-proposal">
        <name>SelfRemove Proposal</name>
        <t>The design of the MLS protocol prevents a member of
an MLS group from removing itself immediately from the group. (To cause
an immediate change in the group, a member must send a Commit message.
However the sender of a Commit message knows the keying material of the
new epoch and therefore needs to be part of the group.) Instead a member
wishing to remove itself can send a Remove Proposal and wait for another
member to Commit its Proposal.</t>
        <t>Unfortunately, MLS clients that join via an External Commit ignore
pending, but otherwise valid, Remove Proposals. The member trying to remove
itself has to monitor the group and send a new Remove Proposal in every new
epoch until the member is removed. In a
group with a burst of external joiners, a member connected over a
high-latency link (or one that is merely unlucky) might have to wait
several epochs to remove itself. A real-world situation in which this happens
is a member trying to remove itself from a conference call as several dozen
new participants are trying to join (often on the hour).</t>
        <t>This section describes a new <tt>SelfRemove</tt> Proposal extension type. It is
designed to be included in External Commits.</t>
        <section anchor="extension-description">
          <name>Extension Description</name>
          <t>This document specifies a new MLS Proposal type called <tt>SelfRemove</tt>. Its syntax
is described using the TLS Presentation Language [@!RFC8446] below (its content
is an empty struct). It is allowed in External Commits and requires an UpdatePath.
SelfRemove proposals are only allowed in a Commit by reference. SelfRemove
cannot be sent as an external proposal.</t>
          <sourcecode type="tls-presentation"><![CDATA[
struct {} SelfRemove;

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;
        case self_remove:              SelfRemove;
    };
} Proposal;
]]></sourcecode>
          <t>The description of behavior below only applies if all the
members of a group support this extension in their
capabilities; such a group is a "self-remove-capable group".</t>
          <t>An MLS client which supports this extension can send a
SelfRemove Proposal whenever it would like to remove itself
from a self-remove-capable group. Because the point of a
SelfRemove Proposal is to be available to external joiners
(which are not yet members), these proposals MUST be sent
in an MLS PublicMessage.</t>
          <t>Whenever a member receives a SelfRemove Proposal, it includes
it along with any other pending Propsals when sending a Commit.
It already MUST send a Commit of pending Proposals before sending
new application messages.</t>
          <t>When a member receives a Commit referencing one or more SelfRemove Proposals,
it treats the proposal like a Remove Proposal, except the leaf node to remove
is determined by looking in the Sender <tt>leaf_index</tt> of the original Proposal.
The member is able to verify that the Sender was a member.</t>
          <t>Whenever a new joiner is about to join a self-remove-capable group with an
External Commit, the new joiner MUST fetch any pending SelfRemove Proposals
along with the GroupInfo object, and include the SelfRemove Proposals
in its External Commit by reference. (An ExternalCommit can contain zero or
more SelfRemove proposals). The new joiner MUST validate the SelfRemove
Proposal before including it by reference, except that it skips the validation
of the <tt>membership_tag</tt> because a non-member cannot verify membership.</t>
          <t>During validation, SelfRemove proposals are processed after Update proposals
and before Remove proposals. If there is a pending SelfRemove proposal for a specific
leaf node and a pending Remove proposal for the same leaf node, the Remove proposal is
invalid. A client MUST NOT issue more than one SelfRemove proposal per epoch.</t>
          <t>The MLS Delivery Service (DS) needs to validate SelfRemove Proposals it
receives (except that it cannot validate the <tt>membership_tag</tt>). If the DS
provides a GroupInfo object to an external joiner, the DS SHOULD attach any
SelfRemove proposals known to the DS to the GroupInfo object.</t>
          <t>As with Remove proposals, clients need to be able to receive a Commit
message which removes them from the group via a SelfRemove. If the DS does
not forward a Commit to a removed client, it needs to inform the removed
client out-of-band.</t>
        </section>
      </section>
      <section anchor="last-resort-keypackages">
        <name>Last resort KeyPackages</name>
        <t>Type: KeyPackage extension</t>
        <section anchor="description-3">
          <name>Description</name>
          <t>Section 10 of <xref target="RFC9420"/> details that clients are required to pre-publish
KeyPackages s.t. other clients can add them to groups asynchronously. It also
states that they should not be re-used:</t>
          <ul empty="true">
            <li>
              <t>KeyPackages are intended to be used only once and SHOULD NOT be reused except
in the case of a "last resort" KeyPackage (see Section 16.8). Clients MAY
generate and publish multiple KeyPackages to support multiple cipher suites.</t>
            </li>
          </ul>
          <t>Section 16.8 of <xref target="RFC9420"/> then introduces the notion of last-resort
KeyPackages as follows:</t>
          <ul empty="true">
            <li>
              <t>An application MAY allow for reuse of a "last resort" KeyPackage in order to
prevent denial-of-service attacks.</t>
            </li>
          </ul>
          <t>However, <xref target="RFC9420"/> does not specify how to distinguish regular KeyPackages
from last-resort ones. The last_resort_key_package KeyPackage extension defined
in this section fills this gap and allows clients to specifically mark
KeyPackages as KeyPackages of last resort that MAY be used more than once in
scenarios where all other KeyPackages have already been used.</t>
          <t>The extension allows clients that pre-publish KeyPackages to signal to the
Delivery Service which KeyPackage(s) are meant to be used as last resort
KeyPackages.</t>
          <t>An additional benefit of using an extension rather than communicating the
information out-of-band is that the extension is still present in Add proposals.
Clients processing such Add proposals can authenticate that a KeyPackage is a
last-resort KeyPackage and MAY make policy decisions based on that information.</t>
        </section>
        <section anchor="format-1">
          <name>Format</name>
          <t>The purpose of the extension is simply to mark a given KeyPackage, which means
it carries no additional data.</t>
          <t>As a result, a LastResort Extension contains the ExtensionType with an empty
<tt>extension_data</tt> field.</t>
        </section>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document requests the addition of various new values under the heading
of "Messaging Layer Security".  Each registration is organized under the
relevant registry Type.</t>
      <t>RFC EDITOR: Please replace XXXX throughout with the RFC number assigned to
this document</t>
      <section anchor="mls-wire-formats">
        <name>MLS Wire Formats</name>
        <section anchor="mls-extension-message">
          <name>MLS Extension Message</name>
          <ul spacing="normal">
            <li>
              <t>Value: 0x0006</t>
            </li>
            <li>
              <t>Name: mls_extension_message</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="mls-extension-types">
        <name>MLS Extension Types</name>
        <section anchor="targetedmessagescapability-mls-extension">
          <name>targeted_messages_capability MLS Extension</name>
          <t>The <tt>targeted_messages_capability</tt> MLS Extension Type is used in the
capabilities field of LeafNodes to indicate the support for the Targeted
Messages Extension. The extension does not carry any payload.</t>
          <ul spacing="normal">
            <li>
              <t>Value: 0x0006</t>
            </li>
            <li>
              <t>Name: targeted_messages_capability</t>
            </li>
            <li>
              <t>Message(s): LN: This extension may appear in LeafNode objects</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
        <section anchor="targetedmessages-mls-extension">
          <name>targeted_messages MLS Extension</name>
          <t>The <tt>targeted_messages</tt> MLS Extension Type is used inside GroupContext objects. It
indicates that the group supports the Targeted Messages Extension.</t>
          <ul spacing="normal">
            <li>
              <t>Value: 0x0007</t>
            </li>
            <li>
              <t>Name: targeted_messages</t>
            </li>
            <li>
              <t>Message(s): GC: This extension may appear in GroupContext objects</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
        <section anchor="acceptedmediatypes-mls-extension">
          <name>accepted_media_types MLS Extension</name>
          <t>The <tt>accepted_media_types</tt> MLS Extension Type is used inside LeafNode objects. It
contains a MediaTypeList representing all the media types supported by the
MLS client referred to by the LeafNode.</t>
          <ul spacing="normal">
            <li>
              <t>Value: 0x0008</t>
            </li>
            <li>
              <t>Name: accepted_media_types</t>
            </li>
            <li>
              <t>Message(s): LN: This extension may appear in LeafNode objects</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
        <section anchor="requiredmediatypes-mls-extension">
          <name>required_media_types MLS Extension</name>
          <t>The required_media_types MLS Extension Type is used inside GroupContext objects. It
contains a MediaTypeList representing the media types which are mandatory for all
MLS members of the group to support.</t>
          <ul spacing="normal">
            <li>
              <t>Value: 0x0009</t>
            </li>
            <li>
              <t>Name: required_media_types</t>
            </li>
            <li>
              <t>Message(s): GC: This extension may appear in GroupContext objects</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
        <section anchor="lastresortkeypackage-mls-extension">
          <name>last_resort_key_package MLS Extension</name>
          <t>The last_resort_key_package MLS Extension Type is used inside KeyPackage
objects. It marks the KeyPackage for usage in last resort scenarios and contains
no additional data.</t>
          <ul spacing="normal">
            <li>
              <t>Value: 0x0009</t>
            </li>
            <li>
              <t>Name: last_resort_key_package</t>
            </li>
            <li>
              <t>Message(s): KP: This extension may appear in KeyPackage objects</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="mls-proposal-types">
        <name>MLS Proposal Types</name>
        <section anchor="extension-proposal">
          <name>Extension Proposal</name>
          <ul spacing="normal">
            <li>
              <t>Value: 0x0008</t>
            </li>
            <li>
              <t>Name: extension_proposal</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Path Required: N</t>
            </li>
            <li>
              <t>External Sender: N</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
        <section anchor="extension-path-proposal">
          <name>Extension Path Proposal</name>
          <ul spacing="normal">
            <li>
              <t>Value: 0x0009</t>
            </li>
            <li>
              <t>Name: extension_path_proposal</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Path Required: Y</t>
            </li>
            <li>
              <t>External Sender: N</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
        <section anchor="extension-external-proposal">
          <name>Extension External Proposal</name>
          <ul spacing="normal">
            <li>
              <t>Value: 0x000a</t>
            </li>
            <li>
              <t>Name: extension_external_proposal</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Path Required: N</t>
            </li>
            <li>
              <t>External Sender: Y</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
        <section anchor="appack-proposal">
          <name>AppAck Proposal</name>
          <ul spacing="normal">
            <li>
              <t>Value: 0x000b</t>
            </li>
            <li>
              <t>Name: app_ack</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Path Required: Y</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
        <section anchor="selfremove-proposal-1">
          <name>SelfRemove Proposal</name>
          <t>The <tt>self_remove</tt> MLS Proposal Type is used for a member to remove itself
from a group more efficiently than using a <tt>remove</tt> proposal type, as the
<tt>self_remove</tt> type is permitted in External Commits.</t>
          <ul spacing="normal">
            <li>
              <t>Value: 0x000c</t>
            </li>
            <li>
              <t>Name: self_remove</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>External: N</t>
            </li>
            <li>
              <t>Path Required: Y</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="mls-credential-types">
        <name>MLS Credential Types</name>
        <section anchor="extension-credential">
          <name>Extension Credential</name>
          <ul spacing="normal">
            <li>
              <t>Value: 0x0000</t>
            </li>
            <li>
              <t>Name: extension_credential</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="mls-signature-labels">
        <name>MLS Signature Labels</name>
        <section anchor="labeled-extension-content">
          <name>Labeled Extension Content</name>
          <ul spacing="normal">
            <li>
              <t>Label: "LabeledExtensionContent"</t>
            </li>
            <li>
              <t>Recommended: Y</t>
            </li>
            <li>
              <t>Reference: RFC XXXX</t>
            </li>
          </ul>
        </section>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security considerations</name>
      <section anchor="appack-1">
        <name>AppAck</name>
        <t>TBC</t>
      </section>
      <section anchor="targeted-messages-1">
        <name>Targeted Messages</name>
        <t>In addition to the sender authentication, Targeted Messages are authenticated by
using a preshared key (PSK) between the sender and the recipient. The PSK is
exported from the group key schedule using the label "targeted message psk".
This ensures that the PSK is only valid for a specific group and epoch, and the
Forward Secrecy and Post-Compromise Security guarantees of the group key
schedule apply to the targeted messages as well. The PSK also ensures that an
attacker needs access to the private group state in addition to the
HPKE/signature's private keys. This improves confidentiality guarantees against
passive attackers and authentication guarantees against active attackers.</t>
      </section>
      <section anchor="content-advertisement-1">
        <name>Content Advertisement</name>
        <t>Use of the <tt>accepted_media_types</tt> and <tt>rejected_media_types</tt> extensions
could leak some private information visible in KeyPackages and inside an MLS group.
They could be used to infer a specific implementation, platform, or even version.
Clients should consider carefully the privacy implications in their environment of
making a list of acceptable media types available.</t>
      </section>
      <section anchor="selfremove">
        <name>SelfRemove</name>
        <t>An external recipient of a SelfRemove Proposal cannot verify the
<tt>membership_tag</tt>. However, an external joiner also has no way to
completely validate a GroupInfo object that it receives. An insider
can prevent an External Join by providing either an invalid GroupInfo object
or an invalid SelfRemove Proposal. The security properties of external joins
does not change with the addition of this proposal type.</t>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC9420">
          <front>
            <title>The Messaging Layer Security (MLS) Protocol</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="B. Beurdouche" initials="B." surname="Beurdouche"/>
            <author fullname="R. Robert" initials="R." surname="Robert"/>
            <author fullname="J. Millican" initials="J." surname="Millican"/>
            <author fullname="E. Omara" initials="E." surname="Omara"/>
            <author fullname="K. Cohn-Gordon" initials="K." surname="Cohn-Gordon"/>
            <date month="July" year="2023"/>
            <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 (FS) and post-compromise security (PCS) for groups in size ranging from two to thousands.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9420"/>
          <seriesInfo name="DOI" value="10.17487/RFC9420"/>
        </reference>
        <reference anchor="RFC9180">
          <front>
            <title>Hybrid Public Key Encryption</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="K. Bhargavan" initials="K." surname="Bhargavan"/>
            <author fullname="B. Lipp" initials="B." surname="Lipp"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <date month="February" year="2022"/>
            <abstract>
              <t>This document describes a scheme for hybrid public key encryption (HPKE). This scheme provides a variant of public key encryption of arbitrary-sized plaintexts for a recipient public key. It also includes three authenticated variants, including one that authenticates possession of a pre-shared key and two optional ones that authenticate possession of a key encapsulation mechanism (KEM) private key. HPKE works for any combination of an asymmetric KEM, key derivation function (KDF), and authenticated encryption with additional data (AEAD) encryption function. Some authenticated variants may not be supported by all KEMs. We provide instantiations of the scheme using widely used and efficient primitives, such as Elliptic Curve Diffie-Hellman (ECDH) key agreement, HMAC-based key derivation function (HKDF), and SHA2.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9180"/>
          <seriesInfo name="DOI" value="10.17487/RFC9180"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="mls-protocol" target="https://datatracker.ietf.org/doc/draft-ietf-mls-protocol/](https://datatracker.ietf.org/doc/draft-ietf-mls-protocol/">
          <front>
            <title>The Messaging Layer Security (MLS) Protocol</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="hpke" target="https://www.rfc-editor.org/rfc/rfc9180.html](https://www.rfc-editor.org/rfc/rfc9180.html">
          <front>
            <title>Hybrid Public Key Encryption</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="hpke-security-considerations" target="https://www.rfc-editor.org/rfc/rfc9180.html#name-key-compromise-impersonatio](https://www.rfc-editor.org/rfc/rfc9180.html#name-key-compromise-impersonatio">
          <front>
            <title>HPKE Security Considerations</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC2045">
          <front>
            <title>Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="N. Borenstein" initials="N." surname="Borenstein"/>
            <date month="November" year="1996"/>
            <abstract>
              <t>This initial document specifies the various headers used to describe the structure of MIME messages. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2045"/>
          <seriesInfo name="DOI" value="10.17487/RFC2045"/>
        </reference>
        <reference anchor="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols. This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
        <reference anchor="RFC2046">
          <front>
            <title>Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="N. Borenstein" initials="N." surname="Borenstein"/>
            <date month="November" year="1996"/>
            <abstract>
              <t>This second document defines the general structure of the MIME media typing system and defines an initial set of media types. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2046"/>
          <seriesInfo name="DOI" value="10.17487/RFC2046"/>
        </reference>
      </references>
    </references>
    <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="Kohbrok" fullname="Konrad Kohbrok">
        <organization>Phoenix R&amp;D</organization>
        <address>
          <email>konrad.kohbrok@datashrine.de</email>
        </address>
      </contact>
      <contact initials="R." surname="Mahy" fullname="Rohan Mahy">
        <organization>Wire</organization>
        <address>
          <email>rohan@wire.com</email>
        </address>
      </contact>
      <contact initials="M." surname="Mularczyk" fullname="Marta Mularczyk">
        <organization>Amazon</organization>
        <address>
          <email>mulmarta@amazon.com</email>
        </address>
      </contact>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA8V97XIcx5Hg/3qKOijiDNiDIUXZWhlc+QyRkE2LlBgEZJ/D
58D0zNQALfR0j7t6AI0YdOw77K97vX2Sy8/66O4BQUnrU8SuienuqqysrPzO
rOPjY9OVXeVO7MW1s6+c98VVWV/Zl8XOtfbcLbZt2e3s4auX50f27PvO1b5s
am+K+bx1tycWfjfLZlEXaxhi2Rar7rh03ep4XfljF14/fvyJWRSdu2ra3Ykt
61VjTLlpT2zXbn335PHj3z5+YorWFSdhSnPjdndNuzyxL+rOtbXrjp/j8Mb4
rqiXl0XV1DDlznmzKU/s37pmMbG+abvWrTz8a7fGf/zdmGLbXTftibHHFmb2
J/bN1L5p5q7tjIX/GPI3xea6cFX6oGmvirr8oehgASf29XXj6vJ7++Z/Pqen
bl2UFSwF1vr7lj9u6dvpolkbs2jqri3n205m5ln+1MAUp9Wdqw1PcGLt6br4
oaG/ZUhb4AvfNb8v6AmNF0b4qqnbYgn/cz1vm5s4Sg88HeqGXp/e8Ou/XxZd
4a/bsnbTpYuDvmmui9q+Kq53ccC/lK1LR2rxnd/fwa85QK+Ktivsq21VtIsf
djf3rWu9rdb4drowg7TQrgHJtw4QZZFsNm0Dm9lUJ4TormivXHdir7tu408e
PcI1dG2xuHHtFLE/hekeAQU+6hGfjvLo74c/+lMG4MHH47V8Z+C7682NG1/A
3d3dtF0tjt2yBOogGOBP/L/ffvzZ4+l1t64iyA94OQXyj7t5Wy7t6+28Khf2
K7ezZ/Wi3W2QhhWqYy9QHwOR+nLpWiJx/6Oh/Qgp4RiOKwy4BtytS++Oy/XG
tb6pcewPWs57R8vW+/qrs7gLz7L1GHN8fGyLucctB7ZxcV16C7u9Xbu6s0vn
F3BAnbeRS9musd37t1nJY8ozrMvlsnLGfISMqm2W2wVj+2HzvX2bUty7dwBA
0VlghbZuOruB82KbFUJl4BTVYW7rN25RrsoFrXVK1Dn+DHjeotrC9Law3tFo
iwbOdgqGTlmVN67aIVhzZ7ferbYV/rEu6p0tNptKhvQ8XxzB6OqWMBsMly4c
xy2Bg9dLeBpGXtp5PiQDUTt6iYFb8ma8PE8x/tFH9hlwoitnXzZXxrz58pk9
e/7i4ps39vXLs9PzM/v87OXZxZm9+OOLc3t+9uzixTdfw2d8wkEKmWN7ulzC
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
P6WewzewsgAA

-->

</rfc>
