<?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.10 (Ruby 2.7.0) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-avtcore-cryptex-06" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.10 -->
  <front>
    <title>Completely Encrypting RTP Header Extensions and Contributing Sources</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-avtcore-cryptex-06"/>
    <author initials="J." surname="Uberti" fullname="Justin Uberti">
      <organization>Clubhouse</organization>
      <address>
        <email>justin@uberti.name</email>
      </address>
    </author>
    <author initials="C." surname="Jennings" fullname="Cullen Jennings">
      <organization>Cisco</organization>
      <address>
        <email>fluffy@iii.ca</email>
      </address>
    </author>
    <author initials="S." surname="Garcia Murillo" fullname="Sergio Garcia Murillo">
      <organization>CoSMo</organization>
      <address>
        <email>sergio.garcia.murillo@cosmosoftware.io</email>
      </address>
    </author>
    <date year="2022" month="June" day="06"/>
    <area>ART</area>
    <workgroup>AVTCORE</workgroup>
    <keyword>SRTP</keyword>
    <abstract>
      <t>While the Secure Real-time Transport Protocol (SRTP) provides confidentiality
for the contents of a media packet, a significant amount of metadata is left
unprotected, including RTP header extensions and contributing sources (CSRCs).
However, this data can be moderately sensitive in many applications. While
there have been previous attempts to protect this data, they have had limited
deployment, due to complexity as well as technical limitations.</t>
      <t>This document defines Cryptex as a new mechanism that completely encrypts
header extensions and CSRCs and uses simpler signaling with the goal of
facilitating deployment.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <section anchor="problem-statement">
        <name>Problem Statement</name>
        <t>The Secure Real-time Transport Protocol <xref target="RFC3711"/> mechanism provides message
authentication for the entire RTP packet, but only encrypts the RTP payload.
This has not historically been a problem, as much of the information carried
in the header has minimal sensitivity (e.g., RTP timestamp); in addition,
certain fields need to remain as cleartext because they are used for key
scheduling (e.g., RTP SSRC and sequence number).</t>
        <t>However, as noted in <xref target="RFC6904"/>, the security requirements can be different for
information carried in RTP header extensions, including the per-packet sound
levels defined in <xref target="RFC6464"/> and <xref target="RFC6465"/>, which are specifically noted as
being sensitive in the Security Considerations section of those RFCs.</t>
        <t>In addition to the contents of the header extensions, there are now enough
header extensions in active use that the header extension identifiers
themselves can provide meaningful information in terms of determining the
identity of the endpoint and/or application. Accordingly, these identifiers
can be considered a fingerprinting issue.</t>
        <t>Finally, the CSRCs included in RTP packets can also be sensitive, potentially
allowing a network eavesdropper to determine who was speaking and when during
an otherwise secure conference call.</t>
      </section>
      <section anchor="previous-solutions">
        <name>Previous Solutions</name>
        <t><xref target="RFC6904"/> was proposed in 2013 as a solution to the problem of unprotected
header extension values. However, it has not seen significant adoption, and
has a few technical shortcomings.</t>
        <t>First, the mechanism is complicated. Since it allows encryption to be
negotiated on a per-extension basis, a fair amount of signaling logic is
required. And in the SRTP layer, a somewhat complex transform is required
to allow only the selected header extension values to be encrypted. One of
the most popular SRTP implementations had a significant bug in this area
that was not detected for five years.</t>
        <t>Second, it only protects the header extension values, and not their ids or
lengths. It also does not protect the CSRCs. As noted above, this leaves
a fair amount of potentially sensitive information exposed.</t>
        <t>Third, it bloats the header extension space. Because each extension must
be offered in both unencrypted and encrypted forms, twice as many header
extensions must be offered, which will in many cases push implementations
past the 14-extension limit for the use of one-byte extension headers
defined in <xref target="RFC8285"/>. Accordingly, implementations will need to use
two-byte headers in many cases, which are not supported well by some
existing implementations.</t>
        <t>Finally, the header extension bloat combined with the need for backwards
