<?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.6.39 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-sframe-enc-03" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.5 -->
  <front>
    <title abbrev="SFrame">Secure Frame (SFrame)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-sframe-enc-03"/>
    <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>Google</organization>
      <address>
        <email>juberti@google.com</email>
      </address>
    </author>
    <author initials="S." surname="Murillo" fullname="Sergio Garcia Murillo">
      <organization>CoSMo Software</organization>
      <address>
        <email>sergio.garcia.murillo@cosmosoftware.io</email>
      </address>
    </author>
    <author initials="R. L." surname="Barnes" fullname="Richard L. 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="2023" month="August" day="04"/>
    <area>Applications and Real-Time</area>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 55?>

<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>The proposed 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>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://sframe-wg.github.io/sframe/draft-ietf-sframe-enc.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-sframe-enc/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Secure Media Frames Working Group mailing list (<eref target="mailto:sframe@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/sframe/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/sframe/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/sframe-wg/sframe"/>.</t>
    </note>
  </front>
  <middle>
    <?line 67?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Modern multi-party 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,
allowing for the media to be "end-to-end" encrypted 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 encryptions and authentication are required:</t>
      <ol spacing="normal" type="1"><li>Hop-by-hop (HBH) encryption of media, metadata, and feedback messages
between the the endpoints and SFU</li>
        <li>End-to-end (E2E) encryption of media between the endpoints</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 end-to-end encryption mechanism 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 "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in
BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all
capitals, as shown here.</t>
      <dl>
        <dt>IV:</dt>
        <dd>
          <t>Initialization Vector</t>
        </dd>
        <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 a sequence of media payloads, in both cases
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>Provide an secure E2EE mechanism for audio and video in conference calls
that can be used with arbitrary SFU servers.</li>
        <li>Decouple media encryption from key management to allow SFrame to be used
with an arbitrary key management system.</li>
        <li>Minimize packet expansion to allow successful conferencing in as many
network conditions as possible.</li>
        <li>Independence from the underlying transport, including use in non-RTP
transports, e.g., WebTransport <xref target="I-D.ietf-webtrans-overview"/>.</li>
        <li>When used with RTP and its associated error resilience mechanisms, i.e., RTX
and FEC, require no special handling for RTX and FEC packets.</li>
        <li>Minimize the changes needed in SFU servers.</li>
        <li>Minimize the changes needed in endpoints.</li>
        <li>Work with the most popular audio and video codecs used in conferencing
scenarios.</li>
      </ol>
    </section>
    <section anchor="sframe">
      <name>SFrame</name>
      <t>This document defines an encryption mechanism that provides effective end-to-end
encryption, is simple to implement, has no dependencies on RTP, and minimizes
encryption bandwidth overhead. Because SFrame can encrypt a full frame, rather
than individual packets, bandwidth overhead can be reduced by adding encryption
overhead only once per media frame, instead of once per packet.</t>
      <section anchor="application-context">
        <name>Application Context</name>
        <t>SFrame is a general encryption framing, intended to be used as an E2E encryption
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: Either using SFrame to encrypt 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
in 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">
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="576" width="632" viewBox="0 0 632 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 168,64 L 168,128" fill="none" stroke="black"/>
                <path d="M 168,464 L 168,528" fill="none" stroke="black"/>
                <path d="M 200,104 L 200,144" fill="none" stroke="black"/>
                <path d="M 200,208 L 200,384" fill="none" stroke="black"/>
                <path d="M 200,448 L 200,488" fill="none" stroke="black"/>
                <path d="M 224,64 L 224,128" fill="none" stroke="black"/>
                <path d="M 224,464 L 224,528" fill="none" stroke="black"/>
                <path d="M 336,64 L 336,128" fill="none" stroke="black"/>
                <path d="M 336,464 L 336,528" fill="none" stroke="black"/>
                <path d="M 360,104 L 360,144" fill="none" stroke="black"/>
                <path d="M 360,208 L 360,384" fill="none" stroke="black"/>
                <path d="M 368,448 L 368,488" fill="none" stroke="black"/>
                <path d="M 392,64 L 392,128" fill="none" stroke="black"/>
                <path d="M 392,464 L 392,528" fill="none" stroke="black"/>
                <path d="M 440,136 L 440,456" fill="none" stroke="black"/>
                <path d="M 488,64 L 488,128" fill="none" stroke="black"/>
                <path d="M 488,464 L 488,528" fill="none" stroke="black"/>
                <path d="M 512,32 L 512,88" fill="none" stroke="black"/>
                <path d="M 512,104 L 512,240" fill="none" stroke="black"/>
                <path d="M 512,352 L 512,488" fill="none" stroke="black"/>
                <path d="M 512,504 L 512,560" fill="none" stroke="black"/>
                <path d="M 552,272 L 552,320" fill="none" stroke="black"/>
                <path d="M 584,96 L 584,264" fill="none" stroke="black"/>
                <path d="M 584,320 L 584,496" fill="none" stroke="black"/>
                <path d="M 624,272 L 624,320" fill="none" stroke="black"/>
                <path d="M 56,32 L 512,32" fill="none" stroke="black"/>
                <path d="M 80,64 L 168,64" fill="none" stroke="black"/>
                <path d="M 224,64 L 336,64" fill="none" stroke="black"/>
                <path d="M 392,64 L 488,64" fill="none" stroke="black"/>
                <path d="M 176,96 L 216,96" fill="none" stroke="black"/>
                <path d="M 344,96 L 384,96" fill="none" stroke="black"/>
                <path d="M 496,96 L 584,96" fill="none" stroke="black"/>
                <path d="M 80,128 L 168,128" fill="none" stroke="black"/>
                <path d="M 224,128 L 336,128" fill="none" stroke="black"/>
                <path d="M 392,128 L 488,128" fill="none" stroke="black"/>
                <path d="M 56,240 L 192,240" fill="none" stroke="black"/>
                <path d="M 208,240 L 352,240" fill="none" stroke="black"/>
                <path d="M 368,240 L 432,240" fill="none" stroke="black"/>
                <path d="M 448,240 L 512,240" fill="none" stroke="black"/>
                <path d="M 552,272 L 624,272" fill="none" stroke="black"/>
                <path d="M 200,304 L 232,304" fill="none" stroke="black"/>
                <path d="M 336,304 L 360,304" fill="none" stroke="black"/>
                <path d="M 552,320 L 624,320" fill="none" stroke="black"/>
                <path d="M 56,352 L 192,352" fill="none" stroke="black"/>
                <path d="M 208,352 L 352,352" fill="none" stroke="black"/>
                <path d="M 368,352 L 432,352" fill="none" stroke="black"/>
                <path d="M 448,352 L 512,352" fill="none" stroke="black"/>
                <path d="M 80,464 L 168,464" fill="none" stroke="black"/>
                <path d="M 224,464 L 336,464" fill="none" stroke="black"/>
                <path d="M 392,464 L 488,464" fill="none" stroke="black"/>
                <path d="M 176,496 L 216,496" fill="none" stroke="black"/>
                <path d="M 344,496 L 384,496" fill="none" stroke="black"/>
                <path d="M 496,496 L 584,496" fill="none" stroke="black"/>
                <path d="M 80,528 L 168,528" fill="none" stroke="black"/>
                <path d="M 224,528 L 336,528" fill="none" stroke="black"/>
                <path d="M 392,528 L 488,528" fill="none" stroke="black"/>
                <path d="M 56,560 L 512,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="592,264 580,258.4 580,269.6" fill="black" transform="rotate(90,584,264)"/>
                <polygon class="arrowhead" points="504,496 492,490.4 492,501.6" fill="black" transform="rotate(180,496,496)"/>
                <polygon class="arrowhead" points="448,456 436,450.4 436,461.6" fill="black" transform="rotate(90,440,456)"/>
                <polygon class="arrowhead" points="448,136 436,130.4 436,141.6" fill="black" transform="rotate(270,440,136)"/>
                <polygon class="arrowhead" points="392,96 380,90.4 380,101.6" fill="black" transform="rotate(0,384,96)"/>
                <polygon class="arrowhead" points="376,488 364,482.4 364,493.6" fill="black" transform="rotate(90,368,488)"/>
                <polygon class="arrowhead" points="368,384 356,378.4 356,389.6" fill="black" transform="rotate(90,360,384)"/>
                <polygon class="arrowhead" points="368,208 356,202.4 356,213.6" fill="black" transform="rotate(270,360,208)"/>
                <polygon class="arrowhead" points="368,104 356,98.4 356,109.6" fill="black" transform="rotate(270,360,104)"/>
                <polygon class="arrowhead" points="352,496 340,490.4 340,501.6" fill="black" transform="rotate(180,344,496)"/>
                <polygon class="arrowhead" points="224,96 212,90.4 212,101.6" fill="black" transform="rotate(0,216,96)"/>
                <polygon class="arrowhead" points="208,488 196,482.4 196,493.6" fill="black" transform="rotate(90,200,488)"/>
                <polygon class="arrowhead" points="208,384 196,378.4 196,389.6" fill="black" transform="rotate(90,200,384)"/>
                <polygon class="arrowhead" points="208,208 196,202.4 196,213.6" fill="black" transform="rotate(270,200,208)"/>
                <polygon class="arrowhead" points="208,104 196,98.4 196,109.6" fill="black" transform="rotate(270,200,104)"/>
                <polygon class="arrowhead" points="184,496 172,490.4 172,501.6" fill="black" transform="rotate(180,176,496)"/>
                <g class="text">
                  <text x="440" y="84">HBH</text>
                  <text x="124" y="100">Encode</text>
                  <text x="280" y="100">Packetize</text>
                  <text x="440" y="100">Protect</text>
                  <text x="196" y="164">SFrame</text>
                  <text x="356" y="164">SFrame</text>
                  <text x="200" y="180">Protect</text>
                  <text x="360" y="180">Protect</text>
                  <text x="24" y="196">Alice</text>
                  <text x="200" y="196">(per-frame)</text>
                  <text x="364" y="196">(per-packet)</text>
                  <text x="264" y="292">E2E</text>
                  <text x="296" y="292">Key</text>
                  <text x="464" y="292">HBH</text>
                  <text x="496" y="292">Key</text>
                  <text x="584" y="292">Media</text>
                  <text x="284" y="308">Management</text>
                  <text x="492" y="308">Management</text>
                  <text x="588" y="308">Server</text>
                  <text x="196" y="404">SFrame</text>
                  <text x="364" y="404">SFrame</text>
                  <text x="200" y="420">Unprotect</text>
                  <text x="368" y="420">Unprotect</text>
                  <text x="200" y="436">(per-frame)</text>
                  <text x="372" y="436">(per-packet)</text>
                  <text x="440" y="484">HBH</text>
                  <text x="124" y="500">Decode</text>
                  <text x="280" y="500">Depacketize</text>
                  <text x="440" 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 MUST ensure that each
