<?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.17 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-sframe-enc-latest" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.22.0 -->
  <front>
    <title abbrev="SFrame">Secure Frame (SFrame): Lightweight Authenticated Encryption for Real-Time Media</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-sframe-enc-latest"/>
    <author initials="E." surname="Omara" fullname="Emad Omara">
      <organization>Apple</organization>
      <address>
        <email>eomara@apple.com</email>
      </address>
    </author>
    <author initials="J." surname="Uberti" fullname="Justin Uberti">
      <organization>Fixie.ai</organization>
      <address>
        <email>justin@fixie.ai</email>
      </address>
    </author>
    <author initials="S. G." surname="Murillo" fullname="Sergio Garcia Murillo">
      <organization>CoSMo Software</organization>
      <address>
        <email>sergio.garcia.murillo@cosmosoftware.io</email>
      </address>
    </author>
    <author initials="R." surname="Barnes" fullname="Richard Barnes" role="editor">
      <organization>Cisco</organization>
      <address>
        <email>rlb@ipv.sx</email>
      </address>
    </author>
    <author initials="Y." surname="Fablet" fullname="Youenn Fablet">
      <organization>Apple</organization>
      <address>
        <email>youenn@apple.com</email>
      </address>
    </author>
    <date year="2024" month="July" day="10"/>
    <area>Applications and Real-Time</area>
    <workgroup>sframe</workgroup>
    <keyword>security</keyword>
    <keyword>real-time media encryption</keyword>
    <keyword>end-to-end encryption</keyword>
    <abstract>
      <?line 70?>

<t>This document describes the Secure Frame (SFrame) end-to-end encryption and
authentication mechanism for media frames in a multiparty conference call, in
which central media servers (Selective Forwarding Units or SFUs) can access the
media metadata needed to make forwarding decisions without having access to the
actual media.</t>
      <t>This mechanism differs from the Secure Real-Time Protocol (SRTP) in that
it is independent of RTP (thus compatible with non-RTP media transport) and can
be applied to whole media frames in order to be more bandwidth efficient.</t>
    </abstract>
  </front>
  <middle>
    <?line 82?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Modern multiparty video call systems use Selective Forwarding Unit (SFU)
servers to efficiently route media streams to call endpoints based on factors such
as available bandwidth, desired video size, codec support, and other factors. An
SFU typically does not need access to the media content of the conference,
which allows the media to be encrypted "end to end" so that it cannot be
decrypted by the SFU. In order for the SFU to work properly, though, it usually
needs to be able to access RTP metadata and RTCP feedback messages, which is not
possible if all RTP/RTCP traffic is end-to-end encrypted.</t>
      <t>As such, two layers of encryption and authentication are required:</t>
      <ol spacing="normal" type="1"><li>
          <t>Hop-by-hop (HBH) encryption of media, metadata, and feedback messages
between the endpoints and SFU</t>
        </li>
        <li>
          <t>End-to-end (E2E) encryption (E2EE) of media between the endpoints</t>
        </li>
      </ol>
      <t>The Secure Real-Time Protocol (SRTP) is already widely used for HBH encryption
<xref target="RFC3711"/>. The SRTP "double encryption" scheme defines a way to do E2E
encryption in SRTP <xref target="RFC8723"/>. Unfortunately, this scheme has poor efficiency
and high complexity, and its entanglement with RTP makes it unworkable in
several realistic SFU scenarios.</t>
      <t>This document proposes a new E2EE protection scheme known as SFrame,
specifically designed to work in group conference calls with SFUs. SFrame is a
general encryption framing that can be used to protect media payloads, agnostic
of transport.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

<dl>
        <dt>MAC:</dt>
        <dd>
          <t>Message Authentication Code</t>
        </dd>
        <dt>E2EE:</dt>
        <dd>
          <t>End-to-End Encryption</t>
        </dd>
        <dt>HBH:</dt>
        <dd>
          <t>Hop-by-Hop</t>
        </dd>
      </dl>
      <t>We use "Selective Forwarding Unit (SFU)" and "media stream" in a less formal sense
than in <xref target="RFC7656"/>.  An SFU is a selective switching function for media
payloads, and a media stream is a sequence of media payloads,
regardless of whether those media payloads are transported over RTP or some
other protocol.</t>
    </section>
    <section anchor="goals">
      <name>Goals</name>
      <t>SFrame is designed to be a suitable E2EE protection scheme for conference call
media in a broad range of scenarios, as outlined by the following goals:</t>
      <ol spacing="normal" type="1"><li>
          <t>Provide a secure E2EE mechanism for audio and video in conference calls
that can be used with arbitrary SFU servers.</t>
        </li>
        <li>
          <t>Decouple media encryption from key management to allow SFrame to be used
with an arbitrary key management system.</t>
        </li>
        <li>
          <t>Minimize packet expansion to allow successful conferencing in as many
network conditions as possible.</t>
        </li>
        <li>
          <t>Decouple the media encryption framework from the underlying transport,
allowing use in non-RTP scenarios, e.g., WebTransport
<xref target="I-D.ietf-webtrans-overview"/>.</t>
        </li>
        <li>
          <t>When used with RTP and its associated error-resilience mechanisms, i.e., RTX
and Forward Error Correction (FEC), require no special handling for RTX and FEC packets.</t>
        </li>
        <li>
          <t>Minimize the changes needed in SFU servers.</t>
        </li>
        <li>
          <t>Minimize the changes needed in endpoints.</t>
        </li>
        <li>
          <t>Work with the most popular audio and video codecs used in conferencing
scenarios.</t>
        </li>
      </ol>
    </section>
    <section anchor="sframe">
      <name>SFrame</name>
      <t>This document defines an encryption mechanism that provides effective E2EE,
is simple to implement, has no dependencies on RTP, and minimizes
encryption bandwidth overhead. This section describes how the mechanism
works and includes details of how applications utilize SFrame for media protection
as well as the actual mechanics of E2EE for protecting media.</t>
      <section anchor="application-context">
        <name>Application Context</name>
        <t>SFrame is a general encryption framing, intended to be used as an E2EE
layer over an underlying HBH-encrypted transport such as SRTP or QUIC
<xref target="RFC3711"/><xref target="I-D.ietf-moq-transport"/>.</t>
        <t>The scale at which SFrame encryption is applied to media determines the overall
amount of overhead that SFrame adds to the media stream as well as the
engineering complexity involved in integrating SFrame into a particular
environment. Two patterns are common: using SFrame to encrypt either whole
media frames (per frame) or individual transport-level media payloads
(per packet).</t>
        <t>For example, <xref target="media-stack"/> shows a typical media sender stack that takes media
from some source, encodes it into frames, divides those frames into media
packets, and then sends those payloads in SRTP packets. The receiver stack
performs the reverse operations, reassembling frames from SRTP packets and
decoding.  Arrows indicate two different ways that SFrame protection could be
integrated into this media stack: to encrypt whole frames or individual media
packets.</t>
        <t>Applying SFrame per frame in this system offers higher efficiency but may
require a more complex integration in environments where depacketization relies
on the content of media packets. Applying SFrame per packet avoids this
complexity at the cost of higher bandwidth consumption.  Some quantitative
discussion of these trade-offs is provided in <xref target="overhead-analysis"/>.</t>
        <t>As noted above, however, SFrame is a general media encapsulation and can be
applied in other scenarios.  The important thing is that the sender and
receivers of an SFrame-encrypted object agree on that object's semantics.
SFrame does not provide this agreement; it must be arranged by the application.</t>
        <figure anchor="media-stack">
          <name>Two Options for Integrating SFrame in a Typical Media Stack</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="576" width="584" viewBox="0 0 584 576" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 24,112 L 24,144" fill="none" stroke="black"/>
                <path d="M 24,432 L 24,464" fill="none" stroke="black"/>
                <path d="M 56,32 L 56,240" fill="none" stroke="black"/>
                <path d="M 56,352 L 56,560" fill="none" stroke="black"/>
                <path d="M 80,64 L 80,128" fill="none" stroke="black"/>
                <path d="M 80,464 L 80,528" fill="none" stroke="black"/>
                <path d="M 152,64 L 152,128" fill="none" stroke="black"/>
                <path d="M 152,464 L 152,528" fill="none" stroke="black"/>
                <path d="M 184,104 L 184,144" fill="none" stroke="black"/>
                <path d="M 184,208 L 184,384" fill="none" stroke="black"/>
                <path d="M 184,448 L 184,488" fill="none" stroke="black"/>
                <path d="M 208,64 L 208,128" fill="none" stroke="black"/>
                <path d="M 208,464 L 208,528" fill="none" stroke="black"/>
                <path d="M 320,64 L 320,128" fill="none" stroke="black"/>
                <path d="M 320,464 L 320,528" fill="none" stroke="black"/>
                <path d="M 344,104 L 344,144" fill="none" stroke="black"/>
                <path d="M 344,208 L 344,384" fill="none" stroke="black"/>
                <path d="M 352,448 L 352,488" fill="none" stroke="black"/>
                <path d="M 376,64 L 376,128" fill="none" stroke="black"/>
                <path d="M 376,464 L 376,528" fill="none" stroke="black"/>
                <path d="M 424,136 L 424,272" fill="none" stroke="black"/>
                <path d="M 424,320 L 424,456" fill="none" stroke="black"/>
                <path d="M 472,64 L 472,128" fill="none" stroke="black"/>
                <path d="M 472,464 L 472,528" fill="none" stroke="black"/>
                <path d="M 496,32 L 496,88" fill="none" stroke="black"/>
                <path d="M 496,104 L 496,240" fill="none" stroke="black"/>
                <path d="M 496,352 L 496,488" fill="none" stroke="black"/>
                <path d="M 496,504 L 496,560" fill="none" stroke="black"/>
                <path d="M 504,272 L 504,320" fill="none" stroke="black"/>
                <path d="M 560,96 L 560,264" fill="none" stroke="black"/>
                <path d="M 560,320 L 560,496" fill="none" stroke="black"/>
                <path d="M 576,272 L 576,320" fill="none" stroke="black"/>
                <path d="M 56,32 L 496,32" fill="none" stroke="black"/>
                <path d="M 80,64 L 152,64" fill="none" stroke="black"/>
                <path d="M 208,64 L 320,64" fill="none" stroke="black"/>
                <path d="M 376,64 L 472,64" fill="none" stroke="black"/>
                <path d="M 160,96 L 200,96" fill="none" stroke="black"/>
                <path d="M 328,96 L 368,96" fill="none" stroke="black"/>
                <path d="M 480,96 L 560,96" fill="none" stroke="black"/>
                <path d="M 80,128 L 152,128" fill="none" stroke="black"/>
                <path d="M 208,128 L 320,128" fill="none" stroke="black"/>
                <path d="M 376,128 L 472,128" fill="none" stroke="black"/>
                <path d="M 56,240 L 176,240" fill="none" stroke="black"/>
                <path d="M 192,240 L 336,240" fill="none" stroke="black"/>
                <path d="M 352,240 L 416,240" fill="none" stroke="black"/>
                <path d="M 432,240 L 496,240" fill="none" stroke="black"/>
                <path d="M 504,272 L 576,272" fill="none" stroke="black"/>
                <path d="M 184,304 L 216,304" fill="none" stroke="black"/>
                <path d="M 320,304 L 344,304" fill="none" stroke="black"/>
                <path d="M 504,320 L 576,320" fill="none" stroke="black"/>
                <path d="M 56,352 L 176,352" fill="none" stroke="black"/>
                <path d="M 192,352 L 336,352" fill="none" stroke="black"/>
                <path d="M 352,352 L 416,352" fill="none" stroke="black"/>
                <path d="M 432,352 L 496,352" fill="none" stroke="black"/>
                <path d="M 80,464 L 152,464" fill="none" stroke="black"/>
                <path d="M 208,464 L 320,464" fill="none" stroke="black"/>
                <path d="M 376,464 L 472,464" fill="none" stroke="black"/>
                <path d="M 160,496 L 200,496" fill="none" stroke="black"/>
                <path d="M 328,496 L 368,496" fill="none" stroke="black"/>
                <path d="M 480,496 L 560,496" fill="none" stroke="black"/>
                <path d="M 80,528 L 152,528" fill="none" stroke="black"/>
                <path d="M 208,528 L 320,528" fill="none" stroke="black"/>
                <path d="M 376,528 L 472,528" fill="none" stroke="black"/>
                <path d="M 56,560 L 496,560" fill="none" stroke="black"/>
                <path d="M 24,464 L 40,496" fill="none" stroke="black"/>
                <path d="M 24,432 L 40,464" fill="none" stroke="black"/>
                <path d="M 24,144 L 40,176" fill="none" stroke="black"/>
                <path d="M 24,112 L 40,144" fill="none" stroke="black"/>
                <path d="M 8,144 L 24,112" fill="none" stroke="black"/>
                <path d="M 8,176 L 24,144" fill="none" stroke="black"/>
                <path d="M 8,464 L 24,432" fill="none" stroke="black"/>
                <path d="M 8,496 L 24,464" fill="none" stroke="black"/>
                <path d="M 24,80 C 15.16936,80 8,87.16936 8,96" fill="none" stroke="black"/>
                <path d="M 24,80 C 32.83064,80 40,87.16936 40,96" fill="none" stroke="black"/>
                <path d="M 24,112 C 15.16936,112 8,104.83064 8,96" fill="none" stroke="black"/>
                <path d="M 24,112 C 32.83064,112 40,104.83064 40,96" fill="none" stroke="black"/>
                <path d="M 24,400 C 15.16936,400 8,407.16936 8,416" fill="none" stroke="black"/>
                <path d="M 24,400 C 32.83064,400 40,407.16936 40,416" fill="none" stroke="black"/>
                <path d="M 24,432 C 15.16936,432 8,424.83064 8,416" fill="none" stroke="black"/>
                <path d="M 24,432 C 32.83064,432 40,424.83064 40,416" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="568,264 556,258.4 556,269.6" fill="black" transform="rotate(90,560,264)"/>
                <polygon class="arrowhead" points="488,496 476,490.4 476,501.6" fill="black" transform="rotate(180,480,496)"/>
                <polygon class="arrowhead" points="432,456 420,450.4 420,461.6" fill="black" transform="rotate(90,424,456)"/>
                <polygon class="arrowhead" points="432,136 420,130.4 420,141.6" fill="black" transform="rotate(270,424,136)"/>
                <polygon class="arrowhead" points="376,96 364,90.4 364,101.6" fill="black" transform="rotate(0,368,96)"/>
                <polygon class="arrowhead" points="360,488 348,482.4 348,493.6" fill="black" transform="rotate(90,352,488)"/>
                <polygon class="arrowhead" points="352,384 340,378.4 340,389.6" fill="black" transform="rotate(90,344,384)"/>
                <polygon class="arrowhead" points="352,208 340,202.4 340,213.6" fill="black" transform="rotate(270,344,208)"/>
                <polygon class="arrowhead" points="352,104 340,98.4 340,109.6" fill="black" transform="rotate(270,344,104)"/>
                <polygon class="arrowhead" points="336,496 324,490.4 324,501.6" fill="black" transform="rotate(180,328,496)"/>
                <polygon class="arrowhead" points="208,96 196,90.4 196,101.6" fill="black" transform="rotate(0,200,96)"/>
                <polygon class="arrowhead" points="192,488 180,482.4 180,493.6" fill="black" transform="rotate(90,184,488)"/>
                <polygon class="arrowhead" points="192,384 180,378.4 180,389.6" fill="black" transform="rotate(90,184,384)"/>
                <polygon class="arrowhead" points="192,208 180,202.4 180,213.6" fill="black" transform="rotate(270,184,208)"/>
                <polygon class="arrowhead" points="192,104 180,98.4 180,109.6" fill="black" transform="rotate(270,184,104)"/>
                <polygon class="arrowhead" points="168,496 156,490.4 156,501.6" fill="black" transform="rotate(180,160,496)"/>
                <g class="text">
                  <text x="424" y="84">HBH</text>
                  <text x="116" y="100">Encode</text>
                  <text x="264" y="100">Packetize</text>
                  <text x="424" y="100">Protect</text>
                  <text x="180" y="164">SFrame</text>
                  <text x="340" y="164">SFrame</text>
                  <text x="184" y="180">Protect</text>
                  <text x="344" y="180">Protect</text>
                  <text x="24" y="196">Alice</text>
                  <text x="156" y="196">(per</text>
                  <text x="204" y="196">frame)</text>
                  <text x="316" y="196">(per</text>
                  <text x="368" y="196">packet)</text>
                  <text x="248" y="292">E2E</text>
                  <text x="280" y="292">Key</text>
                  <text x="416" y="292">HBH</text>
                  <text x="448" y="292">Key</text>
                  <text x="536" y="292">Media</text>
                  <text x="268" y="308">Management</text>
                  <text x="436" y="308">Management</text>
                  <text x="540" y="308">Server</text>
                  <text x="180" y="404">SFrame</text>
                  <text x="348" y="404">SFrame</text>
                  <text x="184" y="420">Unprotect</text>
                  <text x="352" y="420">Unprotect</text>
                  <text x="156" y="436">(per</text>
                  <text x="204" y="436">frame)</text>
                  <text x="324" y="436">(per</text>
                  <text x="376" y="436">packet)</text>
                  <text x="424" y="484">HBH</text>
                  <text x="116" y="500">Decode</text>
                  <text x="264" y="500">Depacketize</text>
                  <text x="424" y="500">Unprotect</text>
                  <text x="24" y="516">Bob</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
      +------------------------------------------------------+
      |                                                      |
      |  +--------+      +-------------+      +-----------+  |
 .-.  |  |        |      |             |      |    HBH    |  |
|   | |  | Encode |----->|  Packetize  |----->|  Protect  |----------+
 '+'  |  |        |   ^  |             |  ^   |           |  |       |
 /|\  |  +--------+   |  +-------------+  |   +-----------+  |       |
/ + \ |               |                   |         ^        |       |
 / \  |            SFrame              SFrame       |        |       |
/   \ |            Protect             Protect      |        |       |
Alice |          (per frame)         (per packet)   |        |       |
      |               ^                   ^         |        |       |
      |               |                   |         |        |       |
      +---------------|-------------------|---------|--------+       |
                      |                   |         |                v
                      |                   |         |         +------+-+
                      |      E2E Key      |       HBH Key     | Media  |
                      +---- Management ---+      Management   | Server |
                      |                   |         |         +------+-+
                      |                   |         |                |
      +---------------|-------------------|---------|--------+       |
      |               |                   |         |        |       |
      |               V                   V         |        |       |
 .-.  |            SFrame               SFrame      |        |       |
|   | |           Unprotect            Unprotect    |        |       |
 '+'  |          (per frame)          (per packet)  |        |       |
 /|\  |               |                    |        V        |       |
/ + \ |  +--------+   |  +-------------+   |  +-----------+  |       |
 / \  |  |        |   V  |             |   V  |    HBH    |  |       |
/   \ |  | Decode |<-----| Depacketize |<-----| Unprotect |<---------+
 Bob  |  |        |      |             |      |           |  |
      |  +--------+      +-------------+      +-----------+  |
      |                                                      |
      +------------------------------------------------------+
]]></artwork>
          </artset>
        </figure>
        <t>Like SRTP, SFrame does not define how the keys used for SFrame are exchanged by
the parties in the conference.  Keys for SFrame might be distributed over an
existing E2E-secure channel (see <xref target="sender-keys"/>) or derived from an E2E-secure
shared secret (see <xref target="mls"/>).  The key management system <bcp14>MUST</bcp14> ensure that each
key used for encrypting media is used by exactly one media sender in order to
avoid reuse of nonces.</t>
      </section>
      <section anchor="sframe-ciphertext">
        <name>SFrame Ciphertext</name>
        <t>An SFrame ciphertext comprises an SFrame header followed by the output of an
