<?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.2.7 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>

<rfc ipr="trust200902" docName="draft-barnes-mls-protocol-00" category="info">

  <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="J." surname="Millican" fullname="Jon Millican">
      <organization>Facebook</organization>
      <address>
        <email>jmillican@fb.com</email>
      </address>
    </author>
    <author initials="E." surname="Omara" fullname="Emad Omara">
      <organization>Google</organization>
      <address>
        <email>emadomara@google.com</email>
      </address>
    </author>
    <author initials="K." surname="Cohn-Gordon" fullname="Katriel Cohn-Gordon">
      <organization>University of Oxford</organization>
      <address>
        <email>me@katriel.co.uk</email>
      </address>
    </author>
    <author initials="R." surname="Robert" fullname="Raphael Robert">
      <organization>Wire</organization>
      <address>
        <email>raphael@wire.com</email>
      </address>
    </author>

    <date year="2018" month="February" day="02"/>

    <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
participants 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" title="Introduction">

<t>DISCLAIMER: This is a work-in-progress draft of MLS and has not yet
seen significant security analysis. It should not be used as a basis
for building production systems.</t>

<t>RFC EDITOR: PLEASE REMOVE THE FOLLOWING PARAGRAPH The source for
this draft is maintained in GitHub. Suggested changes should be
submitted as pull requests at https://github.com/ekr/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>Groups of agents who want to send each other encrypted messages need
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 groups of size greater than two, a common strategy is to
unilaterally broadcast symmetric “sender” keys over existing shared
symmetric channels, and then for each agent to send messages to the
group encrypted with their own sender key. Unfortunately, while this
improves efficiency over pairwise broadcast of individual messages  and
(with the addition of a hash ratchet) provides
forward secrecy, it is difficult to achieve post-compromise security with
sender keys. An adversary who learns a sender key can often indefinitely and
passively eavesdrop on that sender’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 as 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.  The use of “asynchronous ratcheting
trees” <xref target="art"/> allows the members of the group to derive and update
shared keys with costs that scale as the log of the group size.  The
use of Merkle trees to store identity information allows strong
authentication of group membership, again with logarithmic cost.</t>

</section>
<section anchor="terminology" title="Terminology">

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”,
“SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this
document are to be interpreted as described in <xref target="RFC2119"/>.</t>

<t>[TODO: The architecture document uses “Client” instead of “Participant”.
Harmonize terminology.]</t>

<t><list style="hanging">
  <t hangText='Participant:'>
  An agent that uses this protocol to establish shared cryptographic
state with other participants.  A participant is defined by the
cryptographic keys it holds.  An application may use one participant
per device (keeping keys local to each device) or sync keys among
a user’s devices so that each user appears as a single participant.</t>
  <t hangText='Group:'>
  A collection of participants with shared cryptographic state.</t>
  <t hangText='Member:'>
  A participant that is included in the shared state of a group, and
has access to the group’s secrets.</t>
  <t hangText='Initialization Key:'>
  A short-lived Diffie-Hellman key pair used to introduce a new
member to a group.  Initialization keys can be published for both
individual participants (UserInitKey) and groups (GroupInitKey).</t>
  <t hangText='Leaf Key:'>
  A short-lived Diffie-Hellman key pair that represents a group
member’s contribution to the group secret, so called because the
participants leaf keys are the leaves in the group’s ratchet tree.</t>
  <t hangText='Identity Key:'>
  A long-lived signing key pair used to authenticate the sender of a
message.</t>
</list></t>

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

<t>We use the TLS presentation language <xref target="I-D.ietf-tls-tls13"/> to
describe the structure of protocol messages.</t>

</section>
<section anchor="basic-assumptions" title="Basic Assumptions">

<t>This protocol is designed to execute in the context of a Messaging Service (MS)
as described in [I-D.rescorla-mls-architecture].  In particular, we assume
the MS provides the following services:</t>

<t><list style="symbols">
  <t>A long-term identity key provider which allows participants to authenticate
protocol messages in a group. These keys MUST be kept for the lifetime of the
group as there is no mechanism in the protocol for changing a participant’s
identity key.</t>
  <t>A broadcast channel, for each group, which will relay a message to all members
of a group.  For the most part, we assume that this channel delivers messages
in the same order to all participants.  (See <xref target="sequencing"/> for further
considerations.)</t>
  <t>A directory to which participants can publish initialization keys, and from which
participant can download initialization keys for other participants.</t>
</list></t>

</section>
<section anchor="protocol-overview" title="Protocol Overview">

<t>The goal of this protocol is to allow a group of participants to exchange confidential and
authenticated messages. It does so by deriving a sequence of keys known only to group members. Keys
should be secret against an active network adversary and should have both forward and
post-compromise secrecy with respect to compromise of a participant.</t>

<t>We describe the information stored by each participant as a <spanx style="emph">state</spanx>, which includes both public and
private data. An initial state, including an initial set of participants, is set up by a group
creator using the <spanx style="emph">Init</spanx> algorithm and based on information pre-published by the initial members. The creator
sends the <spanx style="emph">GroupInit</spanx> message to the participants, who can then set up their own group state and derive
the same shared key. Participants then exchange messages to produce new shared states which are
causally linked to their predecessors, forming a logical Directed Acyclic Graph (DAG) of states.
Participants can send <spanx style="emph">Update</spanx> messages for post-compromise secrecy and new participants can be
added or existing participants removed from the group.</t>

<t>The protocol algorithms we specify here follow. Each algorithm specifies both (i) how a participant
performs the operation and (ii) how other participants update their state based on it.</t>

<t>There are four major operations in the lifecycle of a group:</t>

<t><list style="symbols">
  <t>Adding a member, initiated by a current member</t>
  <t>Adding a member, initiated by the new member</t>
  <t>Key update</t>
  <t>Removal of a member</t>
</list></t>

<t>Before the initialization of a group, participants publish
UserInitKey objects to a directory provided to the Messaging Service.</t>

<figure><artwork><![CDATA[
                                                          Group
A              B              C          Directory       Channel
|              |              |              |              |
| UserInitKeyA |              |              |              |
|------------------------------------------->|              |
|              |              |              |              |
|              | UserInitKeyB |              |              |
|              |---------------------------->|              |
|              |              |              |              |
|              |              | UserInitKeyC |              |
|              |              |------------->|              |
|              |              |              |              |
]]></artwork></figure>

<t>When a participant A wants to establish a group with B and C, it
first downloads InitKeys for B and C.  It then initializes a group state
containing only itself and uses the InitKeys to compute GroupAdd messages
to add B and C, in a sequence chosen by A.
These messages are broadcasted to the Group, and processed in sequence
by B and C.  Messages received before a participant has joined the
group are ignored.  Only after A has received its GroupAdd messages
back from the server does it update its state to reflect their addition.</t>

<figure><artwork><![CDATA[
                                                               Group
A              B              C          Directory            Channel
|              |              |              |                   |
|         UserInitKeyB, UserInitKeyC         |                   |
|<-------------------------------------------|                   |
|              |              |              |                   |
|              |              |              | GroupAdd(A->AB)   |
|--------------------------------------------------------------->|
|              |              |              |                   |
|              |              |              | GroupAdd(AB->ABC) |
|--------------------------------------------------------------->|
|              |              |              |                   |
|              |              |              | GroupAdd(A->AB)   |
|<---------------------------------------------------------------|
|state.add(B)  |<------------------------------------------------|
|              |state.init()  |x---------------------------------|
|              |              |              |                   |
|              |              |              | GroupAdd(AB->ABC) |
|<---------------------------------------------------------------|
|state.add(C)  |<------------------------------------------------|
|              |state.add(C)  |<---------------------------------|
|              |              |state.init()  |                   |
|              |              |              |                   |
]]></artwork></figure>

<t>Subsequent additions of group members proceed in the same way.  Any
member of the group can download an InitKey for a new participant
and broadcast a GroupAdd which the current group can use to update
their state and the new participant can use to initialize its state.</t>

<t>It is sometimes necessary for a new participant to join without
an explicit invitation from a current member.  For example, if a
user that is authorized to be in the group logs in on a new device,
that device will need to join the group as a new participant, but
will not have been invited.</t>

<t>In these “user-initiated join” cases, the “InitKey + Add message”
flow is reversed.  We assume that at some previous point, a group
member has published a GroupInitKey reflecting the current state of
the group (A, B, C).  The new participant Z downloads that
GroupInitKey from the directory, generates a UserAdd message, and
broadcasts it to the group.  Once current members process this
message, they will have a shared state that also includes Z.</t>