key used for encrypting media is used by exactly one media sender, in order to
avoid reuse of IVs.</t>
      </section>
      <section anchor="sframe-ciphertext">
        <name>SFrame Ciphertext</name>
        <t>An SFrame ciphertext comprises an SFrame header followed by the output of an
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>
        <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 80,32 L 80,64" fill="none" stroke="black"/>
              <path d="M 96,32 L 96,64" fill="none" stroke="black"/>
              <path d="M 136,32 L 136,64" fill="none" stroke="black"/>
              <path d="M 304,32 L 304,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">R</text>
                <text x="64" y="52">LEN</text>
                <text x="88" y="52">X</text>
                <text x="116" y="52">KLEN</text>
                <text x="208" y="52">Key</text>
                <text x="236" 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[
   +-+---+-+----+--------------------+---------------------+<-+
   |R|LEN|X|KLEN|       Key ID       |       Counter       |  |
+->+-+---+-+----+--------------------+---------------------+  |
|  |                                                       |  |
|  |                                                       |  |
|  |                                                       |  |
|  |                                                       |  |
|  |                   Encrypted Data                      |  |
|  |                                                       |  |
|  |                                                       |  |
|  |                                                       |  |
|  |                                                       |  |
+->+-------------------------------------------------------+<-+
|  |                 Authentication Tag                    |  |
|  +-------------------------------------------------------+  |
|                                                             |
|                                                             |
+--- Encrypted Portion               Authenticated Portion ---+
]]></artwork>
        </artset>
        <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.</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>A Key ID (KID) that determines which encryption key should be used</li>
          <li>A counter (CTR) that is used to construct the IV for the encryption</li>
        </ul>
        <t>Applications MUST ensure that each (KID, CTR) combination is used for exactly
one encryption operation. A typical approach to achieving this gaurantee is
outlined in <xref target="header-value-uniqueness"/>.</t>
        <t>Both the counter and the key id are encoded as integers in network (big-endian)
byte order, in a variable length format to decrease the overhead.  The length of
each field is up to 8 bytes and is represented in 3 bits in the SFrame header:
000 represents a length of 1, 001 a length of 2, etc.</t>
        <t>The first byte in the SFrame header has a fixed format and contains the header
metadata:</t>
        <figure>
          <name>SFrame header metadata</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="96" width="144" viewBox="0 0 144 96" 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 24,48 L 24,80" fill="none" stroke="black"/>
                <path d="M 72,48 L 72,80" fill="none" stroke="black"/>
                <path d="M 88,48 L 88,80" fill="none" stroke="black"/>
                <path d="M 136,48 L 136,80" 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"/>
                <g class="text">
                  <text x="16" y="36">0</text>
                  <text x="32" y="36">1</text>
                  <text x="48" y="36">2</text>
                  <text x="64" y="36">3</text>
                  <text x="80" y="36">4</text>
                  <text x="96" y="36">5</text>
                  <text x="112" y="36">6</text>
                  <text x="128" y="36">7</text>
                  <text x="16" y="68">R</text>
                  <text x="48" y="68">LEN</text>
                  <text x="80" y="68">X</text>
                  <text x="112" y="68">K</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
 0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+
|R| LEN |X|  K  |
+-+-+-+-+-+-+-+-+
]]></artwork>
          </artset>
        </figure>
        <dl>
          <dt>Reserved (R, 1 bit):</dt>
          <dd>
            <t>This field MUST be set to zero on sending, and MUST be ignored by receivers.</t>
          </dd>
          <dt>Counter Length (LEN, 3 bits):</dt>
          <dd>
            <t>This field indicates the length of the CTR field in bytes, minus one (the
range of possible values is thus 1-8).</t>
          </dd>
          <dt>Extended Key Id Flag (X, 1 bit):</dt>
          <dd>
            <t>Indicates if the key field contains the key id or the key length.</t>
          </dd>
          <dt>Key or Key Length (K, 3 bits):</dt>
          <dd>
            <t>This field contains the key id (KID) if the X flag is set to 0, or the key
length (KLEN) if set to 1.</t>
          </dd>
        </dl>
        <t>If X flag is 0, then the KID is in the range of 0-7 and the counter (CTR) is
found in the next LEN bytes:</t>
        <figure>
          <name>SFrame header with short KID</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="96" width="416" viewBox="0 0 416 96" 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 24,48 L 24,80" fill="none" stroke="black"/>
                <path d="M 72,48 L 72,80" fill="none" stroke="black"/>
                <path d="M 88,48 L 88,80" fill="none" stroke="black"/>
                <path d="M 136,48 L 136,80" fill="none" stroke="black"/>
                <path d="M 408,48 L 408,80" fill="none" stroke="black"/>
                <path d="M 8,48 L 408,48" fill="none" stroke="black"/>
                <path d="M 8,80 L 408,80" fill="none" stroke="black"/>
                <g class="text">
                  <text x="16" y="36">0</text>
                  <text x="32" y="36">1</text>
                  <text x="48" y="36">2</text>
                  <text x="64" y="36">3</text>
                  <text x="80" y="36">4</text>
                  <text x="96" y="36">5</text>
                  <text x="112" y="36">6</text>
                  <text x="128" y="36">7</text>
                  <text x="16" y="68">R</text>
                  <text x="40" y="68">LEN</text>
                  <text x="80" y="68">0</text>
                  <text x="112" y="68">KID</text>
                  <text x="196" y="68">CTR...</text>
                  <text x="276" y="68">(length=LEN)</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
 0 1 2 3 4 5 6 7
+-+-----+-+-----+---------------------------------+
|R|LEN  |0| KID |    CTR... (length=LEN)          |
+-+-----+-+-----+---------------------------------+
]]></artwork>
          </artset>
        </figure>
        <t>If X flag is 1 then KLEN is the length of the key (KID) in bytes, minus one
(the range of possible lengths is thus 1-8). The KID is encoded in
the KLEN bytes following the metadata byte, and the counter (CTR) is encoded
in the next LEN bytes:</t>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="96" width="592" viewBox="0 0 592 96" 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 24,48 L 24,80" fill="none" stroke="black"/>
              <path d="M 72,48 L 72,80" fill="none" stroke="black"/>
              <path d="M 88,48 L 88,80" fill="none" stroke="black"/>
              <path d="M 136,48 L 136,80" fill="none" stroke="black"/>
              <path d="M 360,48 L 360,80" fill="none" stroke="black"/>
              <path d="M 584,48 L 584,80" fill="none" stroke="black"/>
              <path d="M 8,48 L 584,48" fill="none" stroke="black"/>
              <path d="M 8,80 L 584,80" fill="none" stroke="black"/>
              <g class="text">
                <text x="16" y="36">0</text>
                <text x="32" y="36">1</text>
                <text x="48" y="36">2</text>
                <text x="64" y="36">3</text>
                <text x="80" y="36">4</text>
                <text x="96" y="36">5</text>
                <text x="112" y="36">6</text>
                <text x="128" y="36">7</text>
                <text x="16" y="68">R</text>
                <text x="40" y="68">LEN</text>
                <text x="80" y="68">1</text>
                <text x="108" y="68">KLEN</text>
                <text x="188" y="68">KID...</text>
                <text x="272" y="68">(length=KLEN)</text>
                <text x="420" y="68">CTR...</text>
                <text x="500" y="68">(length=LEN)</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
 0 1 2 3 4 5 6 7