Authenticated Encryption with Associated Data (AEAD) encryption of the plaintext <xref target="RFC5116"/>, with the header provided as additional
authenticated data (AAD).</t>
        <t>The SFrame header is a variable-length structure described in detail in
<xref target="sframe-header"/>.  The structure of the encrypted data and authentication tag
are determined by the AEAD algorithm in use.</t>
        <figure anchor="sframe-ciphertext-struct">
          <name>Structure of an SFrame Ciphertext</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="320" width="512" viewBox="0 0 512 320" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,64 L 8,304" fill="none" stroke="black"/>
                <path d="M 32,32 L 32,256" fill="none" stroke="black"/>
                <path d="M 48,32 L 48,64" fill="none" stroke="black"/>
                <path d="M 88,32 L 88,64" fill="none" stroke="black"/>
                <path d="M 104,32 L 104,64" fill="none" stroke="black"/>
                <path d="M 144,32 L 144,64" fill="none" stroke="black"/>
                <path d="M 312,32 L 312,64" fill="none" stroke="black"/>
                <path d="M 480,32 L 480,256" fill="none" stroke="black"/>
                <path d="M 504,32 L 504,304" fill="none" stroke="black"/>
                <path d="M 32,32 L 504,32" fill="none" stroke="black"/>
                <path d="M 8,64 L 480,64" fill="none" stroke="black"/>
                <path d="M 8,224 L 504,224" fill="none" stroke="black"/>
                <path d="M 32,256 L 480,256" fill="none" stroke="black"/>
                <path d="M 8,304 L 32,304" fill="none" stroke="black"/>
                <path d="M 480,304 L 504,304" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="496,224 484,218.4 484,229.6" fill="black" transform="rotate(180,488,224)"/>
                <polygon class="arrowhead" points="496,32 484,26.4 484,37.6" fill="black" transform="rotate(180,488,32)"/>
                <polygon class="arrowhead" points="32,224 20,218.4 20,229.6" fill="black" transform="rotate(0,24,224)"/>
                <polygon class="arrowhead" points="32,64 20,58.4 20,69.6" fill="black" transform="rotate(0,24,64)"/>
                <g class="text">
                  <text x="40" y="52">K</text>
                  <text x="68" y="52">KLEN</text>
                  <text x="96" y="52">C</text>
                  <text x="124" y="52">CLEN</text>
                  <text x="216" y="52">Key</text>
                  <text x="244" y="52">ID</text>
                  <text x="392" y="52">Counter</text>
                  <text x="224" y="148">Encrypted</text>
                  <text x="284" y="148">Data</text>
                  <text x="228" y="244">Authentication</text>
                  <text x="304" y="244">Tag</text>
                  <text x="80" y="308">Encrypted</text>
                  <text x="152" y="308">Portion</text>
                  <text x="352" y="308">Authenticated</text>
                  <text x="440" y="308">Portion</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
   +-+----+-+----+--------------------+--------------------+<-+
   |K|KLEN|C|CLEN|       Key ID       |      Counter       |  |
+->+-+----+-+----+--------------------+--------------------+  |
|  |                                                       |  |
|  |                                                       |  |
|  |                                                       |  |
|  |                                                       |  |
|  |                   Encrypted Data                      |  |
|  |                                                       |  |
|  |                                                       |  |
|  |                                                       |  |
|  |                                                       |  |
+->+-------------------------------------------------------+<-+
|  |                 Authentication Tag                    |  |
|  +-------------------------------------------------------+  |
|                                                             |
|                                                             |
+--- Encrypted Portion               Authenticated Portion ---+
]]></artwork>
          </artset>
        </figure>
        <t>When SFrame is applied per packet, the payload of each packet will be an SFrame
ciphertext.  When SFrame is applied per frame, the SFrame ciphertext
representing an encrypted frame will span several packets, with the header
appearing in the first packet and the authentication tag in the last packet.
It is the responsibility of the application to reassemble an encrypted frame from
individual packets, accounting for packet loss and reordering as necessary.</t>
      </section>
      <section anchor="sframe-header">
        <name>SFrame Header</name>
        <t>The SFrame header specifies two values from which encryption parameters are
derived:</t>
        <ul spacing="normal">
          <li>
            <t>A Key ID (KID) that determines which encryption key should be used</t>
          </li>
          <li>
            <t>A Counter (CTR) that is used to construct the nonce for the encryption</t>
          </li>
        </ul>
        <t>Applications <bcp14>MUST</bcp14> ensure that each (KID, CTR) combination is used for exactly
one SFrame encryption operation. A typical approach to achieve this guarantee is
outlined in <xref target="header-value-uniqueness"/>.</t>
        <figure anchor="fig-sframe-header">
          <name>SFrame Header</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="160" width="352" viewBox="0 0 352 160" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,112 L 8,144" fill="none" stroke="black"/>
                <path d="M 24,112 L 24,144" fill="none" stroke="black"/>
                <path d="M 72,112 L 72,144" fill="none" stroke="black"/>
                <path d="M 88,112 L 88,144" fill="none" stroke="black"/>
                <path d="M 136,112 L 136,144" fill="none" stroke="black"/>
                <path d="M 240,112 L 240,144" fill="none" stroke="black"/>
                <path d="M 344,112 L 344,144" fill="none" stroke="black"/>
                <path d="M 24,64 L 56,64" fill="none" stroke="black"/>
                <path d="M 88,64 L 120,64" fill="none" stroke="black"/>
                <path d="M 8,112 L 344,112" fill="none" stroke="black"/>
                <path d="M 8,144 L 344,144" fill="none" stroke="black"/>
                <path d="M 24,64 C 15.16936,64 8,71.16936 8,80" fill="none" stroke="black"/>
                <path d="M 56,64 C 64.83064,64 72,56.83064 72,48" fill="none" stroke="black"/>
                <path d="M 88,64 C 79.16936,64 72,56.83064 72,48" fill="none" stroke="black"/>
                <path d="M 120,64 C 128.83064,64 136,71.16936 136,80" fill="none" stroke="black"/>
                <g class="text">
                  <text x="52" y="36">Config</text>
                  <text x="100" y="36">Byte</text>
                  <text x="16" y="100">0</text>
                  <text x="32" y="100">1</text>
                  <text x="48" y="100">2</text>
                  <text x="64" y="100">3</text>
                  <text x="80" y="100">4</text>
                  <text x="96" y="100">5</text>
                  <text x="112" y="100">6</text>
                  <text x="128" y="100">7</text>
                  <text x="16" y="132">X</text>
                  <text x="48" y="132">K</text>
                  <text x="80" y="132">Y</text>
                  <text x="112" y="132">C</text>
                  <text x="188" y="132">KID...</text>
                  <text x="292" y="132">CTR...</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
   Config Byte
        |
 .-----' '-----.
|               |
 0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+------------+------------+
|X|  K  |Y|  C  |   KID...   |   CTR...   |
+-+-+-+-+-+-+-+-+------------+------------+
]]></artwork>
          </artset>
        </figure>
        <t>The SFrame header has the overall structure shown in <xref target="fig-sframe-header"/>.  The
first byte is a "config byte", with the following fields:</t>
        <dl>
          <dt>Extended KID Flag (X, 1 bit):</dt>
          <dd>
            <t>Indicates if the K field contains the KID or the KID length.</t>
          </dd>
          <dt>KID or KID Length (K, 3 bits):</dt>
          <dd>
            <t>If the X flag is set to 0, this field contains the KID.  If the X flag is
set to 1, then it contains the length of the KID, minus one.</t>
          </dd>
          <dt>Extended CTR Flag (Y, 1 bit):</dt>
          <dd>
            <t>Indicates if the C field contains the CTR or the CTR length.</t>
          </dd>
          <dt>CTR or CTR Length (C, 3 bits):</dt>
          <dd>
            <t>This field contains the CTR if the Y flag is set to 0, or the CTR
length, minus one, if set to 1.</t>
          </dd>
        </dl>
        <t>The KID and CTR fields are encoded as compact unsigned integers in
network (big-endian) byte order.  If the value of one of these fields is in the
range 0-7, then the value is carried in the corresponding bits of the config
byte (K or C) and the corresponding flag (X or Y) is set to zero.  Otherwise,
the value <bcp14>MUST</bcp14> be encoded with the minimum number of bytes required and
appended after the config byte, with the KID first and CTR second.
The header field (K or C) is set to the number of bytes in the encoded value,
minus one.  The value 000 represents a length of 1, 001 a length of 2, etc.
This allows a 3-bit length field to represent the value lengths 1-8.</t>
        <t>The SFrame header can thus take one of the four forms shown in
<xref target="fig-sframe-header-cases"/>, depending on which of the X and Y flags are set.</t>
        <figure anchor="fig-sframe-header-cases">
          <name>Forms of Encoded SFrame Header</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="336" width="544" viewBox="0 0 544 336" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,48 L 8,80" fill="none" stroke="black"/>
                <path d="M 8,128 L 8,160" fill="none" stroke="black"/>
                <path d="M 8,208 L 8,240" fill="none" stroke="black"/>
                <path d="M 8,288 L 8,320" fill="none" stroke="black"/>
                <path d="M 24,48 L 24,80" fill="none" stroke="black"/>
                <path d="M 24,128 L 24,160" fill="none" stroke="black"/>
                <path d="M 24,208 L 24,240" fill="none" stroke="black"/>
                <path d="M 24,288 L 24,320" fill="none" stroke="black"/>
                <path d="M 72,48 L 72,80" fill="none" stroke="black"/>
                <path d="M 72,128 L 72,160" fill="none" stroke="black"/>
                <path d="M 72,192 L 72,240" fill="none" stroke="black"/>
                <path d="M 72,272 L 72,320" fill="none" stroke="black"/>
                <path d="M 88,48 L 88,80" fill="none" stroke="black"/>
                <path d="M 88,128 L 88,160" fill="none" stroke="black"/>
                <path d="M 88,208 L 88,240" fill="none" stroke="black"/>
                <path d="M 88,288 L 88,320" fill="none" stroke="black"/>
                <path d="M 136,48 L 136,80" fill="none" stroke="black"/>
                <path d="M 136,128 L 136,160" fill="none" stroke="black"/>
                <path d="M 136,208 L 136,240" fill="none" stroke="black"/>
                <path d="M 136,288 L 136,320" fill="none" stroke="black"/>
                <path d="M 336,128 L 336,160" fill="none" stroke="black"/>
                <path d="M 336,208 L 336,240" fill="none" stroke="black"/>
                <path d="M 336,288 L 336,320" fill="none" stroke="black"/>
                <path d="M 536,288 L 536,320" fill="none" stroke="black"/>
                <path d="M 8,48 L 136,48" fill="none" stroke="black"/>
                <path d="M 8,80 L 136,80" fill="none" stroke="black"/>
                <path d="M 8,128 L 336,128" fill="none" stroke="black"/>
                <path d="M 8,160 L 336,160" fill="none" stroke="black"/>
                <path d="M 8,208 L 336,208" fill="none" stroke="black"/>
                <path d="M 8,240 L 336,240" fill="none" stroke="black"/>
                <path d="M 8,288 L 536,288" fill="none" stroke="black"/>
                <path d="M 8,320 L 536,320" fill="none" stroke="black"/>
                <g class="text">
                  <text x="16" y="36">KID</text>
                  <text x="40" y="36">&lt;</text>
                  <text x="60" y="36">8,</text>
                  <text x="88" y="36">CTR</text>
                  <text x="112" y="36">&lt;</text>
                  <text x="132" y="36">8:</text>
                  <text x="16" y="68">0</text>
                  <text x="48" y="68">KID</text>
                  <text x="80" y="68">0</text>
                  <text x="112" y="68">CTR</text>
                  <text x="16" y="116">KID</text>
                  <text x="40" y="116">&lt;</text>
                  <text x="60" y="116">8,</text>
                  <text x="88" y="116">CTR</text>
                  <text x="116" y="116">&gt;=</text>
                  <text x="140" y="116">8:</text>
                  <text x="16" y="148">0</text>
                  <text x="48" y="148">KID</text>
                  <text x="80" y="148">1</text>
                  <text x="108" y="148">CLEN</text>
                  <text x="180" y="148">CTR...</text>
                  <text x="264" y="148">(length=CLEN)</text>
                  <text x="16" y="196">KID</text>
                  <text x="44" y="196">&gt;=</text>
                  <text x="64" y="196">8</text>
                  <text x="96" y="196">CTR</text>
                  <text x="120" y="196">&lt;</text>
                  <text x="140" y="196">8:</text>
                  <text x="16" y="228">1</text>
                  <text x="44" y="228">KLEN</text>
                  <text x="80" y="228">0</text>
                  <text x="112" y="228">CTR</text>
                  <text x="180" y="228">KID...</text>
                  <text x="264" y="228">(length=KLEN)</text>
                  <text x="16" y="276">KID</text>
                  <text x="44" y="276">&gt;=</text>
                  <text x="64" y="276">8</text>
                  <text x="96" y="276">CTR</text>
                  <text x="124" y="276">&gt;=</text>
                  <text x="148" y="276">8:</text>
                  <text x="16" y="308">1</text>
                  <text x="44" y="308">KLEN</text>
                  <text x="80" y="308">1</text>
                  <text x="108" y="308">CLEN</text>
                  <text x="180" y="308">KID...</text>
                  <text x="264" y="308">(length=KLEN)</text>
                  <text x="380" y="308">CTR...</text>
                  <text x="464" y="308">(length=CLEN)</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
KID < 8, CTR < 8:
+-+-----+-+-----+
|0| KID |0| CTR |
+-+-----+-+-----+

KID < 8, CTR >= 8:
+-+-----+-+-----+------------------------+
|0| KID |1|CLEN |  CTR... (length=CLEN)  |
+-+-----+-+-----+------------------------+

KID >= 8, CTR < 8:
+-+-----+-+-----+------------------------+
|1|KLEN |0| CTR |  KID... (length=KLEN)  |
+-+-----+-+-----+------------------------+

KID >= 8, CTR >= 8:
+-+-----+-+-----+------------------------+------------------------+
|1|KLEN |1|CLEN |  KID... (length=KLEN)  |  CTR... (length=CLEN)  |
+-+-----+-+-----+------------------------+------------------------+
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="encryption-schema">
        <name>Encryption Schema</name>
        <t>SFrame encryption uses an AEAD encryption algorithm and hash function defined by
the cipher suite in use (see <xref target="cipher-suites"/>).  We will refer to the following
aspects of the AEAD and the hash algorithm below:</t>
        <ul spacing="normal">
          <li>
            <t><tt>AEAD.Encrypt</tt> and <tt>AEAD.Decrypt</tt> - The encryption and decryption functions
for the AEAD.  We follow the convention of RFC 5116 <xref target="RFC5116"/> and consider
the authentication tag part of the ciphertext produced by <tt>AEAD.Encrypt</tt> (as
opposed to a separate field as in SRTP <xref target="RFC3711"/>).</t>
          </li>
          <li>
            <t><tt>AEAD.Nk</tt> - The size in bytes of a key for the encryption algorithm</t>
          </li>
          <li>
            <t><tt>AEAD.Nn</tt> - The size in bytes of a nonce for the encryption algorithm</t>
          </li>
          <li>
            <t><tt>AEAD.Nt</tt> - The overhead in bytes of the encryption algorithm (typically the
size of a "tag" that is added to the plaintext)</t>
          </li>
          <li>
            <t><tt>AEAD.Nka</tt> - For cipher suites using the compound AEAD described in
<xref target="aes-ctr-with-sha2"/>, the size in bytes of a key for the underlying encryption
algorithm</t>
          </li>
          <li>
            <t><tt>Hash.Nh</tt> - The size in bytes of the output of the hash function</t>
          </li>
        </ul>
        <section anchor="key-selection">
          <name>Key Selection</name>
          <t>Each SFrame encryption or decryption operation is premised on a single secret
<tt>base_key</tt>, which is labeled with an integer KID value signaled in the SFrame
header.</t>
          <t>The sender and receivers need to agree on which <tt>base_key</tt> should be used for a given
KID.  Moreover, senders and receivers need to agree on whether a <tt>base_key</tt> will be used
for encryption or decryption only. The process for provisioning <tt>base_key</tt> values and their KID
values is beyond the scope of this specification, but its security properties will
bound the assurances that SFrame provides.  For example, if SFrame is used to
provide E2E security against intermediary media nodes, then SFrame keys need to
be negotiated in a way that does not make them accessible to these intermediaries.</t>
          <t>For each known KID value, the client stores the corresponding symmetric key
<tt>base_key</tt>.  For keys that can be used for encryption, the client also stores
the next CTR value to be used when encrypting (initially 0).</t>
          <t>When encrypting a plaintext, the application specifies which KID is to be used,
and the CTR value is incremented after successful encryption.  When decrypting,
the <tt>base_key</tt> for decryption is selected from the available keys using the KID
value in the SFrame header.</t>
          <t>A given <tt>base_key</tt> <bcp14>MUST NOT</bcp14> be used for encryption by multiple senders.  Such reuse
would result in multiple encrypted frames being generated with the same (key,
nonce) pair, which harms the protections provided by many AEAD algorithms.
Implementations <bcp14>MUST</bcp14> mark each <tt>base_key</tt> as usable for encryption or decryption,
never both.</t>
          <t>Note that the set of available keys might change over the lifetime of a
real-time session.  In such cases, the client will need to manage key usage to
avoid media loss due to a key being used to encrypt before all receivers are
able to use it to decrypt.  For example, an application may make decryption-only
keys available immediately, but delay the use of keys for encryption until (a)
all receivers have acknowledged receipt of the new key, or (b) a timeout expires.</t>
        </section>
        <section anchor="key-derivation">
          <name>Key Derivation</name>
          <t>SFrame encryption and decryption use a key and salt derived from the <tt>base_key</tt>
associated with a KID.  Given a <tt>base_key</tt> value, the key and salt are derived
using HMAC-based Key Derivation Function (HKDF) <xref target="RFC5869"/> as follows:</t>
          <sourcecode type="pseudocode"><![CDATA[
def derive_key_salt(KID, base_key):
  sframe_secret = HKDF-Extract("", base_key)

  sframe_key_label = "SFrame 1.0 Secret key " + KID + cipher_suite
  sframe_key = HKDF-Expand(sframe_secret, sframe_key_label, AEAD.Nk)

  sframe_salt_label = "SFrame 1.0 Secret salt " + KID + cipher_suite
  sframe_salt = HKDF-Expand(sframe_secret, sframe_salt_label, AEAD.Nn)

  return sframe_key, sframe_salt
]]></sourcecode>
          <t>In the derivation of <tt>sframe_secret</tt>:</t>
          <ul spacing="normal">
            <li>
              <t>The <tt>+</tt> operator represents concatenation of byte strings.</t>
            </li>
            <li>
              <t>The KID value is encoded as an 8-byte big-endian integer, not the compressed
form used in the SFrame header.</t>
            </li>
            <li>
              <t>The <tt>cipher_suite</tt> value is a 2-byte big-endian integer representing the
cipher suite in use (see <xref target="sframe-cipher-suites"/>).</t>
            </li>
          </ul>
          <t>The hash function used for HKDF is determined by the cipher suite in use.</t>
        </section>
        <section anchor="encryption">
          <name>Encryption</name>
          <t>SFrame encryption uses the AEAD encryption algorithm for the cipher suite in use.
The key for the encryption is the <tt>sframe_key</tt>.  The nonce is formed by first XORing
the <tt>sframe_salt</tt> with the current CTR value, and then encoding the result as a big-endian integer of
length <tt>AEAD.Nn</tt>.</t>
          <t>The encryptor forms an SFrame header using the CTR and KID values provided.