<figure><artwork><![CDATA[
                                                          Group
A              B     ...      Z          Directory       Channel
| GroupInitKey |              |              |              |
|------------------------------------------->|              |
|              |              |              |              |
~              ~              ~              ~              ~
|              |              |              |              |
|              |              | GroupInitKey |              |
|              |              |<-------------|              |
|              |              |              |              |
|              |              | UserAdd(.->D)|              |
|              |              |---------------------------->|
|              |              |              |              |
|              |              |              | UserAdd(.->D)|
|<----------------------------------------------------------|
|state.add(D)  |<-------------------------------------------|
|              |state.add(D)  |<----------------------------|
|              |              |state.init()  |              |
|              |              |              |              |
]]></artwork></figure>

<t>To enforce forward secrecy and post-compromise security of messages,
each participant periodically updates its leaf key, the DH key pair that
represents its contribution to the group key.  Any member of the
group can send an Update at any time by generating a fresh leaf key
pair and sending an Update message that describes how to update the
group key with that new key pair.  Once all participants have
processed this message, the group’s secrets will be unknown to an
attacker that had compromised the sender’s prior DH leaf private key.</t>

<t>It is left to the application to determine the interval of time between
Update messages. This policy could require a change for each message, or
it could require sending an update every week or more.</t>

<figure><artwork><![CDATA[
                                                          Group
A              B     ...      Z          Directory        Channel
|              |              |              |              |
| Update(A)    |              |              |              |
|---------------------------------------------------------->|
|              |              |              |              |
|              |              |              | Update(A)    |
|<----------------------------------------------------------|
|state.upd(D)  |<-------------------------------------------|
|              |state.upd(D)  |<----------------------------|
|              |              |state.upd(A)  |              |
|              |              |              |              |
]]></artwork></figure>

<t>Users are deleted from the group in a similar way, as a key update
is effectively removing the old leaf from the group.
Any member of the group can generate a Delete message that adds new
entropy to the group state that is known to all members except the
deleted member.  After other participants have processed this message,
the group’s secrets will be unknown to the deleted participant.
Note that this does not necessarily imply that any member
is actually allowed to evict other members; groups can layer
authentication-based access control policies on top of these
basic mechanism.</t>

<figure><artwork><![CDATA[
                                                          Group
A              B     ...      Z          Directory       Channel
|              |              |              |              |
|              |              | Delete(B)    |              |
|              |              |---------------------------->|
|              |              |              |              |
|              |              |              | Delete(B)    |
|<----------------------------------------------------------|
|state.del(B)  |              |<----------------------------|
|              |              |state.del(B)  |              |
|              |              |              |              |
|              |              |              |              |
]]></artwork></figure>

</section>
<section anchor="binary-trees" title="Binary Trees">

<t>The protocol uses two types of binary tree structures:</t>

<t><list style="symbols">
  <t>Merkle trees for efficiently committing to a set of group participants.</t>
  <t>Asynchronous ratcheting trees for deriving shared secrets among this group of
participants.</t>
</list></t>

<t>The two trees in the protocol share a common structure, allowing us to maintain
a direct mapping between their nodes when manipulating group membership. The
<spanx style="verb">nth</spanx> leaf in each tree is owned by the <spanx style="verb">nth</spanx> group participant.</t>

<section anchor="terminology-1" title="Terminology">

<t>We use a common set of terminology to refer to both types of binary tree.</t>

<t>Trees consist of various different types of <spanx style="emph">nodes</spanx>. A node is a
<spanx style="emph">leaf</spanx> if it has no children, and a <spanx style="emph">parent</spanx> otherwise; note that all
parents in our Merkle or asynchronous ratcheting trees have precisely
two children, a <spanx style="emph">left</spanx> child and a <spanx style="emph">right</spanx> child. A node is the <spanx style="emph">root</spanx>
of a tree if it has no parents, and <spanx style="emph">intermediate</spanx> if it has both
children and parents. The <spanx style="emph">descendants</spanx> of a node are that node, its
children, and the descendants of its children, and we say a tree
<spanx style="emph">contains</spanx> a node if that node is a descendant of the root of the
tree. Nodes are <spanx style="emph">siblings</spanx> if they share the same parent.</t>

<t>A <spanx style="emph">subtree</spanx> of a tree is the tree given by the descendants of any
node, the <spanx style="emph">head</spanx> of the subtree The <spanx style="emph">size</spanx> of a tree or subtree is the
number of leaf nodes it contains.  For a given parent node, its <spanx style="emph">left
subtree</spanx> is the subtree with its left child as head (respectively
<spanx style="emph">right subtree</spanx>).</t>

<t>All trees used in this protocol are left-balanced binary trees. A
binary tree is <spanx style="emph">full</spanx> (and <spanx style="emph">balanced</spanx>) if it its size is a power of
two and for any parent node in the tree, its left and right subtrees
have the same size. If a subtree is full and it is not a subset of
any other full subtree, then it is <spanx style="emph">maximal</spanx>.</t>

<t>A binary tree is <spanx style="emph">left-balanced</spanx> if for every
parent, either the parent is balanced, or the left subtree of that
parent is the largest full subtree that could be constructed from
the leaves present in the parent’s own subtree.  Note
that given a list of <spanx style="verb">n</spanx> items, there is a unique left-balanced
binary tree structure with these elements as leaves.  In such a
left-balanced tree, the <spanx style="verb">k-th</spanx> leaf node refers to the <spanx style="verb">k-th</spanx> leaf
node in the tree when counting from the left, starting from 0.</t>

<t>The <spanx style="emph">direct path</spanx> of a root is the empty list, and of any other node
is the concatenation of that node with the direct path of its
parent. The <spanx style="emph">copath</spanx> of a node is the list of siblings of nodes in its
direct path, excluding the root, which has no sibling. The <spanx style="emph">frontier</spanx>
of a tree is the list of heads of the maximal full subtrees of the
tree, ordered from left to right.</t>

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

<t><list style="symbols">
  <t>The direct path of C is (C, CD, ABCD)</t>
  <t>The copath of C is (D, AB, EFG)</t>
  <t>The frontier of the tree is (ABCD, EF, G)</t>
</list></t>

<figure><artwork><![CDATA[
            ABCDEFG
           /      \
          /        \
         /          \
     ABCD            EFG
    /    \          /   \
   /      \        /     \
  AB      CD      EF      \
 /  \    /  \    /  \      \
A    B  C    D  E    F     G
]]></artwork></figure>

<t>We extend both types of tree to include a concept of “blank” nodes;
which are used to replace group members who have been removed. We
expand on how these are used and implemented in the sections below.</t>

<t>(Note that left-balanced binary trees are the same structure that is
used for the Merkle trees in the Certificate Transparency protocol
<xref target="I-D.ietf-trans-rfc6962-bis"/>.)</t>

</section>
<section anchor="merkle-trees" title="Merkle Trees">

<t>Merkle trees are used to efficiently commit to a collection of group members.
We require a hash function, denoted H, to construct this tree.</t>

<t>Each node in a Merkle tree is the output of the hash function,
computed as follows:</t>

<t><list style="symbols">
  <t>Leaf nodes: <spanx style="verb">H( 0x01 || leaf-value )</spanx></t>
  <t>Parent nodes: <spanx style="verb">H( 0x02 || left-value || right-value)</spanx></t>
  <t>Blank leaf nodes: <spanx style="verb">H( 0x00 )</spanx></t>
</list></t>

<t>The below tree provides an example of a size 2 tree, containing identity keys
<spanx style="verb">A</spanx> and <spanx style="verb">B</spanx>.</t>

<figure><artwork><![CDATA[
             * H(2 || H(1 || A) || H(1 || B))
            / \
           /   \
H(1 || A) *     * H(1 || B)
]]></artwork></figure>

<t>In Merkle trees, blank nodes appear only at the leaves.  In computation of
intermediate nodes, they are treated in the same way as other nodes.</t>

<section anchor="merkle-proofs" title="Merkle Proofs">

<t>A proof of a given leaf being a member of the Merkle tree consists of the value
of the leaf node, as well as the values of each node in its copath. From these
values, its path to the root can be verified; proving the inclusion of the leaf
in the Merkle tree.</t>

<t>In the below tree, we denote with a star the Merkle proof of membership for
leaf node <spanx style="verb">A</spanx>. For brevity, we notate <spanx style="verb">Hash(0x02 || A || B)</spanx> as <spanx style="verb">AB</spanx>.</t>

<figure><artwork><![CDATA[
      ABCD
    /      \
  AB        CD*
 /  \      /  \
A   B*    C    D
]]></artwork></figure>

</section>
</section>
<section anchor="ratchet-trees" title="Ratchet Trees">

<t>Ratchet trees are used for generating shared group secrets. These are
constructed as a series of Diffie-Hellman keys in a binary tree arrangement,
with each user knowing their direct path, and thus being able to compute the
shared root secret.</t>

<t>To construct these trees, we require:</t>

<t><list style="symbols">
  <t>a Diffie-Hellman finite-field group or elliptic curve;</t>
  <t>a Derive-Key-Pair function that produces a key pair from an octet