+-+-----+-+-----+---------------------------+---------------------------+
|R|LEN  |1|KLEN |   KID... (length=KLEN)    |    CTR... (length=LEN)    |
+-+-----+-+-----+---------------------------+---------------------------+
]]></artwork>
        </artset>
      </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 algorithm below:</t>
        <ul spacing="normal">
          <li>
            <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"/>).</li>
          <li>
            <tt>AEAD.Nk</tt> - The size in bytes of a key for the encryption algorithm</li>
          <li>
            <tt>AEAD.Nn</tt> - The size in bytes of a nonce for the encryption algorithm</li>
          <li>
            <tt>AEAD.Nt</tt> - The overhead in bytes of the encryption algorithm (typically the
size of a "tag" that is added to the plaintext)</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 key should be used for a given
KID.  The process for provisioning keys 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 counter value CTR to be used when encrypting (initially 0).</t>
          <t>When encrypting a plaintext, the application specifies which KID is to be used,
and the counter 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 key MUST NOT 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 SHOULD mark each key 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 encrytion and decryption use a key and salt derived from the <tt>base_key</tt>
associated to a KID.  Given a <tt>base_key</tt> value, the key and salt are derived
using HKDF <xref target="RFC5869"/> as follows:</t>
          <artwork><![CDATA[
def derive_key_salt(KID, base_key):
  sframe_secret = HKDF-Extract("", base_key)
  sframe_key = HKDF-Expand(sframe_secret, "SFrame 1.0 Secret key " + KID, AEAD.Nk)
  sframe_salt = HKDF-Expand(sframe_secret, "SFrame 1.0 Secret salt " + KID, AEAD.Nn)
  return sframe_key, sframe_salt
]]></artwork>
          <t>In the derivation of <tt>sframe_secret</tt>, the <tt>+</tt> operator represents concatenation
of byte strings and the KID value is encoded as an 8-byte big-endian integer
(not the compressed form used in the SFrame header).</t>
          <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> and the nonce is formed by XORing
the <tt>sframe_salt</tt> with the current counter, encoded 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>
          <artwork><![CDATA[
def encrypt(CTR, KID, metadata, plaintext):
  sframe_key, sframe_salt = key_store[KID]

  ctr = encode_big_endian(CTR, AEAD.Nn)
  nonce = xor(sframe_salt, CTR)

  header = encode_sframe_header(CTR, KID)
  aad = header + metadata

  ciphertext = AEAD.Encrypt(sframe_key, nonce, aad, plaintext)
  return header + ciphertext
]]></artwork>
          <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>Encryption flow</name>
            <artset>
              <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="528" width="328" viewBox="0 0 328 528" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                  <path d="M 8,176 L 8,336" fill="none" stroke="black"/>
                  <path d="M 32,32 L 32,64" fill="none" stroke="black"/>
                  <path d="M 32,344 L 32,400" fill="none" stroke="black"/>
                  <path d="M 56,176 L 56,336" fill="none" stroke="black"/>
                  <path d="M 80,224 L 80,256" fill="none" stroke="black"/>
                  <path d="M 80,384 L 80,512" fill="none" stroke="black"/>
                  <path d="M 96,64 L 96,160" 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 208,384 L 208,512" fill="none" stroke="black"/>
                  <path d="M 232,256 L 232,288" fill="none" stroke="black"/>
                  <path d="M 256,128 L 256,448" fill="none" stroke="black"/>
                  <path d="M 320,32 L 320,128" 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 64,160 L 248,160" fill="none" stroke="black"/>
                  <path d="M 8,176 L 56,176" fill="none" stroke="black"/>
                  <path d="M 8,208 L 56,208" fill="none" stroke="black"/>
                  <path d="M 56,224 L 104,224" fill="none" stroke="black"/>
                  <path d="M 208,224 L 248,224" fill="none" stroke="black"/>
                  <path d="M 80,256 L 104,256" fill="none" stroke="black"/>
                  <path d="M 216,256 L 232,256" fill="none" stroke="black"/>
                  <path d="M 8,272 L 56,272" fill="none" stroke="black"/>
                  <path d="M 56,288 L 248,288" fill="none" stroke="black"/>
                  <path d="M 8,336 L 56,336" fill="none" stroke="black"/>
                  <path d="M 80,384 L 208,384" fill="none" stroke="black"/>
                  <path d="M 32,400 L 72,400" fill="none" stroke="black"/>
                  <path d="M 80,416 L 208,416" fill="none" stroke="black"/>
                  <path d="M 216,448 L 256,448" fill="none" stroke="black"/>
                  <path d="M 80,512 L 208,512" fill="none" stroke="black"/>
                  <polygon class="arrowhead" points="256,288 244,282.4 244,293.6" fill="black" transform="rotate(0,248,288)"/>
                  <polygon class="arrowhead" points="256,224 244,218.4 244,229.6" fill="black" transform="rotate(0,248,224)"/>
                  <polygon class="arrowhead" points="256,160 244,154.4 244,165.6" fill="black" transform="rotate(0,248,160)"/>
                  <polygon class="arrowhead" points="224,448 212,442.4 212,453.6" fill="black" transform="rotate(180,216,448)"/>
                  <polygon class="arrowhead" points="112,256 100,250.4 100,261.6" fill="black" transform="rotate(0,104,256)"/>
                  <polygon class="arrowhead" points="112,224 100,218.4 100,229.6" fill="black" transform="rotate(0,104,224)"/>
                  <polygon class="arrowhead" points="80,400 68,394.4 68,405.6" fill="black" transform="rotate(0,72,400)"/>
                  <g class="text">
                    <text x="100" y="52">metadata</text>
                    <text x="256" y="84">plaintext</text>
                    <text x="28" y="164">header</text>
                    <text x="280" y="164">AAD</text>
                    <text x="32" y="196">S</text>
                    <text x="32" y="228">KID</text>
                    <text x="156" y="228">sframe_key</text>
                    <text x="280" y="228">Key</text>
                    <text x="160" y="260">sframe_salt</text>
                    <text x="32" y="292">CTR</text>
                    <text x="288" y="292">Nonce</text>
                    <text x="236" y="356">AEAD</text>
                    <text x="288" y="356">Encrypt</text>
                    <text x="116" y="404">SFrame</text>
                    <text x="172" y="404">Header</text>
                    <text x="148" y="468">ciphertext</text>
                  </g>
                </svg>
              </artwork>
              <artwork type="ascii-art"><![CDATA[
   +----------------+  +---------------+
   |    metadata    |  |               |
   +-------+--------+  |               |
           |           |   plaintext   |
           |           |               |
           |           |               |
           |           +-------+-------+
           |                   |
header ----+------------------>| AAD
+-----+                        |
|  S  |                        |
+-----+                        |
| KID +--+--> sframe_key ----->| Key
|     |  |                     |
|     |  +--> sframe_salt --+  |
+-----+                     |  |
| CTR +---------------------+->| Nonce
|     |                        |
|     |                        |
+-----+                        |
   |                       AEAD.Encrypt
   |                           |
   |     +---------------+     |
   +---->| SFrame Header |     |
         +---------------+     |
         |               |     |
         |               |<----+
         |   ciphertext  |
         |               |
         |               |
         +---------------+
]]></artwork>
            </artset>
          </figure>
        </section>
        <section anchor="decryption">
          <name>Decryption</name>
          <t>Before decrypting, a client needs to assemble a full SFrame ciphertext. When
an SFrame ciphertext may be 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 an 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, then 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.</t>
          <artwork><![CDATA[
def decrypt(metadata, sframe_ciphertext):
  KID, CTR, 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)
]]></artwork>
          <t>If a ciphertext fails to decrypt because there is no key available for the KID
in the SFrame header, the client MAY buffer the ciphertext and retry decryption
once a key with that KID is received.</t>
        </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>A hash function used for key derivation</li>
          <li>An AEAD encryption algorithm <xref target="RFC5116"/> used for frame encryption, optionally
with a truncated authentication tag</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">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">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">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">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">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">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 hundred-twenty-eight-bit tag, "_80" indicates
a eighty-bit tag, "_64" indicates a sixty-four-bit tag and "_32" indicates a
thirty-two-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 eighty-bit tags for video frames
and another cipher suite with thirty-two-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 using HKDF.  The subkeys are derived as
follows, where <tt>Nk</tt> represents the key size for the AES block cipher in use,
<tt>Nh</tt> represents the output size of the hash function, and <tt>Nt</tt> represents the
size of a tag for the cipher in bytes (as in <xref target="iana-cipher-suites"/>):</t>
          <artwork><![CDATA[
def derive_subkeys(sframe_key):
  tag_len = encode_big_endian(Nt, 8)
  aead_label = "SFrame 1.0 AES CTR AEAD " + tag_len
  aead_secret = HKDF-Extract(aead_label, sframe_key)
  enc_key = HKDF-Expand(aead_secret, "enc", Nk)
  auth_key = HKDF-Expand(aead_secret, "auth", Nh)
  return enc_key, auth_key
]]></artwork>
          <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>
          <artwork><![CDATA[
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)
  ct = AES-CTR.Encrypt(enc_key, nonce, 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")

  return AES-CTR.Decrypt(enc_key, nonce, inner_ct)
]]></artwork>
        </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>Provisioning KID / <tt>base_key</tt> mappings to participating clients</li>
        <li>Updating the above data as clients join or leave</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 pre-existing E2E-secure channel, they can