compatibility results in additional wire overhead. Because two-byte
extension headers may not be handled well by existing implementations,
one-byte extension identifiers will need to be used for the unencrypted
(backwards compatible) forms, and two-byte for the encrypted forms.
Thus, deployment of <xref target="RFC6904"/> encryption for header extensions will
typically result in multiple extra bytes in each RTP packet, compared
to the present situation.</t>
      </section>
      <section anchor="goals">
        <name>Goals</name>
        <t>From this analysis we can state the desired properties of a solution:</t>
        <ul spacing="normal">
          <li>Build on existing <xref target="RFC3711"/> SRTP framework (simple to understand)</li>
          <li>Build on existing <xref target="RFC8285"/> header extension framework (simple to implement)</li>
          <li>Protection of header extension ids, lengths, and values</li>
          <li>Protection of CSRCs when present</li>
          <li>Simple signaling</li>
          <li>Simple crypto transform and SRTP interactions</li>
          <li>Backward compatible with unencrypted endpoints, if desired</li>
          <li>Backward compatible with existing RTP tooling</li>
        </ul>
        <t>The last point deserves further discussion. While we considered possible
solutions that would have encrypted more of the RTP header (e.g., the number
of CSRCs), we felt the inability to parse the resultant packets with current
tools, as well as additional complexity incurred, outweighed the slight
improvement in confidentiality.</t>
      </section>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
    </section>
    <section anchor="design">
      <name>Design</name>
      <t>This specification proposes a mechanism to negotiate encryption of all
RTP header extensions (ids, lengths, and values) as well as CSRC values. It
reuses the existing SRTP framework, is accordingly simple to implement, and
is backward compatible with existing RTP packet parsing code, even when
support for the mechanism has been negotiated.</t>
    </section>
    <section anchor="signaling">
      <name>Signaling</name>
      <t>In order to determine whether the mechanism defined in this specification
is supported, this document defines a new "a=cryptex"
Session Description Protocol (SDP) attribute to indicate support.</t>
      <t>This attribute is a property attribute as defined in <xref target="RFC4566"/> section 5.13 and therefore takes no value, and can be used at the session level or media level.</t>
      <t>The presence of this attribute in the SDP (either in an offer or answer) indicates that
the endpoint is capable of receiving RTP packets encrypted with Cryptex, as defined below.</t>
      <t>Once each peer has verified that the other party supports receiving RTP packets encrypted with Cryptex, senders can unilaterally decide whether to use the Cryptex mechanism or not.</t>
      <t>If BUNDLE is in use and the a=cryptex attribute is present for a media line, it <bcp14>MUST</bcp14> be present for all media lines belonging to the same bundle group. This ensures that the encrypted MID header extensions used to demux BUNDLE can be processed correctly. When used with BUNDLE, this attribute is assigned to the TRANSPORT category <xref target="RFC8859"/>.</t>
      <t>Peers <bcp14>MAY</bcp14> negotiate both Cryptex and the header extension mechanism defined in <xref target="RFC6904"/> via signaling, and if both mechanisms are supported, either one can be used for any given packet. However, if a packet is encrypted with Cryptex, it <bcp14>MUST NOT</bcp14> also use <xref target="RFC6904"/> header extension encryption, and vice versa.</t>
    </section>
    <section anchor="rtp-header-processing">
      <name>RTP Header Processing</name>
      <t><xref target="RFC8285"/> defines two values for the "defined by profile" field for carrying
one-byte and two-byte header extensions. In order to allow a receiver to determine
if an incoming RTP packet is using the encryption scheme in this specification,
two new values are defined:</t>
      <ul spacing="normal">
        <li>0xC0DE for the encrypted version of the one-byte header extensions (instead of 0xBEDE).</li>
        <li>0xC2DE for the encrypted versions of the two-byte header extensions (instead of 0x100).</li>
      </ul>
      <t>In the case of using two-byte header extensions, the extension id with value 256 <bcp14>MUST NOT</bcp14>
be negotiated, as the value of this id is meant to be contained in the "appbits" of the
"defined by profile" field, which are not available when using the values above.</t>
      <t>If the "a=extmap-allow-mixed" attribute defined in <xref target="RFC8285"/> is negotiated, either one-byte
or two-byte header ids can be used (with the values above), as in <xref target="RFC8285"/>.</t>
      <section anchor="sending">
        <name>Sending</name>
        <t>When the mechanism defined by this specification has been negotiated,