The encoded header is provided as AAD to the AEAD encryption operation, together
with application-provided metadata about the encrypted media (see <xref target="metadata"/>).</t>
          <sourcecode type="pseudocode"><![CDATA[
def encrypt(CTR, KID, metadata, plaintext):
  sframe_key, sframe_salt = key_store[KID]

  # encode_big_endian(x, n) produces an n-byte string encoding the
  # integer x in big-endian byte order.
  ctr = encode_big_endian(CTR, AEAD.Nn)
  nonce = xor(sframe_salt, CTR)

  # encode_sframe_header produces a byte string encoding the
  # provided KID and CTR values into an SFrame header.
  header = encode_sframe_header(CTR, KID)
  aad = header + metadata

  ciphertext = AEAD.Encrypt(sframe_key, nonce, aad, plaintext)
  return header + ciphertext
]]></sourcecode>
          <t>For example, the metadata input to encryption allows for frame metadata to be
authenticated when SFrame is applied per frame.  After encoding the frame and
before packetizing it, the necessary media metadata will be moved out of the
encoded frame buffer to be sent in some channel visible to the SFU (e.g., an
RTP header extension).</t>
          <figure>
            <name>Encrypting an SFrame Ciphertext</name>
            <artset>
              <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="608" width="416" viewBox="0 0 416 608" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                  <path d="M 40,224 L 40,480" fill="none" stroke="black"/>
                  <path d="M 64,176 L 64,272" fill="none" stroke="black"/>
                  <path d="M 96,160 L 96,288" fill="none" stroke="black"/>
                  <path d="M 128,320 L 128,352" fill="none" stroke="black"/>
                  <path d="M 144,160 L 144,288" fill="none" stroke="black"/>
                  <path d="M 168,176 L 168,208" fill="none" stroke="black"/>
                  <path d="M 168,464 L 168,592" fill="none" stroke="black"/>
                  <path d="M 192,352 L 192,384" fill="none" stroke="black"/>
                  <path d="M 264,320 L 264,352" fill="none" stroke="black"/>
                  <path d="M 280,32 L 280,128" fill="none" stroke="black"/>
                  <path d="M 296,464 L 296,592" fill="none" stroke="black"/>
                  <path d="M 320,208 L 320,240" fill="none" stroke="black"/>
                  <path d="M 344,128 L 344,400" fill="none" stroke="black"/>
                  <path d="M 344,432 L 344,528" fill="none" stroke="black"/>
                  <path d="M 408,32 L 408,128" fill="none" stroke="black"/>
                  <path d="M 280,32 L 408,32" fill="none" stroke="black"/>
                  <path d="M 280,128 L 408,128" fill="none" stroke="black"/>
                  <path d="M 96,160 L 144,160" fill="none" stroke="black"/>
                  <path d="M 144,176 L 192,176" fill="none" stroke="black"/>
                  <path d="M 296,176 L 336,176" fill="none" stroke="black"/>
                  <path d="M 168,208 L 192,208" fill="none" stroke="black"/>
                  <path d="M 304,208 L 320,208" fill="none" stroke="black"/>
                  <path d="M 40,224 L 64,224" fill="none" stroke="black"/>
                  <path d="M 96,224 L 144,224" fill="none" stroke="black"/>
                  <path d="M 144,240 L 336,240" fill="none" stroke="black"/>
                  <path d="M 96,288 L 144,288" fill="none" stroke="black"/>
                  <path d="M 128,320 L 264,320" fill="none" stroke="black"/>
                  <path d="M 128,352 L 264,352" fill="none" stroke="black"/>
                  <path d="M 40,384 L 336,384" fill="none" stroke="black"/>
                  <path d="M 168,464 L 296,464" fill="none" stroke="black"/>
                  <path d="M 40,480 L 160,480" fill="none" stroke="black"/>
                  <path d="M 168,496 L 296,496" fill="none" stroke="black"/>
                  <path d="M 304,528 L 344,528" fill="none" stroke="black"/>
                  <path d="M 168,592 L 296,592" fill="none" stroke="black"/>
                  <path d="M 80,160 C 71.16936,160 64,167.16936 64,176" fill="none" stroke="black"/>
                  <path d="M 80,288 C 71.16936,288 64,280.83064 64,272" fill="none" stroke="black"/>
                  <polygon class="arrowhead" points="344,384 332,378.4 332,389.6" fill="black" transform="rotate(0,336,384)"/>
                  <polygon class="arrowhead" points="344,240 332,234.4 332,245.6" fill="black" transform="rotate(0,336,240)"/>
                  <polygon class="arrowhead" points="344,176 332,170.4 332,181.6" fill="black" transform="rotate(0,336,176)"/>
                  <polygon class="arrowhead" points="312,528 300,522.4 300,533.6" fill="black" transform="rotate(180,304,528)"/>
                  <polygon class="arrowhead" points="200,208 188,202.4 188,213.6" fill="black" transform="rotate(0,192,208)"/>
                  <polygon class="arrowhead" points="200,176 188,170.4 188,181.6" fill="black" transform="rotate(0,192,176)"/>
                  <polygon class="arrowhead" points="168,480 156,474.4 156,485.6" fill="black" transform="rotate(0,160,480)"/>
                  <g class="text">
                    <text x="344" y="84">plaintext</text>
                    <text x="244" y="180">sframe_key</text>
                    <text x="368" y="180">Key</text>
                    <text x="28" y="196">Header</text>
                    <text x="120" y="196">KID</text>
                    <text x="248" y="212">sframe_salt</text>
                    <text x="376" y="244">Nonce</text>
                    <text x="120" y="260">CTR</text>
                    <text x="196" y="340">metadata</text>
                    <text x="368" y="388">AAD</text>
                    <text x="348" y="420">AEAD.Encrypt</text>
                    <text x="188" y="452">SFrame</text>
                    <text x="260" y="452">Ciphertext</text>
                    <text x="204" y="484">SFrame</text>
                    <text x="260" y="484">Header</text>
                    <text x="236" y="548">ciphertext</text>
                  </g>
                </svg>
              </artwork>
              <artwork type="ascii-art"><![CDATA[
                                  +---------------+
                                  |               |
                                  |               |
                                  |   plaintext   |
                                  |               |
                                  |               |
                                  +-------+-------+
                                          |
        .- +-----+                        |
       |   |     +--+--> sframe_key ----->| Key
Header |   | KID |  |                     |
       |   |     |  +--> sframe_salt --+  |
    +--+   +-----+                     |  |
    |  |   |     +---------------------+->| Nonce
    |  |   | CTR |                        |
    |  |   |     |                        |
    |   '- +-----+                        |
    |                                     |
    |          +----------------+         |
    |          |    metadata    |         |
    |          +-------+--------+         |
    |                  |                  |
    +------------------+----------------->| AAD
    |                                     |
    |                                AEAD.Encrypt
    |                                     |
    |               SFrame Ciphertext     |
    |               +---------------+     |
    +-------------->| SFrame Header |     |
                    +---------------+     |
                    |               |     |
                    |               |<----+
                    |   ciphertext  |
                    |               |
                    |               |
                    +---------------+
]]></artwork>
            </artset>
          </figure>
        </section>
        <section anchor="decryption">
          <name>Decryption</name>
          <t>Before decrypting, a receiver needs to assemble a full SFrame ciphertext. When
an SFrame ciphertext is fragmented into multiple parts for transport (e.g.,
a whole encrypted frame sent in multiple SRTP packets), the receiving client
collects all the fragments of the ciphertext, using appropriate sequencing
and start/end markers in the transport. Once all of the required fragments are
available, the client reassembles them into the SFrame ciphertext and passes
the ciphertext to SFrame for decryption.</t>
          <t>The KID field in the SFrame header is used to find the right key and salt for
the encrypted frame, and the CTR field is used to construct the nonce. The SFrame
decryption procedure is as follows:</t>
          <sourcecode type="pseudocode"><![CDATA[
def decrypt(metadata, sframe_ciphertext):
  KID, CTR, header, ciphertext = parse_ciphertext(sframe_ciphertext)

  sframe_key, sframe_salt = key_store[KID]

  ctr = encode_big_endian(CTR, AEAD.Nn)
  nonce = xor(sframe_salt, ctr)
  aad = header + metadata

  return AEAD.Decrypt(sframe_key, nonce, aad, ciphertext)
]]></sourcecode>
          <t>If a ciphertext fails to decrypt because there is no key available for the KID
in the SFrame header, the client <bcp14>MAY</bcp14> buffer the ciphertext and retry decryption
once a key with that KID is received.  If a ciphertext fails to decrypt for any
other reason, the client <bcp14>MUST</bcp14> discard the ciphertext. Invalid ciphertexts <bcp14>SHOULD</bcp14> be
discarded in a way that is indistinguishable (to an external observer) from having
processed a valid ciphertext.  In other words, the SFrame decrypt operation
should take the same amount of time regardless of whether decryption succeeds or fails.</t>
          <figure>
            <name>Decrypting an SFrame Ciphertext</name>
            <artset>
              <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="640" width="384" viewBox="0 0 384 640" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                  <path d="M 8,64 L 8,432" fill="none" stroke="black"/>
                  <path d="M 32,224 L 32,320" fill="none" stroke="black"/>
                  <path d="M 64,208 L 64,336" fill="none" stroke="black"/>
                  <path d="M 96,368 L 96,400" fill="none" stroke="black"/>
                  <path d="M 112,208 L 112,336" fill="none" stroke="black"/>
                  <path d="M 136,48 L 136,176" fill="none" stroke="black"/>
                  <path d="M 136,224 L 136,256" fill="none" stroke="black"/>
                  <path d="M 160,400 L 160,432" fill="none" stroke="black"/>
                  <path d="M 232,368 L 232,400" fill="none" stroke="black"/>
                  <path d="M 248,512 L 248,608" fill="none" stroke="black"/>
                  <path d="M 264,48 L 264,176" fill="none" stroke="black"/>
                  <path d="M 288,256 L 288,288" fill="none" stroke="black"/>
                  <path d="M 312,112 L 312,448" fill="none" stroke="black"/>
                  <path d="M 312,496 L 312,504" fill="none" stroke="black"/>
                  <path d="M 376,512 L 376,608" fill="none" stroke="black"/>
                  <path d="M 136,48 L 264,48" fill="none" stroke="black"/>
                  <path d="M 8,64 L 128,64" fill="none" stroke="black"/>
                  <path d="M 136,80 L 264,80" fill="none" stroke="black"/>
                  <path d="M 272,112 L 312,112" fill="none" stroke="black"/>
                  <path d="M 136,176 L 264,176" fill="none" stroke="black"/>
                  <path d="M 64,208 L 112,208" fill="none" stroke="black"/>
                  <path d="M 112,224 L 160,224" fill="none" stroke="black"/>
                  <path d="M 264,224 L 304,224" fill="none" stroke="black"/>
                  <path d="M 136,256 L 160,256" fill="none" stroke="black"/>
                  <path d="M 272,256 L 288,256" fill="none" stroke="black"/>
                  <path d="M 8,272 L 24,272" fill="none" stroke="black"/>
                  <path d="M 64,272 L 112,272" fill="none" stroke="black"/>
                  <path d="M 112,288 L 304,288" fill="none" stroke="black"/>
                  <path d="M 64,336 L 112,336" fill="none" stroke="black"/>
                  <path d="M 96,368 L 232,368" fill="none" stroke="black"/>
                  <path d="M 96,400 L 232,400" fill="none" stroke="black"/>
                  <path d="M 8,432 L 304,432" fill="none" stroke="black"/>
                  <path d="M 248,512 L 376,512" fill="none" stroke="black"/>
                  <path d="M 248,608 L 376,608" fill="none" stroke="black"/>
                  <path d="M 48,208 C 39.16936,208 32,215.16936 32,224" fill="none" stroke="black"/>
                  <path d="M 48,336 C 39.16936,336 32,328.83064 32,320" fill="none" stroke="black"/>
                  <polygon class="arrowhead" points="320,504 308,498.4 308,509.6" fill="black" transform="rotate(90,312,504)"/>
                  <polygon class="arrowhead" points="312,432 300,426.4 300,437.6" fill="black" transform="rotate(0,304,432)"/>
                  <polygon class="arrowhead" points="312,288 300,282.4 300,293.6" fill="black" transform="rotate(0,304,288)"/>
                  <polygon class="arrowhead" points="312,224 300,218.4 300,229.6" fill="black" transform="rotate(0,304,224)"/>
                  <polygon class="arrowhead" points="168,256 156,250.4 156,261.6" fill="black" transform="rotate(0,160,256)"/>
                  <polygon class="arrowhead" points="168,224 156,218.4 156,229.6" fill="black" transform="rotate(0,160,224)"/>
                  <polygon class="arrowhead" points="32,272 20,266.4 20,277.6" fill="black" transform="rotate(0,24,272)"/>
                  <g class="text">
                    <text x="156" y="36">SFrame</text>
                    <text x="228" y="36">Ciphertext</text>
                    <text x="172" y="68">SFrame</text>
                    <text x="228" y="68">Header</text>
                    <text x="204" y="132">ciphertext</text>
                    <text x="212" y="228">sframe_key</text>
                    <text x="336" y="228">Key</text>
                    <text x="88" y="244">KID</text>
                    <text x="216" y="260">sframe_salt</text>
                    <text x="344" y="292">Nonce</text>
                    <text x="88" y="308">CTR</text>
                    <text x="164" y="388">metadata</text>
                    <text x="336" y="436">AAD</text>
                    <text x="316" y="468">AEAD.Decrypt</text>
                    <text x="312" y="484">|</text>
                    <text x="312" y="564">plaintext</text>
                  </g>
                </svg>
              </artwork>
              <artwork type="ascii-art"><![CDATA[
                    SFrame Ciphertext
                    +---------------+
    +---------------| SFrame Header |
    |               +---------------+
    |               |               |
    |               |               |-----+
    |               |   ciphertext  |     |
    |               |               |     |
    |               |               |     |
    |               +---------------+     |
    |                                     |
    |   .- +-----+                        |
    |  |   |     +--+--> sframe_key ----->| Key
    |  |   | KID |  |                     |
    |  |   |     |  +--> sframe_salt --+  |
    +->+   +-----+                     |  |
    |  |   |     +---------------------+->| Nonce
    |  |   | CTR |                        |
    |  |   |     |                        |
    |   '- +-----+                        |
    |                                     |
    |          +----------------+         |
    |          |    metadata    |         |
    |          +-------+--------+         |
    |                  |                  |
    +------------------+----------------->| AAD
                                          |
                                     AEAD.Decrypt
                                          |
                                          V
                                  +---------------+
                                  |               |
                                  |               |
                                  |   plaintext   |
                                  |               |
                                  |               |
                                  +---------------+
]]></artwork>
            </artset>
          </figure>
        </section>
      </section>
      <section anchor="cipher-suites">
        <name>Cipher Suites</name>
        <t>Each SFrame session uses a single cipher suite that specifies the following
primitives:</t>
        <ul spacing="normal">
          <li>
            <t>A hash function used for key derivation</t>
          </li>
          <li>
            <t>An AEAD encryption algorithm <xref target="RFC5116"/> used for frame encryption, optionally
with a truncated authentication tag</t>
          </li>
        </ul>
        <t>This document defines the following cipher suites, with the constants defined in
<xref target="encryption-schema"/>:</t>
        <table anchor="cipher-suite-constants">
          <name>SFrame Cipher Suite Constants</name>
          <thead>
            <tr>
              <th align="left">Name</th>
              <th align="left">Nh</th>
              <th align="left">Nka</th>
              <th align="left">Nk</th>
              <th align="left">Nn</th>
              <th align="left">Nt</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <tt>AES_128_CTR_HMAC_SHA256_80</tt></td>
              <td align="left">32</td>
              <td align="left">16</td>
              <td align="left">48</td>
              <td align="left">12</td>
              <td align="left">10</td>
            </tr>
            <tr>
              <td align="left">
                <tt>AES_128_CTR_HMAC_SHA256_64</tt></td>
              <td align="left">32</td>
              <td align="left">16</td>
              <td align="left">48</td>
              <td align="left">12</td>
              <td align="left">8</td>
            </tr>
            <tr>
              <td align="left">
                <tt>AES_128_CTR_HMAC_SHA256_32</tt></td>
              <td align="left">32</td>
              <td align="left">16</td>
              <td align="left">48</td>
              <td align="left">12</td>
              <td align="left">4</td>
            </tr>
            <tr>
              <td align="left">
                <tt>AES_128_GCM_SHA256_128</tt></td>
              <td align="left">32</td>
              <td align="left">n/a</td>
              <td align="left">16</td>
              <td align="left">12</td>
              <td align="left">16</td>
            </tr>
            <tr>
              <td align="left">
                <tt>AES_256_GCM_SHA512_128</tt></td>
              <td align="left">64</td>
              <td align="left">n/a</td>
              <td align="left">32</td>
              <td align="left">12</td>
              <td align="left">16</td>
            </tr>
          </tbody>
        </table>
        <t>Numeric identifiers for these cipher suites are defined in the IANA registry
created in <xref target="sframe-cipher-suites"/>.</t>
        <t>In the suite names, the length of the authentication tag is indicated by
the last value: "_128" indicates a 128-bit tag, "_80" indicates
an 80-bit tag, "_64" indicates a 64-bit tag, and "_32" indicates a
32-bit tag.</t>
        <t>In a session that uses multiple media streams, different cipher suites might be
configured for different media streams.  For example, in order to conserve
bandwidth, a session might use a cipher suite with 80-bit tags for video frames
and another cipher suite with 32-bit tags for audio frames.</t>
        <section anchor="aes-ctr-with-sha2">
          <name>AES-CTR with SHA2</name>
          <t>In order to allow very short tag sizes, we define a synthetic AEAD function
using the authenticated counter mode of AES together with HMAC for
authentication.  We use an encrypt-then-MAC approach, as in SRTP <xref target="RFC3711"/>.</t>
          <t>Before encryption or decryption, encryption and authentication subkeys are
derived from the single AEAD key.  The overall length of the AEAD key is <tt>Nka +
Nh</tt>, where <tt>Nka</tt> represents the key size for the AES block cipher in use and <tt>Nh</tt>
represents the output size of the hash function  (as in <xref target="encryption-schema"/>).
The encryption subkey comprises the first <tt>Nka</tt> bytes and the authentication
subkey comprises the remaining <tt>Nh</tt> bytes.</t>
          <sourcecode type="pseudocode"><![CDATA[
def derive_subkeys(sframe_key):
  # The encryption key comprises the first Nka bytes
  enc_key = sframe_key[..Nka]

  # The authentication key comprises Nh remaining bytes
  auth_key = sframe_key[Nka..]

  return enc_key, auth_key
]]></sourcecode>
          <t>The AEAD encryption and decryption functions are then composed of individual
calls to the CTR encrypt function and HMAC.  The resulting MAC value is truncated
to a number of bytes <tt>Nt</tt> fixed by the cipher suite.</t>
          <sourcecode type="pseudocode"><![CDATA[
def truncate(tag, n):
  # Take the first `n` bytes of `tag`
  return tag[..n]

def compute_tag(auth_key, nonce, aad, ct):
  aad_len = encode_big_endian(len(aad), 8)
  ct_len = encode_big_endian(len(ct), 8)
  tag_len = encode_big_endian(Nt, 8)
  auth_data = aad_len + ct_len + tag_len + nonce + aad + ct
  tag = HMAC(auth_key, auth_data)
  return truncate(tag, Nt)

def AEAD.Encrypt(key, nonce, aad, pt):
  enc_key, auth_key = derive_subkeys(key)
  initial_counter = nonce + 0x00000000 # append four zero bytes
  ct = AES-CTR.Encrypt(enc_key, initial_counter, pt)
  tag = compute_tag(auth_key, nonce, aad, ct)
  return ct + tag

def AEAD.Decrypt(key, nonce, aad, ct):
  inner_ct, tag = split_ct(ct, tag_len)

  enc_key, auth_key = derive_subkeys(key)
  candidate_tag = compute_tag(auth_key, nonce, aad, inner_ct)
  if !constant_time_equal(tag, candidate_tag):
    raise Exception("Authentication Failure")

  initial_counter = nonce + 0x00000000 # append four zero bytes
  return AES-CTR.Decrypt(enc_key, initial_counter, inner_ct)
]]></sourcecode>
        </section>
      </section>
    </section>
    <section anchor="key-management">
      <name>Key Management</name>
      <t>SFrame must be integrated with an E2E key management framework to exchange and