string, such as the output of a DH computation</t>
</list></t>

<t>Each node in a ratchet tree contains up to three values:</t>

<t><list style="symbols">
  <t>A secret octet string (optional)</t>
  <t>A DH private key (optional)</t>
  <t>A DH public key</t>
</list></t>

<t>To compute the private values (secret and private key) for a given
node, one must first know the private key from one of its children,
and the public key from the other child.  Then the value of the
parent is computed as follows:</t>

<t><list style="symbols">
  <t>secret = DH(L, R)</t>
  <t>private, public = Derive-Key-Pair(secret)</t>
</list></t>

<t>Ratchet trees are constructed as left-balanced trees, defined such that each
parent node’s key pair is derived from the Diffie-Hellman shared secret of its
two child nodes. To compute the root secret and private key, a participant must know the
public keys of nodes in its copath, as well as its own leaf private key.</t>

<t>For example, the ratchet tree consisting of the private keys (A, B, C, D)
is constructed as follows:</t>

<figure><artwork><![CDATA[
DH(DH(AB), DH(CD))
    /      \
 DH(AB)    DH(CD)
 /  \      /  \
A    B    C    D
]]></artwork></figure>

<t>Ratchet trees constructed this way provide the property that one must hold at
least one private key from the tree to compute the secret root key. With all
participants holding one leaf private key; this allows any individual to update
their own key and change the shared root key, such that only group members can
compute the new key.</t>

<section anchor="blank-ratchet-tree-nodes" title="Blank Ratchet Tree Nodes">

<t>Nodes in a ratchet tree can have a special value “_”, used to indicate that the
node should be ignored during path computations. Such nodes are used to replace
leaves when participants are deleted from the group.</t>

<t>If any node in the copath of a leaf is _, it should be ignored during the
computation of the path. For example, the tree consisting of the private
keys (A, _, C, D) is constructed as follows:</t>

<figure><artwork><![CDATA[
  DH(A, DH(CD))
   /      \
  A       DH(CD)
 / \      /  \
A   _    C    D
]]></artwork></figure>

<t>If two sibling nodes are both _, their parent value also becomes _.</t>

<t>Blank nodes effectively result in an unbalanced tree, but allow the
tree management to behave as for a balanced tree for programming simplicity.</t>

</section>
</section>
</section>
<section anchor="group-state" title="Group State">

<t>The state of an MLS group at a given time comprises:</t>

<t><list style="symbols">
  <t>A group identifier (GID)</t>
  <t>A ciphersuite used for cryptographic computations</t>
  <t>A Merkle tree over the participants’ identity keys</t>
  <t>A ratchet tree over the participants’ leaf key pairs</t>
  <t>A message master secret (known only to participants)</t>
  <t>An add key pair (private key known only to participants)</t>
  <t>An init secret (known only to participants)</t>
</list></t>

<t>Since a group can evolve over time, a session logically comprises a
sequence of states.  The time in which each individual state is used
is called an “epoch”, and each state is assigned an epoch number
that increments when the state changes.</t>

<t>MLS handshake messages provide each node with enough information
about the trees to authenticate messages within the group and
compute the group secrets.</t>

<t>Thus, each participant will need to store the following information
about each state of the group:</t>

<t><list style="numbers">
  <t>The participant’s index in the identity/ratchet trees</t>
  <t>The private key associated with the participant’s leaf public key</t>
  <t>The private key associated with the participant’s identity public key</t>
  <t>The current epoch number</t>
  <t>The group identifier (GID)</t>
  <t>A subset of the identity tree comprising at least the copath for
the participant’s leaf</t>
  <t>A subset of the ratchet tree comprising at least the copath for
the participant’s leaf</t>
  <t>The current message encryption shared secret, called the master secret</t>
  <t>The current add key pair</t>
  <t>The current init secret</t>
</list></t>

<section anchor="cryptographic-objects" title="Cryptographic Objects">

<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>A hash function</t>
  <t>A Diffie-Hellman finite-field group or elliptic curve</t>
</list></t>

<t>The ciphersuite must also specify an algorithm <spanx style="verb">Derive-Key-Pair</spanx>
that maps octet strings with the same length as the output of the
hash function to key pairs for the Diffie-Hellman group.</t>

<t>Public keys and Merkle tree nodes used in the protocol are opaque values
in a format defined by the ciphersuite, using the following four types:</t>

<figure><artwork><![CDATA[
uint16 CipherSuite;
opaque DHPublicKey<1..2^16-1>;
opaque SignaturePublicKey<1..2^16-1>;
opaque MerkleNode<1..255>
]]></artwork></figure>

<t>[[OPEN ISSUE: In some cases we will want to include a raw key when
we sign and in others we may want to include an identity or a
certificate containing the key. This type needs to be extended
to accommodate that.]]</t>

<section anchor="curve25519-with-sha-256" title="Curve25519 with SHA-256">

<t>This ciphersuite uses the following primitives:</t>

<t><list style="symbols">
  <t>Hash function: SHA-256</t>
  <t>Diffie-Hellman group: Curve25519 <xref target="RFC7748"/></t>
</list></t>

<t>Given an octet string X, the private key produced by the
Derive-Key-Pair operation is SHA-256(X).  (Recall that any 32-octet
string is a valid Curve25519 private key.)  The corresponding public
key is X25519(SHA-256(X), 9).</t>

<t>Implementations SHOULD use the approach
specified in <xref target="RFC7748"/> to calculate the Diffie-Hellman shared secret.
Implementations MUST check whether the computed Diffie-Hellman shared
secret is the all-zero value and abort if so, as described in
Section 6 of <xref target="RFC7748"/>.  If implementers use an alternative
implementation of these elliptic curves, they SHOULD perform the
additional checks specified in Section 7 of {{RFC7748]}</t>

</section>
<section anchor="p-256-with-sha-256" title="P-256 with SHA-256">

<t>This ciphersuite uses the following primitives:</t>

<t><list style="symbols">
  <t>Hash function: SHA-256</t>
  <t>Diffie-Hellman group: secp256r1 (NIST P-256)</t>
</list></t>

<t>Given an octet string X, the private key produced by the
Derive-Key-Pair operation is SHA-256(X), interpreted as a big-endian
integer.  The corresponding public key is the result of multiplying
the standard P-256 base point by this integer.</t>

<t>P-256 ECDH calculations (including parameter
and key generation as well as the shared secret calculation) are
performed according to <xref target="IEEE1363"/> using the ECKAS-DH1 scheme with the identity
map as key derivation function (KDF), so that the shared secret is the
x-coordinate of the ECDH shared secret elliptic curve point represented
as an octet string.  Note that this octet string (Z in IEEE 1363 terminology)
as output by FE2OSP, the Field Element to Octet String Conversion
Primitive, has constant length for any given field; leading zeros
found in this octet string MUST NOT be truncated.</t>

<t>(Note that this use of the identity KDF is a technicality.  The
complete picture is that ECDH is employed with a non-trivial KDF
because MLS does not directly use this secret for anything
other than for computing other secrets.)</t>

<t>Clients MUST validate remote public values by ensuring
that the point is a valid point on the elliptic curve.
The appropriate validation procedures are defined in Section 4.3.7 of <xref target="X962"/>
and alternatively in Section 5.6.2.3 of <xref target="keyagreement"/>.
This process consists of three steps: (1) verify that the value is not the point at
infinity (O), (2) verify that for Y = (x, y) both integers are in the correct
interval, (3) ensure that (x, y) is a correct solution to the elliptic curve equation.
For these curves, implementers do not need to verify membership in the correct subgroup.</t>

</section>
</section>
<section anchor="key-schedule" title="Key Schedule">

<t>Group keys are derived using the HKDF-Extract and HKDF-Expand
functions as defined in <xref target="RFC5869"/>, as well as the functions
defined below:</t>

<figure><artwork><![CDATA[
Derive-Secret(Secret, Label, ID, Epoch, Msg) =
     HKDF-Expand(Secret, HkdfLabel, Length)

Where HkdfLabel is specified as:

struct {
    uint16 length = Length;
    opaque label<7..255> = "mls10 " + Label;
    opaque group_id<0..2^16-1> = ID;
    uint32 epoch = Epoch;
    opaque message<1..2^16-1> = Msg
} HkdfLabel;
]]></artwork></figure>

<t>The Hash function used by HKDF is the ciphersuite hash algorithm.
Hash.length is its output length in bytes.  In the below diagram:</t>

<t><list style="symbols">
  <t>HKDF-Extract takes its Salt argument form the top and its IKM
argument from the left</t>
  <t>Derive-Secret takes its Secret argument from the incoming arrow</t>
</list></t>

<t>When processing a handshake message, a participant 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 update secret for the current epoch</t>
  <t>The handshake message that caused the epoch change</t>
  <t>The current group identifier (GID) and epoch</t>