sending a RTP packet that has any CSRCs or contains any {RFC8285}}
header extensions follows the steps below. This mechanism <bcp14>MUST NOT</bcp14> be
used with header extensions other than the <xref target="RFC8285"/> variety.</t>
        <t>If the packet contains solely one-byte extension ids, the 16-bit RTP header extension
tag <bcp14>MUST</bcp14> be set to 0xC0DE to indicate that the encryption has been applied, and the
one-byte framing is being used. If the packet contains only two-byte extension ids,
the header extension tag <bcp14>MUST</bcp14> be set to 0xC2DE to indicate encryption has been applied,
and the two-byte framing is being used.</t>
        <t>If the packet contains CSRCs but no header extensions, an empty extension block
consisting of the 0xC0DE tag and a 16-bit length field set to zero (explicitly
permitted by <xref target="RFC3550"/>) <bcp14>MUST</bcp14> be appended, and the X bit <bcp14>MUST</bcp14> be set to 1 to
indicate an extension block is present. This is necessary to provide the receiver
an indication that the CSRCs in the packet are encrypted.</t>
        <t>The RTP packet <bcp14>MUST</bcp14> then be encrypted as described in Encryption Procedure.</t>
      </section>
      <section anchor="receiving">
        <name>Receiving</name>
        <t>When receiving an RTP packet that contains header extensions, the
"defined by profile" field <bcp14>MUST</bcp14> be checked to ensure the payload is
formatted according to this specification. If the field does not match
one of the values defined above, the implementation <bcp14>MUST</bcp14> instead
handle it according to the specification that defines that value.</t>
        <t>Alternatively, if the implementation considers the use of this specification mandatory and the "defined by profile" field does not match one of the values defined above, it <bcp14>SHOULD</bcp14> stop the processing of the RTP packet and report an error for the RTP stream.</t>
        <t>If the RTP packet passes this check, it is then decrypted according to
Decryption Procedure, and passed to the the next layer to process
the packet and its extensions. In the event that a zero-length extension
block was added as indicated above, it can be left as-is and will be
processed normally.</t>
      </section>
    </section>
    <section anchor="encryption-and-decryption">
      <name>Encryption and Decryption</name>
      <section anchor="packet-structure">
        <name>Packet Structure</name>
        <t>When this mechanism is active, the SRTP packet is protected as follows:</t>
        <figure anchor="srtp-packet">
          <artwork align="center"><![CDATA[
       0                   1                   2                   3
       0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<+
      |V=2|P|X|  CC   |M|     PT      |       sequence number         | |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
      |                           timestamp                           | |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
      |           synchronization source (SSRC) identifier            | |
    +>+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ |
    | |            contributing source (CSRC) identifiers             | |
    | |                               ....                            | |
    +>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
    X |  0xC0 or 0xC2 |    0xDE       |           length              | |
    +>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
    | |                  RFC 8285 header extensions                   | |
    | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
    | |                          payload  ...                         | |
    | |                               +-------------------------------+ |
    | |                               | RTP padding   | RTP pad count | |
    +>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<+
    | ~                     SRTP MKI (OPTIONAL)                       ~ |
    | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
    | :                 authentication tag (RECOMMENDED)              : |
    | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
    |                                                                   |
    +- Encrypted Portion*                      Authenticated Portion ---+
]]></artwork>
        </figure>
        <ul spacing="normal">
          <li>Note that the 4 bytes at the start of the extension block are not encrypted, as
required by <xref target="RFC8285"/>.</li>
        </ul>
        <t>Specifically, the encrypted portion <bcp14>MUST</bcp14> include any CSRC identifiers, any
RTP header extension (except for the first 4 bytes), and the RTP payload.</t>
      </section>
      <section anchor="encryption-procedure">
        <name>Encryption Procedure</name>
        <t>The encryption procedure is identical to that of <xref target="RFC3711"/> except for the
Encrypted Portion of the SRTP packet. The plaintext input to the cipher is as follows:</t>
        <artwork><![CDATA[
Plaintext = CSRC identifiers (if used) || header extension data || 
     RTP payload || RTP padding (if used) || RTP pad count (if used).
]]></artwork>
        <t>Here "header extension data" refers to the content of the RTP extension field,
excluding the first four bytes (the RFC 8285 extension header).  The first
<tt>4*CC</tt> bytes of the ciphertext are placed in the CSRC field of the RTP header.
The remainder of the ciphertext is the RTP payload of the encrypted packet.</t>
        <t>To minimize changes to surrounding code, the encryption mechanism can choose