rotate the keys used for SFrame encryption. The key management
framework provides the following functions:</t>
      <ul spacing="normal">
        <li>
          <t>Provisioning KID / <tt>base_key</tt> mappings to participating clients</t>
        </li>
        <li>
          <t>Updating the above data as clients join or leave</t>
        </li>
      </ul>
      <t>It is the responsibility of the application to provide the key management
framework, as described in <xref target="key-management-framework"/>.</t>
      <section anchor="sender-keys">
        <name>Sender Keys</name>
        <t>If the participants in a call have a preexisting E2E-secure channel, they can
use it to distribute SFrame keys.  Each client participating in a call generates
a fresh <tt>base_key</tt> value that it will use to encrypt media. The client then uses
the E2E-secure channel to send their encryption key to the other participants.</t>
        <t>In this scheme, it is assumed that receivers have a signal outside of SFrame for
which client has sent a given frame (e.g., an RTP synchronization source (SSRC)).  SFrame KID
values are then used to distinguish between versions of the sender's <tt>base_key</tt>.</t>
        <t>KID values in this scheme have two parts: a "key generation" and a "ratchet step".
Both are unsigned integers that begin at zero.  The key generation increments
each time the sender distributes a new key to receivers.  The ratchet step is
incremented each time the sender ratchets their key forward for forward secrecy:</t>
        <sourcecode type="pseudocode"><![CDATA[
base_key[i+1] = HKDF-Expand(
                  HKDF-Extract("", base_key[i]),
                  "SFrame 1.0 Ratchet", CipherSuite.Nh)
]]></sourcecode>
        <t>For compactness, we do not send the whole ratchet step.  Instead, we send only
its low-order <tt>R</tt> bits, where <tt>R</tt> is a value set by the application.  Different
senders may use different values of <tt>R</tt>, but each receiver of a given sender
needs to know what value of <tt>R</tt> is used by the sender so that they can recognize
when they need to ratchet (vs. expecting a new key).  <tt>R</tt> effectively defines a
reordering window, since no more than 2<sup><tt>R</tt></sup> ratchet steps can be
active at a given time.  The key generation is sent in the remaining <tt>64 - R</tt>
bits of the KID.</t>
        <sourcecode type="pseudocode"><![CDATA[
KID = (key_generation << R) + (ratchet_step % (1 << R))
]]></sourcecode>
        <figure anchor="sender-keys-kid">
          <name>Structure of a KID in the Sender Keys Scheme</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="112" width="280" viewBox="0 0 280 112" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,64 L 8,96" fill="none" stroke="black"/>
                <path d="M 152,64 L 152,96" fill="none" stroke="black"/>
                <path d="M 272,64 L 272,96" fill="none" stroke="black"/>
                <path d="M 16,48 L 144,48" fill="none" stroke="black"/>
                <path d="M 160,48 L 264,48" fill="none" stroke="black"/>
                <path d="M 8,64 L 272,64" fill="none" stroke="black"/>
                <path d="M 8,96 L 272,96" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="272,48 260,42.4 260,53.6" fill="black" transform="rotate(0,264,48)"/>
                <polygon class="arrowhead" points="168,48 156,42.4 156,53.6" fill="black" transform="rotate(180,160,48)"/>
                <polygon class="arrowhead" points="152,48 140,42.4 140,53.6" fill="black" transform="rotate(0,144,48)"/>
                <polygon class="arrowhead" points="24,48 12,42.4 12,53.6" fill="black" transform="rotate(180,16,48)"/>
                <g class="text">
                  <text x="60" y="36">64-R</text>
                  <text x="100" y="36">bits</text>
                  <text x="192" y="36">R</text>
                  <text x="220" y="36">bits</text>
                  <text x="32" y="84">Key</text>
                  <text x="92" y="84">Generation</text>
                  <text x="192" y="84">Ratchet</text>
                  <text x="244" y="84">Step</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
     64-R bits         R bits
 <---------------> <------------>
+-----------------+--------------+
| Key Generation  | Ratchet Step |
+-----------------+--------------+
]]></artwork>
          </artset>
        </figure>
        <t>The sender signals such a ratchet step update by sending with a KID value in
which the ratchet step has been incremented.  A receiver who receives from a
sender with a new KID computes the new key as above.  The old key may be kept
for some time to allow for out-of-order delivery, but should be deleted
promptly.</t>
        <t>If a new participant joins in the middle of a session, they will need to receive
from each sender (a) the current sender key for that sender and (b) the current
KID value for the sender. Evicting a participant requires each sender to send
a fresh sender key to all receivers.</t>
        <t>It is the application's responsibility to decide when sender keys are updated.  A sender
key may be updated by sending a new <tt>base_key</tt> (updating the key generation) or
by hashing the current <tt>base_key</tt> (updating the ratchet step).  Ratcheting the
key forward is useful when adding new receivers to an SFrame-based interaction,
since it ensures that the new receivers can't decrypt any media encrypted before
they were added.  If a sender wishes to assure the opposite property when
removing a receiver (i.e., ensuring that the receiver can't decrypt media after
they are removed), then the sender will need to distribute a new sender key.</t>
      </section>
      <section anchor="mls">
        <name>MLS</name>
        <t>The Messaging Layer Security (MLS) protocol provides group authenticated key
exchange <xref target="MLS-ARCH"/> <xref target="MLS-PROTO"/>.  In
principle, it could be used to instantiate the sender key scheme above, but it
can also be used more efficiently directly.</t>
        <t>MLS creates a linear sequence of keys, each of which is shared among the members
of a group at a given point in time.  When a member joins or leaves the group, a
new key is produced that is known only to the augmented or reduced group.  Each
step in the lifetime of the group is known as an "epoch", and each member of the
group is assigned an "index" that is constant for the time they are in the
group.</t>
        <t>To generate keys and nonces for SFrame, we use the MLS exporter function to
generate a <tt>base_key</tt> value for each MLS epoch.  Each member of the group is
assigned a set of KID values so that each member has a unique <tt>sframe_key</tt> and
<tt>sframe_salt</tt> that it uses to encrypt with.  Senders may choose any KID value
within their assigned set of KID values, e.g., to allow a single sender to send
multiple, uncoordinated outbound media streams.</t>
        <sourcecode type="pseudocode"><![CDATA[
base_key = MLS-Exporter("SFrame 1.0 Base Key", "", AEAD.Nk)
]]></sourcecode>
        <t>For compactness, we do not send the whole epoch number.  Instead, we send only
its low-order <tt>E</tt> bits, where <tt>E</tt> is a value set by the application.  <tt>E</tt>
effectively defines a reordering window, since no more than 2<sup><tt>E</tt></sup>
epochs can be active at a given time.  To handle rollover of the epoch counter,
receivers <bcp14>MUST</bcp14> remove an old epoch when a new epoch with the same low-order
E bits is introduced.</t>
        <t>Let <tt>S</tt> be the number of bits required to encode a member index in the group,
i.e., the smallest value such that <tt>group_size &lt;= (1 &lt;&lt; S)</tt>.  The sender index
is encoded in the <tt>S</tt> bits above the epoch.  The remaining <tt>64 - S - E</tt> bits of
the KID value are a <tt>context</tt> value chosen by the sender (<tt>context</tt> value <tt>0</tt> will
produce the shortest encoded KID).</t>
        <sourcecode type="pseudocode"><![CDATA[
KID = (context << (S + E)) + (sender_index << E) + (epoch % (1 << E))
]]></sourcecode>
        <figure anchor="mls-kid">
          <name>Structure of a KID for an MLS Sender</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="112" width="264" viewBox="0 0 264 112" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,64 L 8,96" fill="none" stroke="black"/>
                <path d="M 120,64 L 120,96" fill="none" stroke="black"/>
                <path d="M 192,64 L 192,96" fill="none" stroke="black"/>
                <path d="M 256,64 L 256,96" fill="none" stroke="black"/>
                <path d="M 16,48 L 112,48" fill="none" stroke="black"/>
                <path d="M 128,48 L 184,48" fill="none" stroke="black"/>
                <path d="M 200,48 L 256,48" fill="none" stroke="black"/>
                <path d="M 8,64 L 256,64" fill="none" stroke="black"/>
                <path d="M 8,96 L 256,96" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="264,48 252,42.4 252,53.6" fill="black" transform="rotate(0,256,48)"/>
                <polygon class="arrowhead" points="208,48 196,42.4 196,53.6" fill="black" transform="rotate(180,200,48)"/>
                <polygon class="arrowhead" points="192,48 180,42.4 180,53.6" fill="black" transform="rotate(0,184,48)"/>
                <polygon class="arrowhead" points="136,48 124,42.4 124,53.6" fill="black" transform="rotate(180,128,48)"/>
                <polygon class="arrowhead" points="120,48 108,42.4 108,53.6" fill="black" transform="rotate(0,112,48)"/>
                <polygon class="arrowhead" points="24,48 12,42.4 12,53.6" fill="black" transform="rotate(180,16,48)"/>
                <g class="text">
                  <text x="44" y="36">64-S-E</text>
                  <text x="92" y="36">bits</text>
                  <text x="136" y="36">S</text>
                  <text x="164" y="36">bits</text>
                  <text x="208" y="36">E</text>
                  <text x="236" y="36">bits</text>
                  <text x="48" y="84">Context</text>
                  <text x="92" y="84">ID</text>
                  <text x="152" y="84">Index</text>
                  <text x="224" y="84">Epoch</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
  64-S-E bits   S bits   E bits
 <-----------> <------> <------>
+-------------+--------+-------+
| Context ID  | Index  | Epoch |
+-------------+--------+-------+
]]></artwork>
          </artset>
        </figure>
        <t>Once an SFrame stack has been provisioned with the <tt>sframe_epoch_secret</tt> for an
epoch, it can compute the required KID values on demand (as well as the
resulting SFrame keys/nonces derived from the <tt>base_key</tt> and KID) as it needs
to encrypt or decrypt for a given member.</t>
        <figure anchor="mls-evolution">
          <name>An Example Sequence of KIDs for an MLS-based SFrame Session (E=4; S=6, Allowing for 64 Group Members)</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="448" width="472" viewBox="0 0 472 448" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 80,48 L 80,416" fill="none" stroke="black"/>
                <path d="M 104,80 L 104,144" fill="none" stroke="black"/>
                <path d="M 104,192 L 104,224" fill="none" stroke="black"/>
                <path d="M 104,352 L 104,384" fill="none" stroke="black"/>
                <path d="M 216,272 L 216,304" fill="none" stroke="black"/>
                <path d="M 80,80 L 120,80" fill="none" stroke="black"/>
                <path d="M 200,80 L 224,80" fill="none" stroke="black"/>
                <path d="M 104,112 L 120,112" fill="none" stroke="black"/>
                <path d="M 200,112 L 224,112" fill="none" stroke="black"/>
                <path d="M 104,144 L 120,144" fill="none" stroke="black"/>
                <path d="M 208,144 L 224,144" fill="none" stroke="black"/>
                <path d="M 80,192 L 120,192" fill="none" stroke="black"/>
                <path d="M 200,192 L 224,192" fill="none" stroke="black"/>
                <path d="M 104,224 L 120,224" fill="none" stroke="black"/>
                <path d="M 200,224 L 224,224" fill="none" stroke="black"/>
                <path d="M 80,272 L 120,272" fill="none" stroke="black"/>
                <path d="M 200,272 L 240,272" fill="none" stroke="black"/>
                <path d="M 352,272 L 368,272" fill="none" stroke="black"/>
                <path d="M 216,304 L 240,304" fill="none" stroke="black"/>
                <path d="M 352,304 L 368,304" fill="none" stroke="black"/>
                <path d="M 80,352 L 120,352" fill="none" stroke="black"/>
                <path d="M 208,352 L 224,352" fill="none" stroke="black"/>
                <path d="M 104,384 L 120,384" fill="none" stroke="black"/>
                <path d="M 208,384 L 224,384" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="376,304 364,298.4 364,309.6" fill="black" transform="rotate(0,368,304)"/>
                <polygon class="arrowhead" points="376,272 364,266.4 364,277.6" fill="black" transform="rotate(0,368,272)"/>
                <polygon class="arrowhead" points="248,304 236,298.4 236,309.6" fill="black" transform="rotate(0,240,304)"/>
                <polygon class="arrowhead" points="248,272 236,266.4 236,277.6" fill="black" transform="rotate(0,240,272)"/>
                <polygon class="arrowhead" points="232,384 220,378.4 220,389.6" fill="black" transform="rotate(0,224,384)"/>
                <polygon class="arrowhead" points="232,352 220,346.4 220,357.6" fill="black" transform="rotate(0,224,352)"/>
                <polygon class="arrowhead" points="232,224 220,218.4 220,229.6" fill="black" transform="rotate(0,224,224)"/>
                <polygon class="arrowhead" points="232,192 220,186.4 220,197.6" fill="black" transform="rotate(0,224,192)"/>
                <polygon class="arrowhead" points="232,144 220,138.4 220,149.6" fill="black" transform="rotate(0,224,144)"/>
                <polygon class="arrowhead" points="232,112 220,106.4 220,117.6" fill="black" transform="rotate(0,224,112)"/>
                <polygon class="arrowhead" points="232,80 220,74.4 220,85.6" fill="black" transform="rotate(0,224,80)"/>
                <g class="text">
                  <text x="32" y="36">...</text>
                  <text x="24" y="84">Epoch</text>
                  <text x="60" y="84">14</text>
                  <text x="160" y="84">index=3</text>
                  <text x="248" y="84">KID</text>
                  <text x="272" y="84">=</text>
                  <text x="300" y="84">0x3e</text>
                  <text x="160" y="116">index=7</text>
                  <text x="248" y="116">KID</text>
                  <text x="272" y="116">=</text>
                  <text x="300" y="116">0x7e</text>
                  <text x="164" y="148">index=20</text>
                  <text x="248" y="148">KID</text>
                  <text x="272" y="148">=</text>
                  <text x="304" y="148">0x14e</text>
                  <text x="24" y="196">Epoch</text>
                  <text x="60" y="196">15</text>
                  <text x="160" y="196">index=3</text>
                  <text x="248" y="196">KID</text>
                  <text x="272" y="196">=</text>
                  <text x="300" y="196">0x3f</text>
                  <text x="160" y="228">index=5</text>
                  <text x="248" y="228">KID</text>
                  <text x="272" y="228">=</text>
                  <text x="300" y="228">0x5f</text>
                  <text x="24" y="276">Epoch</text>
                  <text x="60" y="276">16</text>
                  <text x="160" y="276">index=2</text>
                  <text x="280" y="276">context</text>
                  <text x="320" y="276">=</text>
                  <text x="336" y="276">2</text>
                  <text x="392" y="276">KID</text>
                  <text x="416" y="276">=</text>
                  <text x="448" y="276">0x820</text>
                  <text x="280" y="308">context</text>
                  <text x="320" y="308">=</text>
                  <text x="336" y="308">3</text>
                  <text x="392" y="308">KID</text>
                  <text x="416" y="308">=</text>
                  <text x="448" y="308">0xc20</text>
                  <text x="24" y="356">Epoch</text>
                  <text x="60" y="356">17</text>
                  <text x="164" y="356">index=33</text>
                  <text x="248" y="356">KID</text>
                  <text x="272" y="356">=</text>
                  <text x="304" y="356">0x211</text>
                  <text x="164" y="388">index=51</text>
                  <text x="248" y="388">KID</text>
                  <text x="272" y="388">=</text>
                  <text x="304" y="388">0x331</text>
                  <text x="32" y="436">...</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
  ...
         |
         |
Epoch 14 +--+-- index=3 ---> KID = 0x3e
         |  |
         |  +-- index=7 ---> KID = 0x7e
         |  |
         |  +-- index=20 --> KID = 0x14e
         |
         |
Epoch 15 +--+-- index=3 ---> KID = 0x3f
         |  |
         |  +-- index=5 ---> KID = 0x5f
         |
         |
Epoch 16 +----- index=2 --+--> context = 2 --> KID = 0x820
         |                |
         |                +--> context = 3 --> KID = 0xc20
         |
         |
Epoch 17 +--+-- index=33 --> KID = 0x211
         |  |
         |  +-- index=51 --> KID = 0x331
         |
         |
  ...
]]></artwork>
          </artset>
        </figure>
      </section>
    </section>
    <section anchor="media-considerations">
      <name>Media Considerations</name>
      <section anchor="selective-forwarding-units">
        <name>Selective Forwarding Units</name>
        <t>SFUs (e.g., those described in <xref section="3.7" sectionFormat="of" target="RFC7667"/>) receive the media streams from each participant and select which
ones should be forwarded to each of the other participants.  There are several
approaches for stream selection, but in general, the SFU needs to access
metadata associated with each frame and modify the RTP information of the incoming
packets when they are transmitted to the received participants.</t>
        <t>This section describes how these normal SFU modes of operation interact with the
E2EE provided by SFrame.</t>
        <section anchor="rtp-stream-reuse">
          <name>RTP Stream Reuse</name>
          <t>The SFU may choose to send only a certain number of streams based on the voice
activity of the participants. To avoid the overhead involved in establishing new
transport streams, the SFU may decide to reuse previously existing streams or
even pre-allocate a predefined number of streams and choose in each moment in
time which participant media will be sent through it.</t>
          <t>This means that in the same transport-level stream (e.g., an RTP stream defined
by either SSRC or Media Identification (MID)) may carry media from different
streams of different participants. Because each participant uses a different key
to encrypt their media, the receiver will be able to verify the sender of the
media within the RTP stream at any given point in time. Thus the receiver will
correctly associate the media with the sender indicated by the authenticated
SFrame KID value, irrespective of how the SFU transmits the media to the client.</t>
          <t>Note that in order to prevent impersonation by a malicious participant (not the
SFU), a mechanism based on digital signature would be required. SFrame does not
protect against such attacks.</t>
        </section>
        <section anchor="simulcast">
          <name>Simulcast</name>
          <t>When using simulcast, the same input image will produce N different encoded
frames (one per simulcast layer), which would be processed independently by the
frame encryptor and assigned an unique CTR value for each.</t>
        </section>
        <section anchor="scalable-video-coding-svc">
          <name>Scalable Video Coding (SVC)</name>
          <t>In both temporal and spatial scalability, the SFU may choose to drop layers in
order to match a certain bitrate or to forward specific media sizes or frames per
second. In order to support the SFU selectively removing layers, the sender <bcp14>MUST</bcp14>
encapsulate each layer in a different SFrame ciphertext.</t>
        </section>
      </section>
      <section anchor="video-key-frames">
        <name>Video Key Frames</name>
        <t>Forward security and post-compromise security require that the E2EE keys (base keys)
are updated any time a participant joins or leaves the call.</t>
        <t>The key exchange happens asynchronously and on a different path than the SFU signaling