</list></t>

<t>The derivation of the update secret depends on the change being
made, as described below.</t>

<t>For UserAdd or GroupAdd, the new user does not know the prior epoch init secret.
Instead, entropy from the prior epoch is added via the update secret,
and an all-zero vector with the same length as a hash output is used
in the place of the init secret.</t>

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

<figure><artwork><![CDATA[
               Init Secret [n-1] (or 0)
                     |
                     V
Update Secret -> HKDF-Extract = Epoch Secret
                     |
                     |
                     +--> Derive-Secret(., "msg", ID, Epoch, Msg)
                     |       = message_master_secret
                     |
                     +--> Derive-Secret(., "add", ID, Epoch, Msg)
                     |       |
                     |       V
                     |    Derive-Key-Pair(.) = Add Key Pair
                     |
                     V
               Derive-Secret(., "init", ID, Epoch, Msg)
                     |
                     V
               Init Secret [n]
]]></artwork></figure>

</section>
</section>
<section anchor="initialization-keys" title="Initialization Keys">

<t>In order to facilitate asynchronous addition of participants to a
group, it is possible to pre-publish initialization keys that
provide some public information about a user or group.  UserInitKey
messages provide information about a potential group member, that a group member can use to
add this user to a group without asynchronously.  GroupInitKey
messages provide information about a group that a new user can use
to join the group without any of the existing members of the group
being online.</t>

<section anchor="userinitkey" title="UserInitKey">

<t>A UserInitKey object specifies what ciphersuites a client supports,
as well as providing public keys that the client can use for key
derivation and signing.  The client’s identity key is intended to be
stable throughout the lifetime of the group; there is no mechanism to
change it.  Init keys are intended to be used a very limited number of
times, potentially once. (see <xref target="init-key-reuse"/>).</t>

<t>The init_keys array MUST have the same length as the cipher_suites
array, and each entry in the init_keys array MUST be a public key
for the DH group defined by the corresponding entry in the
cipher_suites array.</t>

<t>The whole structure is signed using the client’s identity key.  A
UserInitKey object with an invalid signature field MUST be
considered malformed.  The input to the signature computation
comprises all of the fields except for the signature field.</t>

<figure><artwork><![CDATA[
struct {
    CipherSuite cipher_suites<0..255>;
    DHPublicKey init_keys<1..2^16-1>;
    SignaturePublicKey identity_key;
    SignatureScheme algorithm;
    opaque signature<0..2^16-1>;
} UserInitKey;
]]></artwork></figure>

</section>
<section anchor="groupinitkey" title="GroupInitKey">

<t>A GroupInitKey object specifies the aspects of a group’s state that
a new member needs to initialize its state (together with an
identity key and a fresh leaf key pair).</t>

<t><list style="symbols">
  <t>The current epoch number</t>
  <t>The number of participants currently in the group</t>
  <t>The group ID</t>
  <t>The cipher suite used by the group</t>
  <t>The public key of the current update key pair for the group</t>
  <t>The frontier of the identity tree, as a sequence of hash values</t>
  <t>The frontier of the ratchet tree, as a sequence of public keys</t>
</list></t>

<t>GroupInitKey messages are not themselves signed.  A GroupInitKey
should not be published “bare”; instead, it should be published by
constructing a handshake message with type “none”, which will
include a signature by a member of the group and a proof of
membership in the group.</t>

<figure><artwork><![CDATA[
struct {
    uint32 epoch;
    uint32 group_size;
    opaque group_id<0..2^16-1>;
    CipherSuite cipher_suite;
    DHPublicKey add_key;
    MerkleNode identity_frontier<0..2^16-1>;
    DHPublicKey ratchet_frontier<0..2^16-1>;
} GroupInitKey;
]]></artwork></figure>

</section>
</section>
<section anchor="handshake-messages" title="Handshake Messages">

<t>Over the lifetime of a group, its state will change for:</t>

<t><list style="symbols">
  <t>Group initialization</t>
  <t>A current member adding a new participant</t>
  <t>A new participant adding themselves</t>
  <t>A current participant updating its leaf key</t>
  <t>A current member deleting another current member</t>
</list></t>

<t>In MLS, these changes are accomplished by broadcasting “handshake”
messages to the group.  Note that unlike TLS and DTLS, there is not
a consolidated handshake phase to the protocol.  Rather, handshake
messages are exchanged throughout the lifetime of a group, whenever
a change is made to the group state.</t>

<t>An MLS handshake message encapsulates a specific message that
accomplishes a change to the group state. It also includes two other
important features:</t>

<t><list style="symbols">
  <t>A GroupInitKey so that a new participant can observe
the latest state of the handshake and initialize itself</t>
  <t>A signature by a member of the group, together with a Merkle inclusion
proof that demonstrates that the signer is a legitimate member of the group.</t>
</list></t>

<t>Before considering a handshake message valid, the recipient MUST
verify both that the signature is valid, the Merkle
inclusion proof is valid, and the sender is authorized to
make the change according to group policy.
The input to the signature computations
comprises the entire handshake message except for the signature
field.</t>

<t>The Merkle tree head to be used for validating the inclusion
proof MUST be one that the recipient trusts to represent the current
list of participant identity keys.</t>

<figure><artwork><![CDATA[
enum {
    none(0),
    init(1),
    user_add(2),
    group_add(3),
    update(4),
    delete(5),
    (255)
} HandshakeType;

struct {
    HandshakeType msg_type;
    uint24 inner_length;
    select (Handshake.msg_type) {
        case none:      struct{};
        case init:      Init;
        case user_add:  UserAdd;
        case group_add: GroupAdd;
        case update:    Update;
        case delete:    Delete;
    };

    uint32 prior_epoch;
    GroupInitKey init_key;

    uint32 signer_index;
    MerkleNode identity_proof<1..2^16-1>;
    SignaturePublicKey identity_key;

    SignatureScheme algorithm;
    opaque signature<1..2^16-1>;
} Handshake;
]]></artwork></figure>

<t>[[ OPEN ISSUE: There will be a need to integrate credentials from an
authentication service that associate identities to the identity
keys used to sign messages.  This integration will enable meaningful
authentication (of identities, rather than keys), and will need to
be done in such a way as to prevent unknown key share attacks. ]]</t>

<t>[[ OPEN ISSUE: The GroupAdd and Delete operations create a “double-join”
situation, where a participants leaf key is also known to another
participant.  When a participant A is double-joined to another B,
deleting A will not remove them from the conversation, since they
will still hold the leaf key for B.  These situations are resolved
by updates, but since operations are asynchronous and participants
may be offline for a long time, the group will need to be able to
maintain security in the presence of double-joins. ]]</t>

<t>[[ OPEN ISSUE: It is not possible for the recipient of a handshake
message to verify that ratchet tree information in the message is
accurate, because each node can only compute the secret and private
key for nodes in its direct path.  This creates the possibility
that a malicious participant could cause a denial of service by sending a handshake
message with invalid values for public keys in the ratchet tree. ]]</t>

<section anchor="init" title="Init">

<t>[[ OPEN ISSUE: Direct initialization is currently undefined.  A participant can
create a group by initializing its own state to reflect a group
including only itself, then adding the initial participants.  This
has computation and communication complexity O(N log N) instead of
the O(N) complexity of direct initialization. ]]</t>

</section>
<section anchor="groupadd" title="GroupAdd">

<t>A GroupAdd message is sent by a group member to add a new
participant to the group.  The content of the message is only
the UserInitKey for the user being added.</t>

<figure><artwork><![CDATA[
struct {
    UserInitKey init_key;
} GroupAdd;
]]></artwork></figure>

<t>A group member generates such a message by requesting from the directory
a UserInitKey for the user to be added.  The new participant processes the
message together with the private key corresponding to the
UserInitKey to initialize his state as follows:</t>

<t><list style="symbols">
  <t>Compute the participant’s leaf key pair by combining the init key in
the UserInitKey with the prior epoch’s add key pair</t>
  <t>Use the frontiers in the GroupInitKey of the Handshake message to
add its keys to the trees</t>
</list></t>

<t>An existing participant receiving a GroupAdd message first verifies
the signature on the message, then verifies its identity proof
against the identity tree held by the participant.  The participant
then updates its state as follows:</t>

<t><list style="symbols">
  <t>Compute the new participant’s leaf key pair by combining the leaf
key in the UserInitKey with the prior epoch add key pair</t>
  <t>Update the group’s identity tree and ratchet tree with the new
participant’s information</t>
</list></t>

<t>The update secret resulting from this change is the output of a DH
computation between the private key for the root of the ratchet tree
and the add public key from the previous epoch.</t>

<t>[[ ALTERNATIVE: The sender could also generate the new participant’s
leaf using a fresh key pair, as opposed to a key pair derived from
the prior epoch’s secret.  This would reduce the “double-join”
problem, at the cost of the GroupAdd having to include a new ratchet
frontier. ]]</t>