to replace a "defined by profile" field from <xref target="RFC8285"/> with its counterpart
defined in RTP Header Processing above and encrypt at the same time.</t>
        <t>For AEAD ciphers (e.g., GCM), the 12-byte fixed header and the four-byte header
extension header (the "defined by profile" field and the length) are considered
AAD, even though they are non-contiguous in the packet if CSRCs are present.</t>
        <artwork><![CDATA[
Associated Data: fixed header || extension header (if X=1)
]]></artwork>
        <t>Here "fixed header" refers to the 12-byte fixed portion of the RTP header, and
"extension header" refers to the four-byte RFC 8285 extension header ("defined
by profile" and extension length).</t>
        <t>Implementations can rearrange a packet so that the AAD and plaintext are
contiguous by swapping the order of the extension header and the CSRC
identifiers, resulting in an intermediate representation of the form shown in
<xref target="intermediate-packet"/>.  After encryption, the CSRCs (now encrypted) and
extension header would need to be swapped back to their original positions. A
similar operation can be done when decrypting to create contiguous ciphertext
and AAD inputs.</t>
        <figure anchor="intermediate-packet">
          <name>An RTP packet transformed to make Cryptex cipher inputs contiguous</name>
          <artwork align="center"><![CDATA[
       0                   1                   2                   3
       0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+<+
      |V=2|P|X|  CC   |M|     PT      |       sequence number         | |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
      |                           timestamp                           | |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
      |           synchronization source (SSRC) identifier            | |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
      |  0xC0 or 0xC2 |    0xDE       |           length              | |
    +>+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+<+
    | |            contributing source (CSRC) identifiers             | |
    | |                               ....                            | |
    | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
    | |                  RFC 8285 header extensions                   | |
    | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
    | |                          payload  ...                         | |
    | |                               +-------------------------------+ |
    | |                               | RTP padding   | RTP pad count | |
    +>+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
    |                                                                   |
    +- Plaintext Input                                     AAD Input ---+
]]></artwork>
        </figure>
      </section>
      <section anchor="decryption-procedure">
        <name>Decryption Procedure</name>
        <t>The decryption procedure is identical to that of <xref target="RFC3711"/> except
for the Encrypted Portion of the SRTP packet, which is as shown in the section above.</t>
        <t>To minimize changes to surrounding code, the decryption mechanism can choose
to replace the "defined by profile" field with its no-encryption counterpart
from <xref target="RFC8285"/> and decrypt at the same time.</t>
      </section>
    </section>
    <section anchor="backwards-compatibility">
      <name>Backwards Compatibility</name>
      <t>This specification attempts to encrypt as much as possible without interfering
with backwards compatibility for systems that expect a certain structure from
an RTPv2 packet, including systems that perform demultiplexing based on packet
headers. Accordingly, the first two bytes of the RTP packet are not encrypted.</t>
      <t>This specification also attempts to reuse the key scheduling from SRTP, which
depends on the RTP packet sequence number and SSRC identifier. Accordingly
these values are also not encrypted.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This specification extends SRTP by expanding the portion of the packet that is
encrypted, as shown in Packet Structure. It does not change how SRTP authentication
works in any way. Given that more of the packet is being encrypted than before,
this is necessarily an improvement.</t>
      <t>The RTP fields that are left unencrypted (see rationale above) are as follows:</t>
      <ul spacing="normal">
        <li>RTP version</li>
        <li>padding bit</li>
        <li>extension bit</li>
        <li>number of CSRCs</li>
        <li>marker bit</li>
        <li>payload type</li>
        <li>sequence number</li>
        <li>timestamp</li>
        <li>SSRC identifier</li>
        <li>number of <xref target="RFC8285"/> header extensions</li>
      </ul>
      <t>These values contain a fixed set (i.e., one that won't be changed by
extensions) of information that, at present, is observed to have low
sensitivity. In the event any of these values need to be encrypted, SRTP
is likely the wrong protocol to use and a fully-encapsulating protocol
such as DTLS is preferred (with its attendant per-packet overhead).</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="sdp-attribute">
        <name>SDP Attribute</name>
        <t>This document updates the "Session Description Protocol Parameters" registry as specified in Section 8.2.4 of <xref target="RFC8866"/>. Specifically, it adds the SDP 'cryptex' attribute to the table for SDP media-level attributes.</t>
        <t>Contact name: IETF AVT Working Group or IESG if AVT is closed</t>
        <t>Contact email address: avt@ietf.org</t>
        <t>Attribute name: cryptex</t>
        <t>Attribute syntax: This attribute takes no values.</t>
        <t>Attribute semantics: N/A</t>
        <t>Attribute value: N/A</t>
        <t>Usage level: media-level</t>
        <t>Charset dependent: No</t>
        <t>Purpose: The presence of this attribute in the SDP indicates that the endpoint is capable of receiving RTP packets encrypted with Cryptex as described in this document.</t>
        <t>O/A procedures: SDP O/A procedures are described in Section 4 of this document.</t>
        <t>Mux Category: TRANSPORT</t>
      </section>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>The authors wish to thank Lennart Grahl for pointing out many of the issues with the existing
header encryption mechanism, as well as suggestions for this proposal.
Thanks also to Jonathan Lennox, Inaki Castillo, and Bernard Aboba for their review and suggestions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC3550" target="https://www.rfc-editor.org/info/rfc3550">
          <front>
            <title>RTP: A Transport Protocol for Real-Time Applications</title>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne">
              <organization/>
            </author>
            <author fullname="S. Casner" initials="S." surname="Casner">
              <organization/>
            </author>
            <author fullname="R. Frederick" initials="R." surname="Frederick">
              <organization/>
            </author>
            <author fullname="V. Jacobson" initials="V." surname="Jacobson">
              <organization/>
            </author>
            <date month="July" year="2003"/>
            <abstract>
              <t>This memorandum describes RTP, the real-time transport protocol.  RTP provides end-to-end network transport functions suitable for applications transmitting real-time data, such as audio, video or simulation data, over multicast or unicast network services.  RTP does not address resource reservation and does not guarantee quality-of- service for real-time services.  The data transport is augmented by a control protocol (RTCP) to allow monitoring of the data delivery in a manner scalable to large multicast networks, and to provide minimal control and identification functionality.  RTP and RTCP are designed to be independent of the underlying transport and network layers.  The protocol supports the use of RTP-level translators and mixers. Most of the text in this memorandum is identical to RFC 1889 which it obsoletes.  There are no changes in the packet formats on the wire, only changes to the rules and algorithms governing how the protocol is used. The biggest change is an enhancement to the scalable timer algorithm for calculating when to send RTCP packets in order to minimize transmission in excess of the intended rate when many participants join a session simultaneously.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="64"/>
          <seriesInfo name="RFC" value="3550"/>
          <seriesInfo name="DOI" value="10.17487/RFC3550"/>
        </reference>
        <reference anchor="RFC3711" target="https://www.rfc-editor.org/info/rfc3711">
          <front>
            <title>The Secure Real-time Transport Protocol (SRTP)</title>
            <author fullname="M. Baugher" initials="M." surname="Baugher">
              <organization/>
            </author>
            <author fullname="D. McGrew" initials="D." surname="McGrew">
              <organization/>
            </author>
            <author fullname="M. Naslund" initials="M." surname="Naslund">
              <organization/>
            </author>
            <author fullname="E. Carrara" initials="E." surname="Carrara">
              <organization/>
            </author>
            <author fullname="K. Norrman" initials="K." surname="Norrman">
              <organization/>
            </author>
            <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="RFC4566" target="https://www.rfc-editor.org/info/rfc4566">
          <front>
            <title>SDP: Session Description Protocol</title>
            <author fullname="M. Handley" initials="M." surname="Handley">
              <organization/>
            </author>
            <author fullname="V. Jacobson" initials="V." surname="Jacobson">
              <organization/>
            </author>
            <author fullname="C. Perkins" initials="C." surname="Perkins">
              <organization/>
            </author>
            <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="RFC8285" target="https://www.rfc-editor.org/info/rfc8285">
          <front>
            <title>A General Mechanism for RTP Header Extensions</title>
            <author fullname="D. Singer" initials="D." surname="Singer">
              <organization/>
            </author>
            <author fullname="H. Desineni" initials="H." surname="Desineni">
              <organization/>
            </author>
            <author fullname="R. Even" initials="R." role="editor" surname="Even">
              <organization/>
            </author>
            <date month="October" year="2017"/>
            <abstract>
              <t>This document provides a general mechanism to use the header extension feature of RTP (the Real-time Transport Protocol).  It provides the option to use a small number of small extensions in each RTP packet, where the universe of possible extensions is large and registration is decentralized.  The actual extensions in use in a session are signaled in the setup information for that session.  This document obsoletes RFC 5285.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8285"/>
          <seriesInfo name="DOI" value="10.17487/RFC8285"/>
        </reference>
        <reference anchor="RFC8859" target="https://www.rfc-editor.org/info/rfc8859">
          <front>
            <title>A Framework for Session Description Protocol (SDP) Attributes When Multiplexing</title>
            <author fullname="S. Nandakumar" initials="S." surname="Nandakumar">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>The purpose of this specification is to provide a framework for analyzing the multiplexing characteristics of Session Description Protocol (SDP) attributes when SDP is used to negotiate the usage of a single 5-tuple for sending and receiving media associated with multiple media descriptions.</t>
              <t>This specification also categorizes the existing SDP attributes based on the framework described herein.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8859"/>
          <seriesInfo name="DOI" value="10.17487/RFC8859"/>
        </reference>
        <reference anchor="RFC8866" target="https://www.rfc-editor.org/info/rfc8866">
          <front>
            <title>SDP: Session Description Protocol</title>
            <author fullname="A. Begen" initials="A." surname="Begen">
              <organization/>
            </author>
            <author fullname="P. Kyzivat" initials="P." surname="Kyzivat">
              <organization/>
            </author>
            <author fullname="C. Perkins" initials="C." surname="Perkins">
              <organization/>
            </author>
            <author fullname="M. Handley" initials="M." surname="Handley">
              <organization/>
            </author>
            <date month="January" year="2021"/>
            <abstract>
              <t>This memo defines the Session Description Protocol (SDP). SDP is intended for describing multimedia sessions for the purposes of session announcement, session invitation, and other forms of multimedia session initiation. This document obsoletes RFC 4566.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8866"/>
          <seriesInfo name="DOI" value="10.17487/RFC8866"/>
        </reference>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC6464" target="https://www.rfc-editor.org/info/rfc6464">
          <front>
            <title>A Real-time Transport Protocol (RTP) Header Extension for Client-to-Mixer Audio Level Indication</title>
            <author fullname="J. Lennox" initials="J." role="editor" surname="Lennox">
              <organization/>
            </author>
            <author fullname="E. Ivov" initials="E." surname="Ivov">
              <organization/>
            </author>
            <author fullname="E. Marocco" initials="E." surname="Marocco">
              <organization/>
            </author>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines a mechanism by which packets of Real-time Transport Protocol (RTP) audio streams can indicate, in an RTP header extension, the audio level of the audio sample carried in the RTP packet.  In large conferences, this can reduce the load on an audio mixer or other middlebox that wants to forward only a few of the loudest audio streams, without requiring it to decode and measure every stream that is received.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6464"/>
          <seriesInfo name="DOI" value="10.17487/RFC6464"/>
        </reference>
        <reference anchor="RFC6465" target="https://www.rfc-editor.org/info/rfc6465">
          <front>
            <title>A Real-time Transport Protocol (RTP) Header Extension for Mixer-to-Client Audio Level Indication</title>
            <author fullname="E. Ivov" initials="E." role="editor" surname="Ivov">
              <organization/>
            </author>
            <author fullname="E. Marocco" initials="E." role="editor" surname="Marocco">
              <organization/>
            </author>
            <author fullname="J. Lennox" initials="J." surname="Lennox">
              <organization/>
            </author>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document describes a mechanism for RTP-level mixers in audio conferences to deliver information about the audio level of individual participants.  Such audio level indicators are transported in the same RTP packets as the audio data they pertain to. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6465"/>
          <seriesInfo name="DOI" value="10.17487/RFC6465"/>
        </reference>
        <reference anchor="RFC6904" target="https://www.rfc-editor.org/info/rfc6904">
          <front>
            <title>Encryption of Header Extensions in the Secure Real-time Transport Protocol (SRTP)</title>
            <author fullname="J. Lennox" initials="J." surname="Lennox">
              <organization/>
            </author>
            <date month="April" year="2013"/>
            <abstract>
              <t>The Secure Real-time Transport Protocol (SRTP) provides authentication, but not encryption, of the headers of Real-time Transport Protocol (RTP) packets.  However, RTP header extensions may carry sensitive information for which participants in multimedia sessions want confidentiality.  This document provides a mechanism, extending the mechanisms of SRTP, to selectively encrypt RTP header extensions in SRTP.</t>
              <t>This document updates RFC 3711, the Secure Real-time Transport Protocol specification, to require that all future SRTP encryption transforms specify how RTP header extensions are to be encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6904"/>
          <seriesInfo name="DOI" value="10.17487/RFC6904"/>
        </reference>
      </references>
    </references>
    <section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>All values are in hexadecimal and represented in network order (big endian).</t>
      <section anchor="aes-ctr">
        <name>AES-CTR</name>
        <t>Common values are organized as follows:</t>
        <artwork><![CDATA[
    Rollover Counter:          00000000
    Master Key:                e1f97a0d3e018be0d64fa32c06de4139
    Master Salt:               0ec675ad498afeebb6960b3aabe6
    Crypto Suite:              AES_CM_128_HMAC_SHA1_80
    Session Key:               c61e7a93744f39ee10734afe3ff7a087
    Session Salt:              30cbbc08863d8c85d49db34a9ae1
    Authentication Key:        cebe321f6ff7716b6fd4ab49af256a156d38baa4
]]></artwork>
        <section anchor="rtp-packet-with-1-byte-header-extension">
          <name>RTP Packet with 1-byte header extension</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    900f1235
    decafbad
    cafebabe
    bede0001
    51000200
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    900f1235
    decafbad
    cafebabe
    c0de0001
    eb923652
    51c3e036
    f8de27e9
    c27ee3e0
    b4651d9f
    bc4218a7
    0244522f
    34a5
]]></artwork>
        </section>
        <section anchor="rtp-packet-with-2-byte-header-extension">
          <name>RTP Packet with 2-byte header extension</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    900f1236
    decafbad
    cafebabe
    10000001
    05020002
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    900f1236
    decafbad
    cafebabe
    c2de0001
    4ed9cc4e
    6a712b30
    96c5ca77
    339d4204
    ce0d7739
    6cab6958
    5fbce381
    94a5
]]></artwork>
        </section>
        <section anchor="rtp-packet-with-1-byte-header-extension-and-csrc-fields">
          <name>RTP Packet with 1-byte header extension and CSRC fields</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    920f1238
    decafbad
    cafebabe
    0001e240
    0000b26e
    bede0001
    51000200
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    920f1238
    decafbad
    cafebabe
    8bb6e12b
    5cff16dd
    c0de0001
    92838c8c
    09e58393
    e1de3a9a
    74734d67
    45671338
    c3acf11d
    a2df8423
    bee0
]]></artwork>
        </section>
        <section anchor="rtp-packet-with-2-byte-header-extension-and-csrc-fields">
          <name>RTP Packet with 2-byte header extension and CSRC fields</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    920f1239
    decafbad
    cafebabe
    0001e240
    0000b26e
    10000001
    05020002
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    920f1239
    decafbad
    cafebabe
    f70e513e
    b90b9b25
    c2de0001
    bbed4848
    faa64466
    5f3d7f34
    125914e9
    f4d0ae92
    3c6f479b
    95a0f7b5
    3133
]]></artwork>
        </section>
        <section anchor="rtp-packet-with-empty-1-byte-header-extension-and-csrc-fields">
          <name>RTP Packet with empty 1-byte header extension and CSRC fields</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    920f123a
    decafbad
    cafebabe
    0001e240
    0000b26e
    bede0000
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    920f123a
    decafbad
    cafebabe
    7130b6ab
    fe2ab0e3
    c0de0000
    e3d9f64b
    25c9e74c
    b4cf8e43
    fb92e378
    1c2c0cea
    b6b3a499
    a14c
]]></artwork>
        </section>
        <section anchor="rtp-packet-with-empty-2-byte-header-extension-and-csrc-fields">
          <name>RTP Packet with empty 2-byte header extension and CSRC fields</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    920f123b
    decafbad
    cafebabe
    0001e240
    0000b26e
    10000000
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    920f123b
    decafbad
    cafebabe
    cbf24c12
    4330e1c8
    c2de0000
    599dd45b
    c9d687b6
    03e8b59d
    771fd38e
    88b170e0
    cd31e125
    eabe
]]></artwork>
        </section>
      </section>
      <section anchor="aes-gcm">
        <name>AES-GCM</name>
        <t>Common values are organized as follows:</t>
        <artwork><![CDATA[
    Rollover Counter:          00000000
    Master Key:                000102030405060708090a0b0c0d0e0f
    Master Salt:               a0a1a2a3a4a5a6a7a8a9aaab
    Crypto Suite:              AEAD_AES_128_GCM
    Session Key:               077c6143cb221bc355ff23d5f984a16e
    Session Salt:              9af3e95364ebac9c99c5a7c4
]]></artwork>
        <section anchor="rtp-packet-with-1-byte-header-extension-1">
          <name>RTP Packet with 1-byte header extension</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    900f1235
    decafbad
    cafebabe
    bede0001
    51000200
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    900f1235
    decafbad
    cafebabe
    c0de0001
    39972dc9
    572c4d99
    e8fc355d
    e743fb2e
    94f9d8ff
    54e72f41
    93bbc5c7
    4ffab0fa
    9fa0fbeb
]]></artwork>
        </section>
        <section anchor="rtp-packet-with-2-byte-header-extension-1">
          <name>RTP Packet with 2-byte header extension</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    900f1236
    decafbad
    cafebabe
    10000001
    05020002
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    900f1236
    decafbad
    cafebabe
    c2de0001
    bb75a4c5
    45cd1f41
    3bdb7daa
    2b1e3263
    de313667
    c9632490
    81b35a65
    f5cb6c88
    b394235f
]]></artwork>
        </section>
        <section anchor="rtp-packet-with-1-byte-header-extension-and-csrc-fields-1">
          <name>RTP Packet with 1-byte header extension and CSRC fields</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    920f1238
    decafbad
    cafebabe
    0001e240
    0000b26e
    bede0001
    51000200
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    920f1238
    decafbad
    cafebabe
    63bbccc4
    a7f695c4
    c0de0001
    8ad7c71f
    ac70a80c
    92866b4c
    6ba98546
    ef913586
    e95ffaaf
    fe956885
    bb0647a8
    bc094ac8
]]></artwork>
        </section>
        <section anchor="rtp-packet-with-2-byte-header-extension-and-csrc-fields-1">
          <name>RTP Packet with 2-byte header extension and CSRC fields</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    920f1239
    decafbad
    cafebabe
    0001e240
    0000b26e
    10000001
    05020002
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    920f1239
    decafbad
    cafebabe
    3680524f
    8d312b00
    c2de0001
    c78d1200
    38422bc1
    11a7187a
    18246f98
    0c059cc6
    bc9df8b6
    26394eca
    344e4b05
    d80fea83
]]></artwork>
        </section>
        <section anchor="rtp-packet-with-empty-1-byte-header-extension-and-csrc-fields-1">
          <name>RTP Packet with empty 1-byte header extension and CSRC fields</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    920f123a
    decafbad
    cafebabe
    0001e240
    0000b26e
    bede0000
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    920f123a
    decafbad
    cafebabe
    15b6bb43
    37906fff
    c0de0000
    b7b96453
    7a2b03ab
    7ba5389c
    e9331712
    6b5d974d
    f30c6884
    dcb651c5
    e120c1da
]]></artwork>
        </section>
        <section anchor="rtp-packet-with-empty-2-byte-header-extension-and-csrc-fields-1">
          <name>RTP Packet with empty 2-byte header extension and CSRC fields</name>
          <t>RTP Packet:</t>
          <artwork><![CDATA[
    920f123b
    decafbad
    cafebabe
    0001e240
    0000b26e
    10000000
    abababab
    abababab
    abababab
    abababab
]]></artwork>
          <t>Encrypted RTP Packet:</t>
          <artwork><![CDATA[
    920f123b
    decafbad
    cafebabe
    dcb38c9e
    48bf95f4
    c2de0000
    61ee432c
    f9203170
    76613258
    d3ce4236
    c06ac429
    681ad084
    13512dc9
    8b5207d8
]]></artwork>
        </section>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