and media. So it may happen that when a new participant joins the call and the
SFU side requests a key frame, the sender generates the E2EE frame
with a key that is not known by the receiver, so it will be discarded. When the sender
updates his sending key with the new key, it will send it in a non-key frame, so
the receiver will be able to decrypt it, but not decode it.</t>
        <t>The new receiver will then re-request a key frame, but due to sender and SFU
policies, that new key frame could take some time to be generated.</t>
        <t>If the sender sends a key frame after the new E2EE key is in use, the time
required for the new participant to display the video is minimized.</t>
        <t>Note that this issue does not arise for media streams that do not have
dependencies among frames, e.g., audio streams.  In these streams, each frame is
independently decodable, so a frame never depends on another frame that might be
on the other side of a key rotation.</t>
      </section>
      <section anchor="partial-decoding">
        <name>Partial Decoding</name>
        <t>Some codecs support partial decoding, where individual packets can be decoded
without waiting for the full frame to arrive.  When SFrame is applied per frame,
partial decoding is not possible because the decoder cannot access data until an entire
frame has arrived and has been decrypted.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="no-header-confidentiality">
        <name>No Header Confidentiality</name>
        <t>SFrame provides integrity protection to the SFrame header (the KID and
CTR values), but it does not provide confidentiality protection.  Parties that
can observe the SFrame header may learn, for example, which parties are sending
SFrame payloads (from KID values) and at what rates (from CTR values).  In cases
where SFrame is used for end-to-end security on top of hop-by-hop protections
(e.g., running over SRTP as described in <xref target="sframe-over-rtp"/>), the hop-by-hop security
mechanisms provide confidentiality protection of the SFrame header between hops.</t>
      </section>
      <section anchor="no-per-sender-authentication">
        <name>No Per-Sender Authentication</name>
        <t>SFrame does not provide per-sender authentication of media data.  Any sender in
a session can send media that will be associated with any other sender.  This is
because SFrame uses symmetric encryption to protect media data, so that any
receiver also has the keys required to encrypt packets for the sender.</t>
      </section>
      <section anchor="key-management-1">
        <name>Key Management</name>
        <t>The specifics of key management are beyond the scope of this document. However, every client
<bcp14>SHOULD</bcp14> change their keys when new clients join or leave the call for forward
secrecy and post-compromise security.</t>
      </section>
      <section anchor="replay">
        <name>Replay</name>
        <t>The handling of replay is out of the scope of this document. However, senders
<bcp14>MUST</bcp14> reject requests to encrypt multiple times with the same key and nonce
since several AEAD algorithms fail badly in such cases (see, e.g., <xref section="5.1.1" sectionFormat="of" target="RFC5116"/>).</t>
      </section>
      <section anchor="risks-due-to-short-tags">
        <name>Risks Due to Short Tags</name>
        <t>The SFrame cipher suites based on AES-CTR allow for the use of short
authentication tags, which bring a higher risk that an attacker will be
able to cause an SFrame receiver to accept an SFrame ciphertext of the
attacker's choosing.</t>
        <t>Assuming that the authentication properties of the cipher suite are robust, the
only attack that an attacker can mount is an attempt to find an acceptable
(ciphertext, tag) combination through brute force.  Such a brute-force attack
will have an expected success rate of the following form:</t>
        <t><tt>
attacker_success_rate = attempts_per_second / 2^(8*Nt)
</tt></t>
        <t>For example, a gigabit Ethernet connection is able to transmit roughly 2<sup>20</sup>
packets per second.  If an attacker saturated such a link with guesses against a
32-bit authentication tag (<tt>Nt=4</tt>), then the attacker would succeed on average
roughly once every 2<sup>12</sup> seconds, or about once an hour.</t>
        <t>In a typical SFrame usage in a real-time media application, there are a few
approaches to mitigating this risk:</t>
        <ul spacing="normal">
          <li>
            <t>Receivers only accept SFrame ciphertexts over HBH-secure channels (e.g., SRTP
security associations or QUIC connections).  If this is the case, only an
entity that is part of such a channel can mount the above attack.</t>
          </li>
          <li>
            <t>The expected packet rate for a media stream is very predictable (and typically
far lower than the above example).  On the one hand, attacks at this rate will
succeed even less often than the high-rate attack described above.  On the
other hand, the application may use an elevated packet arrival rate as a
signal of a brute-force attack.  This latter approach is common in other
settings, e.g., mitigating brute-force attacks on passwords.</t>
          </li>
          <li>
            <t>Media applications typically do not provide feedback to media senders as to
which media packets failed to decrypt.  When media-quality feedback
mechanisms are used, decryption failures will typically appear as packet
losses, but only at an aggregate level.</t>
          </li>
          <li>
            <t>Anti-replay mechanisms (see <xref target="replay"/>) prevent the attacker from reusing
valid ciphertexts (either observed or guessed by the attacker).  A receiver
applying anti-replay controls will only accept one valid plaintext per CTR
value.  Since the CTR value is covered by SFrame authentication, an attacker
has to do a fresh search for a valid tag for every forged ciphertext, even if
the encrypted content is unchanged.  In other words, when the above brute-force
attack succeeds, it only allows the attacker to send a single SFrame
ciphertext; the ciphertext cannot be reused because either it will have the
same CTR value and be discarded as a replay, or else it will have a different
CTR value and its tag will no longer be valid.</t>
          </li>
        </ul>
        <t>Nonetheless, without these mitigations, an application that makes use of short
tags will be at heightened risk of forgery attacks.  In many cases, it is
simpler to use full-size tags and tolerate slightly higher bandwidth usage
rather than to add the additional defenses necessary to safely use short tags.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>IANA has created a new registry called "SFrame Cipher Suites" (<xref target="sframe-cipher-suites"/>)
under the "SFrame" group registry heading.  Assignments are made
via the Specification Required policy <xref target="RFC8126"/>.</t>
      <section anchor="sframe-cipher-suites">
        <name>SFrame Cipher Suites</name>
        <t>The "SFrame Cipher Suites" registry lists identifiers for SFrame cipher suites as defined in
<xref target="cipher-suites"/>.  The cipher suite field is two bytes wide, so the valid cipher
suites are in the range 0x0000 to 0xFFFF.</t>
        <t>The registration template is as follows:</t>
        <ul spacing="normal">
          <li>
            <t>Value: The numeric value of the cipher suite</t>
          </li>
          <li>
            <t>Name: The name of the cipher suite</t>
          </li>
          <li>
            <t>Recommended: Whether support for this cipher suite is recommended by the IETF.
Valid values are "Y", "N", and "D" as described in <xref section="17.1" sectionFormat="of" target="MLS-PROTO"/>. The default value of the "Recommended" column is "N". Setting the
Recommended item to "Y" or "D", or changing an item whose current value is "Y"
or "D", requires Standards Action <xref target="RFC8126"/>.</t>
          </li>
          <li>
            <t>Reference: The document where this cipher suite is defined</t>
          </li>
          <li>
            <t>Change Controller: Who is authorized to update the row in the registry
Initial contents:</t>
          </li>
        </ul>
        <table anchor="iana-cipher-suites">
          <name>SFrame Cipher Suites</name>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Name</th>
              <th align="left">R</th>
              <th align="left">Reference</th>
              <th align="left">Change Controller</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0000</td>
              <td align="left">Reserved</td>
              <td align="left">-</td>
              <td align="left">RFC 9605</td>
              <td align="left">IETF</td>
            </tr>
            <tr>
              <td align="left">0x0001</td>
              <td align="left">
                <tt>AES_128_CTR_HMAC_SHA256_80</tt></td>
              <td align="left">Y</td>
              <td align="left">RFC 9605</td>
              <td align="left">IETF</td>
            </tr>
            <tr>
              <td align="left">0x0002</td>
              <td align="left">
                <tt>AES_128_CTR_HMAC_SHA256_64</tt></td>
              <td align="left">Y</td>
              <td align="left">RFC 9605</td>
              <td align="left">IETF</td>
            </tr>
            <tr>
              <td align="left">0x0003</td>
              <td align="left">
                <tt>AES_128_CTR_HMAC_SHA256_32</tt></td>
              <td align="left">Y</td>
              <td align="left">RFC 9605</td>
              <td align="left">IETF</td>
            </tr>
            <tr>
              <td align="left">0x0004</td>
              <td align="left">
                <tt>AES_128_GCM_SHA256_128</tt></td>
              <td align="left">Y</td>
              <td align="left">RFC 9605</td>
              <td align="left">IETF</td>
            </tr>
            <tr>
              <td align="left">0x0005</td>
              <td align="left">
                <tt>AES_256_GCM_SHA512_128</tt></td>
              <td align="left">Y</td>
              <td align="left">RFC 9605</td>
              <td align="left">IETF</td>
            </tr>
            <tr>
              <td align="left">0xF000 - 0xFFFF</td>
              <td align="left">Reserved for Private Use</td>
              <td align="left">-</td>
              <td align="left">RFC 9605</td>
              <td align="left">IETF</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
    <section anchor="application-responsibilities">
      <name>Application Responsibilities</name>
      <t>To use SFrame, an application needs to define the inputs to the SFrame
encryption and decryption operations, and how SFrame ciphertexts are delivered
from sender to receiver (including any fragmentation and reassembly).  In this
section, we lay out additional requirements that an application must meet in
order for SFrame to operate securely.</t>
      <t>In general, an application using SFrame is responsible for configuring SFrame.
The application must first define when SFrame is applied at all.  When SFrame is
applied, the application must define which cipher suite is to be used.  If new
versions of SFrame are defined in the future, it will be the application's responsibility
to determine which version should be used.</t>
      <t>This division of responsibilities is similar to the way other media parameters
(e.g., codecs) are typically handled in media applications, in the sense that
they are set up in some signaling protocol and not described in the media.
Applications might find it useful to extend the protocols used for negotiating
other media parameters (e.g., Session Description Protocol (SDP) <xref target="RFC8866"/>) to also negotiate parameters for
SFrame.</t>
      <section anchor="header-value-uniqueness">
        <name>Header Value Uniqueness</name>
        <t>Applications <bcp14>MUST</bcp14> ensure that each (<tt>base_key</tt>, KID, CTR) combination is used
for at most one SFrame encryption operation. This ensures that the (key, nonce)
pairs used by the underlying AEAD algorithm are never reused. Typically this is
done by assigning each sender a KID or set of KIDs, then having each sender use
the CTR field as a monotonic counter, incrementing for each plaintext that is
encrypted. In addition to its simplicity, this scheme minimizes overhead by
keeping CTR values as small as possible.</t>
        <t>In applications where an SFrame context might be written to persistent storage,
this context needs to include the last-used CTR value.  When the context is used
later, the application should use the stored CTR value to determine the next CTR
value to be used in an encryption operation, and then write the next CTR value
back to storage before using the CTR value for encryption.  Storing the CTR
value before usage (vs. after) helps ensure that a storage failure will not
cause reuse of the same (<tt>base_key</tt>, KID, CTR) combination.</t>
      </section>
      <section anchor="key-management-framework">
        <name>Key Management Framework</name>
        <t>The application is responsible for provisioning SFrame with a mapping of KID values to
<tt>base_key</tt> values and the resulting keys and salts.  More importantly, the
application specifies which KID values are used for which purposes (e.g., by
which senders).  An application's KID assignment strategy <bcp14>MUST</bcp14> be structured to
assure the non-reuse properties discussed in <xref target="header-value-uniqueness"/>.</t>
        <t>The application is also responsible for defining a rotation schedule for keys.  For
example, one application might have an ephemeral group for every call and keep
rotating keys when endpoints join or leave the call, while another application
could have a persistent group that can be used for multiple calls and simply
derives ephemeral symmetric keys for a specific call.</t>
        <t>It should be noted that KID values are not encrypted by SFrame and are thus
visible to any application-layer intermediaries that might handle an SFrame
ciphertext.  If there are application semantics included in KID values, then
this information would be exposed to intermediaries.  For example, in the scheme
of <xref target="sender-keys"/>, the number of ratchet steps per sender is exposed, and in
the scheme of <xref target="mls"/>, the number of epochs and the MLS sender ID of the SFrame
sender are exposed.</t>
      </section>
      <section anchor="anti-replay">
        <name>Anti-Replay</name>
        <t>It is the responsibility of the application to handle anti-replay. Replay by network
attackers is assumed to be prevented by network-layer facilities (e.g., TLS, SRTP).
As mentioned in <xref target="replay"/>, senders <bcp14>MUST</bcp14> reject requests to encrypt multiple times
with the same key and nonce.</t>
        <t>It is not mandatory to implement anti-replay on the receiver side. Receivers <bcp14>MAY</bcp14>
apply time- or counter-based anti-replay mitigations.  For example, <xref section="3.3.2" sectionFormat="of" target="RFC3711"/> specifies a counter-based anti-replay mitigation, which
could be adapted to use with SFrame, using the CTR field as the counter.</t>
      </section>
      <section anchor="metadata">
        <name>Metadata</name>
        <t>The <tt>metadata</tt> input to SFrame operations is an opaque byte string specified by the application. As
such, the application needs to define what information should go in the
<tt>metadata</tt> input and ensure that it is provided to the encryption and decryption
functions at the appropriate points.  A receiver <bcp14>MUST NOT</bcp14> use SFrame-authenticated
metadata until after the SFrame decrypt function has authenticated it, unless
the purpose of such usage is to prepare an SFrame ciphertext for SFrame
decryption.  Essentially, metadata may be used "upstream of SFrame" in a
processing pipeline, but only to prepare for SFrame decryption.</t>
        <t>For example, consider an application where SFrame is used to encrypt audio
frames that are sent over SRTP, with some application data included in the RTP
header extension. Suppose the application also includes this application data in
the SFrame metadata, so that the SFU is allowed to read, but not modify, the
application data.  A receiver can use the application data in the RTP header
extension as part of the standard SRTP decryption process since this is
required to recover the SFrame ciphertext carried in the SRTP payload.  However,
the receiver <bcp14>MUST NOT</bcp14> use the application data for other purposes before SFrame
decryption has authenticated the application data.</t>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC5116">
          <front>
            <title>An Interface and Algorithms for Authenticated Encryption</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms. The interface and registry can be used as an application-independent set of cryptoalgorithm suites. This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5116"/>
          <seriesInfo name="DOI" value="10.17487/RFC5116"/>
        </reference>
        <reference anchor="RFC5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <date month="May" year="2010"/>
            <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>
        <reference anchor="MLS-PROTO">
          <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="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="TestVectors" target="https://github.com/sframe-wg/sframe/blob/025d568/test-vectors/test-vectors.json">
          <front>
            <title>SFrame Test Vectors</title>
            <author>
              <organization/>
            </author>
            <date year="2023" month="September"/>
          </front>
          <refcontent>commit 025d568</refcontent>
        </reference>
        <reference anchor="RFC3711">
          <front>
            <title>The Secure Real-time Transport Protocol (SRTP)</title>
            <author fullname="M. Baugher" initials="M." surname="Baugher"/>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="M. Naslund" initials="M." surname="Naslund"/>
            <author fullname="E. Carrara" initials="E." surname="Carrara"/>
            <author fullname="K. Norrman" initials="K." surname="Norrman"/>
            <date month="March" year="2004"/>
            <abstract>
              <t>This document describes the Secure Real-time Transport Protocol (SRTP), a profile of the Real-time Transport Protocol (RTP), which can provide confidentiality, message authentication, and replay protection to the RTP traffic and to the control traffic for RTP, the Real-time Transport Control Protocol (RTCP). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3711"/>
          <seriesInfo name="DOI" value="10.17487/RFC3711"/>
        </reference>
        <reference anchor="RFC8723">
          <front>
            <title>Double Encryption Procedures for the Secure Real-Time Transport Protocol (SRTP)</title>
            <author fullname="C. Jennings" initials="C." surname="Jennings"/>
            <author fullname="P. Jones" initials="P." surname="Jones"/>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="A.B. Roach" initials="A.B." surname="Roach"/>
            <date month="April" year="2020"/>
            <abstract>
              <t>In some conferencing scenarios, it is desirable for an intermediary to be able to manipulate some parameters in Real-time Transport Protocol (RTP) packets, while still providing strong end-to-end security guarantees. This document defines a cryptographic transform for the Secure Real-time Transport Protocol (SRTP) that uses two separate but related cryptographic operations to provide hop-by-hop and end-to-end security guarantees. Both the end-to-end and hop-by-hop cryptographic algorithms can utilize an authenticated encryption with associated data (AEAD) algorithm or take advantage of future SRTP transforms with different properties.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8723"/>
          <seriesInfo name="DOI" value="10.17487/RFC8723"/>
        </reference>
        <reference anchor="RFC7656">
          <front>
            <title>A Taxonomy of Semantics and Mechanisms for Real-Time Transport Protocol (RTP) Sources</title>
            <author fullname="J. Lennox" initials="J." surname="Lennox"/>
            <author fullname="K. Gross" initials="K." surname="Gross"/>
            <author fullname="S. Nandakumar" initials="S." surname="Nandakumar"/>
            <author fullname="G. Salgueiro" initials="G." surname="Salgueiro"/>
            <author fullname="B. Burman" initials="B." role="editor" surname="Burman"/>
            <date month="November" year="2015"/>
            <abstract>
              <t>The terminology about, and associations among, Real-time Transport Protocol (RTP) sources can be complex and somewhat opaque. This document describes a number of existing and proposed properties and relationships among RTP sources and defines common terminology for discussing protocol entities and their relationships.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7656"/>
          <seriesInfo name="DOI" value="10.17487/RFC7656"/>
        </reference>
        <reference anchor="I-D.ietf-webtrans-overview">
          <front>
            <title>The WebTransport Protocol Framework</title>
            <author fullname="Victor Vasiliev" initials="V." surname="Vasiliev">
              <organization>Google</organization>
            </author>
            <date day="4" month="March" year="2024"/>
            <abstract>
              <t>   The WebTransport Protocol Framework enables clients constrained by
   the Web security model to communicate with a remote server using a
   secure multiplexed transport.  It consists of a set of individual
   protocols that are safe to expose to untrusted applications, combined
   with an abstract model that allows them to be used interchangeably.

   This document defines the overall requirements on the protocols used
   in WebTransport, as well as the common features of the protocols,
   support for some of which may be optional.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-webtrans-overview-07"/>
        </reference>
        <reference anchor="I-D.ietf-moq-transport">
          <front>
            <title>Media over QUIC Transport</title>
            <author fullname="Luke Curley" initials="L." surname="Curley">
              <organization>Discord</organization>
            </author>
            <author fullname="Kirill Pugin" initials="K." surname="Pugin">
              <organization>Meta</organization>
            </author>
            <author fullname="Suhas Nandakumar" initials="S." surname="Nandakumar">
              <organization>Cisco</organization>
            </author>
            <author fullname="Victor Vasiliev" initials="V." surname="Vasiliev">
              <organization>Google</organization>
            </author>
            <author fullname="Ian Swett" initials="I." surname="Swett">
              <organization>Google</organization>
            </author>
            <date day="8" month="July" year="2024"/>
            <abstract>
              <t>   This document defines the core behavior for Media over QUIC Transport
   (MOQT), a media transport protocol designed to operate over QUIC and
   WebTransport, which have similar functionality.  MOQT allows a
   producer of media to publish data and have it consumed via
   subscription by a multiplicity of endpoints.  It supports
   intermediate content distribution networks and is designed for high
   scale and low latency distribution.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-moq-transport-05"/>
        </reference>
        <reference anchor="MLS-ARCH">
          <front>
            <title>The Messaging Layer Security (MLS) Architecture</title>
            <author fullname="Benjamin Beurdouche" initials="B." surname="Beurdouche">
              <organization>Inria &amp; Mozilla</organization>
            </author>
            <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
              <organization>Windy Hill Systems, LLC</organization>
            </author>
            <author fullname="Emad Omara" initials="E." surname="Omara">
         </author>
            <author fullname="Srinivas Inguva" initials="S." surname="Inguva">
         </author>
            <author fullname="Alan Duric" initials="A." surname="Duric">
              <organization>Wire</organization>
            </author>
            <date day="8" month="July" year="2024"/>
            <abstract>
              <t>   The Messaging Layer Security (MLS) protocol (I-D.ietf-mls-protocol)
   provides a Group Key Agreement protocol for messaging applications.
   MLS is meant to protect against eavesdropping, tampering, message
   forgery, and provide Forward Secrecy (FS) and Post-Compromise
   Security (PCS).

   This document describes the architecture for using MLS in a general
   secure group messaging infrastructure and defines the security goals
   for MLS.  It provides guidance on building a group messaging system
   and discusses security and privacy tradeoffs offered by multiple
   security mechanisms that are part of the MLS protocol (e.g.,
   frequency of public encryption key rotation).  The document also
   provides guidance for parts of the infrastructure that are not
   standardized by MLS and are instead left to the application.

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

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-mls-architecture-14"/>
        </reference>
        <reference anchor="RFC7667">
          <front>
            <title>RTP Topologies</title>
            <author fullname="M. Westerlund" initials="M." surname="Westerlund"/>
            <author fullname="S. Wenger" initials="S." surname="Wenger"/>
            <date month="November" year="2015"/>
            <abstract>
              <t>This document discusses point-to-point and multi-endpoint topologies used in environments based on the Real-time Transport Protocol (RTP). In particular, centralized topologies commonly employed in the video conferencing industry are mapped to the RTP terminology.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7667"/>
          <seriesInfo name="DOI" value="10.17487/RFC7667"/>
        </reference>
        <reference anchor="RFC8866">
          <front>
            <title>SDP: Session Description Protocol</title>
            <author fullname="A. Begen" initials="A." surname="Begen"/>
            <author fullname="P. Kyzivat" initials="P." surname="Kyzivat"/>
            <author fullname="C. Perkins" initials="C." surname="Perkins"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>This memo defines the Session Description Protocol (SDP). SDP is intended for describing multimedia sessions for the purposes of session announcement, session invitation, and other forms of multimedia session initiation. This document obsoletes RFC 4566.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8866"/>
          <seriesInfo name="DOI" value="10.17487/RFC8866"/>
        </reference>
        <reference anchor="RFC6716">
          <front>
            <title>Definition of the Opus Audio Codec</title>
            <author fullname="JM. Valin" initials="JM." surname="Valin"/>
            <author fullname="K. Vos" initials="K." surname="Vos"/>
            <author fullname="T. Terriberry" initials="T." surname="Terriberry"/>
            <date month="September" year="2012"/>
            <abstract>
              <t>This document defines the Opus interactive speech and audio codec. Opus is designed to handle a wide range of interactive audio applications, including Voice over IP, videoconferencing, in-game chat, and even live, distributed music performances. It scales from low bitrate narrowband speech at 6 kbit/s to very high quality stereo music at 510 kbit/s. Opus uses both Linear Prediction (LP) and the Modified Discrete Cosine Transform (MDCT) to achieve good compression of both speech and music. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6716"/>
          <seriesInfo name="DOI" value="10.17487/RFC6716"/>
        </reference>
        <reference anchor="I-D.gouaillard-avtcore-codec-agn-rtp-payload">
          <front>
            <title>Codec agnostic RTP payload format for video</title>
            <author fullname="Sergio Garcia Murillo" initials="S. G." surname="Murillo">
              <organization>CoSMo Software</organization>
            </author>
            <author fullname="Youenn Fablet" initials="Y." surname="Fablet">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Dr. Alex Gouaillard" initials="A." surname="Gouaillard">
              <organization>CoSMo Software</organization>
            </author>
            <date day="9" month="March" year="2021"/>
            <abstract>
              <t>   RTP Media Chains usually rely on piping encoder output directly to
   packetizers.  Media packetization formats often support a specific
   codec format and optimize RTP packets generation accordingly.

   With the development of Selective Forward Unit (SFU) solutions, that
   do not process media content server side, the need for media content
   processing at the origin and at the destination has arised.

   RTP Media Chains used e.g. in WebRTC solutions are increasingly
   relying on application-specific transforms that sit in-between
   encoder and packetizer on one end and in-between depacketizer and
   decoder on the other end.  This use case has become so important,
   that the W3C is standardizing the capacity to access encoded content
   with the [WebRTCInsertableStreams] API proposal.  An extremely
   popular use case is application level end-to-end encryption of media
   content, using for instance [SFrame].

   Whatever the modification applied to the media content, RTP
   packetizers can no longer expect to use packetization formats that
   mandate media content to be in a specific codec format.

   In the extreme cases like encryption, where the RTP Payload is made
   completely opaque to the SFUs, some extra mechanism must also be
   added for them to be able to route the packets without depending on
   RTP payload or payload headers.

   The traditionnal process of creating a new RTP Payload specification
   per content would not be practical as we would need to make a new one
   for each codec-transform pair.

   This document describes a solution, which provides the following
   features in the case the encoded content has been modified before
   reaching the packetizer: - a paylaod agnostic RTP packetization
   format that can be used on any media content, - a negotiation
   mechanism for the above format and the inner payload, Both of the
   above mechanism are backward compatible with most of (S)RTP/RTCP
   mechanisms used for bandwidth estimation and congestion control in
   RTP/SRTP/webrtc, including but not limited to SSRC, RED, FEC, RTX,
   NACK, SR/RR, REMB, transport-wide-CC, TMBR, .... It as illustrated by
   existing implementations in chrome, safari, and Medooze.

   This document also describes a solution to allow SFUs to continue
   performing packet routing on top of this generic RTP packetization
   format.

   This document complements the SFrame (media encryption), and
   Dependency Descriptor (AV1 payload annex) documents to provide an
   End-to-End-Encryption solution that would sit on top of SRTP/Webrtc,
   use SFUs on the media back-end, and leverage W3C APIs in the browser.
   A high level description of such system will be provided as an
   informational I-D in the SFrame WG and then cited here.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-gouaillard-avtcore-codec-agn-rtp-payload-01"/>
        </reference>
      </references>
    </references>
    <?line 1177?>