</section>
<section anchor="useradd" title="UserAdd">

<t>A UserAdd message is sent by a new group participant to add
themselves to the group, based on having already had access to a
GroupInitKey for the group.</t>

<figure><artwork><![CDATA[
struct {
    DHPublicKey add_path<1..2^16-1>;
} UserAdd;
]]></artwork></figure>

<t>A new participant generates this message using the following steps:</t>

<t><list style="symbols">
  <t>Fetch a GroupInitKey for the group</t>
  <t>Use the frontiers in the GroupInitKey to add its keys to the trees</t>
  <t>Compute the direct path from the new participant’s leaf in the new
ratchet tree (the add_path).</t>
</list></t>

<t>An existing participant receiving a UserAdd first verifies the
signature on the message, then verifies its identity inclusion proof
against the updated identity tree expressed in the GroupInitKey of
the Handshake message (since the signer is not included in the prior
group state held by the existing participant).  The participant then
updates its state as follows:</t>

<t><list style="symbols">
  <t>Update trees with the descriptions in the new GroupInitKey</t>
  <t>Update the local ratchet tree with the add path in the UserAdd
message, replacing any common nodes with the values in the add
path</t>
</list></t>

<t>The update secret resulting from this change is the output of a DH
computation between the private key for the root of the ratchet tree
and the add public key from the previous epoch.</t>

</section>
<section anchor="update" title="Update">

<t>An Update message is sent by a group participant to update its leaf
key pair.  This operation provides post-compromise security with
regard to the participant’s prior leaf private key.</t>

<figure><artwork><![CDATA[
struct {
    DHPublicKey ratchetPath<1..2^16-1>;
} Update;
]]></artwork></figure>

<t>The sender of an Update message creates it in the following way:</t>

<t><list style="symbols">
  <t>Generate a fresh leaf key pair</t>
  <t>Compute its direct path in the current ratchet tree</t>
</list></t>

<t>An existing participant receiving a Update message first verifies
the signature on the message, then verifies its identity proof
against the identity tree held by the participant.  The participant
then updates its state as follows:</t>

<t><list style="symbols">
  <t>Update the cached ratchet tree by replacing nodes in the direct
path from the updated leaf with the corresponding nodes in the
Update message</t>
</list></t>

<t>The update secret resulting from this change is the secret for the
root node of the ratchet tree.</t>

</section>
<section anchor="delete" title="Delete">

<t>A delete message is sent by a group member to remove one or more
participants from the group.</t>

<figure><artwork><![CDATA[
struct {
    uint32 deleted;
    DHPublicKey path<1..2^16-1>;
} Delete;
]]></artwork></figure>

<t>The sender of a Delete message must know the deleted node’s copath.
Based on this knowledge, it computes a Delete message as follows:</t>

<t><list style="symbols">
  <t>Generate a fresh leaf key pair</t>
  <t>Compute the direct path from the deleted node’s index with the
fresh leaf key pair in the current ratchet tree</t>
</list></t>

<t>An existing participant receiving a Update message first verifies
the signature on the message, then verifies its identity proof
against the identity tree held by the participant.  The participant
then updates its state as follows:</t>

<t><list style="symbols">
  <t>Update the cached ratchet tree by replacing nodes in the direct
path from the deleted leaf with the corresponding nodes in the
Update message</t>
  <t>Update the cached ratchet tree and identity tree by replacing the
deleted node’s leaves with blank nodes</t>
</list></t>

<t>The update secret resulting from this change is the secret for the
root node of the ratchet tree after both updates.</t>

</section>
</section>
<section anchor="sequencing" title="Sequencing of State Changes">

<t>[[ OPEN ISSUE: This section has an initial set of considerations
regarding sequencing.  It would be good to have some more detailed
discussion, and hopefully have a mechanism to deal with this issue. ]]</t>

<t>Each handshake message is premised on a given starting state,
indicated in its <spanx style="verb">prior_epoch</spanx> field.  If the changes implied by a
handshake messages are made starting from a different state, the
results will be incorrect.</t>

<t>This need for sequencing is not a problem as long as each time a
group member sends a handshake message, it is based on the most
current state of the group.  In practice, however, there is a risk
that two members will generate handshake messages simultaneously,
based on the same state.</t>

<t>When this happens, there is a need for the members of the group to
deconflict the simultaneous handshake messages.  There are two
general approaches:</t>

<t><list style="symbols">
  <t>Have the delivery service enforce a total order</t>
  <t>Have a signal in the message that clients can use to break ties</t>
</list></t>

<t>In either case, there is a risk of starvation.  In a sufficiently
busy group, a given member may never be able to send a handshake
message, because he always loses to other members.  The degree to
which this is a practical problem will depend on the dynamics of the
application.</t>

<t>Regardless of how messages are kept in sequence, implementations
MUST only update their cryptographic state when valid handshake messages
are received.  Generation of handshake messages MUST be stateless,
since the endpoint cannot know at that time whether the change
implied by the handshake message will succeed or not.</t>

<section anchor="server-side-enforced-ordering" title="Server-side enforced ordering">

<t>With this approach, the delivery service ensures that incoming messages are added to an
ordered queue and outgoing messages are dispatched in the same order. The server
is trusted to resolve conflicts during race-conditions (when two members send a
message at the same time), as the server doesn’t have any additional knowledge
thanks to the confidentiality of the messages.</t>

<t>Messages should have a counter field sent in clear-text that can be checked by
the server and used for tie-breaking. The counter starts at 0 and is incremented
for every new incoming message. If two group members send a message with the same
counter, the first message to arrive will be accepted by the server and the second
one will be rejected. The rejected message needs to be sent again with the correct
counter number.</t>

<t>To prevent counter manipulation by the server, the counter’s integrity can be
ensured by including the counter in a signed message envelope.</t>

<t>This applies to all messages, not only state changing messages.</t>

</section>
<section anchor="client-side-enforced-ordering" title="Client-side enforced ordering">

<t>Order enforcement can be implemented on the client as well, one way to achieve it
is to use a two step update protocol: the first client sends a proposal to update and
the proposal is accepted when it gets 50%+ approval from the rest of the group,
then it sends the approved update. Clients which didn’t get their proposal accepted,
will wait for the winner to send their update before retrying new proposals.</t>

<t>While this seems safer as it doesn’t rely on the server, it is more complex and
harder to implement. It also could cause starvation for some clients if they keep
failing to get their proposal accepted.</t>

<t>[[OPEN ISSUE: Another possibility here is batching + deterministic selection.]]</t>

</section>
</section>
<section anchor="message-protection" title="Message Protection">

<t>[[ OPEN ISSUE: This section has initial considerations about message
protection.  This issue clearly needs more specific recommendations,
possibly a protocol specification in this document or a separate
one. ]]</t>

<t>The primary purpose of this protocol is to enable an authenticated
group key exchange among participants.  In order to protect messages sent among
those participants, an application will need to specify how messages are protected.</t>

<t>For every epoch, the root key of the ratcheting tree can be used to
derive key material for symmetric operations such as encryption/AEAD and MAC;
AEAD or MAC MUST be used to ensure that the message originated from a member
of the group.</t>

<t>In addition, asymmetric signatures SHOULD be used to authenticate the sender
of a message.</t>

<t>In combination with server-side enforced ordering, data from previous messages
is used (as a salt when hashing) to:</t>

<t><list style="symbols">
  <t>add freshness to derived symmetric keys</t>
  <t>cryptographically bind the transcript of all previous messages with the current
group shared secret</t>
</list></t>

<t>Possible candidates for that are:</t>

<t><list style="symbols">
  <t>the key used for the previous message (hash ratcheting)</t>
  <t>the counter of the previous message (needs to be known to new members of the group)</t>
  <t>the hash of the previous message (proof that other participants saw the same history)</t>
</list></t>

<t>The requirement for this is that all participants know these values.
If additional clear-text fields are attached to messages (like the counter), those
fields MUST be protected by a signed message envelope.</t>

<t>Alternatively, the hash of the previous message can also be included as an additional
field rather than change the encryption key. This allows for a more flexible approach,
because the receiving party can choose to ignore it (if the value is not known, or if
transcript security is not required).</t>

</section>
<section anchor="security-considerations" title="Security Considerations">

<t>The security goals of MLS are described in [[the architecture doc]]. We describe here how the
protocol achieves its goals at a high level, though a complete security analysis is outside of the
scope of this document.</t>

<section anchor="confidentiality-of-the-group-secrets" title="Confidentiality of the Group Secrets">

<t>Group secrets are derived from (i) previous group secrets, and (ii) the root key of a ratcheting
tree. Only group members know their leaf private key in the group, therefore, the root key of the
group’s ratcheting tree is secret and thus so are all values derived from it.</t>