use it to distribute SFrame keys.  Each client participating in a call generates
a fresh encryption key. 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 SSRC).  SFrame KID
values are then used to distinguish between versions of the sender's key.</t>
        <t>Key IDs 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[
sender_base_key[i+1] = HKDF-Expand(
                         HKDF-Extract("", sender_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
re-ordering 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 key ID.</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 mid-call, 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>
      </section>
      <section anchor="mls">
        <name>MLS</name>
        <t>The Messaging Layer Security (MLS) protocol provides group authenticated key
exchange <xref target="I-D.ietf-mls-architecture"/> <xref target="I-D.ietf-mls-protocol"/>.  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 know 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 re-ordering window, since no more than 2<sup><tt>E</tt></sup>
epochs can be active at a given time.  Receivers MUST be prepared for the epoch
counter to roll over, removing an old epoch when a new epoch with the same E
lower 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</tt> &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 (context value </tt>0` 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 KIDs and <tt>sender_base_key</tt> values on demand,
as it needs to encrypt/decrypt for a given member.</t>
        <figure anchor="mls-evolution">
          <name>An example sequence of KIDs for an MLS-based SFrame session.  We assume that the group has 64 members, S=6.</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>Selective Forwarding Units (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 about
how to do this stream selection but in general, in order to do so, the SFU needs
to access metadata associated to 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 this normal SFU modes of operation interacts with the
E2EE provided by SFrame</t>
        <section anchor="lastn-and-rtp-stream-reuse">
          <name>LastN and 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 MID) may carry media from different streams of different
participants. As different keys are used by each participant for encoding their
media, the receiver will be able to verify which is the sender of the media
coming within the RTP stream at any given point in time, preventing the SFU
trying to impersonate any of the participants with another participant's media.</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 counter for each.</t>
        </section>
        <section anchor="svc">
          <name>SVC</name>
          <t>In both temporal and spatial scalability, the SFU may choose to drop layers in
order to match a certain bitrate or forward specific media sizes or frames per
second. In order to support it, the sender MUST encode each spatial layer of a
given picture in a different frame. That is, an RTP frame may contain more than
one SFrame encrypted frame with an incrementing frame counter.</t>
        </section>
      </section>
      <section anchor="video-key-frames">
        <name>Video Key Frames</name>
        <t>Forward and Post-Compromise Security requires that the e2ee keys are updated
anytime a participant joins/leave 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 encrypted frame
with a key 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>Receiver will re-request an key frame then, 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 when the new e2ee key is in use, the time
required for the new participant to display the video is minimized.</t>
      </section>
      <section anchor="partial-decoding">
        <name>Partial Decoding</name>
        <t>Some codes support partial decoding, where it can decrypt individual packets
without waiting for the full frame to arrive, with SFrame this won't be possible
because the decoder will not access the packets until the entire frame has
arrived and was decrypted.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <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>Key exchange mechanism is out of scope of this document, however every client
SHOULD change their keys when new clients joins or leaves the call for "Forward
Secrecy" and "Post Compromise Security".</t>
      </section>
      <section anchor="authentication-tag-length">
        <name>Authentication tag length</name>
        <t>The cipher suites defined in this draft use short authentication tags for
encryption, however it can easily support other ciphers with full authentication
tag if the short ones are proved insecure.</t>
      </section>
      <section anchor="replay">
        <name>Replay</name>
        <t>The handling of replay is out of the scope of this document. However, senders
MUST 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>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document requests the creation of the following new IANA registries:</t>
      <ul spacing="normal">
        <li>SFrame Cipher Suites (<xref target="sframe-cipher-suites"/>)</li>
      </ul>
      <t>This registries should be under a heading of "SFrame",
and assignments are made via the Specification Required policy <xref target="RFC8126"/>.</t>
      <t>RFC EDITOR: Please replace XXXX throughout with the RFC number assigned to
this document</t>
      <section anchor="sframe-cipher-suites">
        <name>SFrame Cipher Suites</name>
        <t>This 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>Template:</t>
        <ul spacing="normal">
          <li>Value: The numeric value of the cipher suite</li>
          <li>Name: The name of the cipher suite</li>
          <li>Reference: The document where this wire format is defined</li>
        </ul>
        <t>Initial contents:</t>
        <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">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0001</td>
              <td align="left">
                <tt>AES_128_CTR_HMAC_SHA256_80</tt></td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0002</td>
              <td align="left">
                <tt>AES_128_CTR_HMAC_SHA256_64</tt></td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0003</td>
              <td align="left">
                <tt>AES_128_CTR_HMAC_SHA256_32</tt></td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0004</td>
              <td align="left">
                <tt>AES_128_GCM_SHA256_128</tt></td>
              <td align="left">RFC XXXX</td>
            </tr>
            <tr>
              <td align="left">0x0005</td>
              <td align="left">
                <tt>AES_256_GCM_SHA512_128</tt></td>
              <td align="left">RFC XXXX</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 integration must meet in
order for SFrame to operate securely.</t>
      <section anchor="header-value-uniqueness">
        <name>Header Value Uniqueness</name>
        <t>Applications MUST ensure that each (KID, CTR) combination is used for exactly
one encryption operation. 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. Note that in addition to its
simplicity, this scheme minimizes overhead by keeping CTR values as small as
possible.</t>
      </section>
      <section anchor="key-management-framework">
        <name>Key Management Framework</name>
        <t>It is up to the application to provision 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 applications KID assignment strategy MUST be structured to
assure the non-reuse properties discussed above.</t>
        <t>It is also up to the application to define a rotation schedule for keys.  For
example, one application might have an ephemeral group for every call and keep
rotating keys when end points 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 MUST 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 MAY
apply time or counter based anti-replay mitigations.</t>
      </section>
      <section anchor="metadata">
        <name>Metadata</name>
        <t>The <tt>metadata</tt> input to SFrame operations is pure application-specified data. As
such, it is up to the application 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 SHOULD NOT use SFrame-authenticated
metadata until after the SFrame decrypt function has authenticated it.</t>
        <t>Note: The <tt>metadata</tt> input is a feature at risk, and needs more confirmation that it
is useful and/or needed.</t>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <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="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>
        <name>Informative References</name>
        <reference anchor="TestVectors" target="https://github.com/eomara/sframe/blob/master/test-vectors.json">
          <front>
            <title>SFrame Test Vectors</title>
            <author>
              <organization/>
            </author>
            <date year="2021"/>
          </front>
        </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="24" month="January" year="2023"/>
            <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 a 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-05"/>
        </reference>
        <reference anchor="I-D.ietf-moq-transport">
          <front>
            <title>Media over QUIC Transport</title>
            <author fullname="Luke Curley" initials="L." surname="Curley">
              <organization>Twitch</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>
            <date day="5" month="July" year="2023"/>
            <abstract>
              <t>   This document defines the core behavior for Media over QUIC Transport
   (MOQT), a media transport protocol over QUIC.  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-00"/>
        </reference>
        <reference anchor="I-D.ietf-mls-architecture">
          <front>
            <title>The Messaging Layer Security (MLS) Architecture</title>
            <author fullname="Benjamin Beurdouche" initials="B." surname="Beurdouche">
              <organization>Inria &amp; Mozilla</organization>
            </author>
            <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Emad Omara" initials="E." surname="Omara">
              <organization>Google</organization>
            </author>
            <author fullname="Srinivas Inguva" initials="S." surname="Inguva">
         </author>
            <author fullname="Alan Duric" initials="A." surname="Duric">
              <organization>Wire</organization>
            </author>
            <date day="26" month="July" year="2023"/>
            <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-11"/>
        </reference>
        <reference anchor="I-D.ietf-mls-protocol">
          <front>
            <title>The Messaging Layer Security (MLS) Protocol</title>
            <author fullname="Richard Barnes" initials="R." surname="Barnes">
              <organization>Cisco</organization>
            </author>
            <author fullname="Benjamin Beurdouche" initials="B." surname="Beurdouche">
              <organization>Inria &amp; Mozilla</organization>
            </author>
            <author fullname="Raphael Robert" initials="R." surname="Robert">
              <organization>Phoenix R&amp;D</organization>
            </author>
            <author fullname="Jon Millican" initials="J." surname="Millican">
              <organization>Meta Platforms</organization>
            </author>
            <author fullname="Emad Omara" initials="E." surname="Omara">
              <organization>Google</organization>
            </author>
            <author fullname="Katriel Cohn-Gordon" initials="K." surname="Cohn-Gordon">
              <organization>University of Oxford</organization>
            </author>
            <date day="27" month="March" 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="Internet-Draft" value="draft-ietf-mls-protocol-20"/>
        </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="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="RFC4566">
          <front>
            <title>SDP: Session Description Protocol</title>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="V. Jacobson" initials="V." surname="Jacobson"/>
            <author fullname="C. Perkins" initials="C." surname="Perkins"/>
            <date month="July" year="2006"/>
            <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. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4566"/>
          <seriesInfo name="DOI" value="10.17487/RFC4566"/>
        </reference>
        <reference anchor="I-D.codec-agnostic-rtp-payload-format">
          <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="Dr. Alex Gouaillard" initials="A." surname="Gouaillard">
              <organization>CoSMo Software</organization>
            </author>
            <date day="19" month="February" 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 signalling
   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

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-codec-agnostic-rtp-payload-format-00"/>
        </reference>
      </references>
    </references>
    <?line 945?>

<section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>The authors wish to specially thank 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="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>
          <strong>Create an SFrame context:</strong> The context is initialized with a ciphersuite and
no KID mappings.</li>
        <li>
          <strong>Adding 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 counter value.</li>
        <li>
          <strong>Adding a key for receiving:</strong> The key and salt are derived from the base key, and
used to initialize a send context.</li>
        <li>
          <strong>Encrypt a plaintext:</strong> Encrypt a given plaintext using the key for a given KID,
including the specified metadata.</li>
        <li>
          <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.</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>How many senders are involved in a conference (length of KID)</li>
        <li>How long the conference has been going on (length of CTR)</li>
        <li>The cipher suite in use (length of authentication tag)</li>
        <li>Whether SFrame is used to encrypt packets, whole frames, or some other unit</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 secton, 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 on those seen in practice.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Field</th>
              <th align="right">Bytes</th>
              <th align="left">Explanataion</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Fixed header</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 GCM 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>The below table considers three scenarios, based on recommended configurations
of the Opus codec <xref target="RFC6716"/>:</t>
        <ul spacing="normal">
          <li>Narrow-band speech: 120ms packets, 8Kbps</li>
          <li>Full-band speech: 20ms packets, 32Kbps</li>
          <li>Full-band stereo music: 10ms packets, 128Kbps</li>
        </ul>
        <table anchor="audio-overhead">
          <name>SFrame overhead for audio streams</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">NB speech, 120ms packets</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">FB speech, 20ms packets</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">FB stereo, 10ms packets</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 are chosen to 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">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 goes up, 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 over 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
sending high-quality.  (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="RFC4566"/>, 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 / 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.codec-agnostic-rtp-payload-format"/>.</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>
            <tt>kid</tt>: A KID value</li>
          <li>
            <tt>ctr</tt>: A CTR value</li>
          <li>
            <tt>header</tt>: An encoded SFrame header</li>
        </ul>
        <t>An implementation should verify that:</t>
        <ul spacing="normal">
          <li>Encoding a header with the KID and CTR results in the provided header value</li>
          <li>Decoding the provided header value results in the provided KID and CTR values</li>
        </ul>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000000000000
header: 0000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000000000001
header: 0001
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x00000000000000ff
header: 00ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000000000100
header: 100100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x000000000000ffff
header: 10ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000000010000
header: 20010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000000ffffff
header: 20ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000001000000
header: 3001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x00000000ffffffff
header: 30ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000000100000000
header: 400100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x000000ffffffffff
header: 40ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000010000000000
header: 50010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0000ffffffffffff
header: 50ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0001000000000000
header: 6001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x00ffffffffffffff
header: 60ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0x0100000000000000
header: 700100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000000
ctr: 0xffffffffffffffff
header: 70ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000000000000
header: 0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000000000001
header: 0101
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x00000000000000ff
header: 01ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000000000100
header: 110100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x000000000000ffff
header: 11ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000000010000
header: 21010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000000ffffff
header: 21ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000001000000
header: 3101000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x00000000ffffffff
header: 31ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000000100000000
header: 410100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x000000ffffffffff
header: 41ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000010000000000
header: 51010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0000ffffffffffff
header: 51ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0001000000000000
header: 6101000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x00ffffffffffffff
header: 61ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0x0100000000000000
header: 710100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000001
ctr: 0xffffffffffffffff
header: 71ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000000000000
header: 08ff00
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000000000001
header: 08ff01
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x00000000000000ff
header: 08ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000000000100
header: 18ff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x000000000000ffff
header: 18ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000000010000
header: 28ff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000000ffffff
header: 28ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000001000000
header: 38ff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x00000000ffffffff
header: 38ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000000100000000
header: 48ff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x000000ffffffffff
header: 48ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000010000000000
header: 58ff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0000ffffffffffff
header: 58ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0001000000000000
header: 68ff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x00ffffffffffffff
header: 68ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0x0100000000000000
header: 78ff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000000000ff
ctr: 0xffffffffffffffff
header: 78ffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000000000000
header: 09010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000000000001
header: 09010001
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x00000000000000ff
header: 090100ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000000000100
header: 1901000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x000000000000ffff
header: 190100ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000000010000
header: 290100010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000000ffffff
header: 290100ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000001000000
header: 39010001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x00000000ffffffff
header: 390100ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000000100000000
header: 4901000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x000000ffffffffff
header: 490100ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000010000000000
header: 590100010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0000ffffffffffff
header: 590100ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0001000000000000
header: 69010001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x00ffffffffffffff
header: 690100ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0x0100000000000000
header: 7901000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000000100
ctr: 0xffffffffffffffff
header: 790100ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000000000000
header: 09ffff00
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000000000001
header: 09ffff01
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x00000000000000ff
header: 09ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000000000100
header: 19ffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x000000000000ffff
header: 19ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000000010000
header: 29ffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000000ffffff
header: 29ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000001000000
header: 39ffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x00000000ffffffff
header: 39ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000000100000000
header: 49ffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x000000ffffffffff
header: 49ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000010000000000
header: 59ffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0000ffffffffffff
header: 59ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0001000000000000
header: 69ffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x00ffffffffffffff
header: 69ffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0x0100000000000000
header: 79ffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000000000ffff
ctr: 0xffffffffffffffff
header: 79ffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000000000000
header: 0a01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000000000001
header: 0a01000001
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x00000000000000ff
header: 0a010000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000000000100
header: 1a0100000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x000000000000ffff
header: 1a010000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000000010000
header: 2a010000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000000ffffff
header: 2a010000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000001000000
header: 3a01000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x00000000ffffffff
header: 3a010000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000000100000000
header: 4a0100000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x000000ffffffffff
header: 4a010000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000010000000000
header: 5a010000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0000ffffffffffff
header: 5a010000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0001000000000000
header: 6a01000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x00ffffffffffffff
header: 6a010000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0x0100000000000000
header: 7a0100000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000010000
ctr: 0xffffffffffffffff
header: 7a010000ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000000000000
header: 0affffff00
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000000000001
header: 0affffff01
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x00000000000000ff
header: 0affffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000000000100
header: 1affffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x000000000000ffff
header: 1affffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000000010000
header: 2affffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000000ffffff
header: 2affffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000001000000
header: 3affffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x00000000ffffffff
header: 3affffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000000100000000
header: 4affffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x000000ffffffffff
header: 4affffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000010000000000
header: 5affffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0000ffffffffffff
header: 5affffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0001000000000000
header: 6affffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x00ffffffffffffff
header: 6affffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0x0100000000000000
header: 7affffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000000ffffff
ctr: 0xffffffffffffffff
header: 7affffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000000000000
header: 0b0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000000000001
header: 0b0100000001
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x00000000000000ff
header: 0b01000000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000000000100
header: 1b010000000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x000000000000ffff
header: 1b01000000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000000010000
header: 2b01000000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000000ffffff
header: 2b01000000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000001000000
header: 3b0100000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x00000000ffffffff
header: 3b01000000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000000100000000
header: 4b010000000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x000000ffffffffff
header: 4b01000000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000010000000000
header: 5b01000000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0000ffffffffffff
header: 5b01000000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0001000000000000
header: 6b0100000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x00ffffffffffffff
header: 6b01000000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0x0100000000000000
header: 7b010000000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000001000000
ctr: 0xffffffffffffffff
header: 7b01000000ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000000000000
header: 0bffffffff00
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000000000001
header: 0bffffffff01
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x00000000000000ff
header: 0bffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000000000100
header: 1bffffffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x000000000000ffff
header: 1bffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000000010000
header: 2bffffffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000000ffffff
header: 2bffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000001000000
header: 3bffffffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x00000000ffffffff
header: 3bffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000000100000000
header: 4bffffffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x000000ffffffffff
header: 4bffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000010000000000
header: 5bffffffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0000ffffffffffff
header: 5bffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0001000000000000
header: 6bffffffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x00ffffffffffffff
header: 6bffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0x0100000000000000
header: 7bffffffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00000000ffffffff
ctr: 0xffffffffffffffff
header: 7bffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000000000000
header: 0c010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000000000001
header: 0c010000000001
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x00000000000000ff
header: 0c0100000000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000000000100
header: 1c01000000000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x000000000000ffff
header: 1c0100000000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000000010000
header: 2c0100000000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000000ffffff
header: 2c0100000000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000001000000
header: 3c010000000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x00000000ffffffff
header: 3c0100000000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000000100000000
header: 4c01000000000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x000000ffffffffff
header: 4c0100000000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000010000000000
header: 5c0100000000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0000ffffffffffff
header: 5c0100000000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0001000000000000
header: 6c010000000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x00ffffffffffffff
header: 6c0100000000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0x0100000000000000
header: 7c01000000000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000000100000000
ctr: 0xffffffffffffffff
header: 7c0100000000ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000000000000
header: 0cffffffffff00
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000000000001
header: 0cffffffffff01
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x00000000000000ff
header: 0cffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000000000100
header: 1cffffffffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x000000000000ffff
header: 1cffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000000010000
header: 2cffffffffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000000ffffff
header: 2cffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000001000000
header: 3cffffffffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x00000000ffffffff
header: 3cffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000000100000000
header: 4cffffffffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x000000ffffffffff
header: 4cffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000010000000000
header: 5cffffffffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0000ffffffffffff
header: 5cffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0001000000000000
header: 6cffffffffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x00ffffffffffffff
header: 6cffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0x0100000000000000
header: 7cffffffffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x000000ffffffffff
ctr: 0xffffffffffffffff
header: 7cffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000000000000
header: 0d01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000000000001
header: 0d01000000000001
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x00000000000000ff
header: 0d010000000000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000000000100
header: 1d0100000000000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x000000000000ffff
header: 1d010000000000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000000010000
header: 2d010000000000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000000ffffff
header: 2d010000000000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000001000000
header: 3d01000000000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x00000000ffffffff
header: 3d010000000000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000000100000000
header: 4d0100000000000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x000000ffffffffff
header: 4d010000000000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000010000000000
header: 5d010000000000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0000ffffffffffff
header: 5d010000000000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0001000000000000
header: 6d01000000000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x00ffffffffffffff
header: 6d010000000000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0x0100000000000000
header: 7d0100000000000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000010000000000
ctr: 0xffffffffffffffff
header: 7d010000000000ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000000000000
header: 0dffffffffffff00
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000000000001
header: 0dffffffffffff01
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x00000000000000ff
header: 0dffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000000000100
header: 1dffffffffffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x000000000000ffff
header: 1dffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000000010000
header: 2dffffffffffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000000ffffff
header: 2dffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000001000000
header: 3dffffffffffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x00000000ffffffff
header: 3dffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000000100000000
header: 4dffffffffffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x000000ffffffffff
header: 4dffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000010000000000
header: 5dffffffffffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0000ffffffffffff
header: 5dffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0001000000000000
header: 6dffffffffffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x00ffffffffffffff
header: 6dffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0x0100000000000000
header: 7dffffffffffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0000ffffffffffff
ctr: 0xffffffffffffffff
header: 7dffffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000000000000
header: 0e0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000000000001
header: 0e0100000000000001
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x00000000000000ff
header: 0e01000000000000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000000000100
header: 1e010000000000000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x000000000000ffff
header: 1e01000000000000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000000010000
header: 2e01000000000000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000000ffffff
header: 2e01000000000000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000001000000
header: 3e0100000000000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x00000000ffffffff
header: 3e01000000000000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000000100000000
header: 4e010000000000000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x000000ffffffffff
header: 4e01000000000000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000010000000000
header: 5e01000000000000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0000ffffffffffff
header: 5e01000000000000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0001000000000000
header: 6e0100000000000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x00ffffffffffffff
header: 6e01000000000000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0x0100000000000000
header: 7e010000000000000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0001000000000000
ctr: 0xffffffffffffffff
header: 7e01000000000000ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000000000000
header: 0effffffffffffff00
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000000000001
header: 0effffffffffffff01
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x00000000000000ff
header: 0effffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000000000100
header: 1effffffffffffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x000000000000ffff
header: 1effffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000000010000
header: 2effffffffffffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000000ffffff
header: 2effffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000001000000
header: 3effffffffffffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x00000000ffffffff
header: 3effffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000000100000000
header: 4effffffffffffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x000000ffffffffff
header: 4effffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000010000000000
header: 5effffffffffffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0000ffffffffffff
header: 5effffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0001000000000000
header: 6effffffffffffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x00ffffffffffffff
header: 6effffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0x0100000000000000
header: 7effffffffffffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x00ffffffffffffff
ctr: 0xffffffffffffffff
header: 7effffffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000000000000
header: 0f010000000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000000000001
header: 0f010000000000000001
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x00000000000000ff
header: 0f0100000000000000ff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000000000100
header: 1f01000000000000000100
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x000000000000ffff
header: 1f0100000000000000ffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000000010000
header: 2f0100000000000000010000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000000ffffff
header: 2f0100000000000000ffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000001000000
header: 3f010000000000000001000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x00000000ffffffff
header: 3f0100000000000000ffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000000100000000
header: 4f01000000000000000100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x000000ffffffffff
header: 4f0100000000000000ffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000010000000000
header: 5f0100000000000000010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0000ffffffffffff
header: 5f0100000000000000ffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0001000000000000
header: 6f010000000000000001000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x00ffffffffffffff
header: 6f0100000000000000ffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0x0100000000000000
header: 7f01000000000000000100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0x0100000000000000
ctr: 0xffffffffffffffff
header: 7f0100000000000000ffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000000000000
header: 0fffffffffffffffff00
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000000000001
header: 0fffffffffffffffff01
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x00000000000000ff
header: 0fffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000000000100
header: 1fffffffffffffffff0100
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x000000000000ffff
header: 1fffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000000010000
header: 2fffffffffffffffff010000
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000000ffffff
header: 2fffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000001000000
header: 3fffffffffffffffff01000000
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x00000000ffffffff
header: 3fffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000000100000000
header: 4fffffffffffffffff0100000000
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x000000ffffffffff
header: 4fffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000010000000000
header: 5fffffffffffffffff010000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0000ffffffffffff
header: 5fffffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0001000000000000
header: 6fffffffffffffffff01000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x00ffffffffffffff
header: 6fffffffffffffffffffffffffffffff
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0x0100000000000000
header: 7fffffffffffffffff0100000000000000
]]></artwork>
        <artwork><![CDATA[
kid: 0xffffffffffffffff
ctr: 0xffffffffffffffff
header: 7fffffffffffffffffffffffffffffffff
]]></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>
            <tt>cipher_suite</tt>: The index of the cipher suite in use (see
<xref target="sframe-cipher-suites"/>)</li>
          <li>
            <tt>key</tt>: The <tt>key</tt> input to encryption/decryption</li>
          <li>
            <tt>aead_label</tt>: The <tt>aead_label</tt> variable in the <tt>derive_subkeys()</tt> algorithm</li>
          <li>
            <tt>aead_secret</tt>: The <tt>aead_secret</tt> variable in the <tt>derive_subkeys()</tt> algorithm</li>
          <li>
            <tt>enc_key</tt>: The encryption subkey produced by the <tt>derive_subkeys()</tt> algorithm</li>
          <li>
            <tt>auth_key</tt>: The encryption subkey produced by the <tt>derive_subkeys()</tt> algorithm</li>
          <li>
            <tt>nonce</tt>: The <tt>nonce</tt> input to encryption/decryption</li>
          <li>
            <tt>aad</tt>: The <tt>aad</tt> input to encryption/decryption</li>
          <li>
            <tt>pt</tt>: The plaintext</li>
          <li>
            <tt>ct</tt>: The ciphertext</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>
            <tt>AEAD.Encrypt(key, nonce, aad, pt) == ct</tt></li>
          <li>
            <tt>AEAD.Decrypt(key, nonce, aad, ct) == pt</tt></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
aead_label: 534672616d6520312e302041455320435452204145414420000000000000000a
aead_secret: fda0fef7af62639ae1c6440f430395f54623f9a49db659201312ed6d9999a580
enc_key: d6a61ca11fe8397b24954cda8b9543cf
auth_key: 0a43277c91120b7c7b6584bede06fcdfe0d07f9d1c9f15fcf0cad50aaecdd585
nonce: 101112131415161718191a1b
aad: 4945544620534672616d65205747
pt: 64726166742d696574662d736672616d652d656e63
ct: 1075c7114e10c12f20a709450ef8a891e9f070d4fae7b01f558599c929fdfd
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0002
key: 000102030405060708090a0b0c0d0e0f
aead_label: 534672616d6520312e3020414553204354522041454144200000000000000008
aead_secret: a0d71a69b2033a5a246eefbed19d95aee712a7639a752e5ad3a2b44c9f331caa
enc_key: 0ef75d1dd74b81e4d2252e6daa7226da
auth_key: 5584d32db18ede79fe8071a334ff31eb2ca0249a7845a61965d2ec620a50c59e
nonce: 101112131415161718191a1b
aad: 4945544620534672616d65205747
pt: 64726166742d696574662d736672616d652d656e63
ct: f8551395579efc8dfdda575ed1a048f8b6cbf0e85653f0a514dea191e4
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0003
key: 000102030405060708090a0b0c0d0e0f
aead_label: 534672616d6520312e3020414553204354522041454144200000000000000004
aead_secret: ff69640f46d50930ce38bcf5aa5f6417a5bff98a991c79da06a0be460211dd36
enc_key: 96a673a94981bd85e71fcf05c79f2a01
auth_key: bbf3b39da1eb8ed31fc5e0b26896a070f1a43e5ad3009b4c9d6c32e77ac68fce
nonce: 101112131415161718191a1b
aad: 4945544620534672616d65205747
pt: 64726166742d696574662d736672616d652d656e63
ct: d6455bdbe7b5e8cdda861a8e90835637c0f7990349ce9052e6
]]></artwork>
      </section>
      <section anchor="sframe-encryptiondecryption">
        <name>SFrame encryption/decryption</name>
        <t>For each case, we provide:</t>
        <ul spacing="normal">
          <li>
            <tt>cipher_suite</tt>: The index of the cipher suite in use (see
<xref target="sframe-cipher-suites"/>)</li>
          <li>
            <tt>kid</tt>: A KID value</li>
          <li>
            <tt>ctr</tt>: A CTR value</li>
          <li>
            <tt>base_key</tt>: The <tt>base_key</tt> input to the <tt>derive_key_salt</tt> algorithm</li>
          <li>
            <tt>sframe_label</tt>: The <tt>sframe_label</tt> variable in the <tt>derive_key_salt</tt> algorithm</li>
          <li>
            <tt>sframe_secret</tt>: The <tt>sframe_secret</tt> variable in the <tt>derive_key_salt</tt> algorithm</li>
          <li>
            <tt>sframe_key</tt>: The <tt>sframe_key</tt> value produced by the <tt>derive_key_salt</tt> algorithm</li>
          <li>
            <tt>sframe_salt</tt>: The <tt>sframe_salt</tt> value produced by the <tt>derive_key_salt</tt> algorithm</li>
          <li>
            <tt>metadata</tt>: The <tt>metadata</tt> input to the SFrame <tt>encrypt</tt> algorithm</li>
          <li>
            <tt>pt</tt>: The plaintext</li>
          <li>
            <tt>ct</tt>: The SFrame ciphertext</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>
            <tt>encrypt(ctr, kid, metadata, plaintext) == ct</tt></li>
          <li>
            <tt>decrypt(metadata, ct) == pt</tt></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_label: 534672616d6520312e3020
sframe_secret: d926952ca8b7ec4a95941d1ada3a5203ceff8cceee34f574d23909eb314c40c0
sframe_key: 52cef96e29191912a6be442a9651c43a
sframe_salt: 9655c98fdad276683deb279c
metadata: 4945544620534672616d65205747
nonce: 9655c98fdad276683deb62fb
aad: 19012345674945544620534672616d65205747
pt: 64726166742d696574662d736672616d652d656e63
ct: 1901234567b6a27b2d24f1f06d49cffe6c82af5a96e0d89443a7a93a8700f96fdda3e43c
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0002
kid: 0x0000000000000123
ctr: 0x0000000000004567
base_key: 000102030405060708090a0b0c0d0e0f
sframe_label: 534672616d6520312e3020
sframe_secret: d926952ca8b7ec4a95941d1ada3a5203ceff8cceee34f574d23909eb314c40c0
sframe_key: 52cef96e29191912a6be442a9651c43a
sframe_salt: 9655c98fdad276683deb279c
metadata: 4945544620534672616d65205747
nonce: 9655c98fdad276683deb62fb
aad: 19012345674945544620534672616d65205747
pt: 64726166742d696574662d736672616d652d656e63
ct: 190123456728b1faac3515d5ca29f3db9c52f27789c5ec8386ff0b570853ebcf721c
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0003
kid: 0x0000000000000123
ctr: 0x0000000000004567
base_key: 000102030405060708090a0b0c0d0e0f
sframe_label: 534672616d6520312e3020
sframe_secret: d926952ca8b7ec4a95941d1ada3a5203ceff8cceee34f574d23909eb314c40c0
sframe_key: 52cef96e29191912a6be442a9651c43a
sframe_salt: 9655c98fdad276683deb279c
metadata: 4945544620534672616d65205747
nonce: 9655c98fdad276683deb62fb
aad: 19012345674945544620534672616d65205747
pt: 64726166742d696574662d736672616d652d656e63
ct: 190123456754719dcfbe065e1606068cb6b6b5f1a9a371e633ff088485e7
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0004
kid: 0x0000000000000123
ctr: 0x0000000000004567
base_key: 000102030405060708090a0b0c0d0e0f
sframe_label: 534672616d6520312e3020
sframe_secret: d926952ca8b7ec4a95941d1ada3a5203ceff8cceee34f574d23909eb314c40c0
sframe_key: 52cef96e29191912a6be442a9651c43a
sframe_salt: 9655c98fdad276683deb279c
metadata: 4945544620534672616d65205747
nonce: 9655c98fdad276683deb62fb
aad: 19012345674945544620534672616d65205747
pt: 64726166742d696574662d736672616d652d656e63
ct: 1901234567d4dfcd537dbd054dcf4bdab53bf451826843325838178391f63dc15b9475d6081b59c776a5
]]></artwork>
        <artwork><![CDATA[
cipher_suite: 0x0005
kid: 0x0000000000000123
ctr: 0x0000000000004567
base_key: 000102030405060708090a0b0c0d0e0f
sframe_label: 534672616d6520312e3020
sframe_secret: 0fc3ea6de6aac97a35f194cf9bed94d4b5230f1cb45a785c9fe5dce9c188938ab6ba005bc4c0a19181599e9d1bcf7b74aca48b60bf5e254e546d809313e083a3
sframe_key: 5f3f7c1b277d9cad86b906da39702c3fcdf720902817977ae99bd10f2e5ad56a
sframe_salt: a653f558a8018877314fb8d9
metadata: 4945544620534672616d65205747
nonce: a653f558a8018877314ffdbe
aad: 19012345674945544620534672616d65205747
pt: 64726166742d696574662d736672616d652d656e63
ct: 19012345672f55e5feb46d118576dc715566003f4becf5252149c839aea7dd5434bf8eceb8b4d59bbfb2
]]></artwork>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+19a3cbx5Ho9/kVs8zJhrQACIM3GNs3tETZWluyrig5ydlk
xcHMgJwVgEEwA1JcU/ntt179mgdIwN7s3j2L3VjEoKe6urq6uqq6qrrdbntF
WiySU/8iibabxH+xCZeJf3xB/5544Wy2SW7gV/ruxVm0gn9P/XgTzot2mhTz
dj7Hn9rJKmp3+14UFslVtrk79fMi9rx0vTn1i802L3rd7rTb8/Jik4TLU//l
+bsXXgh/n/pHZ+v1IoUX02yV++Eq9t8m4aL9Ll0mR97H5O4228TwwqpINquk
aD/Hrj3Aqe/dJKttcur5/tUm264BkgziVRKnIQ8lP4Kfi7s14Hz0x2zzMV1d
+d9ia3y+DNMFPOcR/AFH08k2V/hLuImu4Zfroljnp0+fYkN8lN4kHdXsKT54
Ottkt3nylEE8xVev0uJ6O9Ng27dX8iv+uADy5IUFWTfq8HudNFPAamncuS6W
iyPPC7fFdbaBsbcBqu+nq/zUP+/4Py7DTUhPeJ7Ol2FsPQS0w1X6H0TqUx/p
ntDzhCmRZNjyDyE+70TZ0oH+Lx3//SzZFKkF/l9gYtOV/dzt4dssu3K7+Pct
tf3DFf1S6eSi47/abtLFIrN6uUg2V2nmfwsEh2m1f3d7e5ZdvMr8i2xe3AJn
2b3mBKFzRRA6S4bwhyjLl1kuzYHwDiZvOz90/G9CYLncQuVtGl2Hm9h3fyuh
keZRZve+Wcz+kK5vOvknerrJcL0BixbZxunyzx3/RThbJIXV4Z+zbbJa2c8f
mMM7esGaQy9dzbPNEtrf0Fp5Bwz4UxJB5/kpvSgC4IjXOP3uS4MjbhBurhJg
WsWzwqkA/ClzjOLY2SKbwVrJYaU+RT5v3zCYzr/n2YpAxcD/p36v2ws8z2u3
2344A4kQRoXnvbtOcx8EzHaZrAo/TvJok86S3C+uk3rh5CeruF1ksCpi+DPa
3K2RJChAaHUAFBEq/jKBWVul+dIHSsA3lA6EcQ6E90N/uV0U6TrcFHd+lK3m
yQbAJX4ULhYtaODdXsOs+xEA3IQLeR046ibZ5P5xnixgkEBbhA2MFKOE2a7S
IoeZArn5Pj8BSNBLFCU5jcZjCMukCIEcob9KkjiJ/SIDefTRARMnUZqTVLwF
kmfbwr8Ob/AHBSwjeEC+rUKsg4RM/PUmW2c5QDVDj9P5HDGeb7KlTVQtbP03
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
zmJhXmpv3CbV8waPonUtWorPQcUyOKF60ubEFI7kBC0duSpWiZwwqPwbPYdq
gpT/TWo6y2Ul0HxJ/stkFW7STKz+M/SbrOWkWXqliw7RaRdtF+pI5TbhK3+k
fmLICXvmZblqQpxCCqWWXTLCIMrCILcHoT1ui/Rjwtm9fC34do1BjJx/SRYs
zl/OOfugH2B8ODlS7v0XdDZgnxB+Qyep9yA7QMCuQFqmlQvOm04Xa6q23vM/
pw8dMdYeOxJ+n8zVH4RfIHjyL/t87qVog77fm+D0BN7XveFQCbjfU/y2Svf1
j8+/GpwQR38djLQQ5BL4zkWnVL9V4L0yeZwDEMDbTW7CjtKV4iwOeDD4yYG6
nnUq5crjxYCRb5+9omCWYxSnGFGnDs2RFU4q4yXmzIqQBRevADuFJqm/SpE2
B9gZ/F5PX/Ko2ROvjEv01Zl0+K6XR4v8UxTVra4DVHdrEPnMBfdsi7NNLW87
69PSb+3tMZzlmFKUyD55jDL0RMKP/dAD+BE6E660Tkvmg949VXBQnGZcZ5Wq
iNo5DVy82lxbGaIPpl1kbXTFbBJZ2tfpWpdGssqY6g1FIhAM5rmx8ZXNjQAp
EkyGSYm8hkB40meIR3kIYpSypCkoGFNNA8LH+yStmdCh6lhvZrnkS6lVLVgJ
kxEi/bje5hSBGEmF0dEYw2tOOaBhs8lu2zMOz06S6PrUD3rdZW5GO8FZgKbI
oW5Dt12/V20I85hg5f48jQCu0zzoMWBYFRcyrOqS9udrFFacHz6jv7X+Vf7+
2911peknW1CVhZbz/RRX6+tvZKgtlybQ66TTtzL6Jk52X9AZqO/BuDMlvPwX
BpYDClsOu+Z9KvJsPpPOSH3vjWxYRNmWQ1MSn10DCyhswwJcNOyg3xn8ViIb
aJW0NTO7UQ36sanKK+tJLofgSHPP+8kq+qu0o0W4uSL3U0helVfv3osVu2Ud
k4UkBtJhMUU/jDZZnpuKA1L+1weupXBbjWNbrxy56be2AVPl82cvv5aLg422
poeV6Xud2JXBcb08RBWWq1VMr3KlUEnstegsR5UEUC7Oa8zayjl0L5eUyZZX
0XHYxNfCjCnEqeSUwr+9ul7cOTpcFK5DFU6CMhzT2DYrGQMt+FyIShWCMCCK
HC90trrgXED6+zq9uvaxemRa3HXKK/IXLsID1t2gN/I/wb7apd7HnaFh48Gw
tNTMMuyp5TGCFz/5/RG/jmnEuom1OviVkVktnX7t633zyqD0+tAsKPM6rDp8
f9zrll4Phjte7+rXpz18PehOqPFIvzIuIR90rbF3O4Fazk1LZefCdvjeOmnW
b9Nqr+eL9a/EHb+cR34dTrEmvMwv9owB7+zgl1Ej1zjzpoHUcU0waeSdfrcz
tYAEzbwznjRxUNAfdAKLf6c7OIjF28EsxK8TD4k9ZdgSVeSWrRDaWp62jkwm
M3mjOS7eE5GltEHG4AoTBbBsEocnG4FKsd/sR0HlfXanU7YwR8yjbYpxQsvf
HCdZBHgMsp6FLEeigsDX+mSd5rumlEfqQIcXwF55TLtPr+fpm9jLL1J+CJ/o
4xYr5/2gq3T5Vk2AQg4PNkSDzuS3J3JPivbS5JjPwwGn6gnorVvSjsUHZPLJ
af9HFO25VpU09fgNoiru23EgibYcXl1tkivK3Zu76nTG+Q+UZuJZSTB2d9tc
RfboriK0wUJWOmqZiM52PFuJaal4fAs9OkSSkecVjaBQGUUExrNNALHSV8nV
Ir2iOBw2KG70nX4Zu5kslpTyWab7TumKxJ9/Nr/pJamd/A7Zyq4OMN08Tom1
h8cqjSSK5rq6I518YFEktaTYklXsSM4yT7VDdUE1hNk4PsOMH9f03HUN4wnx
i+fwkB9j5rGq7mYpQYWsmPfa7CKL16ah4jvMiKB0+g15RoLfsirDAqn8+TWM
ir02rDdWMlkgS8m3y4I8wohwYTABbRiP2fNsGL0aPEoGyNT8ZgwQF0YZj6qi
Y8HXis47mkZilffOvAiMiTOWYGTt7UGnq/aqmtWxe5fCq0Yqq0LZMtYrmKSr
c88oqoQSDzmhK1zn4gaUGH5OdFxaye1O2KYKXvA4DMfx51kF0VHj13Y99K9y
zHTYhcRrchELkGV2oLTaYJS/QSpR6EqKGH7MJga7v0XwXWORLXQ2cRrmrZz1
67AxpAXYaSiYzuyIUQp5sGOc5HxWAufEc4nuI0qgpxzGAozWFSdXacyNL4mu
qnOD4E93OJzEgSL+JtQrYLhSW8Ymfr3TSrZbq0IE7fTh3SIjq5CrSptLAs2J
Ss3Jbosv9jOFVleVw9ucrNCVczeSMlAxvKFxmBaGpoQE40W45owZRbFaSefE
lTkHSc3TTV5YY6NyoeqUylPp55Ziwv5YSRrItzMu5lOUulQvzrcb8nhF19vV
R+10sqkTUopUafRk5hsaWLf5mAuoeBPS3apARozXIPUE+Gm9SSSmUZc6bXmm
3LpTzHWWaA8ZP5BKz6mprMNF4TjAR66VMTFBei+jy0RU8WhT6Mi6U7JSHUKd
23t2vQm+sEkqlXPsAdfJNF48O+6PChbYvO2p+6P8i+dvCBpoHxlWSUVgiI5b
hojdf4PhaESRSs5dlZ6+WJjiGp8r0WHuF8ALxyUyr8OJFA2uYNSg3EoC6k7l
0Io1dJ55IqH4uFGJ2iVW5pdiupqQfJqpAj95gJIupfQp46klE6BQ4TgrTH42
xYUoIOephUpiTk6zdQgTa4VB+8cJXZ2hc21LV8/7vsPAovfKSDyXABJABnSm
qyiIkSkIaba4I93s1oSmM9/KQYCkTWKVOJy4TEtiKq5LLp92eLXKQBWM2pti
3Za102YeonXm1NHGYmdP6P/486TdUIGv4fPkS7lR+qevevdv7v8EW/SzZ/j9
FW/Wb94527pZLnJCaG37978KPg9cGIwfikEuQMHe0cbG55d86vBRVS80N2Tb
DR6s0yUOVkJlLT5f/bJPLX102CkVoxFsnpWwyf06fHbRGT8d+Oz6/T+TzuqD
clALt2Ms7/bjm3cvf3x99kP5SE3wedL+uhafPZB8IldfIz7u5biPIFoZn/sG
+jTemd0MZ4+uHwunUqmmdBcdVWZj3eM/CZ+m+drjQ3KsCR+6nK/mRsod9PlV
+PmXEkdQoqKqPIhzPUlvsk1RPvqnJmfOzKlmbee68N84Gqw2uBx1WZceaUvN
C8MHR59rdqHy8Ku3lRN5lVYsmQQ1U+bIkycWxB1Xo7s/8t/c0yMaPhriIxqW
8X7S1PBBSLUNfqpp8FPNTRb1POkypKx7FXPrdPloiA1IO8j/ogY/NTWopXQt
AR/b5V4Njbh8EGKJEf8xOD6aPA9BUrq8EQ7obH80sAZO0o9RwehU+akBeP1j
6o2WRt36aHxcXTiyIdc/rgq0+5JqcF+P5H3906beH/t6fTv8R23Xvaev8Tuq
cNbT1/TUs54E3O5X6v1Rr/9Cyld2MtsbofazcxMyNcfTctrTjJlrRVShwQf8
LRHC7zBy66eEAmxLiVP6OhV9dwTVe7/hxpKL5iRNcTAF5ftnnpTxtC6cyjZ8
i4mVHVkN+HJz+/i+FTuv38FBmbfqsEJqRZrjJ6vgxFP7NuJbsfy1w6AMlbnc
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
5v8DKvehzR5QAQA=

-->

</rfc>