<section anchor="example-api">
      <name>Example API</name>
      <t><strong>This section is not normative.</strong></t>
      <t>This section describes a notional API that an SFrame implementation might
expose.  The core concept is an "SFrame context", within which KID values are
meaningful.  In the key management scheme described in <xref target="sender-keys"/>, each
sender has a different context; in the scheme described in <xref target="mls"/>, all senders
share the same context.</t>
      <t>An SFrame context stores mappings from KID values to "key contexts", which are
different depending on whether the KID is to be used for sending or receiving
(an SFrame key should never be used for both operations).  A key context tracks
the key and salt associated to the KID, and the current CTR value.  A key
context to be used for sending also tracks the next CTR value to be used.</t>
      <t>The primary operations on an SFrame context are as follows:</t>
      <ul spacing="normal">
        <li>
          <t><strong>Create an SFrame context:</strong> The context is initialized with a cipher suite and
no KID mappings.</t>
        </li>
        <li>
          <t><strong>Add a key for sending:</strong> The key and salt are derived from the base key and
used to initialize a send context, together with a zero CTR value.</t>
        </li>
        <li>
          <t><strong>Add a key for receiving:</strong> The key and salt are derived from the base key and
used to initialize a send context.</t>
        </li>
        <li>
          <t><strong>Encrypt a plaintext:</strong> Encrypt a given plaintext using the key for a given KID,
including the specified metadata.</t>
        </li>
        <li>
          <t><strong>Decrypt an SFrame ciphertext:</strong> Decrypt an SFrame ciphertext with the KID
and CTR values specified in the SFrame header, and the provided metadata.</t>
        </li>
      </ul>
      <t><xref target="rust-api"/> shows an example of the types of structures and methods that could
be used to create an SFrame API in Rust.</t>
      <figure anchor="rust-api">
        <name>An Example SFrame API</name>
        <sourcecode type="rust"><![CDATA[
type KeyId = u64;
type Counter = u64;
type CipherSuite = u16;

struct SendKeyContext {
  key: Vec<u8>,
  salt: Vec<u8>,
  next_counter: Counter,
}

struct RecvKeyContext {
  key: Vec<u8>,
  salt: Vec<u8>,
}

struct SFrameContext {
  cipher_suite: CipherSuite,
  send_keys: HashMap<KeyId, SendKeyContext>,
  recv_keys: HashMap<KeyId, RecvKeyContext>,
}

trait SFrameContextMethods {
  fn create(cipher_suite: CipherSuite) -> Self;
  fn add_send_key(&self, kid: KeyId, base_key: &[u8]);
  fn add_recv_key(&self, kid: KeyId, base_key: &[u8]);
  fn encrypt(&mut self, kid: KeyId, metadata: &[u8],
             plaintext: &[u8]) -> Vec<u8>;
  fn decrypt(&self, metadata: &[u8], ciphertext: &[u8]) -> Vec<u8>;
}
]]></sourcecode>
      </figure>
    </section>
    <section anchor="overhead-analysis">
      <name>Overhead Analysis</name>
      <t>Any use of SFrame will impose overhead in terms of the amount of bandwidth
necessary to transmit a given media stream.  Exactly how much overhead will be added
depends on several factors:</t>
      <ul spacing="normal">
        <li>
          <t>The number of senders involved in a conference (length of KID)</t>
        </li>
        <li>
          <t>The duration of the conference (length of CTR)</t>
        </li>
        <li>
          <t>The cipher suite in use (length of authentication tag)</t>
        </li>
        <li>
          <t>Whether SFrame is used to encrypt packets, whole frames, or some other unit</t>
        </li>
      </ul>
      <t>Overall, the overhead rate in kilobits per second can be estimated as:</t>
      <t><tt>
OverheadKbps = (1 + |CTR| + |KID| + |TAG|) * 8 * CTPerSecond / 1024
</tt></t>
      <t>Here the constant value <tt>1</tt> reflects the fixed SFrame header; <tt>|CTR|</tt> and
<tt>|KID|</tt> reflect the lengths of those fields; <tt>|TAG|</tt> reflects the cipher
overhead; and <tt>CTPerSecond</tt> reflects the number of SFrame ciphertexts
sent per second (e.g., packets or frames per second).</t>
      <t>In the remainder of this section, we compute overhead estimates for a collection
of common scenarios.</t>
      <section anchor="assumptions">
        <name>Assumptions</name>
        <t>In the below calculations, we make conservative assumptions about SFrame
overhead so that the overhead amounts we compute here are likely to be an upper
bound of those seen in practice.</t>
        <table anchor="analysis-assumptions">
          <name>Overhead Analysis Assumptions</name>
          <thead>
            <tr>
              <th align="left">Field</th>
              <th align="right">Bytes</th>
              <th align="left">Explanation</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Config byte</td>
              <td align="right">1</td>
              <td align="left">Fixed</td>
            </tr>
            <tr>
              <td align="left">Key ID (KID)</td>
              <td align="right">2</td>
              <td align="left">&gt;255 senders; or MLS epoch (E=4) and &gt;16 senders</td>
            </tr>
            <tr>
              <td align="left">Counter (CTR)</td>
              <td align="right">3</td>
              <td align="left">More than 24 hours of media in common cases</td>
            </tr>
            <tr>
              <td align="left">Cipher overhead</td>
              <td align="right">16</td>
              <td align="left">Full authentication tag (longest defined here)</td>
            </tr>
          </tbody>
        </table>
        <t>In total, then, we assume that each SFrame encryption will add 22 bytes of
overhead.</t>
        <t>We consider two scenarios: applying SFrame per frame and per packet.  In each
scenario, we compute the SFrame overhead in absolute terms (kbps) and as a
percentage of the base bandwidth.</t>
      </section>
      <section anchor="audio">
        <name>Audio</name>
        <t>In audio streams, there is typically a one-to-one relationship between frames
and packets, so the overhead is the same whether one uses SFrame at a per-packet
or per-frame level.</t>
        <t><xref target="audio-overhead"/> considers three scenarios that are based on recommended configurations
of the Opus codec <xref target="RFC6716"/> (where "fps" stands for "frames per second"):</t>
        <table anchor="audio-overhead">
          <name>SFrame Overhead for Audio Streams</name>
          <thead>
            <tr>
              <th align="left">Scenario</th>
              <th align="center">Frame length</th>
              <th align="center">fps</th>
              <th align="center">Base kbps</th>
              <th align="center">Overhead kbps</th>
              <th align="center">Overhead %</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Narrow-band speech</td>
              <td align="center">120 ms</td>
              <td align="center">8.3</td>
              <td align="center">8</td>
              <td align="center">1.4</td>
              <td align="center">17.9%</td>
            </tr>
            <tr>
              <td align="left">Full-band speech</td>
              <td align="center">20 ms</td>
              <td align="center">50</td>
              <td align="center">32</td>
              <td align="center">8.6</td>
              <td align="center">26.9%</td>
            </tr>
            <tr>
              <td align="left">Full-band stereo music</td>
              <td align="center">10 ms</td>
              <td align="center">100</td>
              <td align="center">128</td>
              <td align="center">17.2</td>
              <td align="center">13.4%</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="video">
        <name>Video</name>
        <t>Video frames can be larger than an MTU and thus are commonly split across
multiple frames.  <xref target="video-overhead-per-frame"/> and <xref target="video-overhead-per-packet"/>
show the estimated overhead of encrypting a video stream, where SFrame is
applied per frame and per packet, respectively.  The choices of resolution,
frames per second, and bandwidth roughly reflect the capabilities of
modern video codecs across a range from very low to very high quality.</t>
        <table anchor="video-overhead-per-frame">
          <name>SFrame Overhead for a Video Stream Encrypted per Frame</name>
          <thead>
            <tr>
              <th align="left">Scenario</th>
              <th align="center">fps</th>
              <th align="center">Base kbps</th>
              <th align="center">Overhead kbps</th>
              <th align="center">Overhead %</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">426 x 240</td>
              <td align="center">7.5</td>
              <td align="center">45</td>
              <td align="center">1.3</td>
              <td align="center">2.9%</td>
            </tr>
            <tr>
              <td align="left">640 x 360</td>
              <td align="center">15</td>
              <td align="center">200</td>
              <td align="center">2.6</td>
              <td align="center">1.3%</td>
            </tr>
            <tr>
              <td align="left">640 x 360</td>
              <td align="center">30</td>
              <td align="center">400</td>
              <td align="center">5.2</td>
              <td align="center">1.3%</td>
            </tr>
            <tr>
              <td align="left">1280 x 720</td>
              <td align="center">30</td>
              <td align="center">1500</td>
              <td align="center">5.2</td>
              <td align="center">0.3%</td>
            </tr>
            <tr>
              <td align="left">1920 x 1080</td>
              <td align="center">60</td>
              <td align="center">7200</td>
              <td align="center">10.3</td>
              <td align="center">0.1%</td>
            </tr>
          </tbody>
        </table>
        <table anchor="video-overhead-per-packet">
          <name>SFrame Overhead for a Video Stream Encrypted per Packet</name>
          <thead>
            <tr>
              <th align="left">Scenario</th>
              <th align="center">fps</th>
              <th align="center">Packets per Second (pps)</th>
              <th align="center">Base kbps</th>
              <th align="center">Overhead kbps</th>
              <th align="center">Overhead %</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">426 x 240</td>
              <td align="center">7.5</td>
              <td align="center">7.5</td>
              <td align="center">45</td>
              <td align="center">1.3</td>
              <td align="center">2.9%</td>
            </tr>
            <tr>
              <td align="left">640 x 360</td>
              <td align="center">15</td>
              <td align="center">30</td>
              <td align="center">200</td>
              <td align="center">5.2</td>
              <td align="center">2.6%</td>
            </tr>
            <tr>
              <td align="left">640 x 360</td>
              <td align="center">30</td>
              <td align="center">60</td>
              <td align="center">400</td>
              <td align="center">10.3</td>
              <td align="center">2.6%</td>
            </tr>
            <tr>
              <td align="left">1280 x 720</td>
              <td align="center">30</td>
              <td align="center">180</td>
              <td align="center">1500</td>
              <td align="center">30.9</td>
              <td align="center">2.1%</td>
            </tr>
            <tr>
              <td align="left">1920 x 1080</td>
              <td align="center">60</td>
              <td align="center">780</td>
              <td align="center">7200</td>
              <td align="center">134.1</td>
              <td align="center">1.9%</td>
            </tr>
          </tbody>
        </table>
        <t>In the per-frame case, the SFrame percentage overhead approaches zero as the
quality of the video improves since bandwidth is driven more by picture size
than frame rate.  In the per-packet case, the SFrame percentage overhead
approaches the ratio between the SFrame overhead per packet and the MTU (here 22
bytes of SFrame overhead divided by an assumed 1200-byte MTU, or about 1.8%).</t>
      </section>
      <section anchor="conferences">
        <name>Conferences</name>
        <t>Real conferences usually involve several audio and video streams.  The overhead
of SFrame in such a conference is the aggregate of the overhead across all the
individual streams.  Thus, while SFrame incurs a large percentage overhead on an
audio stream, if the conference also involves a video stream, then the audio
overhead is likely negligible relative to the overall bandwidth of the
conference.</t>
        <t>For example, <xref target="conference-overhead"/> shows the overhead estimates for a two-person
conference where one person is sending low-quality media and the other is
sending high-quality media.  (And we assume that SFrame is applied per frame.)  The
video streams dominate the bandwidth at the SFU, so the total bandwidth overhead
is only around 1%.</t>
        <table anchor="conference-overhead">
          <name>SFrame Overhead for a Two-Person Conference</name>
          <thead>
            <tr>
              <th align="left">Stream</th>
              <th align="center">Base Kbps</th>
              <th align="center">Overhead Kbps</th>
              <th align="center">Overhead %</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Participant 1 audio</td>
              <td align="center">8</td>
              <td align="center">1.4</td>
              <td align="center">17.9%</td>
            </tr>
            <tr>
              <td align="left">Participant 1 video</td>
              <td align="center">45</td>
              <td align="center">1.3</td>
              <td align="center">2.9%</td>
            </tr>
            <tr>
              <td align="left">Participant 2 audio</td>
              <td align="center">32</td>
              <td align="center">9</td>
              <td align="center">26.9%</td>
            </tr>
            <tr>
              <td align="left">Participant 2 video</td>
              <td align="center">1500</td>
              <td align="center">5</td>
              <td align="center">0.3%</td>
            </tr>
            <tr>
              <td align="left">Total at SFU</td>
              <td align="center">1585</td>
              <td align="center">16.5</td>
              <td align="center">1.0%</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="sframe-over-rtp">
        <name>SFrame over RTP</name>
        <t>SFrame is a generic encapsulation format, but many of the applications in which
it is likely to be integrated are based on RTP.  This section discusses how an
integration between SFrame and RTP could be done, and some of the challenges
that would need to be overcome.</t>
        <t>As discussed in <xref target="application-context"/>, there are two natural patterns for
integrating SFrame into an application: applying SFrame per frame or per packet.
In RTP-based applications, applying SFrame per packet means that the payload of
each RTP packet will be an SFrame ciphertext, starting with an SFrame header, as
shown in <xref target="sframe-packet"/>.  Applying SFrame per frame means that different
RTP payloads will have different formats: The first payload of a frame will
contain the SFrame headers, and subsequent payloads will contain further chunks
of the ciphertext, as shown in <xref target="sframe-multi-packet"/>.</t>
        <t>In order for these media payloads to be properly interpreted by receivers,
receivers will need to be configured to know which of the above schemes the
sender has  applied to a given sequence of RTP packets. SFrame does not provide
a mechanism for distributing this configuration information. In applications
that use SDP for negotiating RTP media streams <xref target="RFC8866"/>, an appropriate
extension to SDP could provide this function.</t>
        <t>Applying SFrame per frame also requires that packetization and depacketization