<t>Initial leaf keys are known only by their owner and the group creator, because they are derived from
an authenticated key exchange protocol. Subsequent leaf keys are known only by their owner. [[TODO:
or by someone who replaced them.]]</t>

<t>Note that the long-term identity keys used by the protocol MUST be distributed by an “honest”
authentication service for parties to authenticate their legitimate peers.</t>

</section>
<section anchor="authentication" title="Authentication">

<t>There are two forms of authentication we consider. The first form
considers authentication with respect to the group. That is, the group
members can verify that a message originated from one of the members
of the group. This is implicitly guaranteed by the secrecy of the
shared key derived from the ratcheting trees: if all members of the
group are honest, then the shared group key is only known to the group
members. By using AEAD or appropriate MAC with this shared key, we can
guarantee that a participant in the group (who knows the shared secret
key) has sent a message.</t>

<t>The second form considers authentication with respect to the sender,
meaning the group members can verify that a message originated from a
particular member of the group. This property is provided by digital
signatures on the messages under identity keys.</t>

<t>[[ OPEN ISSUE: Signatures under the identity keys, while simple, have
the side-effect of preclude deniability. We may wish to allow other options, such as (ii) a key
chained off of the identity key, or (iii) some other key obtained
through a different manner, such as a pairwise channel that
provides deniability for the message contents.]]</t>

</section>
<section anchor="forward-and-post-compromise-security" title="Forward and post-compromise security">

<t>Message encryption keys are derived via a hash ratchet, which provides a form of forward secrecy: learning a
message key does not reveal previous message or root keys. Post-compromise security is provided by
Update operations, in which a new root key is generated from the latest ratcheting tree. If the
adversary cannot derive the updated root key after an Update operation, it cannot compute any
derived secrets.</t>

</section>
<section anchor="init-key-reuse" title="Init Key Reuse">

<t>Initialization keys are intended to be used only once and then deleted. Reuse of init keys is not believed to be
inherently insecure <xref target="dhreuse"/>, although it can complicate protocol analyses.</t>

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

<t>TODO: Registries for protocol parameters, e.g., ciphersuites</t>

</section>
<section anchor="contributors" title="Contributors">

<t><list style="symbols">
  <t>Benjamin Beurdouche <vspace />
INRIA <vspace />
benjamin.beurdouche@ens.fr</t>
  <t>Karthikeyan Bhargavan <vspace />
INRIA <vspace />
karthikeyan.bhargavan@inria.fr</t>
  <t>Cas Cremers <vspace />
University of Oxford <vspace />
cas.cremers@cs.ox.ac.uk</t>
  <t>Alan Duric <vspace />
Wire <vspace />
alan@wire.com</t>
  <t>Srinivas Inguva <vspace />
Twitter <vspace />
singuva@twitter.com</t>
  <t>Albert Kwon <vspace />
MIT <vspace />
kwonal@mit.edu</t>
  <t>Eric Rescorla <vspace />
Mozilla <vspace />
ekr@rtfm.com</t>
  <t>Thyla van der Merwe <vspace />
Royal Holloway, University of London <vspace />
thyla.van.der@merwe.tech</t>
</list></t>

</section>


  </middle>

  <back>

    <references title='Normative References'>

<reference anchor="X962" >
  <front>
    <title>Public Key Cryptography For The Financial Services Industry: The Elliptic Curve Digital Signature Algorithm (ECDSA)</title>
    <author >
      <organization>ANSI</organization>
    </author>
    <date year="1998"/>
  </front>
  <seriesInfo name="ANSI" value="X9.62"/>
</reference>


<reference anchor="IEEE1363" >
  <front>
    <title>IEEE Standard Specifications for Password-Based Public-Key Cryptographic Techniques</title>
    <author >
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
  <seriesInfo name="IEEE" value="standard"/>
  <seriesInfo name="DOI" value="10.1109/ieeestd.2009.4773330"/>
</reference>



<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 initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<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="I-D.ietf-tls-tls13">
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>

<author initials='E' surname='Rescorla' fullname='Eric Rescorla'>
    <organization />
</author>

<date month='January' day='5' 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></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-tls-tls13-23' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-tls13-23.txt' />
</reference>



<reference  anchor="RFC7748" target='https://www.rfc-editor.org/info/rfc7748'>
<front>
<title>Elliptic Curves for Security</title>
<author initials='A.' surname='Langley' fullname='A. Langley'><organization /></author>
<author initials='M.' surname='Hamburg' fullname='M. Hamburg'><organization /></author>
<author initials='S.' surname='Turner' fullname='S. Turner'><organization /></author>
<date year='2016' month='January' />
<abstract><t>This memo specifies two elliptic curves over prime fields that offer a high level of practical security in cryptographic applications, including Transport Layer Security (TLS).  These curves are intended to operate at the ~128-bit and ~224-bit security level, respectively, and are generated deterministically based on a list of required properties.</t></abstract>
</front>
<seriesInfo name='RFC' value='7748'/>
<seriesInfo name='DOI' value='10.17487/RFC7748'/>
</reference>



<reference  anchor="RFC5869" target='https://www.rfc-editor.org/info/rfc5869'>
<front>
<title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
<author initials='H.' surname='Krawczyk' fullname='H. Krawczyk'><organization /></author>
<author initials='P.' surname='Eronen' fullname='P. Eronen'><organization /></author>
<date year='2010' month='May' />
<abstract><t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t></abstract>
</front>
<seriesInfo name='RFC' value='5869'/>
<seriesInfo name='DOI' value='10.17487/RFC5869'/>
</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" >
  <front>
    <title>A Formal Security Analysis of the Signal Messaging Protocol</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="B." surname="Dowling" fullname="Benjamin Dowling">
      <organization></organization>
    </author>
    <author initials="L." surname="Garratt" fullname="Luke Garratt">
      <organization></organization>
    </author>
    <author initials="D." surname="Stebila" fullname="Douglas Stebila">
      <organization></organization>
    </author>
    <date year="2017" month="April"/>
  </front>
  <seriesInfo name="2017 IEEE European Symposium on Security and Privacy" value="(EuroS&amp;P)"/>
  <seriesInfo name="DOI" value="10.1109/eurosp.2017.27"/>
</reference>

<reference anchor="dhreuse" >
  <front>
    <title>On reusing ephemeral keys in Diffie-Hellman key agreement protocols</title>
    <author initials="A." surname="Menezes" fullname="Alfred Menezes">
      <organization></organization>
    </author>
    <author initials="B." surname="Ustaoglu" fullname="Berkant Ustaoglu">
      <organization></organization>
    </author>
    <date year="2010"/>
  </front>
  <seriesInfo name="International Journal of Applied Cryptography" value="Vol. 2, pp. 154"/>
  <seriesInfo name="DOI" value="10.1504/ijact.2010.038308"/>
</reference>

<reference anchor="keyagreement" >
  <front>
    <title>Recommendation for Pair-Wise Key Establishment Schemes Using Discrete Logarithm Cryptography</title>
    <author initials="E." surname="Barker" fullname="Elaine Barker">
      <organization></organization>
    </author>
    <author initials="L." surname="Chen" fullname="Lily Chen">
      <organization></organization>
    </author>
    <author initials="A." surname="Roginsky" fullname="Allen Roginsky">
      <organization></organization>
    </author>
    <author initials="M." surname="Smid" fullname="Miles Smid">
      <organization></organization>
    </author>
    <date year="2013" month="May"/>
  </front>
  <seriesInfo name="National Institute of Standards and Technology" value="report"/>
  <seriesInfo name="DOI" value="10.6028/nist.sp.800-56ar2"/>
</reference>


<reference anchor="signal" target="https://www.signal.org/docs/specifications/doubleratchet/">
  <front>
    <title>The Double Ratchet Algorithm</title>
    <author initials="T.P." surname="(ed)" fullname="Trevor Perrin (ed)">
      <organization></organization>
    </author>
    <author initials="M." surname="Marlinspike" fullname="Moxie Marlinspike">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>




<reference anchor="I-D.ietf-trans-rfc6962-bis">
<front>
<title>Certificate Transparency Version 2.0</title>

<author initials='B' surname='Laurie' fullname='Ben Laurie'>
    <organization />
</author>

<author initials='A' surname='Langley' fullname='Adam Langley'>
    <organization />
</author>

<author initials='E' surname='Kasper' fullname='Emilia Kasper'>
    <organization />
</author>

<author initials='E' surname='Messeri' fullname='Eran Messeri'>
    <organization />
</author>

<author initials='R' surname='Stradling' fullname='Rob Stradling'>
    <organization />
</author>

<date month='October' day='30' year='2017' />

<abstract><t>This document describes version 2.0 of the Certificate Transparency (CT) protocol for publicly logging the existence of Transport Layer Security (TLS) server certificates as they are issued or observed, in a manner that allows anyone to audit certification authority (CA) activity and notice the issuance of suspect certificates as well as to audit the certificate logs themselves.  The intent is that eventually clients would refuse to honor certificates that do not appear in a log, effectively forcing CAs to add all issued certificates to the logs.  Logs are network services that implement the protocol operations for submissions and queries that are defined in this document.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-trans-rfc6962-bis-27' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-trans-rfc6962-bis-27.txt' />
</reference>




    </references>



  </back>

<!-- ##markdown-source:
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
Hd8JhanL9sITBk0XeTRCJ/FB87GN/K+4I9h9gu2HAZpcDlRFDzq3x8f3Ts9e
CiY+ZiHpuHA2gFMe80zGPKxKfpKK5KyX9pYMOFyETSdgiSrf2HAuUexZ9HoI
SZbPBSQIBenXpQ87i9Zu62GDI7b1mkNmZrGznjtpge9IkKdzEUbQZtMFqrEX
rnI5a2CcTbHKxYGfa0lxPhFkcdDv1cbqI4iuKYctooOJBNHAxhbGhbDrUhTE
9VNslBfkNgHCAgGq4KWplGSn8tqA0G22TPEPVhUkUiFls5XiMzsD7iDyoXX+
AnVXoGwiXtiR+6l4KMgTMEP5ohLhL8Y0rlgkzIuIkDpCMKEULqyIECEuWw18
c/swiSW9n4zuj5T84jEwEgSYp3gmgKwN3/zT0YPRvdF96RA+vIS6u7bkrc29
CJy4EjyWrZqDpHe3L47Vjb94ws00qM9DIG3xGBeE/03SO6XL2rsX98U5/Ffy
ZdJ7M0g2fbG5Kf2yTx8pj61xwsam79FI9/vR00Y6Qi4ve3Br/7SHuoY7Vzz7
+zqV4khayrXJHEOMOOus0kQYsQLoBgL3brxKqKBWLSAuiCzsM6JxszVe2nli
FSl7ouJ88YTxKWH58PgNvwrF8oF+gUgbY4lfI4KCwwaRBD/9/MEXb99u+dVd
J+P0CfizvfNC+NsZ43/vTNXXZ+kE5XJPEHgFBX+QPG8u+8mX4noOFuV6PL2a
zbXXM6ZBfS5GRrt0v3BtDSdBpODv6mv9kcdVbUVJ2Jc6zkN5KU8UjgLj/OEz
0TWoyd6yaO7uJ3vJ72XJUWM+hot89od9p7lQl5Ojh262+/fUfvGlbDPqrkp+
oPdQMwKDeeu39NDlKePwIv2RNT4iEE+VInZ0ONGbnUKLWvzNYqR7z9W3JTzC
fomA6dYGgvjIBJIwYAQWaSnEnza90rTmMyIJhHGX8jqAFfA4m0pCcpvk5Ovn
/FyebRNGZULaCtEkHFm9fFv9SMqopKpoXVc3WphOyYuEkGyZAru+QRpgQhjb
NVOEtV394xVw8shZKil3IYqhTdYtz1UW4T7aUjN0A/bRdi1d2nJr7UKHmDuJ
1UfWIsZPGwMZ1bDpmsfE5MpzMDYFUo/y2Hh5s2zFZWqVr6i3jCMeSHjSCBuv
TtiAO1A7W5KE/rSldgbOU8bBFY65hm51WG14VwFE5fUqEiwGiU2GDGAcdGkS
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
hq634dB++n4jlfRJNEOBdmRhiUdNV84vKolxAaWL7YZFUsLz9SRrzvAWkVYo
lpQRGT0AIJ9BZIUto+KOjUHAJOj8fA67nmaTFFxdjfMMQoNhEPCOKyAWWmOr
o/kCyy6WFYxBlL4AlLux4cSV/nHWX8vgPNthAXBLfAxc7/LYchjaHZpKdV22
W95AsFvXnHVpw0d8pgHLW2Wx2ZX0FmQuGntcUUZikHNs76kgc6NRENgj7OQb
o+LeMkWGDj9oEPk5obHK0lCVq8ylRLElJIQBrozwDshIGSq1a2lgCicHBTZV
hUr0KjSfEKwzIOpbZyW1Lbvm+Dw0baxLtfVtPd7OGXj2XgtmTTZ+LKshcb2j
7ttV9o0HH6YWPB+mBaG8RuYe8uw8movTMBIZ5VPWOKuwWi7XpaWSEpH0Bgh9
2nuBNJvkRd/aE+wrEfRLP2wJVN8FHYGoNXcRxXOmruD9B3nfVCL2Os4EfedM
HkPvPDMSKnDnC3102hduCwYHtHjZoRXUXjP2F2hWPNyxu60QYU/P6d8GAoey
z3G8Af/shbIPu6zJhtPnsyau+ORezDDp7atVQsSr3f0+h62JK4ECnmCEuk3b
CfOMzdIC4MhuHFsTOapM/V1RlvdhmMu+nYDjrHKTjYYzhHgr/KtUTS+cPVyz
9aF/1MTZIh+jh1iY1eji7nlsXxUUebodslAh4mMm8R9X+gwfmkraEfTpXe+u
6qt1Qo620Fuy8bX2RmNiTaiKiLNeZtuWl+EzjiAlGvuK8pbRkvSdwhlKY05/
Hn9jeJKwyP87D7KDYO8+TM4RSvQ43+swt47S1eZ31u54v1x2L2R6blRQiyTp
ppX5vDRWFePYEYkwDu6iPlV+uaNWEApKRIm/QT3UOJHcsnJfRDJasau5gK3v
qrsQx+SMmCWNn50fv3oxPj/5s0qTqqoLz2TBzxXr3nl0Unll3YRPKVi4s+G6
WhGjVtHPH3FYF8FsX0QNKFGuf6Ml//lBZjSORVlCZfqwHNh6PtOqcQBy92eR
Xisl8sZmbEYhaOwdd0xG1UPrlL2VxWCQrcKyymtMYHwPmczAv0ms60oLYuez
DT/VoPW52acfP4UUuh52s5au5RnCU0dLc3qvYzJdgu/5TFgEfWdSlISt4oI/
zlrmSbev+L0pqjLq3WQzJiVhfTyH6LfQF51K7nN013t6bb5nePVH70ebLVrE
JJk53c8iyR07WkSchb7MOkQrewP9IEh96zAms5sx9ZwGFVgXoTbo1Qgy6ehS
mrDsfsgWdgGov80geMvmnQzCUmjOPPbFIjnAbhU9zY3jjfxXEXkvKrywvpuU
M2VMJdbTchHc8cSfj9SCENfBxhaB1qLUdhhVAnSQlAfAsP/BrAAETwqFAPU7
z93sEKk7tC54LJd5taXzloL7rB5XYe7Wp4UAZlNnl8jDsQ6Q6DILq9hRlOYd
9FAh9HIHSVQ7XhBsrHxQyjl04GG10NyVmPUE8SbdiKfMP3Gxw/cdULGOpuvC
3dVhFR3r+5GleLH/qQJjcKWnKSL84zvNKo+9qs5s4FmCXkmP8paC8jm4qxzr
KeE4JulA8ufd7jjY2fCNZdPIjmsr91BMeODLs/htlJ/UbNVuxsW45NmjuITQ
Vtma273jWulm2wm9Q5iwFu7dN6f7uktUjcpV1NGyWVqG0DyyohFDE62LbHbJ
JbKtGanZHrqDPe99/W4VIjqrk0ISFm8INDuG/f939ze6u/Ysfv7dfeea2NMb
ASVapQzawQlbLwoLCmqM/vaEQh+5Zy+tHoYUJTqTGCGtCMXFifjVHMQH/Pi7
xv36docnQRL7mEkvJB3T2v605If1KqunVVg0KwFuXMRptqqvTYjWVBXzcA6Z
5MBiECa8GpfmdKnNLG+ma66pId6SBckJKKi9sfXAwmhQ6kZr0dOHz6Zp1mpl
5Qod205eTrjL5M07fsZX0jVdCXTG3YGxhcVm1vD8OnDOvdb4QU4JZ+RRcHI5
KAkRSc2OsjtwG3AsRVxxPQ1e/5D55bgZP/ybUkjv4Xy3kWZ1s9MAyOGB7ev8
qwbMZQvhdqB/5S0URHxoYLjlFQ1ntexMD8q1YL+jvzivpjXdt30ja+kJZLqU
8GaKXNnqBgElUd38Om+uNHvzpvJ1r7FRZ1rYAb8mR3Z2WmYczj0w0bK0ULXE
pXwrBZFyvFmyWmVlXLbfAU6I5XZQNux0s4yQe17kUxvw4OfesTahi7W+LHJT
GdlH4aokuNx6jRQmupFzbLJ1Odg3N1OavIU3ApH/todGwRVdX4ukQGn2bPDY
9oTE0asEbkiOa9JXGOCL3joHrWRVX6tBHaeHZyJ8QW0zWTcba6WwN0ZRB34u
DhgKXFf60Oa238S7g6CHFCQXAzkbsYRE75Ypm5lll1Ih0dhnyfmSM3ozfsEL
oYjO2CMZWhYlZpsyXeZTV4M/eKmScOQVE6sCdhXEX1Y38UW9QjAIu98kxjLI
UVVqx8Ec7Cnxz3zm3XJsGjjHjJjdRdu4Y8T5CJbPBvcnviIAB4Zu3QMbRcJj
YwMD49V32r8kAxM6uHQyNoPhf3D7o2Iaki0XUC58uytWk980mPKj9OyVa0fi
yjpD5FQ9bLiemODwTJAXaXHmW0ec7U0Y3Ib/Dedd29pmksoYHYmks8lzpvYl
BTocretBSvNltdWH+MmK2WRclJu7j9S8iQ3wcxUIv7H1H9kXnFga0NiajIR3
GemopWTdNElPaq8FZEyw3zlFbMAUZgX4+wNX34En5sS/8iN9+R0WhqAIiBN1
QS3LK2f3wrJyjYpQ/1hAFrjymyOaEp2r3JPfAMGTLxyCb59EmZLYUg/b7I2i
iZbz5hIkEswbrBew9uX/82zIxMY9m2FnYB7XYPv7Ikk1vmId8Xn3VAzbbrrn
zY/ZAKhxmVElLHEAsQLX6MSCXiImB57stOacVRdoMkWwl8f4YG8qedERG6hO
tkedIWYeFxS7tJ/cFGFJIwYri9YdyZTkWAseiWKXCtg20MP+5l85q8p4gQMd
i9t9ZINUgAFyZEZu0Ux8v+FrJ3ZsfdqTEzt8sOZ1VpCcZQULppNa7I+f0NRX
nVm0YIIX1BkMb5xoq1LN4VaKcMopbfrD0qYbQcAJHq+wKbaSj6QJTFKBGgEy
XCtqkRPYSELhq1vpG21cXLTNVpYm20DZgwAtbIKUij2oBFE1YWlcLl4oRjH9
iZ/cVJS50QeSLpGw+un+//69kDa8cuzUkzrzDgfhnKIn5XZaNsVxN2TY8Kyj
xNbBEG43y2egC5dZq5zFrcYuZWC0qlfu4xZvOJjOsWHpqduaSCwoKRX1hhUk
WMV10IbFprxwBT2yJf1vikftuO6zo1N1xslSEVaKmLisNPSyIL0YIFykNn3R
na2P5Q1jMLwAIgItVy5TYNinz66ybGXmpCXYYNDb4TLqVkMba4RRECCSWDFo
AvaAMX/v3q6GSj7VGEQIC+z/sfHyeLChlR/erTJZfSlWlDS70GqiKzegCz6D
IiNkudgobWHoukDqGtVwl3jDjUccGI3v2QhC61OM2jqI0+H4q6lUDuCgpCZD
TaI2A7ET1elcTMtLvAmwWtfw1Qkqh2+lyZ3TmDikkQdVQWfBY+c2/FzfluzE
jIQZrgqFQNznq49udHewiLDzgCcNnh6PC4dqAcMtqU4nYRR57FhQJgm+zn4e
5Px0HkG0tEpDB42WQkAHxGDXOGvG4A0dTlvTQQVhY/b5AF/D8s74eHwk9QvH
hw8Nf6Le9MEJee6Fm6D4SqgCVHV+ybWWZlab1ISGThz4SekEC0ggbn3OeuQK
vAWTRrVeW2fJkwexLK/mscU7b4+iXShpuIULDBLC21QW7BwPTh7W4gJJT5Kc
UEmDaS5ypKhzn1aGZ1M/Zl8GG91K9Y5aH7LfHudDUdNIKud8T1ruTJ2IaSku
JbZQFsX2kgI+rqHYNlo6rmplzEsbZkeIMsvFKCakGeFo/JgFrQYjAWeiZ5S6
syY9TgrzGNi3XS0zdyW+ux1DacRFafr0vVjbdcNKgYfbxgzSEnY8ld2kN17O
JUqBGKO+0BJ9xsMWQnFanH2ONB7I2oIb61QbcTn1oDCeF1Y1z9OFxC4Ea92p
9TjZJoBYH5ecSInRnvaSObIglvTb5aNxWOhp8G6oTbnCBlcv965UMaX5Lclq
onjhoBJ/UPHWl9HU2v4SV8qcYY5QOSbGVs9ytbtEILEmZUBb5MXpoqrEXiCF
58HGe3nwhpA1JzEK8WuN+dwE18WHpjYaqcsnPYO7HJqh/noYWwnVJaA/XlYI
7EZuBHKi6iyqx5h89x0LSjVxaBwQKCCxrx9+wHNorqWw8oV90cLVehUJUYzS
Mg2HhC7yS1jpr1E4Ccn6lwtWjLRQmltYSiezaQRViVszIVNDQjMlbHA80fJT
lX53q2ZaG17KnNiyVO7d5aAyFdPEXt73uBRVzharaC+nBl12lQakQt+SPd1+
qsHer3zbXxplS6qhCALjTs5obNBUl0P6anDuUaCmkjtaFNZRHu02b5mHiKRk
3SdqhfEF3UURkhcrAlVNq7nD/1rV3sLU2ie5orCirqASiyg+qe4MRa1h92nf
dz0jQtXz06PTA1NxtBpEWNZWFu4xCV7vkoXJsKpfxgbaISTPOJknykx2WG1J
1ixH6cDJ2hKtMtlb0IRNu3dbdgRHKIPU7qjjbhHCJZOtMn4iDxg9jobj6+sN
nVzaSpLG41lvfM6ZqMyie6G5S/lvtjqBzeo7vp0Y3HN5eTAInTfB6yNRpHp6
q3CkDxMFdt9YTLLSd2JfdsD1WZN8TMwjNBYQuk3dRVAJwNXNDF8E6b6hfQB1
RpTqkBGrwJwyGcMhqu+OZwtf/NL0C0ZAx9i3IDJKHm00NsuKlGHBQ4iX3mni
l8+PbiGQ3G3ZwjNKOAvLnfSA31jIjpKlCPnosxYkknwgMJ47G4uURvsghBAZ
dGA0EydYzYcjRKou8XWRWuNzsgMj3DM/uasWw9gwo9FaYuCBEB37YBsO2a+3
svQ6euOZ7y/t29Ahiz6cHF9k8uYIlyC9ztT7O8uG8gQKpwYSZnIsIyc1iKrL
zJJLeKPcj1h1iAmIFCdPhzX+cTPmLRyXiWIrnKNTzedbdQwYXwixqDm1Z41d
BmQWMWm5p9Gc48jHtUxhofATpuwpxzv1LPaUmRS8Ni4uKNhK4LZRAUui8hst
FY5ncW4QJsSpJLfEEznraEe2ihkxyqZp0TO9xbZAgX8SU7C34peveVolDQdg
GzVjp7cEM4GwVd5g8ku3NQ1A1DJausYvb4uIivHQFijzuubAv0WiQa2We1NP
62ML6JTmPHfI1Ug9nCadcbJVvbFeBdV72yCKxs0gnmgfI+VWJfEaMoDN/sHT
805rc4+DaIoMF/d6hQo8Tj6IqlTdVvaHyWPFr72IlFBaP/1IhuNn1Vz1IJVe
J1kBedHWK8rLReYqijDgURhottCKQAMUfRXpUXYlIqSwUy+DshBpffEn4xfj
bWkYUgMt65IZus0ksgO4gtF4LGV0ORpE1Z4wKI0ngkBF3AzPu2bl39IlHf+j
bF3PKrpkWfI93ms6efHqZCx/TrTNaOLafJWVzWheY4SviSQuclSrpUGIol+m
1/RXd4wr32o0sa2+ykviMTrOIV3uQyh+RJK5yzdlztWURSw+fUM7nckv07QZ
TaXpV9NmVL0ZpdPR+orz6gua/GgNZZ6bfov0bf4LjzN9dUMfRwR6ND2r6VCv
adaT8nJ9nUqrc+IhQEj+AJ5Iv3zVype247ggwk/odlPpPp+fnOsub6ChfbUk
GTWbrdH2GCt5RapHVRc6xfPqH3lhP2RX9Vd1O1/asc8XmwJ1iYGDNdJzb3T5
r6oNUYCnHCSDmlAxdJ4Rc7SraTHEiIYY0RBfLTHECMWezf8ADPjLUYnHAAA=

-->

</rfc>