be done in a generic manner that does not depend on the media content of the
packets, since the content being packetized or depacketized will be opaque
ciphertext (except for the SFrame header).  In order for such a generic
packetization scheme to work interoperably, one would have to be defined, e.g.,
as proposed in <xref target="I-D.gouaillard-avtcore-codec-agn-rtp-payload"/>.</t>
        <figure anchor="sframe-packet">
          <name>SRTP Packet with SFrame-Protected Payload</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="384" width="576" viewBox="0 0 576 384" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,208 L 8,368" fill="none" stroke="black"/>
                <path d="M 32,32 L 32,336" fill="none" stroke="black"/>
                <path d="M 64,32 L 64,64" fill="none" stroke="black"/>
                <path d="M 80,32 L 80,64" fill="none" stroke="black"/>
                <path d="M 96,32 L 96,64" fill="none" stroke="black"/>
                <path d="M 160,32 L 160,64" fill="none" stroke="black"/>
                <path d="M 176,32 L 176,64" fill="none" stroke="black"/>
                <path d="M 200,208 L 200,240" fill="none" stroke="black"/>
                <path d="M 288,32 L 288,64" fill="none" stroke="black"/>
                <path d="M 544,32 L 544,336" fill="none" stroke="black"/>
                <path d="M 568,32 L 568,368" fill="none" stroke="black"/>
                <path d="M 32,32 L 568,32" fill="none" stroke="black"/>
                <path d="M 32,64 L 544,64" fill="none" stroke="black"/>
                <path d="M 32,96 L 544,96" fill="none" stroke="black"/>
                <path d="M 32,126 L 544,126" fill="none" stroke="black"/>
                <path d="M 32,130 L 544,130" fill="none" stroke="black"/>
                <path d="M 32,176 L 544,176" fill="none" stroke="black"/>
                <path d="M 8,208 L 544,208" fill="none" stroke="black"/>
                <path d="M 32,240 L 200,240" fill="none" stroke="black"/>
                <path d="M 8,304 L 568,304" fill="none" stroke="black"/>
                <path d="M 32,336 L 544,336" fill="none" stroke="black"/>
                <path d="M 8,368 L 32,368" fill="none" stroke="black"/>
                <path d="M 544,368 L 568,368" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="560,304 548,298.4 548,309.6" fill="black" transform="rotate(180,552,304)"/>
                <polygon class="arrowhead" points="560,32 548,26.4 548,37.6" fill="black" transform="rotate(180,552,32)"/>
                <polygon class="arrowhead" points="32,304 20,298.4 20,309.6" fill="black" transform="rotate(0,24,304)"/>
                <polygon class="arrowhead" points="32,208 20,202.4 20,213.6" fill="black" transform="rotate(0,24,208)"/>
                <g class="text">
                  <text x="48" y="52">V=2</text>
                  <text x="72" y="52">P</text>
                  <text x="88" y="52">X</text>
                  <text x="124" y="52">CC</text>
                  <text x="168" y="52">M</text>
                  <text x="228" y="52">PT</text>
                  <text x="380" y="52">sequence</text>
                  <text x="444" y="52">number</text>
                  <text x="288" y="84">timestamp</text>
                  <text x="184" y="116">synchronization</text>
                  <text x="276" y="116">source</text>
                  <text x="332" y="116">(SSRC)</text>
                  <text x="404" y="116">identifier</text>
                  <text x="180" y="148">contributing</text>
                  <text x="260" y="148">source</text>
                  <text x="316" y="148">(CSRC)</text>
                  <text x="392" y="148">identifiers</text>
                  <text x="300" y="164">....</text>
                  <text x="200" y="196">RTP</text>
                  <text x="268" y="196">extension(s)</text>
                  <text x="364" y="196">(OPTIONAL)</text>
                  <text x="84" y="228">SFrame</text>
                  <text x="140" y="228">header</text>
                  <text x="140" y="276">SFrame</text>
                  <text x="208" y="276">encrypted</text>
                  <text x="264" y="276">and</text>
                  <text x="336" y="276">authenticated</text>
                  <text x="424" y="276">payload</text>
                  <text x="212" y="324">SRTP</text>
                  <text x="292" y="324">authentication</text>
                  <text x="368" y="324">tag</text>
                  <text x="60" y="372">SRTP</text>
                  <text x="120" y="372">Encrypted</text>
                  <text x="192" y="372">Portion</text>
                  <text x="340" y="372">SRTP</text>
                  <text x="416" y="372">Authenticated</text>
                  <text x="504" y="372">Portion</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
   +---+-+-+-------+-+-------------+-------------------------------+<-+
   |V=2|P|X|  CC   |M|     PT      |       sequence number         |  |
   +---+-+-+-------+-+-------------+-------------------------------+  |
   |                           timestamp                           |  |
   +---------------------------------------------------------------+  |
   |           synchronization source (SSRC) identifier            |  |
   +===============================================================+  |
   |            contributing source (CSRC) identifiers             |  |
   |                               ....                            |  |
   +---------------------------------------------------------------+  |
   |                   RTP extension(s) (OPTIONAL)                 |  |
+->+--------------------+------------------------------------------+  |
|  |   SFrame header    |                                          |  |
|  +--------------------+                                          |  |
|  |                                                               |  |
|  |          SFrame encrypted and authenticated payload           |  |
|  |                                                               |  |
+->+---------------------------------------------------------------+<-+
|  |                    SRTP authentication tag                    |  |
|  +---------------------------------------------------------------+  |
|                                                                     |
+--- SRTP Encrypted Portion             SRTP Authenticated Portion ---+
]]></artwork>
          </artset>
        </figure>
        <figure anchor="sframe-multi-packet">
          <name>Encryption Flow with per-Frame Encryption for RTP</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="624" width="504" viewBox="0 0 504 624" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,192 L 8,224" fill="none" stroke="black"/>
                <path d="M 8,512 L 8,608" fill="none" stroke="black"/>
                <path d="M 32,32 L 32,64" fill="none" stroke="black"/>
                <path d="M 32,232 L 32,504" fill="none" stroke="black"/>
                <path d="M 72,464 L 72,504" fill="none" stroke="black"/>
                <path d="M 96,64 L 96,184" fill="none" stroke="black"/>
                <path d="M 136,512 L 136,608" fill="none" stroke="black"/>
                <path d="M 168,32 L 168,64" fill="none" stroke="black"/>
                <path d="M 192,32 L 192,128" fill="none" stroke="black"/>
                <path d="M 192,288 L 192,400" fill="none" stroke="black"/>
                <path d="M 192,512 L 192,608" fill="none" stroke="black"/>
                <path d="M 256,128 L 256,184" fill="none" stroke="black"/>
                <path d="M 256,232 L 256,280" fill="none" stroke="black"/>
                <path d="M 256,400 L 256,416" fill="none" stroke="black"/>
                <path d="M 256,448 L 256,504" fill="none" stroke="black"/>
                <path d="M 320,32 L 320,128" fill="none" stroke="black"/>
                <path d="M 320,192 L 320,224" fill="none" stroke="black"/>
                <path d="M 320,288 L 320,400" fill="none" stroke="black"/>
                <path d="M 320,512 L 320,608" fill="none" stroke="black"/>
                <path d="M 368,512 L 368,608" fill="none" stroke="black"/>
                <path d="M 432,464 L 432,504" fill="none" stroke="black"/>
                <path d="M 496,512 L 496,608" fill="none" stroke="black"/>
                <path d="M 32,32 L 168,32" fill="none" stroke="black"/>
                <path d="M 192,32 L 320,32" fill="none" stroke="black"/>
                <path d="M 32,64 L 168,64" fill="none" stroke="black"/>
                <path d="M 192,128 L 320,128" fill="none" stroke="black"/>
                <path d="M 8,192 L 320,192" fill="none" stroke="black"/>
                <path d="M 8,224 L 320,224" fill="none" stroke="black"/>
                <path d="M 192,288 L 320,288" fill="none" stroke="black"/>
                <path d="M 192,400 L 320,400" fill="none" stroke="black"/>
                <path d="M 72,464 L 328,464" fill="none" stroke="black"/>
                <path d="M 360,464 L 432,464" fill="none" stroke="black"/>
                <path d="M 8,512 L 136,512" fill="none" stroke="black"/>
                <path d="M 192,512 L 320,512" fill="none" stroke="black"/>
                <path d="M 368,512 L 496,512" fill="none" stroke="black"/>
                <path d="M 8,544 L 136,544" fill="none" stroke="black"/>
                <path d="M 8,608 L 136,608" fill="none" stroke="black"/>
                <path d="M 192,608 L 320,608" fill="none" stroke="black"/>
                <path d="M 368,608 L 496,608" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="440,504 428,498.4 428,509.6" fill="black" transform="rotate(90,432,504)"/>
                <polygon class="arrowhead" points="264,504 252,498.4 252,509.6" fill="black" transform="rotate(90,256,504)"/>
                <polygon class="arrowhead" points="264,280 252,274.4 252,285.6" fill="black" transform="rotate(90,256,280)"/>
                <polygon class="arrowhead" points="264,184 252,178.4 252,189.6" fill="black" transform="rotate(90,256,184)"/>
                <polygon class="arrowhead" points="104,184 92,178.4 92,189.6" fill="black" transform="rotate(90,96,184)"/>
                <polygon class="arrowhead" points="80,504 68,498.4 68,509.6" fill="black" transform="rotate(90,72,504)"/>
                <polygon class="arrowhead" points="40,504 28,498.4 28,509.6" fill="black" transform="rotate(90,32,504)"/>
                <g class="text">
                  <text x="64" y="52">frame</text>
                  <text x="124" y="52">metadata</text>
                  <text x="256" y="84">frame</text>
                  <text x="132" y="212">SFrame</text>
                  <text x="192" y="212">Encrypt</text>
                  <text x="256" y="340">encrypted</text>
                  <text x="256" y="356">frame</text>
                  <text x="208" y="436">generic</text>
                  <text x="256" y="436">RTP</text>
                  <text x="312" y="436">packetize</text>
                  <text x="344" y="468">...</text>
                  <text x="44" y="532">SFrame</text>
                  <text x="100" y="532">header</text>
                  <text x="240" y="564">payload</text>
                  <text x="288" y="564">2/N</text>
                  <text x="344" y="564">...</text>
                  <text x="416" y="564">payload</text>
                  <text x="464" y="564">N/N</text>
                  <text x="56" y="580">payload</text>
                  <text x="104" y="580">1/N</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
   +----------------+  +---------------+
   | frame metadata |  |               |
   +-------+--------+  |               |
           |           |     frame     |
           |           |               |
           |           |               |
           |           +-------+-------+
           |                   |
           |                   |
           V                   V
+--------------------------------------+
|            SFrame Encrypt            |
+--------------------------------------+
   |                           |
   |                           |
   |                           V
   |                   +-------+-------+
   |                   |               |
   |                   |               |
   |                   |   encrypted   |
   |                   |     frame     |
   |                   |               |
   |                   |               |
   |                   +-------+-------+
   |                           |
   |                  generic RTP packetize
   |                           |
   |    +----------------------+--------.....--------+
   |    |                      |                     |
   V    V                      V                     V
+---------------+      +---------------+     +---------------+
| SFrame header |      |               |     |               |
+---------------+      |               |     |               |
|               |      |  payload 2/N  | ... |  payload N/N  |
|  payload 1/N  |      |               |     |               |
|               |      |               |     |               |
+---------------+      +---------------+     +---------------+
]]></artwork>
          </artset>
        </figure>
      </section>
    </section>
    <section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>This section provides a set of test vectors that implementations can use to
verify that they correctly implement SFrame encryption and decryption.  In
addition to test vectors for the overall process of SFrame
encryption/decryption, we also provide test vectors for header
encoding/decoding, and for AEAD encryption/decryption using the AES-CTR
construction defined in <xref target="aes-ctr-with-sha2"/>.</t>
      <t>All values are either numeric or byte strings.  Numeric values are represented
as hex values, prefixed with <tt>0x</tt>.  Byte strings are represented in hex
encoding.</t>
      <t>Line breaks and whitespace within values are inserted to conform to the width
requirements of the RFC format.  They should be removed before use.</t>
      <t>These test vectors are also available in JSON format at <xref target="TestVectors"/>.  In the
JSON test vectors, numeric values are JSON numbers and byte string values are
JSON strings containing the hex encoding of the byte strings.</t>
      <section anchor="header-encodingdecoding">
        <name>Header Encoding/Decoding</name>
        <t>For each case, we provide:</t>
        <ul spacing="normal">
          <li>
            <t><tt>kid</tt>: A KID value</t>
          </li>
          <li>
            <t><tt>ctr</tt>: A CTR value</t>
          </li>
          <li>
            <t><tt>header</tt>: An encoded SFrame header</t>
          </li>
        </ul>
        <t>An implementation should verify that:</t>
        <ul spacing="normal">
          <li>
            <t>Encoding a header with the KID and CTR results in the provided header value</t>
          </li>
          <li>
            <t>Decoding the provided header value results in the provided KID and CTR values</t>
          </li>
        </ul>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000000000000
header: 00
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000000000001
header: 01
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x00000000000000ff
header: 08ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000000000100
header: 090100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x000000000000ffff
header: 09ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000000010000
header: 0a010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000000ffffff
header: 0affffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000001000000
header: 0b01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x00000000ffffffff
header: 0bffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000100000000
header: 0c0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x000000ffffffffff
header: 0cffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000010000000000
header: 0d010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000ffffffffffff
header: 0dffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0001000000000000
header: 0e01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x00ffffffffffffff
header: 0effffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0100000000000000
header: 0f0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0xffffffffffffffff
header: 0fffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000000000000
header: 10
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000000000001
header: 11
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x00000000000000ff
header: 18ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000000000100
header: 190100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x000000000000ffff
header: 19ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000000010000
header: 1a010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000000ffffff
header: 1affffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000001000000
header: 1b01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x00000000ffffffff
header: 1bffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000100000000
header: 1c0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x000000ffffffffff
header: 1cffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000010000000000
header: 1d010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000ffffffffffff
header: 1dffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0001000000000000
header: 1e01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x00ffffffffffffff
header: 1effffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0100000000000000
header: 1f0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0xffffffffffffffff
header: 1fffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000000000000
header: 80ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000000000001
header: 81ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x00000000000000ff
header: 88ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000000000100
header: 89ff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x000000000000ffff
header: 89ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000000010000
header: 8aff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000000ffffff
header: 8affffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000001000000
header: 8bff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x00000000ffffffff
header: 8bffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000100000000
header: 8cff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x000000ffffffffff
header: 8cffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000010000000000
header: 8dff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000ffffffffffff
header: 8dffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0001000000000000
header: 8eff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x00ffffffffffffff
header: 8effffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0100000000000000
header: 8fff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0xffffffffffffffff
header: 8fffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000000000000
header: 900100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000000000001
header: 910100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x00000000000000ff
header: 980100ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000000000100
header: 9901000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x000000000000ffff
header: 990100ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000000010000
header: 9a0100010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000000ffffff
header: 9a0100ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000001000000
header: 9b010001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x00000000ffffffff
header: 9b0100ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000100000000
header: 9c01000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x000000ffffffffff
header: 9c0100ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000010000000000
header: 9d0100010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000ffffffffffff
header: 9d0100ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0001000000000000
header: 9e010001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x00ffffffffffffff
header: 9e0100ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0100000000000000
header: 9f01000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0xffffffffffffffff
header: 9f0100ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000000000000
header: 90ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000000000001
header: 91ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x00000000000000ff
header: 98ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000000000100
header: 99ffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x000000000000ffff
header: 99ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000000010000
header: 9affff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000000ffffff
header: 9affffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000001000000
header: 9bffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x00000000ffffffff
header: 9bffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000100000000
header: 9cffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x000000ffffffffff
header: 9cffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000010000000000
header: 9dffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000ffffffffffff
header: 9dffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0001000000000000
header: 9effff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x00ffffffffffffff
header: 9effffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0100000000000000
header: 9fffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0xffffffffffffffff
header: 9fffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000000000000
header: a0010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000000000001
header: a1010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x00000000000000ff
header: a8010000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000000000100
header: a90100000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x000000000000ffff
header: a9010000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000000010000
header: aa010000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000000ffffff
header: aa010000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000001000000
header: ab01000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x00000000ffffffff
header: ab010000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000100000000
header: ac0100000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x000000ffffffffff
header: ac010000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000010000000000
header: ad010000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000ffffffffffff
header: ad010000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0001000000000000
header: ae01000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x00ffffffffffffff
header: ae010000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0100000000000000
header: af0100000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0xffffffffffffffff
header: af010000ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000000000000
header: a0ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000000000001
header: a1ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x00000000000000ff
header: a8ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000000000100
header: a9ffffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x000000000000ffff
header: a9ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000000010000
header: aaffffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000000ffffff
header: aaffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000001000000
header: abffffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x00000000ffffffff
header: abffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000100000000
header: acffffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x000000ffffffffff
header: acffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000010000000000
header: adffffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000ffffffffffff
header: adffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0001000000000000
header: aeffffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x00ffffffffffffff
header: aeffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0100000000000000
header: afffffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0xffffffffffffffff
header: afffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000000000000
header: b001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000000000001
header: b101000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x00000000000000ff
header: b801000000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000000000100
header: b9010000000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x000000000000ffff
header: b901000000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000000010000
header: ba01000000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000000ffffff
header: ba01000000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000001000000
header: bb0100000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x00000000ffffffff
header: bb01000000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000100000000
header: bc010000000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x000000ffffffffff
header: bc01000000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000010000000000
header: bd01000000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000ffffffffffff
header: bd01000000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0001000000000000
header: be0100000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x00ffffffffffffff
header: be01000000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0100000000000000
header: bf010000000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0xffffffffffffffff
header: bf01000000ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000000000000
header: b0ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000000000001
header: b1ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x00000000000000ff
header: b8ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000000000100
header: b9ffffffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x000000000000ffff
header: b9ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000000010000
header: baffffffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000000ffffff
header: baffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000001000000
header: bbffffffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x00000000ffffffff
header: bbffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000100000000
header: bcffffffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x000000ffffffffff
header: bcffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000010000000000
header: bdffffffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000ffffffffffff
header: bdffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0001000000000000
header: beffffffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x00ffffffffffffff
header: beffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0100000000000000
header: bfffffffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0xffffffffffffffff
header: bfffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000000000000
header: c00100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000000000001
header: c10100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x00000000000000ff
header: c80100000000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000000000100
header: c901000000000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x000000000000ffff
header: c90100000000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000000010000
header: ca0100000000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000000ffffff
header: ca0100000000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000001000000
header: cb010000000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x00000000ffffffff
header: cb0100000000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000100000000
header: cc01000000000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x000000ffffffffff
header: cc0100000000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000010000000000
header: cd0100000000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000ffffffffffff
header: cd0100000000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0001000000000000
header: ce010000000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x00ffffffffffffff
header: ce0100000000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0100000000000000
header: cf01000000000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0xffffffffffffffff
header: cf0100000000ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000000000000
header: c0ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000000000001
header: c1ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x00000000000000ff
header: c8ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000000000100
header: c9ffffffffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x000000000000ffff
header: c9ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000000010000
header: caffffffffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000000ffffff
header: caffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000001000000
header: cbffffffffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x00000000ffffffff
header: cbffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000100000000
header: ccffffffffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x000000ffffffffff
header: ccffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000010000000000
header: cdffffffffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000ffffffffffff
header: cdffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0001000000000000
header: ceffffffffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x00ffffffffffffff
header: ceffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0100000000000000
header: cfffffffffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0xffffffffffffffff
header: cfffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000000000000
header: d0010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000000000001
header: d1010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x00000000000000ff
header: d8010000000000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000000000100
header: d90100000000000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x000000000000ffff
header: d9010000000000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000000010000
header: da010000000000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000000ffffff
header: da010000000000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000001000000
header: db01000000000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x00000000ffffffff
header: db010000000000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000100000000
header: dc0100000000000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x000000ffffffffff
header: dc010000000000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000010000000000
header: dd010000000000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000ffffffffffff
header: dd010000000000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0001000000000000
header: de01000000000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x00ffffffffffffff
header: de010000000000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0100000000000000
header: df0100000000000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0xffffffffffffffff
header: df010000000000ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000000000000
header: d0ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000000000001
header: d1ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x00000000000000ff
header: d8ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000000000100
header: d9ffffffffffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x000000000000ffff
header: d9ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000000010000
header: daffffffffffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000000ffffff
header: daffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000001000000
header: dbffffffffffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x00000000ffffffff
header: dbffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000100000000
header: dcffffffffffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x000000ffffffffff
header: dcffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000010000000000
header: ddffffffffffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000ffffffffffff
header: ddffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0001000000000000
header: deffffffffffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x00ffffffffffffff
header: deffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0100000000000000
header: dfffffffffffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0xffffffffffffffff
header: dfffffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000000000000
header: e001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000000000001
header: e101000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x00000000000000ff
header: e801000000000000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000000000100
header: e9010000000000000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x000000000000ffff
header: e901000000000000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000000010000
header: ea01000000000000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000000ffffff
header: ea01000000000000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000001000000
header: eb0100000000000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x00000000ffffffff
header: eb01000000000000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000100000000
header: ec010000000000000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x000000ffffffffff
header: ec01000000000000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000010000000000
header: ed01000000000000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000ffffffffffff
header: ed01000000000000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0001000000000000
header: ee0100000000000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x00ffffffffffffff
header: ee01000000000000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0100000000000000
header: ef010000000000000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0xffffffffffffffff
header: ef01000000000000ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000000000000
header: e0ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000000000001
header: e1ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x00000000000000ff
header: e8ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000000000100
header: e9ffffffffffffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x000000000000ffff
header: e9ffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000000010000
header: eaffffffffffffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000000ffffff
header: eaffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000001000000
header: ebffffffffffffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x00000000ffffffff
header: ebffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000100000000
header: ecffffffffffffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x000000ffffffffff
header: ecffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000010000000000
header: edffffffffffffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000ffffffffffff
header: edffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0001000000000000
header: eeffffffffffffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x00ffffffffffffff
header: eeffffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0100000000000000
header: efffffffffffffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0xffffffffffffffff
header: efffffffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000000000000
header: f00100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000000000001
header: f10100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x00000000000000ff
header: f80100000000000000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000000000100
header: f901000000000000000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x000000000000ffff
header: f90100000000000000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000000010000
header: fa0100000000000000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000000ffffff
header: fa0100000000000000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000001000000
header: fb010000000000000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x00000000ffffffff
header: fb0100000000000000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000100000000
header: fc01000000000000000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x000000ffffffffff
header: fc0100000000000000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000010000000000
header: fd0100000000000000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000ffffffffffff
header: fd0100000000000000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0001000000000000
header: fe010000000000000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x00ffffffffffffff
header: fe0100000000000000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0100000000000000
header: ff010000000000000001000000000000
        00
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0xffffffffffffffff
header: ff0100000000000000ffffffffffffff
        ff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000000000000
header: f0ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000000000001
header: f1ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x00000000000000ff
header: f8ffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000000000100
header: f9ffffffffffffffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x000000000000ffff
header: f9ffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000000010000
header: faffffffffffffffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000000ffffff
header: faffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000001000000
header: fbffffffffffffffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x00000000ffffffff
header: fbffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000100000000
header: fcffffffffffffffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x000000ffffffffff
header: fcffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000010000000000
header: fdffffffffffffffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000ffffffffffff
header: fdffffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0001000000000000
header: feffffffffffffffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x00ffffffffffffff
header: feffffffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0100000000000000
header: ffffffffffffffffff01000000000000
        00
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0xffffffffffffffff
header: ffffffffffffffffffffffffffffffff
        ff
]]></artwork>
      </section>
      <section anchor="aead-encryptiondecryption-using-aes-ctr-and-hmac">
        <name>AEAD Encryption/Decryption Using AES-CTR and HMAC</name>
        <t>For each case, we provide:</t>
        <ul spacing="normal">
          <li>
            <t><tt>cipher_suite</tt>: The index of the cipher suite in use (see
<xref target="sframe-cipher-suites"/>)</t>
          </li>
          <li>
            <t><tt>key</tt>: The <tt>key</tt> input to encryption/decryption</t>
          </li>
          <li>
            <t><tt>enc_key</tt>: The encryption subkey produced by the <tt>derive_subkeys()</tt> algorithm</t>
          </li>
          <li>
            <t><tt>auth_key</tt>: The encryption subkey produced by the <tt>derive_subkeys()</tt> algorithm</t>
          </li>
          <li>
            <t><tt>nonce</tt>: The <tt>nonce</tt> input to encryption/decryption</t>
          </li>
          <li>
            <t><tt>aad</tt>: The <tt>aad</tt> input to encryption/decryption</t>
          </li>
          <li>
            <t><tt>pt</tt>: The plaintext</t>
          </li>
          <li>
            <t><tt>ct</tt>: The ciphertext</t>
          </li>
        </ul>
        <t>An implementation should verify that the following are true, where
<tt>AEAD.Encrypt</tt> and <tt>AEAD.Decrypt</tt> are as defined in <xref target="aes-ctr-with-sha2"/>:</t>
        <ul spacing="normal">
          <li>
            <t><tt>AEAD.Encrypt(key, nonce, aad, pt) == ct</tt></t>
          </li>
          <li>
            <t><tt>AEAD.Decrypt(key, nonce, aad, ct) == pt</tt></t>
          </li>
        </ul>
        <t>The other values in the test vector are intermediate values provided to
facilitate debugging of test failures.</t>
        <artwork><![CDATA[
cipher_suite: 0x0001
key: 000102030405060708090a0b0c0d0e0f
     101112131415161718191a1b1c1d1e1f
     202122232425262728292a2b2c2d2e2f
enc_key: 000102030405060708090a0b0c0d0e0f
auth_key: 101112131415161718191a1b1c1d1e1f
          202122232425262728292a2b2c2d2e2f
nonce: 101112131415161718191a1b
aad: 4945544620534672616d65205747
pt: 64726166742d696574662d736672616d
    652d656e63
ct: 6339af04ada1d064688a442b8dc69d5b
    6bfa40f4bef0583e8081069cc60705
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0002
key: 000102030405060708090a0b0c0d0e0f
     101112131415161718191a1b1c1d1e1f
     202122232425262728292a2b2c2d2e2f
enc_key: 000102030405060708090a0b0c0d0e0f
auth_key: 101112131415161718191a1b1c1d1e1f
          202122232425262728292a2b2c2d2e2f
nonce: 101112131415161718191a1b
aad: 4945544620534672616d65205747
pt: 64726166742d696574662d736672616d
    652d656e63
ct: 6339af04ada1d064688a442b8dc69d5b
    6bfa40f4be6e93b7da076927bb
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0003
key: 000102030405060708090a0b0c0d0e0f
     101112131415161718191a1b1c1d1e1f
     202122232425262728292a2b2c2d2e2f
enc_key: 000102030405060708090a0b0c0d0e0f
auth_key: 101112131415161718191a1b1c1d1e1f
          202122232425262728292a2b2c2d2e2f
nonce: 101112131415161718191a1b
aad: 4945544620534672616d65205747
pt: 64726166742d696574662d736672616d
    652d656e63
ct: 6339af04ada1d064688a442b8dc69d5b
    6bfa40f4be09480509
]]></artwork>
      </section>
      <section anchor="sframe-encryptiondecryption">
        <name>SFrame Encryption/Decryption</name>
        <t>For each case, we provide:</t>
        <ul spacing="normal">
          <li>
            <t><tt>cipher_suite</tt>: The index of the cipher suite in use (see
<xref target="sframe-cipher-suites"/>)</t>
          </li>
          <li>
            <t><tt>kid</tt>: A KID value</t>
          </li>
          <li>
            <t><tt>ctr</tt>: A CTR value</t>
          </li>
          <li>
            <t><tt>base_key</tt>: The <tt>base_key</tt> input to the <tt>derive_key_salt</tt> algorithm</t>
          </li>
          <li>
            <t><tt>sframe_key_label</tt>: The label used to derive <tt>sframe_key</tt> in the <tt>derive_key_salt</tt> algorithm</t>
          </li>
          <li>
            <t><tt>sframe_salt_label</tt>: The label used to derive <tt>sframe_salt</tt> in the <tt>derive_key_salt</tt> algorithm</t>
          </li>
          <li>
            <t><tt>sframe_secret</tt>: The <tt>sframe_secret</tt> variable in the <tt>derive_key_salt</tt> algorithm</t>
          </li>
          <li>
            <t><tt>sframe_key</tt>: The <tt>sframe_key</tt> value produced by the <tt>derive_key_salt</tt> algorithm</t>
          </li>
          <li>
            <t><tt>sframe_salt</tt>: The <tt>sframe_salt</tt> value produced by the <tt>derive_key_salt</tt> algorithm</t>
          </li>
          <li>
            <t><tt>metadata</tt>: The <tt>metadata</tt> input to the SFrame <tt>encrypt</tt> algorithm</t>
          </li>
          <li>
            <t><tt>pt</tt>: The plaintext</t>
          </li>
          <li>
            <t><tt>ct</tt>: The SFrame ciphertext</t>
          </li>
        </ul>
        <t>An implementation should verify that the following are true, where
<tt>encrypt</tt> and <tt>decrypt</tt> are as defined in <xref target="encryption-schema"/>, using an SFrame
context initialized with <tt>base_key</tt> assigned to <tt>kid</tt>:</t>
        <ul spacing="normal">
          <li>
            <t><tt>encrypt(ctr, kid, metadata, plaintext) == ct</tt></t>
          </li>
          <li>
            <t><tt>decrypt(metadata, ct) == pt</tt></t>
          </li>
        </ul>
        <t>The other values in the test vector are intermediate values provided to
facilitate debugging of test failures.</t>
        <artwork><![CDATA[
cipher_suite: 0x0001
kid: 0x0000000000000123
ctr: 0x0000000000004567
base_key: 000102030405060708090a0b0c0d0e0f
sframe_key_label: 534672616d6520312e30205365637265
                  74206b65792000000000000001230001
sframe_salt_label: 534672616d6520312e30205365637265
                   742073616c7420000000000000012300
                   01
sframe_secret: d926952ca8b7ec4a95941d1ada3a5203
               ceff8cceee34f574d23909eb314c40c0
sframe_key: 3f7d9a7c83ae8e1c8a11ae695ab59314
            b367e359fadac7b9c46b2bc6f81f46e1
            6b96f0811868d59402b7e870102720b3
sframe_salt: 50b29329a04dc0f184ac3168
metadata: 4945544620534672616d65205747
nonce: 50b29329a04dc0f184ac740f
aad: 99012345674945544620534672616d65
     205747
pt: 64726166742d696574662d736672616d
    652d656e63
ct: 9901234567449408b6f490086165b9d6
    f62b24ae1a59a56486b4ae8ed036b889
    12e24f11
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0002
kid: 0x0000000000000123
ctr: 0x0000000000004567
base_key: 000102030405060708090a0b0c0d0e0f
sframe_key_label: 534672616d6520312e30205365637265
                  74206b65792000000000000001230002
sframe_salt_label: 534672616d6520312e30205365637265
                   742073616c7420000000000000012300
                   02
sframe_secret: d926952ca8b7ec4a95941d1ada3a5203
               ceff8cceee34f574d23909eb314c40c0
sframe_key: e2ec5c797540310483b16bf6e7a570d2
            a27d192fe869c7ccd8584a8d9dab9154
            9fbe553f5113461ec6aa83bf3865553e
sframe_salt: e68ac8dd3d02fbcd368c5577
metadata: 4945544620534672616d65205747
nonce: e68ac8dd3d02fbcd368c1010
aad: 99012345674945544620534672616d65
     205747
pt: 64726166742d696574662d736672616d
    652d656e63
ct: 99012345673f31438db4d09434e43afa
    0f8a2f00867a2be085046a9f5cb4f101
    d607
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0003
kid: 0x0000000000000123
ctr: 0x0000000000004567
base_key: 000102030405060708090a0b0c0d0e0f
sframe_key_label: 534672616d6520312e30205365637265
                  74206b65792000000000000001230003
sframe_salt_label: 534672616d6520312e30205365637265
                   742073616c7420000000000000012300
                   03
sframe_secret: d926952ca8b7ec4a95941d1ada3a5203
               ceff8cceee34f574d23909eb314c40c0
sframe_key: 2c5703089cbb8c583475e4fc461d97d1
            8809df79b6d550f78eb6d50ffa80d892
            11d57909934f46f5405e38cd583c69fe
sframe_salt: 38c16e4f5159700c00c7f350
metadata: 4945544620534672616d65205747
nonce: 38c16e4f5159700c00c7b637
aad: 99012345674945544620534672616d65
     205747
pt: 64726166742d696574662d736672616d
    652d656e63
ct: 990123456717fc8af28a5a695afcfc6c
    8df6358a17e26b2fcb3bae32e443
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0004
kid: 0x0000000000000123
ctr: 0x0000000000004567
base_key: 000102030405060708090a0b0c0d0e0f
sframe_key_label: 534672616d6520312e30205365637265
                  74206b65792000000000000001230004
sframe_salt_label: 534672616d6520312e30205365637265
                   742073616c7420000000000000012300
                   04
sframe_secret: d926952ca8b7ec4a95941d1ada3a5203
               ceff8cceee34f574d23909eb314c40c0
sframe_key: d34f547f4ca4f9a7447006fe7fcbf768
sframe_salt: 75234edefe07819026751816
metadata: 4945544620534672616d65205747
nonce: 75234edefe07819026755d71
aad: 99012345674945544620534672616d65
     205747
pt: 64726166742d696574662d736672616d
    652d656e63
ct: 9901234567b7412c2513a1b66dbb4884
    1bbaf17f598751176ad847681a69c6d0
    b091c07018ce4adb34eb
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0005
kid: 0x0000000000000123
ctr: 0x0000000000004567
base_key: 000102030405060708090a0b0c0d0e0f
sframe_key_label: 534672616d6520312e30205365637265
                  74206b65792000000000000001230005
sframe_salt_label: 534672616d6520312e30205365637265
                   742073616c7420000000000000012300
                   05
sframe_secret: 0fc3ea6de6aac97a35f194cf9bed94d4
               b5230f1cb45a785c9fe5dce9c188938a
               b6ba005bc4c0a19181599e9d1bcf7b74
               aca48b60bf5e254e546d809313e083a3
sframe_key: d3e27b0d4a5ae9e55df01a70e6d4d28d
            969b246e2936f4b7a5d9b494da6b9633
sframe_salt: 84991c167b8cd23c93708ec7
metadata: 4945544620534672616d65205747
nonce: 84991c167b8cd23c9370cba0
aad: 99012345674945544620534672616d65
     205747
pt: 64726166742d696574662d736672616d
    652d656e63
ct: 990123456794f509d36e9beacb0e261d
    99c7d1e972f1fed787d4049f17ca2135
    3c1cc24d56ceabced279
]]></artwork>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>The authors wish to specially thank <contact fullname="Dr. Alex Gouaillard"/> as one of the early
contributors to the document. His passion and energy were key to the design and
development of SFrame.</t>
    </section>
    <section anchor="contributors" numbered="false" toc="include" removeInRFC="false">
      <name>Contributors</name>
      <contact initials="F." surname="Jacobs" fullname="Frédéric Jacobs">
        <organization>Apple</organization>
        <address>
          <email>frederic.jacobs@apple.com</email>
        </address>
      </contact>
      <contact initials="M." surname="Mularczyk" fullname="Marta Mularczyk">
        <organization>Amazon</organization>
        <address>
          <email>mulmarta@amazon.com</email>
        </address>
      </contact>
      <contact initials="S." surname="Nandakumar" fullname="Suhas Nandakumar">
        <organization>Cisco</organization>
        <address>
          <email>snandaku@cisco.com</email>
        </address>
      </contact>
      <contact initials="T." surname="Rigaux" fullname="Tomas Rigaux">
        <organization>Cisco</organization>
        <address>
          <email>trigaux@cisco.com</email>
        </address>
      </contact>
      <contact initials="R." surname="Robert" fullname="Raphael Robert">
        <organization>Phoenix R&amp;D</organization>
        <address>
          <email>ietf@raphaelrobert.com</email>
        </address>
      </contact>
    </section>
  </back>
  <!-- ##markdown-source:
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
YD66NKVzPgzxziRdYW4NnfQFH4NclC3J71XK4xoLLl2XYJzcMi1LkyNSBfFU
74TuLsZdoPQFfS9oPEuqJYwJrk0ORTEyaPbvUflsO8EXk584i+F4znkCX1EG
MkmE/MaWy9UFF2lmoR8lOeYGtwQlRQ9M31LW9n2WRmIvtu4p3dUFMZBzbJVX
TmpOU1kaZIlwtkjZkgMinmcV21bufqWFspidyOyGytQ6T96n2aZYYJ0puYZU
6Ga5l5A6mydd1B0i1qvgT+WPWR8ipV3laUHsSDfKlmzl9kgLZKXa3hC8aVSq
BklDDVv7EnTvUq35MglXYgYSQY+k12oJa6H2yi0ePxSs0fYl1bLxGg+PUOYZ
z8QbVa6JD5/DuXvECx3mOrcEberY3JSoyZpblyTuKn4noXI1TiDe4+Y9NLZY
hzvrdtStHcmqLEKoQEhOCnimtqDIo6Kuq7lVuqI9HyFbzBptFq8ps3e1S48y
MVI1Ms0TLL5nFAstomu/2bpLpGfuTlW2n5TyPAqXxvrMkvAXqVcxicLqUJgF
3+g6efJsX1SkcaLAJfCBIpN8VDPcq8AqYDGA/p11OZTsUngsHHVIn0EDWFos
zRaO08u0BEZD1wYkml4rBq5Ew161Jp6nShOqfJx811CilKrcU89TUMSjsCgl
nST7kxbqaceQPmdkSZeYjI/oQSkaLyyKEj3Dk7SIh5infU23HQLQX6Bt8Egl
QNSDMKGGKA5QfnyypvFKek5YQcYGeNsiJDYQk7lSGV/UMKOQo0R/JufeR5zw
5fD850dHdPGPiQ/9MsHa1VjoBI9MdGXACac3yY7usjbDjeM8W/O4qCKCJoQl
Gq0tDg1qD9mKMvpVXx9L/lZ1mKPvr68iKQqcPU+y/vu24zCo98R2FUqFEjdg
0rTNmJHq2JsE9XbPlPcWNkEN2W3DLGY90J4EG55CvF57yj7S3lNzEy4JYDEq
PCvKLvltZphE2Pyo6rZrqzWdiWSJO0R6p69HnnUzQXyDuHnYcP3jmjbR60RC
zNE6pG3JV+ROhXZE8bHgUyhcSXZjm5tyhO/KzC3d1an4e/FJOc+opHh4I6B5
PJb1o46pwk/563oMPOY9DGdroZJFm2pRsmzaj8bMGDWSTF58QSTmUGQnbGMV
PqiYagetiKkpY6VDhjmDgtWfxzMPkg7fGtN2scKfrYSTCh7JJGnJRASqZtca
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
i5P3ySJb4+vYEVu3et7/A/iz7zz7hgEA

-->

</rfc>
