<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.21 (Ruby 3.3.6) -->
<?rfc rfcedstyle="yes"?>
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc text-list-symbols="-o*+"?>
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="pre5378Trust200902" docName="draft-ietf-tls-rfc9147bis-00" category="std" consensus="true" obsoletes="9147" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.25.0 -->
  <front>
    <title abbrev="DTLS 1.3">The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-tls-rfc9147bis-00"/>
    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>Independent</organization>
      <address>
        <email>ekr@rtfm.com</email>
      </address>
    </author>
    <author initials="H." surname="Tschofenig" fullname="Hannes Tschofenig">
      <organization abbrev="H-BRS">University of Applied Sciences Bonn-Rhein-Siegx</organization>
      <address>
        <email>hannes.tschofenig@gmx.net</email>
      </address>
    </author>
    <author initials="N." surname="Modadugu" fullname="Nagendra Modadugu">
      <organization>Google, Inc.</organization>
      <address>
        <email>nagendra@cs.stanford.edu</email>
      </address>
    </author>
    <date year="2024" month="December" day="14"/>
    <area>Security</area>
    <workgroup>TLS</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 83?>

<t>This document specifies version 1.3 of the Datagram Transport Layer Security
(DTLS) protocol. DTLS 1.3 allows client/server applications to communicate over the
Internet in a way that is designed to prevent eavesdropping, tampering, and message
forgery.</t>
      <t>The DTLS 1.3 protocol is based on the Transport Layer Security (TLS)
1.3 protocol and provides equivalent security guarantees with the exception of order protection / non-replayability.  Datagram semantics of the underlying transport are preserved by the DTLS protocol.</t>
      <t>This document obsoletes RFC 6347.</t>
    </abstract>
  </front>
  <middle>
    <?line 95?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>The primary goal of the TLS protocol is to establish an authenticated,
confidentiality- and integrity-protected channel between two communicating peers.
The TLS protocol is composed of two layers:
the TLS record protocol and the TLS handshake protocol. However, TLS must
run over a reliable transport channel -- typically TCP <xref target="RFC0793"/>.</t>
      <t>There are applications that use UDP <xref target="RFC0768"/> as a transport and
the Datagram Transport Layer Security (DTLS) protocol has been developed
to offer communication security protection for those applications.
DTLS is deliberately designed to be
as similar to TLS as possible, both to minimize new security invention and to
maximize the amount of code and infrastructure reuse.</t>
      <t>DTLS 1.0 <xref target="RFC4347"/> was originally defined as a delta from TLS 1.1 <xref target="RFC4346"/>, and
DTLS 1.2 <xref target="RFC6347"/> was defined as a series of deltas to TLS 1.2 <xref target="RFC5246"/>.  There
is no DTLS 1.1; that version number was skipped in order to harmonize version numbers
with TLS.  This specification describes the most current version of the DTLS protocol
as a delta from TLS 1.3 <xref target="TLS13"/>. It obsoletes DTLS 1.2.</t>
      <t>Implementations that speak both DTLS 1.2 and DTLS 1.3 can interoperate with those
that speak only DTLS 1.2 (using DTLS 1.2 of course), just as TLS 1.3 implementations
can interoperate with TLS 1.2 (see Appendix D of <xref target="TLS13"/> for details).
While backwards compatibility with DTLS 1.0 is possible, the use of DTLS 1.0 is not
recommended, as explained in Section 3.1.2 of <xref target="RFC7525"/>.
<xref target="DEPRECATE"/> forbids the use of DTLS 1.0.</t>
    </section>
    <section anchor="conventions-and-terminology">
      <name>Conventions and 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>
      <t>The following terms are used:</t>
      <ul spacing="normal">
        <li>
          <t>client: The endpoint initiating the DTLS connection.</t>
        </li>
        <li>
          <t>association: Shared state between two endpoints established with
a DTLS handshake.</t>
        </li>
        <li>
          <t>connection: Synonym for association.</t>
        </li>
        <li>
          <t>endpoint: Either the client or server of the connection.</t>
        </li>
        <li>
          <t>epoch: one set of cryptographic keys used for encryption and decryption.</t>
        </li>
        <li>
          <t>handshake: An initial negotiation between client and server that establishes
the parameters of the connection.</t>
        </li>
        <li>
          <t>peer: An endpoint. When discussing a particular endpoint, "peer" refers to
the endpoint that is remote to the primary subject of discussion.</t>
        </li>
        <li>
          <t>receiver: An endpoint that is receiving records.</t>
        </li>
        <li>
          <t>sender: An endpoint that is transmitting records.</t>
        </li>
        <li>
          <t>server: The endpoint which did not initiate the DTLS connection.</t>
        </li>
        <li>
          <t>CID: Connection ID</t>
        </li>
        <li>
          <t>MSL: Maximum Segment Lifetime</t>
        </li>
      </ul>
      <t>The reader is assumed to be familiar with <xref target="TLS13"/>.
As in TLS 1.3, the HelloRetryRequest has the same format as a ServerHello
message, but for convenience we use the term HelloRetryRequest throughout
this document as if it were a distinct message.</t>
      <t>DTLS 1.3 uses network byte order (big-endian) format for encoding messages
based on the encoding format defined in <xref target="TLS13"/> and earlier (D)TLS specifications.</t>
      <t>The reader is also assumed to be familiar with <xref target="RFC9146"/>
as this document applies the CID functionality to DTLS 1.3.</t>
      <t>Figures in this document illustrate various combinations of the DTLS protocol exchanges, and the symbols have the following meaning:</t>
      <ul spacing="normal">
        <li>
          <t>'+'  indicates noteworthy extensions sent in the previously noted message.</t>
        </li>
        <li>
          <t>'*'  indicates optional or situation-dependent messages/extensions that are not always sent.</t>
        </li>
        <li>
          <t>'{}' indicates messages protected using keys derived from a [sender]_handshake_traffic_secret.</t>
        </li>
        <li>
          <t>'[]' indicates messages protected using keys derived from traffic_secret_N.</t>
        </li>
      </ul>
    </section>
    <section anchor="dtls-rational">
      <name>DTLS Design Rationale and Overview</name>
      <t>The basic design philosophy of DTLS is to construct "TLS over datagram transport".
Datagram transport neither requires nor provides reliable or in-order delivery of data.
The DTLS protocol preserves this property for application data.
Applications such as media streaming, Internet telephony, and online gaming use
datagram transport for communication due to the delay-sensitive nature
of transported data.  The behavior of such applications is unchanged when the
DTLS protocol is used to secure communication, since the DTLS protocol
does not compensate for lost or reordered data traffic. Note that while
low-latency streaming and gaming use DTLS to protect data (e.g., for
protection of a WebRTC data channel), telephony utilizes DTLS for
key establishment and the Secure Real-time Transport Protocol (SRTP) for
protection of data <xref target="RFC5763"/>.</t>
      <t>TLS cannot be used directly over datagram transports for the following four reasons:</t>
      <ol spacing="normal" type="1"><li>
          <t>TLS relies on an implicit sequence number on records.  If a record is not
received, then the recipient will use the wrong sequence number when
attempting to remove record protection from subsequent records. DTLS solves
this problem by adding sequence numbers to records.</t>
        </li>
        <li>
          <t>The TLS handshake is a lock-step cryptographic protocol.  Messages
must be transmitted and received in a defined order; any other
order is an error.  The DTLS handshake includes message sequence
numbers to enable fragmented message reassembly and in-order
delivery in case datagrams are lost or reordered.</t>
        </li>
        <li>
          <t>Handshake messages are potentially larger than can be contained in a single
datagram.  DTLS adds fields to handshake messages to support fragmentation
and reassembly.</t>
        </li>
        <li>
          <t>Datagram transport protocols are susceptible to abusive behavior
effecting denial-of-service (DoS) attacks against nonparticipants.  DTLS adds a
return-routability check and DTLS 1.3 uses the TLS 1.3 HelloRetryRequest message
(see <xref target="dos"/> for details).</t>
        </li>
      </ol>
      <section anchor="packet-loss">
        <name>Packet Loss</name>
        <t>DTLS uses a simple retransmission timer to handle packet loss.
<xref target="dtls-retransmission"/> demonstrates the basic concept, using the first
phase of the DTLS handshake:</t>
        <figure anchor="dtls-retransmission">
          <name>DTLS Retransmission Example</name>
          <artwork><![CDATA[
         Client                                   Server
         ------                                   ------
         ClientHello           ------>

                                 X<-- HelloRetryRequest
                                                  (lost)

         [Timer Expires]

         ClientHello           ------>
         (retransmit)
]]></artwork>
        </figure>
        <t>Once the client has transmitted the ClientHello message, it expects
to see a HelloRetryRequest or a ServerHello from the server. However, if the
timer expires, the client knows that either the
ClientHello or the response from the server has been lost, which
causes the client
to retransmit the ClientHello. When the server receives the retransmission,
it knows to retransmit its HelloRetryRequest or ServerHello.</t>
        <t>The server also maintains a retransmission timer for messages it
sends (other than HelloRetryRequest) and retransmits when that timer expires. Not
applying retransmissions to the HelloRetryRequest avoids the need to
create state on the server.  The HelloRetryRequest is designed to be
small enough that it will not itself be fragmented, thus avoiding
concerns about interleaving multiple HelloRetryRequests.</t>
        <t>For more detail on timeouts and retransmission,
see <xref target="timeout-retransmissions"/>.</t>
      </section>
      <section anchor="reordering">
        <name>Reordering</name>
        <t>In DTLS, each handshake message is assigned a specific sequence
number.  When a peer receives a handshake
message, it can quickly determine whether that message is the next
message it expects.  If it is, then it processes it.  If not, it
queues it for future handling once all previous messages have been
received.</t>
      </section>
      <section anchor="fragmentation">
        <name>Fragmentation</name>
        <t>TLS and DTLS handshake messages can be quite large (in theory up to
2^24-1 bytes, in practice many kilobytes).  By contrast, UDP
datagrams are often limited to less than 1500 bytes if IP fragmentation is not
desired.  In order to compensate for this limitation, each DTLS
handshake message may be fragmented over several DTLS records, each
of which is intended to fit in a single UDP datagram
(see <xref target="pmtu-issues"/> for guidance). Each DTLS
handshake message contains both a fragment offset and a fragment
length.  Thus, a recipient in possession of all bytes of a handshake
message can reassemble the original unfragmented message.</t>
      </section>
      <section anchor="replay-detection">
        <name>Replay Detection</name>
        <t>DTLS optionally supports record replay detection.  The technique used
is the same as in IPsec AH/ESP, by maintaining a bitmap window of
received records.  Records that are too old to fit in the window and
records that have previously been received are silently discarded.
The replay detection feature is optional, since packet duplication is
not always malicious but can also occur due to routing errors.
Applications may conceivably detect duplicate packets and accordingly
modify their data transmission strategy.</t>
      </section>
    </section>
    <section anchor="the-dtls-record-layer">
      <name>The DTLS Record Layer</name>
      <t>The DTLS 1.3 record layer is different from the TLS 1.3 record layer and
also different from the DTLS 1.2 record layer.</t>
      <ol spacing="normal" type="1"><li>
          <t>The DTLSCiphertext structure omits the superfluous version number and
type fields.</t>
        </li>
        <li>
          <t>DTLS adds an epoch and sequence number to the TLS record header.
This sequence number allows the recipient to correctly decrypt and verify DTLS records.
However, the number of bits used for the epoch and sequence number fields in
the DTLSCiphertext structure has been reduced from those in previous
versions.</t>
        </li>
        <li>
          <t>The DTLS epoch serialized in DTLSPlaintext is 2 octets long for compatibility
with DTLS 1.2. However, this value is set as the least significant 2 octets
of the connection epoch, which is an 8 octet counter incremented on every
KeyUpdate. See <xref target="seq-and-epoch"/> for details. The sequence number is set to
be the low order 48 bits of the 64 bit sequence number. Plaintext records
MUST NOT be sent with sequence numbers that would exceed 2^48-1, so the
upper 16 bits will always be 0.</t>
        </li>
        <li>
          <t>The DTLSCiphertext structure has a variable-length header.</t>
        </li>
      </ol>
      <t>DTLSPlaintext records are used to send unprotected records and DTLSCiphertext
records are used to send protected records.</t>
      <t>The DTLS record formats are shown below. Unless explicitly stated the
meaning of the fields is unchanged from previous TLS/DTLS versions.</t>
      <figure anchor="dtls-record">
        <name>DTLS 1.3 Record Formats</name>
        <artwork><![CDATA[
    struct {
        ContentType type;
        ProtocolVersion legacy_record_version;
        uint16 epoch = 0
        uint48 sequence_number;
        uint16 length;
        opaque fragment[DTLSPlaintext.length];
    } DTLSPlaintext;

    struct {
         opaque content[DTLSPlaintext.length];
         ContentType type;
         uint8 zeros[length_of_padding];
    } DTLSInnerPlaintext;

    struct {
        opaque unified_hdr[variable];
        opaque encrypted_record[length];
    } DTLSCiphertext;
]]></artwork>
      </figure>
      <dl>
        <dt>legacy_record_version:</dt>
        <dd>
          <t>This value MUST be set to {254, 253} for all records other
than the initial ClientHello (i.e., one not generated after a HelloRetryRequest),
where it may also be {254, 255} for compatibility purposes.
It MUST be ignored for all purposes. See <xref target="TLS13"/>, Appendix D.1
for the rationale for this.</t>
        </dd>
        <dt>epoch:</dt>
        <dd>
          <t>The least significant 2 bytes of the connection epoch value.</t>
        </dd>
        <dt>unified_hdr:</dt>
        <dd>
          <t>The unified header (unified_hdr) is a structure of variable length, shown in <xref target="cid_hdr"/>.</t>
        </dd>
        <dt>encrypted_record:</dt>
        <dd>
          <t>The encrypted form of the serialized DTLSInnerPlaintext structure.</t>
        </dd>
      </dl>
      <figure anchor="cid_hdr">
        <name>DTLS 1.3 Unified Header</name>
        <artwork><![CDATA[
    0 1 2 3 4 5 6 7
    +-+-+-+-+-+-+-+-+
    |0|0|1|C|S|L|E E|
    +-+-+-+-+-+-+-+-+
    | Connection ID |   Legend:
    | (if any,      |
    /  length as    /   C   - Connection ID (CID) present
    |  negotiated)  |   S   - Sequence number length
    +-+-+-+-+-+-+-+-+   L   - Length present
    |  8 or 16 bit  |   E   - Epoch
    |Sequence Number|
    +-+-+-+-+-+-+-+-+
    | 16 bit Length |
    | (if present)  |
    +-+-+-+-+-+-+-+-+
]]></artwork>
      </figure>
      <dl>
        <dt>Fixed Bits:</dt>
        <dd>
          <t>The three high bits of the first byte of the unified header are set to
001. This ensures that the value will fit within the DTLS region when
multiplexing is performed as described in <xref target="RFC7983"/>. It also ensures
that distinguishing encrypted DTLS 1.3 records from encrypted DTLS 1.2
records is possible when they are carried on the same host/port quartet;
such multiplexing is only possible when CIDs <xref target="RFC9146"/>
are in use, in which case DTLS 1.2 records will have the content type tls12_cid (25).</t>
        </dd>
        <dt>C:</dt>
        <dd>
          <t>The C bit (0x10) is set if the Connection ID is present.</t>
        </dd>
        <dt>S:</dt>
        <dd>
          <t>The S bit (0x08) indicates the size of the sequence number.
0 means an 8-bit sequence number, 1 means 16-bit.
 Implementations MAY mix sequence numbers of different lengths
 on the same connection.</t>
        </dd>
        <dt>L:</dt>
        <dd>
          <t>The L bit (0x04) is set if the length is present.</t>
        </dd>
        <dt>E:</dt>
        <dd>
          <t>The two low bits (0x03) include the low-order two bits of the epoch.</t>
        </dd>
        <dt>Connection ID:</dt>
        <dd>
          <t>Variable-length CID. The CID functionality
is described in <xref target="RFC9146"/>. An example
can be found in <xref target="connection-id-example"/>.</t>
        </dd>
        <dt>Sequence Number:</dt>
        <dd>
          <t>The low-order 8 or 16 bits of the record sequence number.  This value is 16
bits if the S bit is set to 1, and 8 bits if the S bit is 0.</t>
        </dd>
        <dt>Length:</dt>
        <dd>
          <t>Identical to the length field in a TLS 1.3 record.</t>
        </dd>
      </dl>
      <t>As with previous versions of DTLS, multiple DTLSPlaintext
and DTLSCiphertext records can be included in the same
underlying transport datagram.</t>
      <t><xref target="hdr_examples"/> illustrates different record headers.</t>
      <figure anchor="hdr_examples">
        <name>DTLS 1.3 Header Examples</name>
        <artwork><![CDATA[
 0 1 2 3 4 5 6 7       0 1 2 3 4 5 6 7       0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+     +-+-+-+-+-+-+-+-+     +-+-+-+-+-+-+-+-+
| Content Type  |     |0|0|1|1|1|1|E E|     |0|0|1|0|0|0|E E|
+-+-+-+-+-+-+-+-+     +-+-+-+-+-+-+-+-+     +-+-+-+-+-+-+-+-+
|   16 bit      |     |               |     |8 bit Seq. No. |
|   Version     |     / Connection ID /     +-+-+-+-+-+-+-+-+
+-+-+-+-+-+-+-+-+     |               |     |               |
|   16 bit      |     +-+-+-+-+-+-+-+-+     |   Encrypted   |
|    Epoch      |     |    16 bit     |     /   Record      /
+-+-+-+-+-+-+-+-+     |Sequence Number|     |               |
|               |     +-+-+-+-+-+-+-+-+     +-+-+-+-+-+-+-+-+
|               |     |   16 bit      |
|   48 bit      |     |   Length      |       DTLSCiphertext
|Sequence Number|     +-+-+-+-+-+-+-+-+         Structure
|               |     |               |         (minimal)
|               |     |  Encrypted    |
+-+-+-+-+-+-+-+-+     /  Record       /
|    16 bit     |     |               |
|    Length     |     +-+-+-+-+-+-+-+-+
+-+-+-+-+-+-+-+-+
|               |      DTLSCiphertext
|               |        Structure
/   Fragment    /          (full)
|               |
+-+-+-+-+-+-+-+-+

 DTLSPlaintext
   Structure
]]></artwork>
      </figure>
      <t>The length field MAY be omitted by clearing the L bit, which means that the
record consumes the entire rest of the datagram in the lower
level transport. In this case, it is not possible to have multiple
DTLSCiphertext format records without length fields in the same datagram.
Omitting the length field MUST only be used for the last record in a
datagram. Implementations MAY mix records with and without length
fields on the same connection.</t>
      <t>If a Connection ID is negotiated, then it MUST be contained in all
datagrams. Sending implementations MUST NOT mix records from multiple DTLS associations
in the same datagram. If the second or later record has a connection
ID which does not correspond to the same association used
for previous records, the rest of the datagram MUST be discarded.</t>
      <t>When expanded, the epoch and sequence number can be combined into an
unpacked RecordNumber structure, as shown below:</t>
      <artwork><![CDATA[
    struct {
        uint64 epoch;
        uint64 sequence_number;
    } RecordNumber;
]]></artwork>
      <t>This 128-bit value is used in the ACK message as well as in the "record_sequence_number"
input to the Authenticated Encryption with Associated Data (AEAD) function.
The entire header value shown in <xref target="hdr_examples"/> (but prior to record number
encryption; see <xref target="rne"/>) is used as the additional data value for the
AEAD
function. For instance, if the minimal variant is used,
the Associated Data (AD)
is 2 octets long. Note that this design is different from the additional data
calculation for DTLS 1.2 and for DTLS 1.2 with Connection IDs.
In DTLS 1.3 the 64-bit sequence_number is used as the sequence number for
the AEAD computation; unlike DTLS 1.2, the epoch is not included.</t>
      <section anchor="demultiplexing-dtls-records">
        <name>Demultiplexing DTLS Records</name>
        <t>DTLS 1.3's header format is more complicated to demux than
DTLS 1.2, which always carried the content type as the first
byte. As described in <xref target="demux"/>, the first byte determines how an incoming
DTLS record is demultiplexed. The first 3 bits of the first byte
distinguish a DTLS 1.3 encrypted record from record types used in
previous DTLS versions and plaintext DTLS 1.3 record types. Hence, the
range 32 (0b0010 0000) to 63 (0b0011 1111) needs to be excluded
from future allocations by IANA to avoid problems while demultiplexing;
see <xref target="iana-considerations"/>.
Implementations can demultiplex DTLS 1.3 records
by examining the first byte as follows:</t>
        <ul spacing="normal">
          <li>
            <t>If the first byte is alert(21), handshake(22), or ack(proposed, 26),
the record MUST be interpreted as a DTLSPlaintext record.</t>
          </li>
          <li>
            <t>If the first byte is any other value, then receivers
MUST check to see if the leading bits of the first byte are
001. If so, the implementation MUST process the record as
DTLSCiphertext; the true content type will be inside the
protected portion.</t>
          </li>
          <li>
            <t>Otherwise, the record MUST be rejected as if it had failed
deprotection, as described in <xref target="handling-invalid-records"/>.</t>
          </li>
        </ul>
        <t><xref target="demux"/> shows this demultiplexing procedure graphically,
taking DTLS 1.3 and earlier versions of DTLS into account.</t>
        <figure anchor="demux">
          <name>Demultiplexing DTLS 1.2 and DTLS 1.3 Records</name>
          <artwork><![CDATA[
             +----------------+
             | Outer Content  |
             |   Type (OCT)   |
             |                |
             |   OCT == 20   -+--> ChangeCipherSpec (DTLS <1.3)
             |   OCT == 21   -+--> Alert (Plaintext)
             |   OCT == 22   -+--> DTLSHandshake (Plaintext)
             |   OCT == 23   -+--> Application Data (DTLS <1.3)
             |   OCT == 24   -+--> Heartbeat (DTLS <1.3)
packet  -->  |   OCT == 25   -+--> DTLSCiphertext with CID (DTLS 1.2)
             |   OCT == 26   -+--> ACK (DTLS 1.3, Plaintext)
             |                |
             |                |   /+----------------+\
             | 31 < OCT < 64 -+--> |DTLSCiphertext  |
             |                |    |(header bits    |
             |      else      |    | start with 001)|
             |       |        |   /+-------+--------+\
             +-------+--------+            |
                     |                     |
                     v          Decryption |
               +---------+          +------+
               |  Reject |          |
               +---------+          v
                            +----------------+
                            | Decrypted      |
                            | Content Type   |
                            | (DCT)          |
                            |                |
                            |     DCT == 21 -+--> Alert
                            |     DCT == 22 -+--> DTLSHandshake
                            |     DCT == 23 -+--> Application Data
                            |     DCT == 24 -+--> Heartbeat
                            |     DCT == 26 -+--> ACK
                            |     else ------+--> Error
                            +----------------+
]]></artwork>
        </figure>
      </section>
      <section anchor="seq-and-epoch">
        <name>Sequence Number and Epoch</name>
        <t>DTLS uses an explicit or partly explicit sequence number, rather than an implicit one,
carried in the sequence_number field of the record.  Sequence numbers
are maintained separately for each epoch, with each sequence_number
initially being 0 for each epoch.</t>
        <t>The epoch number is initially zero and is incremented each time
keying material changes and a sender aims to rekey. More details
are provided in <xref target="dtls-epoch"/>.</t>
        <section anchor="processing-guidelines">
          <name>Processing Guidelines</name>
          <t>Because DTLS records could be reordered, a record from epoch
M may be received after epoch N (where N &gt; M) has begun.
Implementations SHOULD discard records from earlier epochs but
MAY choose to
retain keying material from previous epochs for up to the default MSL
specified for TCP <xref target="RFC0793"/> to allow for packet reordering.  (Note that
the intention here is that implementers use the current guidance from
the IETF for MSL, as specified in <xref target="RFC0793"/> or successors,
not that they attempt to interrogate the MSL that
the system TCP stack is using.)</t>
          <t>Conversely, it is possible for records that are protected with the
new epoch to be received prior to the completion of a
handshake.  For instance, the server may send its Finished message
and then start transmitting data.  Implementations MAY either buffer
or discard such records, though when DTLS is used over reliable
transports (e.g., SCTP <xref target="RFC4960"/>), they SHOULD be buffered and
processed once the handshake completes.  Note that TLS's restrictions
on when records may be sent still apply, and the receiver treats the
records as if they were sent in the right order.</t>
          <t>Implementations MUST send retransmissions of lost messages using the same
epoch and keying material as the original transmission.</t>
          <t>Implementations MUST either abandon an association or rekey prior to
allowing the sequence number to wrap.</t>
          <t>Implementations MUST NOT allow the epoch to wrap, but instead MUST
establish a new association, terminating the old association.</t>
        </section>
        <section anchor="reconstructing">
          <name>Reconstructing the Sequence Number and Epoch</name>
          <t>When receiving protected DTLS records, the recipient does not
have a full epoch or sequence number value in the record and so there is some
opportunity for ambiguity.  Because the full sequence number
is used to compute the per-record nonce and the epoch determines
the keys, failure to reconstruct these
values leads to failure to deprotect the record, and so implementations
MAY use a mechanism of their choice to determine the full values.
This section provides an algorithm which is comparatively simple
and which implementations are RECOMMENDED to follow.</t>
          <t>If the epoch bits match those of the current epoch, then
implementations SHOULD reconstruct the sequence number by computing
the full sequence number which is numerically closest to one plus the
sequence number of the highest successfully deprotected record in the
current epoch.</t>
          <t>During the handshake phase, the epoch bits unambiguously indicate the
correct key to use. After the
handshake is complete, if the epoch bits do not match those from the
current epoch, implementations SHOULD use the most recent past epoch
which has matching bits, and then reconstruct the sequence number for
that epoch as described above.</t>
        </section>
        <section anchor="rne">
          <name>Record Number Encryption</name>
          <t>In DTLS 1.3, when records are encrypted, record sequence numbers are
also encrypted. The basic pattern is that the underlying encryption
algorithm used with the AEAD algorithm is used to generate a mask
which is then XORed with the sequence number.</t>
          <t>When the AEAD is based on AES, then the mask is generated by
computing AES-ECB on the first 16 bytes of the ciphertext:</t>
          <artwork><![CDATA[
  Mask = AES-ECB(sn_key, Ciphertext[0..15])
]]></artwork>
          <t>When the AEAD is based on ChaCha20, then the mask is generated
by treating the first 4 bytes of the ciphertext as the block
counter and the next 12 bytes as the nonce, passing them to the ChaCha20
block function (Section 2.3 of <xref target="CHACHA"/>):</t>
          <artwork><![CDATA[
  Mask = ChaCha20(sn_key, Ciphertext[0..3], Ciphertext[4..15])
]]></artwork>
          <t>The sn_key is computed as follows:</t>
          <artwork><![CDATA[
   [sender]_sn_key = HKDF-Expand-Label(Secret, "sn", "", key_length)
]]></artwork>
          <t>[sender] denotes the sending side. The per-epoch Secret value to be used is described
in Section 7.3 of <xref target="TLS13"/>. Note that a new key is used for each epoch:
because the epoch is sent in the clear, this does not result in ambiguity.</t>
          <t>The encrypted sequence number is computed by XORing the leading
bytes of the mask with the on-the-wire representation of the
sequence number. Decryption is accomplished by the same process.</t>
          <t>This procedure requires the ciphertext length to be at least 16 bytes. Receivers
MUST reject shorter records as if they had failed deprotection, as described in
<xref target="handling-invalid-records"/>. Senders MUST pad short plaintexts out (using the
conventional record padding mechanism) in order to make a suitable-length
ciphertext. Note that most of the DTLS AEAD algorithms have a 16 byte authentication
tag and need no padding. However, some algorithms, such as
TLS_AES_128_CCM_8_SHA256, have a shorter authentication tag and may require padding
for short inputs.</t>
          <t>Future cipher suites, which are not based on AES or ChaCha20, MUST define
their own record sequence number encryption in order to be used with
DTLS.</t>
          <t>Note that sequence number encryption is only applied to the DTLSCiphertext
structure and not to the DTLSPlaintext structure, even though it also contains a
sequence number.</t>
        </section>
      </section>
      <section anchor="transport-layer-mapping">
        <name>Transport Layer Mapping</name>
        <t>DTLS messages MAY be fragmented into multiple DTLS records.
Each DTLS record MUST fit within a single datagram.  In order to
avoid IP fragmentation, clients of the DTLS record layer SHOULD
attempt to size records so that they fit within any Path MTU (PMTU) estimates
obtained from the record layer. For more information about PMTU issues,
see <xref target="pmtu-issues"/>.</t>
        <t>Multiple DTLS records MAY be placed in a single datagram.  Records are encoded
consecutively.  The length field from DTLS records containing that field can be
used to determine the boundaries between records.  The final record in a
datagram can omit the length field.  The first byte of the datagram payload MUST
be the beginning of a record.  Records MUST NOT span datagrams.</t>
        <t>DTLS records without CIDs do not contain any association
identifiers, and applications must arrange to multiplex between associations.
With UDP, the host/port number is used to look up the appropriate security
association for incoming records without CIDs.</t>
        <t>Some transports, such as DCCP <xref target="RFC4340"/>, provide their own sequence
numbers.  When carried over those transports, both the DTLS and the
transport sequence numbers will be present.  Although this introduces
a small amount of inefficiency, the transport layer and DTLS sequence
numbers serve different purposes; therefore, for conceptual simplicity,
it is superior to use both sequence numbers.</t>
        <t>Some transports provide congestion control for traffic
carried over them.  If the congestion window is sufficiently narrow,
DTLS handshake retransmissions may be held rather than transmitted
immediately, potentially leading to timeouts and spurious
retransmission.  When DTLS is used over such transports, care should
be taken not to overrun the likely congestion window. <xref target="RFC5238"/>
defines a mapping of DTLS to DCCP that takes these issues into account.</t>
      </section>
      <section anchor="pmtu-issues">
        <name>PMTU Issues</name>
        <t>In general, DTLS's philosophy is to leave PMTU discovery to the application.
However, DTLS cannot completely ignore the PMTU for three reasons:</t>
        <ul spacing="normal">
          <li>
            <t>The DTLS record framing expands the datagram size, thus lowering
the effective PMTU from the application's perspective.</t>
          </li>
          <li>
            <t>In some implementations, the application may not directly talk to
the network, in which case the DTLS stack may absorb ICMP
"Datagram Too Big" indications <xref target="RFC1191"/> or ICMPv6
"Packet Too Big" indications  <xref target="RFC4443"/>.</t>
          </li>
          <li>
            <t>The DTLS handshake messages can exceed the PMTU.</t>
          </li>
        </ul>
        <t>In order to deal with the first two issues, the DTLS record layer
SHOULD behave as described below.</t>
        <t>If PMTU estimates are available from the underlying transport
protocol, they should be made available to upper layer
protocols. In particular:</t>
        <ul spacing="normal">
          <li>
            <t>For DTLS over UDP, the upper layer protocol SHOULD be allowed to
obtain the PMTU estimate maintained in the IP layer.</t>
          </li>
          <li>
            <t>For DTLS over DCCP, the upper layer protocol SHOULD be allowed to
obtain the current estimate of the PMTU.</t>
          </li>
          <li>
            <t>For DTLS over TCP or SCTP, which automatically fragment and
reassemble datagrams, there is no PMTU limitation.  However, the
upper layer protocol MUST NOT write any record that exceeds the
maximum record size of 2^14 bytes.</t>
          </li>
        </ul>
        <t>The DTLS record layer SHOULD also allow the upper layer protocol to
discover the amount of record expansion expected by the DTLS
processing; alternately, it MAY report PMTU estimates minus the
estimated expansion from the transport layer and DTLS record
framing.</t>
        <t>Note that DTLS does not defend against spoofed ICMP messages;
implementations SHOULD ignore any such messages that indicate
PMTUs below the IPv4 and IPv6 minimums of 576 and 1280 bytes,
respectively.</t>
        <t>If there is a transport protocol indication that the PMTU was exceeded
(either via ICMP or via a
refusal to send the datagram as in Section 14 of <xref target="RFC4340"/>), then the
DTLS record layer MUST inform the upper layer protocol of the error.</t>
        <t>The DTLS record layer SHOULD NOT interfere with upper layer protocols
performing PMTU discovery, whether via <xref target="RFC1191"/> and <xref target="RFC4821"/> for
IPv4 or via <xref target="RFC8201"/> for IPv6.  In particular:</t>
        <ul spacing="normal">
          <li>
            <t>Where allowed by the underlying transport protocol, the upper
layer protocol SHOULD be allowed to set the state of the Don't Fragment (DF) bit
(in IPv4) or prohibit local fragmentation (in IPv6).</t>
          </li>
          <li>
            <t>If the underlying transport protocol allows the application to
request PMTU probing (e.g., DCCP), the DTLS record layer SHOULD
honor this request.</t>
          </li>
        </ul>
        <t>The final issue is the DTLS handshake protocol.  From the perspective
of the DTLS record layer, this is merely another upper layer
protocol.  However, DTLS handshakes occur infrequently and involve
only a few round trips; therefore, the handshake protocol PMTU
handling places a premium on rapid completion over accurate PMTU
discovery.  In order to allow connections under these circumstances,
DTLS implementations SHOULD follow the following rules:</t>
        <ul spacing="normal">
          <li>
            <t>If the DTLS record layer informs the DTLS handshake layer that a
message is too big, the handshake layer SHOULD immediately attempt to fragment
the message, using any existing information about the PMTU.</t>
          </li>
          <li>
            <t>If repeated retransmissions do not result in a response, and the
PMTU is unknown, subsequent retransmissions SHOULD back off to a
smaller record size, fragmenting the handshake message as
appropriate.  This specification does not specify an exact number of
retransmits to attempt before backing off, but 2-3 seems
appropriate.</t>
          </li>
        </ul>
      </section>
      <section anchor="record-payload-protection">
        <name>Record Payload Protection</name>
        <t>Like TLS, DTLS transmits data as a series of protected records.  The
rest of this section describes the details of that format.</t>
        <section anchor="anti-replay">
          <name>Anti-Replay</name>
          <t>Each DTLS record contains a sequence number to provide replay protection.
Sequence number verification SHOULD be performed using the following
sliding window procedure, borrowed from Section 3.4.3 of <xref target="RFC4303"/>.
Because each epoch resets the sequence number space, a separate sliding
window is needed for each epoch.</t>
          <t>The received record counter for an epoch MUST be initialized to
zero when that epoch is first used. For each received record, the
receiver MUST verify that the record contains a sequence number that
does not duplicate the sequence number of any other record received
in that epoch during the lifetime of the association.
This check SHOULD happen after
deprotecting the record; otherwise, the record discard might itself
serve as a timing channel for the record number. Note that computing
the full record number from the partial is still a potential timing
channel for the record number, though a less powerful one than whether
the record was deprotected.</t>
          <t>Duplicates are rejected through the use of a sliding receive window.
(How the window is implemented is a local matter, but the following
text describes the functionality that the implementation must
exhibit.) The receiver SHOULD pick a window large enough to handle
any plausible reordering, which depends on the data rate.
(The receiver does not notify the sender of the window
size.)</t>
          <t>The "right" edge of the window represents the highest validated
sequence number value received in the epoch.  Records that contain
sequence numbers lower than the "left" edge of the window are
rejected.  Records falling within the window are checked against a
list of received records within the window.  An efficient means for
performing this check, based on the use of a bit mask, is described in
Section 3.4.3 of <xref target="RFC4303"/>. If the received record falls within the
window and is new, or if the record is to the right of the window,
then the record is new.</t>
          <t>The window MUST NOT be updated due to a received record until that
record has been deprotected  successfully.</t>
        </section>
        <section anchor="handling-invalid-records">
          <name>Handling Invalid Records</name>
          <t>Unlike TLS, DTLS is resilient in the face of invalid records (e.g.,
invalid formatting, length, MAC, etc.).  In general, invalid records
SHOULD be silently discarded, thus preserving the association;
however, an error MAY be logged for diagnostic purposes.
Implementations which choose to generate an alert instead MUST
generate fatal alerts to avoid attacks where the attacker
repeatedly probes the implementation to see how it responds to
various types of error.  Note that if DTLS is run over UDP, then any
implementation which does this will be extremely susceptible to
DoS attacks because UDP forgery is so easy.
Thus, generating fatal alerts is NOT RECOMMENDED for such transports, both
to increase the reliability of DTLS service and to avoid the risk
of spoofing attacks sending traffic to unrelated third parties.</t>
          <t>If DTLS is being carried over a transport that is resistant to
forgery (e.g., SCTP with SCTP-AUTH), then it is safer to send alerts
because an attacker will have difficulty forging a datagram that will
not be rejected by the transport layer.</t>
          <t>Note that because invalid records are rejected at a layer lower than
the handshake state machine, they do not affect pending
retransmission timers.</t>
        </section>
        <section anchor="aead-lim">
          <name>AEAD Limits</name>
          <t>Section 5.5 of <xref target="TLS13"/> defines limits on the number of records that can
be protected using the same keys. These limits are specific to an AEAD
algorithm and apply equally to DTLS. Implementations SHOULD NOT protect more
records than allowed by the limit specified for the negotiated AEAD.
Implementations SHOULD initiate a key update before reaching this limit.</t>
          <t><xref target="TLS13"/> does not specify a limit for AEAD_AES_128_CCM, but the analysis in
<xref target="ccm-bounds"/> shows that a limit of 2^23 packets can be used to obtain the
same confidentiality protection as the limits specified in TLS.</t>
          <t>The usage limits defined in TLS 1.3 exist for protection against attacks
on confidentiality and apply to successful applications of AEAD protection. The
integrity protections in authenticated encryption also depend on limiting the
number of attempts to forge packets. TLS achieves this by closing connections
after any record fails an authentication check. In comparison, DTLS ignores any
packet that cannot be authenticated, allowing multiple forgery attempts.</t>
          <t>Implementations MUST count the number of received packets that fail
authentication with each key. If the number of packets that fail authentication
exceeds a limit that is specific to the AEAD in use, an implementation SHOULD
immediately close the connection. Implementations SHOULD initiate a key update
with update_requested before reaching this limit. Once a key update has been
initiated, the previous keys can be dropped when the limit is reached rather
than closing the connection. Applying a limit reduces the probability that an
attacker is able to successfully forge a packet; see <xref target="AEBounds"/> and
<xref target="ROBUST"/>.</t>
          <t>For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, the limit
on the number of records that fail authentication is 2^36. Note that the
analysis in <xref target="AEBounds"/> supports a higher limit for AEAD_AES_128_GCM and
AEAD_AES_256_GCM, but this specification recommends a lower limit. For
AEAD_AES_128_CCM, the limit on the number of records that fail authentication
is 2^23.5; see <xref target="ccm-bounds"/>.</t>
          <t>The AEAD_AES_128_CCM_8 AEAD, as used in TLS_AES_128_CCM_8_SHA256, does not have a
limit on the number of records that fail authentication that both limits the
probability of forgery by the same amount and does not expose implementations
to the risk of denial of service; see <xref target="ccm-short"/>. Therefore,
TLS_AES_128_CCM_8_SHA256 MUST NOT be used in DTLS without additional safeguards
against forgery. Implementations MUST set usage limits for AEAD_AES_128_CCM_8
based on an understanding of any additional forgery protections that are used.</t>
          <t>Any TLS cipher suite that is specified for use with DTLS MUST define limits on
the use of the associated AEAD function that preserves margins for both
confidentiality and integrity. That is, limits MUST be specified for the number
of packets that can be authenticated and for the number of packets that can fail
authentication before a key update is required. Providing a reference to any analysis upon which values are
based -- and any assumptions used in that analysis -- allows limits to be adapted
to varying usage conditions.</t>
        </section>
      </section>
    </section>
    <section anchor="dtls">
      <name>The DTLS Handshake Protocol</name>
      <t>DTLS 1.3 reuses the TLS 1.3 handshake messages and flows, with
the following changes:</t>
      <ol spacing="normal" type="1"><li>
          <t>To handle message loss, reordering, and fragmentation, modifications to
the handshake header are necessary.</t>
        </li>
        <li>
          <t>Retransmission timers are introduced to handle message loss.</t>
        </li>
        <li>
          <t>A new ACK content type has been added for reliable message delivery of handshake messages.</t>
        </li>
      </ol>
      <t>In addition, DTLS reuses TLS 1.3's "cookie" extension to provide a return-routability
check as part of connection establishment. This is an important DoS
prevention mechanism for UDP-based protocols, unlike TCP-based protocols, for which
TCP establishes return-routability as part of the connection establishment.</t>
      <t>DTLS implementations do not use the TLS 1.3 "compatibility mode" described in
Appendix D.4 of <xref target="TLS13"/>.  DTLS servers MUST NOT echo the
"legacy_session_id" value from the client and endpoints MUST NOT send ChangeCipherSpec
messages.</t>
      <t>With these exceptions, the DTLS message formats, flows, and logic are
the same as those of TLS 1.3.</t>
      <section anchor="dos">
        <name>Denial-of-Service Countermeasures</name>
        <t>Datagram security protocols are extremely susceptible to a variety of
DoS attacks.  Two attacks are of particular concern:</t>
        <ol spacing="normal" type="1"><li>
            <t>An attacker can consume excessive resources on the server by
transmitting a series of handshake initiation requests, causing
the server to allocate state and potentially to perform
expensive cryptographic operations.</t>
          </li>
          <li>
            <t>An attacker can use the server as an amplifier by sending
connection initiation messages with a forged source address that belongs to a
victim.  The server then sends its response to the victim
machine, thus flooding it. Depending on the selected
parameters, this response message can be quite large, as
is the case for a Certificate message.</t>
          </li>
        </ol>
        <t>In order to counter both of these attacks, DTLS borrows the stateless
cookie technique used by Photuris <xref target="RFC2522"/> and IKE <xref target="RFC7296"/>.  When
the client sends its ClientHello message to the server, the server
MAY respond with a HelloRetryRequest message. The HelloRetryRequest message,
as well as the "cookie" extension, is defined in TLS 1.3.
The HelloRetryRequest message contains a stateless cookie (see
<xref target="TLS13"/>, Section 4.2.2).
The client MUST send a new ClientHello
with the cookie added as an extension.  The server then verifies the cookie
and proceeds with the handshake only if it is valid.  This mechanism forces
the attacker/client to be able to receive the cookie, which makes DoS attacks
with spoofed IP addresses difficult.  This mechanism does not provide any defense
against DoS attacks mounted from valid IP addresses.</t>
        <t>The DTLS 1.3 specification changes how cookies are exchanged
compared to DTLS 1.2. DTLS 1.3 reuses the HelloRetryRequest message
and conveys the cookie to the client via an extension. The client
receiving the cookie uses the same extension to place
the cookie subsequently into a ClientHello message.
DTLS 1.2, on the other hand, used a separate message, namely the HelloVerifyRequest,
to pass a cookie to the client and did not utilize the extension mechanism.
For backwards compatibility reasons, the cookie field in the ClientHello
is present in DTLS 1.3 but is ignored by a DTLS 1.3-compliant server
implementation.</t>
        <t>The exchange is shown in <xref target="dtls-cookie-exchange"/>. Note that
the figure focuses on the cookie exchange; all other extensions
are omitted.</t>
        <figure anchor="dtls-cookie-exchange">
          <name>DTLS Exchange with HelloRetryRequest Containing the "cookie" Extension</name>
          <artwork><![CDATA[
      Client                                   Server
      ------                                   ------
      ClientHello           ------>

                            <----- HelloRetryRequest
                                    + cookie

      ClientHello           ------>
       + cookie

      [Rest of handshake]
]]></artwork>
        </figure>
        <t>The "cookie" extension is defined in Section 4.2.2 of <xref target="TLS13"/>. When sending the
initial ClientHello, the client does not have a cookie yet. In this case,
the "cookie" extension is omitted and the legacy_cookie field in the ClientHello
message MUST be set to a zero-length vector (i.e., a zero-valued single byte length field).</t>
        <t>When responding to a HelloRetryRequest, the client MUST create a new
ClientHello message following the description in Section 4.1.2 of <xref target="TLS13"/>.</t>
        <t>If the HelloRetryRequest message is used, the initial ClientHello and
the HelloRetryRequest are included in the calculation of the
transcript hash. The computation of the
message hash for the HelloRetryRequest is done according to the description
in Section 4.4.1 of <xref target="TLS13"/>.</t>
        <t>The handshake transcript is not reset with the second ClientHello,
and a stateless server-cookie implementation requires the content or hash
of the initial ClientHello (and HelloRetryRequest)
to be stored in the cookie. The initial ClientHello is included in the
handshake transcript as a synthetic "message_hash" message, so only the hash
value is needed for the handshake to complete, though the complete
HelloRetryRequest contents are needed.</t>
        <t>When the second ClientHello is received, the server can verify that
the cookie is valid and that the client can receive packets at the
given IP address. If the client's apparent IP address is embedded
in the cookie, this prevents an attacker from generating an acceptable
ClientHello apparently from another user.</t>
        <t>One potential attack on this scheme is for the attacker to collect a
number of cookies from different addresses where it controls endpoints
and then reuse them to attack the server.
The server can defend against this attack by
changing the secret value frequently, thus invalidating those
cookies. If the server wishes to allow legitimate clients to
handshake through the transition (e.g., a client received a cookie with
Secret 1 and then sent the second ClientHello after the server has
changed to Secret 2), the server can have a limited window during
which it accepts both secrets.  <xref target="RFC7296"/> suggests adding a key
identifier to cookies to detect this case. An alternative approach is
simply to try verifying with both secrets. It is RECOMMENDED that
servers implement a key rotation scheme that allows the server
to manage keys with overlapping lifetimes.</t>
        <t>Alternatively, the server can store timestamps in the cookie and
reject cookies that were generated outside a certain
interval of time.</t>
        <t>DTLS servers SHOULD perform a cookie exchange whenever a new
handshake is being performed.  If the server is being operated in an
environment where amplification is not a problem, e.g., where
ICE <xref target="RFC8445"/> has been used to establish bidirectional connectivity,
the server MAY be configured not to perform a cookie exchange.  The default SHOULD be
that the exchange is performed, however.  In addition, the server MAY
choose not to do a cookie exchange when a session is resumed or, more
generically, when the DTLS handshake uses a PSK-based key exchange
and the IP address matches one associated with the PSK.
Servers which process 0-RTT requests and send 0.5-RTT responses
without a cookie exchange risk being used in an amplification attack
if the size of outgoing messages greatly exceeds the size of those that are received.
A server SHOULD limit the amount of data it sends toward a client address
to three times the amount of data sent by the client before
it verifies that the client is able to receive data at that address.
A client address is valid after a cookie exchange or handshake completion.
Clients MUST be prepared to do a cookie exchange with every
handshake. Note that cookies are only valid for the existing
handshake and cannot be stored for future handshakes.</t>
        <t>If a server receives a ClientHello with an invalid cookie, it
MUST terminate the handshake with an "illegal_parameter" alert.
This allows the client to restart the connection from
scratch without a cookie.</t>
        <t>As described in Section 4.1.4 of <xref target="TLS13"/>, clients MUST
abort the handshake with an "unexpected_message" alert in response
to any second HelloRetryRequest which was sent in the same connection
(i.e., where the ClientHello was itself in response to a HelloRetryRequest).</t>
        <t>DTLS clients which do not want to receive a Connection ID SHOULD
still offer the "connection_id" extension <xref target="RFC9146"/> unless
there is an application profile to the contrary. This permits
a server which wants to receive a CID to negotiate one.</t>
      </section>
      <section anchor="dtls-handshake-message-format">
        <name>DTLS Handshake Message Format</name>
        <t>DTLS uses the same Handshake messages as TLS 1.3. However,
prior to transmission they are converted to DTLSHandshake
messages, which contain extra data needed to support
message loss, reordering, and message fragmentation.</t>
        <artwork><![CDATA[
    enum {
        client_hello(1),
        server_hello(2),
        new_session_ticket(4),
        end_of_early_data(5),
        encrypted_extensions(8),
        request_connection_id(9),           /* New */
        new_connection_id(10),              /* New */
        certificate(11),
        certificate_request(13),
        certificate_verify(15),
        finished(20),
        key_update(24),
        message_hash(254),
        (255)
    } HandshakeType;

    struct {
        HandshakeType msg_type;    /* handshake type */
        uint24 length;             /* bytes in message */
        uint16 message_seq;        /* DTLS-required field */
        uint24 fragment_offset;    /* DTLS-required field */
        uint24 fragment_length;    /* DTLS-required field */
        select (msg_type) {
            case client_hello:          ClientHello;
            case server_hello:          ServerHello;
            case end_of_early_data:     EndOfEarlyData;
            case encrypted_extensions:  EncryptedExtensions;
            case certificate_request:   CertificateRequest;
            case certificate:           Certificate;
            case certificate_verify:    CertificateVerify;
            case finished:              Finished;
            case new_session_ticket:    NewSessionTicket;
            case key_update:            KeyUpdate;
            case request_connection_id: RequestConnectionId;
            case new_connection_id:     NewConnectionId;
        } body;
    } DTLSHandshake;
]]></artwork>
        <t>In DTLS 1.3, the message transcript is computed over the original
TLS 1.3-style Handshake messages without the message_seq,
fragment_offset, and fragment_length values. Note that this is
a change from DTLS 1.2 where those values were included
in the transcript.</t>
        <t>The first message each side transmits in each association always has
message_seq = 0.  Whenever a new message is generated, the
message_seq value is incremented by one. When a message is
retransmitted, the old message_seq value is reused, i.e., not
incremented. From the perspective of the DTLS record layer, the retransmission is
a new record.  This record will have a new
DTLSPlaintext.sequence_number value.</t>
        <t>Note: In DTLS 1.2, the message_seq was reset to zero in case of a
rehandshake (i.e., renegotiation). On the surface, a rehandshake in DTLS 1.2
shares similarities with a post-handshake message exchange in DTLS 1.3. However,
in DTLS 1.3 the message_seq is not reset, to allow distinguishing a
retransmission from a previously sent post-handshake message from a newly
sent post-handshake message.</t>
        <t>DTLS implementations maintain (at least notionally) a
next_receive_seq counter.  This counter is initially set to zero.
When a handshake message is received, if its message_seq value matches
next_receive_seq, next_receive_seq is incremented and the message is
processed.  If the sequence number is less than next_receive_seq, the
message MUST be discarded.  If the sequence number is greater than
next_receive_seq, the implementation SHOULD queue the message but MAY
discard it.  (This is a simple space/bandwidth trade-off).</t>
        <t>In addition to the handshake messages that are deprecated by the TLS 1.3
specification, DTLS 1.3 furthermore deprecates the HelloVerifyRequest message
originally defined in DTLS 1.0. DTLS 1.3-compliant implementations MUST NOT
use the HelloVerifyRequest to execute a return-routability check. A
dual-stack DTLS 1.2 / DTLS 1.3 client MUST, however, be prepared to
interact with a DTLS 1.2 server.</t>
      </section>
      <section anchor="clienthello-message">
        <name>ClientHello Message</name>
        <t>The format of the ClientHello used by a DTLS 1.3 client differs from the
TLS 1.3 ClientHello format, as shown below.</t>
        <artwork><![CDATA[
    uint16 ProtocolVersion;
    opaque Random[32];

    uint8 CipherSuite[2];    /* Cryptographic suite selector */

    struct {
        ProtocolVersion legacy_version = { 254,253 }; // DTLSv1.2
        Random random;
        opaque legacy_session_id<0..32>;
        opaque legacy_cookie<0..2^8-1>;                  // DTLS
        CipherSuite cipher_suites<2..2^16-2>;
        opaque legacy_compression_methods<1..2^8-1>;
        Extension extensions<8..2^16-1>;
    } ClientHello;
]]></artwork>
        <dl>
          <dt>legacy_version:</dt>
          <dd>
            <t>In previous versions of DTLS, this field was used for version
negotiation and represented the highest version number supported by
the client. Experience has shown that many servers do not properly
implement version negotiation, leading to "version intolerance" in
which the server rejects an otherwise acceptable ClientHello with a
version number higher than it supports. In DTLS 1.3, the client
indicates its version preferences in the "supported_versions"
extension (see Section 4.2.1 of <xref target="TLS13"/>) and the
legacy_version field MUST be set to {254, 253}, which was the version
number for DTLS 1.2. The supported_versions entries for DTLS 1.0 and DTLS 1.2 are
0xfeff and 0xfefd (to match the wire versions). The value 0xfefc is used
to indicate DTLS 1.3.</t>
          </dd>
          <dt>random:</dt>
          <dd>
            <t>Same as for TLS 1.3, except that the downgrade sentinels described
in Section 4.1.3 of <xref target="TLS13"/> when TLS 1.2 and TLS 1.1 and below are negotiated
apply to DTLS 1.2 and DTLS 1.0, respectively.</t>
          </dd>
          <dt>legacy_session_id:</dt>
          <dd>
            <t>Versions of TLS and DTLS before version 1.3 supported a "session resumption"
feature, which has been merged with pre-shared keys (PSK) in version 1.3.  A client
which has a cached session ID set by a pre-DTLS 1.3 server SHOULD set this
field to that value. Otherwise, it MUST be set as a zero-length vector
(i.e., a zero-valued single byte length field).</t>
          </dd>
          <dt>legacy_cookie:</dt>
          <dd>
            <t>A DTLS 1.3-only client MUST set the legacy_cookie field to zero length.
If a DTLS 1.3 ClientHello is received with any other value in this field,
the server MUST abort the handshake with an "illegal_parameter" alert.</t>
          </dd>
          <dt>cipher_suites:</dt>
          <dd>
            <t>Same as for TLS 1.3; only suites with DTLS-OK=Y may be used.</t>
          </dd>
          <dt>legacy_compression_methods:</dt>
          <dd>
            <t>Same as for TLS 1.3.</t>
          </dd>
          <dt>extensions:</dt>
          <dd>
            <t>Same as for TLS 1.3.</t>
          </dd>
        </dl>
      </section>
      <section anchor="serverhello-message">
        <name>ServerHello Message</name>
        <t>The DTLS 1.3 ServerHello message is the same as the TLS 1.3
ServerHello message, except that the legacy_version field
is set to 0xfefd, indicating DTLS 1.2.</t>
      </section>
      <section anchor="handshake-message-fragmentation-and-reassembly">
        <name>Handshake Message Fragmentation and Reassembly</name>
        <t>As described in <xref target="transport-layer-mapping"/>, one or more handshake
messages may be carried in a single datagram. However, handshake messages are
potentially bigger than the size allowed by the underlying datagram transport.
DTLS provides a mechanism for fragmenting a handshake message over a
number of records, each of which can be transmitted in separate datagrams, thus
avoiding IP fragmentation.</t>
        <t>When transmitting the handshake message, the sender divides the
message into a series of N contiguous data ranges. The ranges MUST NOT
overlap.  The sender then creates N DTLSHandshake messages, all with the
same message_seq value as the original DTLSHandshake message.  Each new
message is labeled with the fragment_offset (the number of bytes
contained in previous fragments) and the fragment_length (the length
of this fragment).  The length field in all messages is the same as
the length field of the original message.  An unfragmented message is
a degenerate case with fragment_offset=0 and fragment_length=length.
Each handshake message fragment that is placed into a record
MUST be delivered in a single UDP datagram.</t>
        <t>When a DTLS implementation receives a handshake message fragment corresponding
to the next expected handshake message sequence number, it
MUST process it, either by buffering it until it has the entire handshake message
or by processing any in-order portions of the message.
The transcript consists of complete TLS Handshake messages (reassembled
as necessary). Note that this requires removing the message_seq,
fragment_offset, and fragment_length fields to create the Handshake
structure.</t>
        <t>DTLS implementations MUST be able to handle overlapping fragment ranges.
This allows senders to retransmit handshake messages with smaller
fragment sizes if the PMTU estimate changes. Senders MUST NOT change
handshake message bytes upon retransmission. Receivers MAY check
that retransmitted bytes are identical and SHOULD abort the handshake
with an "illegal_parameter" alert if the value of a byte changes.</t>
        <t>Note that as with TLS, multiple handshake messages may be placed in
the same DTLS record, provided that there is room and that they are
part of the same flight.  Thus, there are two acceptable ways to pack
two DTLS handshake messages into the same datagram: in the same record or in
separate records.</t>
      </section>
      <section anchor="endofearlydata-message">
        <name>EndOfEarlyData Message</name>
        <t>The DTLS 1.3 handshake has one important difference from the
TLS 1.3 handshake: the EndOfEarlyData message is omitted both
from the wire and the handshake transcript. Because DTLS
records have epochs, EndOfEarlyData is not necessary to determine
when the early data is complete, and because DTLS is lossy,
attackers can trivially mount the deletion attacks that EndOfEarlyData
prevents in TLS. Servers SHOULD NOT accept records from epoch 1 indefinitely once they are able to process records from epoch 3. Though reordering of IP packets can result in records from epoch 1 arriving after records from epoch 3, this is not likely to persist for very long relative to the round trip time. Servers could discard epoch 1  keys after the first epoch 3 data arrives, or retain keys for processing epoch 1 data for a short period.
(See <xref target="dtls-epoch"/> for the definitions of each epoch.)</t>
      </section>
      <section anchor="dtls-handshake-flights">
        <name>DTLS Handshake Flights</name>
        <t>DTLS handshake messages are grouped into a series of message flights. A flight starts with the
handshake message transmission of one peer and ends with the expected response from the
other peer. <xref target="tab-flights"/> contains a complete list of message combinations that constitute flights.</t>
        <table anchor="tab-flights">
          <name>Flight Handshake Message Combinations</name>
          <thead>
            <tr>
              <th align="left">Note</th>
              <th align="left">Client</th>
              <th align="left">Server</th>
              <th align="left">Handshake Messages</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left"> </td>
              <td align="left">x</td>
              <td align="left"> </td>
              <td align="left">ClientHello</td>
            </tr>
            <tr>
              <td align="left"> </td>
              <td align="left"> </td>
              <td align="left">x</td>
              <td align="left">HelloRetryRequest</td>
            </tr>
            <tr>
              <td align="left"> </td>
              <td align="left"> </td>
              <td align="left">x</td>
              <td align="left">ServerHello, EncryptedExtensions, CertificateRequest, Certificate, CertificateVerify, Finished</td>
            </tr>
            <tr>
              <td align="left">1</td>
              <td align="left">x</td>
              <td align="left"> </td>
              <td align="left">Certificate, CertificateVerify, Finished</td>
            </tr>
            <tr>
              <td align="left">1</td>
              <td align="left"> </td>
              <td align="left">x</td>
              <td align="left">NewSessionTicket</td>
            </tr>
          </tbody>
        </table>
        <t>Remarks:</t>
        <ul spacing="normal">
          <li>
            <t><xref target="tab-flights"/> does not highlight any of the optional messages.</t>
          </li>
          <li>
            <t>Regarding note (1): When a handshake flight is sent without any expected response, as is the case with
 the client's final flight or with the NewSessionTicket message, the flight must be
 acknowledged with an ACK message.</t>
          </li>
        </ul>
        <t>Below are several example message exchanges illustrating the flight concept.
The notational conventions from <xref target="TLS13"/> are used.</t>
        <figure anchor="dtls-full">
          <name>Message Flights for a Full DTLS Handshake (with Cookie Exchange)</name>
          <artwork><![CDATA[
Client                                             Server

                                                            +--------+
 ClientHello                                                | Flight |
                        -------->                           +--------+

                                                            +--------+
                        <--------        HelloRetryRequest  | Flight |
                                          + cookie          +--------+


                                                            +--------+
ClientHello                                                 | Flight |
 + cookie               -------->                           +--------+



                                               ServerHello
                                     {EncryptedExtensions}  +--------+
                                     {CertificateRequest*}  | Flight |
                                            {Certificate*}  +--------+
                                      {CertificateVerify*}
                                                {Finished}
                        <--------      [Application Data*]



 {Certificate*}                                             +--------+
 {CertificateVerify*}                                       | Flight |
 {Finished}             -------->                           +--------+
 [Application Data]

                                                            +--------+
                        <--------                    [ACK]  | Flight |
                                       [Application Data*]  +--------+

 [Application Data]     <------->      [Application Data]
]]></artwork>
        </figure>
        <figure anchor="dtls-psk">
          <name>Message Flights for Resumption and PSK Handshake (without Cookie Exchange)</name>
          <artwork><![CDATA[
 ClientHello                                              +--------+
  + pre_shared_key                                        | Flight |
  + psk_key_exchange_modes                                +--------+
  + key_share*         -------->


                                             ServerHello
                                        + pre_shared_key  +--------+
                                            + key_share*  | Flight |
                                   {EncryptedExtensions}  +--------+
                       <--------              {Finished}
                                     [Application Data*]
                                                          +--------+
 {Finished}            -------->                          | Flight |
 [Application Data*]                                      +--------+

                                                          +--------+
                       <--------                   [ACK]  | Flight |
                                     [Application Data*]  +--------+

 [Application Data]    <------->      [Application Data]
]]></artwork>
        </figure>
        <figure anchor="dtls-zero-rtt">
          <name>Message Flights for the Zero-RTT Handshake</name>
          <artwork><![CDATA[
Client                                            Server

 ClientHello
  + early_data
  + psk_key_exchange_modes                                +--------+
  + key_share*                                            | Flight |
  + pre_shared_key                                        +--------+
 (Application Data*)     -------->

                                             ServerHello
                                        + pre_shared_key
                                            + key_share*  +--------+
                                   {EncryptedExtensions}  | Flight |
                                              {Finished}  +--------+
                       <--------     [Application Data*]


                                                          +--------+
 {Finished}            -------->                          | Flight |
 [Application Data*]                                      +--------+

                                                          +--------+
                       <--------                   [ACK]  | Flight |
                                     [Application Data*]  +--------+

 [Application Data]    <------->      [Application Data]
]]></artwork>
        </figure>
        <figure anchor="dtls-post-handshake-ticket">
          <name>Message Flights for the NewSessionTicket Message</name>
          <artwork><![CDATA[
Client                                            Server

                                                          +--------+
                       <--------       [NewSessionTicket] | Flight |
                                                          +--------+

                                                          +--------+
[ACK]                  -------->                          | Flight |
                                                          +--------+
]]></artwork>
        </figure>
        <t>KeyUpdate, NewConnectionId, and RequestConnectionId follow a similar
pattern to NewSessionTicket: a single message sent by one side
followed by an ACK by the other.</t>
      </section>
      <section anchor="timeout-retransmissions">
        <name>Timeout and Retransmission</name>
        <section anchor="state-machine">
          <name>State Machine</name>
          <t>DTLS uses a simple timeout and retransmission scheme with the
state machine shown in <xref target="dtls-timeout-state-machine"/>.</t>
          <figure anchor="dtls-timeout-state-machine">
            <name>DTLS Timeout and Retransmission State Machine</name>
            <artwork><![CDATA[
                             +-----------+
                             | PREPARING |
                +----------> |           |
                |            |           |
                |            +-----------+
                |                  |
                |                  | Buffer next flight
                |                  |
                |                 \|/
                |            +-----------+
                |            |           |
                |            |  SENDING  |<------------------+
                |            |           |                   |
                |            +-----------+                   |
        Receive |                  |                         |
           next |                  | Send flight or partial  |
         flight |                  | flight                  |
                |                  |                         |
                |                  | Set retransmit timer    |
                |                 \|/                        |
                |            +-----------+                   |
                |            |           |                   |
                +------------|  WAITING  |-------------------+
                |     +----->|           |   Timer expires   |
                |     |      +-----------+                   |
                |     |          |  |   |                    |
                |     |          |  |   |                    |
                |     +----------+  |   +--------------------+
                |    Receive record |   Read retransmit or ACK
        Receive |  (Maybe Send ACK) |
           last |                   |
         flight |                   | Receive ACK
                |                   | for last flight
               \|/                  |
                                    |
            +-----------+           |
            |           | <---------+
            | FINISHED  |
            |           |
            +-----------+
                |  /|\
                |   |
                |   |
                +---+

          Server read retransmit
              Retransmit ACK
]]></artwork>
          </figure>
          <t>The state machine has four basic states: PREPARING, SENDING, WAITING,
and FINISHED.</t>
          <t>In the PREPARING state, the implementation does whatever computations
are necessary to prepare the next flight of messages.  It then
buffers them up for transmission (emptying the transmission
buffer first) and enters the SENDING state.</t>
          <t>In the SENDING state, the implementation transmits the buffered
flight of messages. If the implementation has received one or more
ACKs (see <xref target="ack-msg"/>) from the peer, then it SHOULD omit any messages or
message fragments which have already been acknowledged. Once the messages
have been sent, the implementation then sets a retransmit timer
and enters the WAITING state.</t>
          <t>There are four ways to exit the WAITING state:</t>
          <ol spacing="normal" type="1"><li>
              <t>The retransmit timer expires: the implementation transitions to
the SENDING state, where it retransmits the flight, adjusts and re-arms the
retransmit timer (see <xref target="timer-values"/>), and returns to the WAITING state.</t>
            </li>
            <li>
              <t>The implementation reads an ACK from the peer: upon receiving
an ACK for a partial flight (as mentioned in <xref target="sending-acks"/>),
the implementation transitions
to the SENDING state, where it retransmits the unacknowledged portion
of the flight, adjusts and re-arms the retransmit timer, and returns to the
WAITING state. Upon receiving an ACK for a complete flight,
the implementation cancels all retransmissions and either
remains in WAITING, or, if the ACK was for the final flight,
transitions to FINISHED.</t>
            </li>
            <li>
              <t>The implementation reads a retransmitted flight from the peer when
none of the messages that it sent in response to that flight
have been acknowledged: the
implementation transitions to the SENDING state, where it
retransmits the flight, adjusts and re-arms the retransmit timer, and returns
to the WAITING state.  The rationale here is that the receipt of a
duplicate message is the likely result of timer expiry on the peer
and therefore suggests that part of one's previous flight was
lost.</t>
            </li>
            <li>
              <t>The implementation receives some or all of the next flight of messages: if
this is the final flight of messages, the implementation
transitions to FINISHED.  If the implementation needs to send a new
flight, it transitions to the PREPARING state. Partial reads
(whether partial messages or only some of the messages in the
flight) may also trigger the implementation to send an ACK, as
described in <xref target="sending-acks"/>.</t>
            </li>
          </ol>
          <t>Because DTLS clients send the first message (ClientHello), they start
in the PREPARING state.  DTLS servers start in the WAITING state, but
with empty buffers and no retransmit timer.</t>
          <t>In addition, for at least twice the default MSL defined for <xref target="RFC0793"/>,
when in the FINISHED state, the server MUST respond to retransmission
of the client's final flight with a retransmit of its ACK.</t>
          <t>Note that because of packet loss, it is possible for one side to be
sending application data even though the other side has not received
the first side's Finished message.  Implementations MUST either
discard or buffer all application data records for epoch 3 and
above until they have received the Finished message from the
peer. Implementations MAY treat receipt of application data with a new
epoch prior to receipt of the corresponding Finished message as
evidence of reordering or packet loss and retransmit their final
flight immediately, shortcutting the retransmission timer.</t>
        </section>
        <section anchor="timer-values">
          <name>Timer Values</name>
          <t>The configuration of timer settings varies with implementations, and certain
deployment environments require timer value adjustments. Mishandling
of the timer can lead to serious congestion problems -- for example, if
many instances of a DTLS time out early and retransmit too quickly on
a congested link.</t>
          <t>Unless implementations have deployment-specific and/or external information about the round trip time,
implementations SHOULD use an initial timer value of 1000 ms and double
the value at each retransmission, up to no less than 60 seconds (the
maximum as specified in RFC 6298 <xref target="RFC6298"/>). Application-specific profiles MAY
recommend shorter or longer timer values. For instance:</t>
          <ul spacing="normal">
            <li>
              <t>Profiles for specific deployment environments, such as in low-power,
multi-hop mesh scenarios as used in some Internet of Things (IoT) networks,
MAY specify longer timeouts. See <xref target="I-D.ietf-uta-tls13-iot-profile"/> for
more information about one such DTLS 1.3 IoT profile.</t>
            </li>
            <li>
              <t>Real-time protocols MAY specify shorter timeouts. It is RECOMMENDED
that for DTLS-SRTP <xref target="RFC5764"/>, a default timeout of
400 ms be used; because customer experience degrades with one-way latencies
of greater than 200 ms, real-time deployments are less likely
to have long latencies.</t>
            </li>
          </ul>
          <t>In settings where there is external information (for instance, from an ICE <xref target="RFC8445"/>
handshake, or from previous connections to the same server)
about the RTT, implementations SHOULD use 1.5 times that RTT estimate
as the retransmit timer.</t>
          <t>Implementations SHOULD retain the current timer value until a
message is transmitted and acknowledged without having to
be retransmitted, at which time the value SHOULD be adjusted
to 1.5 times the measured round trip time for that
message. After a long period of idleness, no less
than 10 times the current timer value, implementations MAY reset the
timer to the initial value.</t>
          <t>Note that because retransmission is for the handshake and not dataflow, the effect on
congestion of shorter timeouts is smaller than in generic protocols
such as TCP or QUIC. Experience with DTLS 1.2, which uses a
simpler "retransmit everything on timeout" approach, has not shown
serious congestion problems in practice.</t>
        </section>
        <section anchor="large-flight-sizes">
          <name>Large Flight Sizes</name>
          <t>DTLS does not have any built-in congestion control or rate control;
in general, this is not an issue because messages tend to be small.
However, in principle, some messages -- especially Certificate -- can
be quite large. If all the messages in a large flight are sent
at once, this can result in network congestion. A better strategy
is to send out only part of the flight, sending more when
messages are acknowledged. Several extensions have been standardized
to reduce the size of the Certificate message -- for example,
the "cached_info" extension <xref target="RFC7924"/>; certificate
compression <xref target="RFC8879"/>; and <xref target="RFC6066"/>, which defines the "client_certificate_url"
extension allowing DTLS clients to send a sequence of Uniform
Resource Locators (URLs) instead of the client certificate.</t>
          <t>DTLS stacks SHOULD NOT send more than 10 records in a single transmission.</t>
        </section>
        <section anchor="state-machine-duplication">
          <name>State Machine Duplication for Post-Handshake Messages</name>
          <t>DTLS 1.3 makes use of the following categories of post-handshake messages:</t>
          <ol spacing="normal" type="1"><li>
              <t>NewSessionTicket</t>
            </li>
            <li>
              <t>KeyUpdate</t>
            </li>
            <li>
              <t>NewConnectionId</t>
            </li>
            <li>
              <t>RequestConnectionId</t>
            </li>
            <li>
              <t>Post-handshake client authentication</t>
            </li>
          </ol>
          <t>Messages of each category can be sent independently, and reliability is established
via independent state machines, each of which behaves as described in <xref target="state-machine"/>.
For example, if a server sends a NewSessionTicket and a CertificateRequest message,
two independent state machines will be created.</t>
          <t>Sending multiple instances of messages of
a given category without having completed earlier transmissions is allowed for some
categories, but not for others. Specifically, a server MAY send multiple NewSessionTicket
messages at once without awaiting ACKs for earlier NewSessionTicket messages first. Likewise, a
server MAY send multiple CertificateRequest messages at once without having completed
earlier client authentication requests before. In contrast, implementations MUST NOT
send KeyUpdate, NewConnectionId, or RequestConnectionId messages if an earlier message
of the same type has not yet been acknowledged.</t>
          <t>Note: Except for post-handshake client authentication, which involves handshake messages
in both directions, post-handshake messages are single-flight, and their respective state
machines on the sender side reduce to waiting for an ACK and retransmitting the original
message. In particular, note that a RequestConnectionId message does not force the receiver
to send a NewConnectionId message in reply, and both messages are therefore treated
independently.</t>
          <t>Creating and correctly updating multiple state machines requires feedback from the handshake
logic to the state machine layer, indicating which message belongs to which state machine.
For example, if a server sends multiple CertificateRequest messages and receives a Certificate
message in response, the corresponding state machine can only be determined after inspecting the
certificate_request_context field. Similarly, a server sending a single CertificateRequest
and receiving a NewConnectionId message in response can only decide that the NewConnectionId
message should be treated through an independent state machine after inspecting the handshake
message type.</t>
        </section>
      </section>
      <section anchor="cryptographic-label-prefix">
        <name>Cryptographic Label Prefix</name>
        <t>Section 7.1 of <xref target="TLS13"/> specifies that HKDF-Expand-Label uses
a label prefix of "tls13 ". For DTLS 1.3, that label SHALL be
"dtls13".  This ensures key separation between DTLS 1.3 and
TLS 1.3. Note that there is no trailing space; this is necessary
in order to keep the overall label size inside of one hash
iteration because "DTLS" is one letter longer than "TLS".</t>
      </section>
      <section anchor="alert-messages">
        <name>Alert Messages</name>
        <t>Note that alert messages are not retransmitted at all, even when they
occur in the context of a handshake.  However, a DTLS implementation
which would ordinarily issue an alert SHOULD generate a new alert
message if the offending record is received again (e.g., as a
retransmitted handshake message).  Implementations SHOULD detect when
a peer is persistently sending bad messages and terminate the local
connection state after such misbehavior is detected. Note that alerts
are not reliably transmitted; implementations SHOULD NOT depend on
receiving alerts in order to signal errors or connection closure.</t>
        <t>Any data received with an epoch/sequence number pair after
that of a valid received closure alert MUST be ignored. Note:
this is a change from TLS 1.3 which depends on the order of
receipt rather than the epoch and sequence number.</t>
      </section>
      <section anchor="establishing-new-associations-with-existing-parameters">
        <name>Establishing New Associations with Existing Parameters</name>
        <t>If a DTLS client-server pair is configured in such a way that
repeated connections happen on the same host/port quartet, then it is
possible that a client will silently abandon one connection and then
initiate another with the same parameters (e.g., after a reboot).
This will appear to the server as a new handshake with epoch=0.  In
cases where a server believes it has an existing association on a
given host/port quartet and it receives an epoch=0 ClientHello, it
SHOULD proceed with a new handshake but MUST NOT destroy the existing
association until the client has demonstrated reachability either by
completing a cookie exchange or by completing a complete handshake
including delivering a verifiable Finished message.  After a correct
Finished message is received, the server MUST abandon the previous
association to avoid confusion between two valid associations with
overlapping epochs.  The reachability requirement prevents
off-path/blind attackers from destroying associations merely by
sending forged ClientHellos.</t>
        <t>Note: It is not always possible to distinguish which association
a given record is from. For instance, if the client performs
a handshake, abandons the connection, and then immediately starts
a new handshake, it may not be possible to tell which connection
a given protected record is for. In these cases, trial decryption
may be necessary, though implementations could use CIDs to avoid
the 5-tuple-based ambiguity.</t>
      </section>
    </section>
    <section anchor="example-of-handshake-with-timeout-and-retransmission">
      <name>Example of Handshake with Timeout and Retransmission</name>
      <t>The following is an example of a handshake with lost packets and
retransmissions. Note that the client sends an empty ACK message
because it can only acknowledge Record 2 sent by the server once it has
processed messages in Record 0 needed to establish epoch 2 keys, which
are needed to encrypt or decrypt messages found in Record 2.  <xref target="ack-msg"/>
provides the necessary background details for this interaction.
Note: For simplicity, we are not resetting record numbers in this
diagram, so "Record 1" is really "Epoch 2, Record 0", etc.</t>
      <figure anchor="dtls-msg-loss">
        <name>Example DTLS Exchange Illustrating Message Loss</name>
        <artwork><![CDATA[
Client                                                Server
------                                                ------

 Record 0                  -------->
 ClientHello
 (message_seq=0)

                             X<-----                 Record 0
                             (lost)               ServerHello
                                              (message_seq=0)
                                                     Record 1
                                          EncryptedExtensions
                                              (message_seq=1)
                                                  Certificate
                                              (message_seq=2)


                           <--------                 Record 2
                                            CertificateVerify
                                              (message_seq=3)
                                                     Finished
                                              (message_seq=4)

 Record 1                  -------->
 ACK []


                           <--------                 Record 3
                                                  ServerHello
                                              (message_seq=0)
                                          EncryptedExtensions
                                              (message_seq=1)
                                                  Certificate
                                              (message_seq=2)

                           <--------                 Record 4
                                            CertificateVerify
                                              (message_seq=3)
                                                     Finished
                                              (message_seq=4)


 Record 2                  -------->
 Certificate
 (message_seq=1)
 CertificateVerify
 (message_seq=2)
 Finished
 (message_seq=3)

                           <--------               Record 5
                                                    ACK [2]
]]></artwork>
      </figure>
      <section anchor="dtls-epoch">
        <name>Epoch Values and Rekeying</name>
        <t>A recipient of a DTLS message needs to select the correct keying material
in order to process an incoming message. With the possibility of message
 loss and reordering, an identifier is needed to determine which cipher state
has been used to protect the record payload. The epoch value fulfills this
role in DTLS. In addition to the TLS 1.3-defined key derivation steps (see
Section 7 of <xref target="TLS13"/>), a sender may want to rekey at any time during
the lifetime of the connection. It therefore needs to indicate that it is
updating its sending cryptographic keys.</t>
        <t>This version of DTLS assigns dedicated epoch values to messages in the
protocol exchange to allow identification of the correct cipher state:</t>
        <ul spacing="normal">
          <li>
            <t>Epoch value (0) is used with unencrypted messages. There are
three unencrypted messages in DTLS, namely ClientHello, ServerHello,
and HelloRetryRequest.</t>
          </li>
          <li>
            <t>Epoch value (1) is used for messages protected using keys derived
from client_early_traffic_secret. Note that this epoch is skipped if
the client does not offer early data.</t>
          </li>
          <li>
            <t>Epoch value (2) is used for messages protected using keys derived
from [sender]_handshake_traffic_secret. Messages transmitted during
the initial handshake, such as EncryptedExtensions,
CertificateRequest, Certificate, CertificateVerify, and Finished,
belong to this category. Note, however, that post-handshake messages are
protected under the appropriate application traffic key and are not included in this category.</t>
          </li>
          <li>
            <t>Epoch value (3) is used for payloads protected using keys derived
from the initial [sender]_application_traffic_secret_0. This may include
handshake messages, such as post-handshake messages (e.g., a
NewSessionTicket message).</t>
          </li>
          <li>
            <t>Epoch values (4 to 2^64-1) are used for payloads protected using keys from
the [sender]_application_traffic_secret_N (N&gt;0).</t>
          </li>
        </ul>
        <t>Using these reserved epoch values, a receiver knows what cipher state
has been used to encrypt and integrity protect a
message. Implementations that receive a record with an epoch value
for which no corresponding cipher state can be determined SHOULD
handle it as a record which fails deprotection.</t>
        <t>Note that epoch values do not wrap. If a DTLS implementation would
need to wrap the epoch value, it MUST terminate the connection.</t>
        <t>The traffic key calculation is described in Section 7.3 of <xref target="TLS13"/>.</t>
        <t><xref target="dtls-msg-epoch"/> illustrates the epoch values in an example DTLS handshake.</t>
        <figure anchor="dtls-msg-epoch">
          <name>Example DTLS Exchange with Epoch Information</name>
          <artwork><![CDATA[
Client                                             Server
------                                             ------

 Record 0
 ClientHello
 (epoch=0)
                            -------->
                                                     Record 0
                            <--------       HelloRetryRequest
                                                    (epoch=0)
 Record 1
 ClientHello                -------->
 (epoch=0)
                                                     Record 1
                            <--------             ServerHello
                                                    (epoch=0)
                                        {EncryptedExtensions}
                                                    (epoch=2)
                                                {Certificate}
                                                    (epoch=2)
                                          {CertificateVerify}
                                                    (epoch=2)
                                                   {Finished}
                                                    (epoch=2)
 Record 2
 {Certificate}              -------->
 (epoch=2)
 {CertificateVerify}
 (epoch=2)
 {Finished}
 (epoch=2)
                                                     Record 2
                            <--------                   [ACK]
                                                    (epoch=3)
 Record 3
 [Application Data]         -------->
 (epoch=3)
                                                     Record 3
                            <--------      [Application Data]
                                                    (epoch=3)

                         Some time later ...
                 (Post-Handshake Message Exchange)
                                                     Record 4
                            <--------      [NewSessionTicket]
                                                    (epoch=3)
 Record 4
 [ACK]                      -------->
 (epoch=3)

                         Some time later ...
                           (Rekeying)
                                                     Record 5
                            <--------      [Application Data]
                                                    (epoch=4)
 Record 5
 [Application Data]         -------->
 (epoch=4)
]]></artwork>
        </figure>
      </section>
    </section>
    <section anchor="ack-msg">
      <name>ACK Message</name>
      <t>The ACK message is used by an endpoint to indicate which handshake records
it has received and processed from the other side. ACK is not
a handshake message but is rather a separate content type,
with code point 26. This avoids having ACK being added
to the handshake transcript. Note that ACKs can still be
sent in the same UDP datagram as handshake records.</t>
      <artwork><![CDATA[
    struct {
        RecordNumber record_numbers<0..2^16-1>;
    } ACK;
]]></artwork>
      <dl>
        <dt>record_numbers:</dt>
        <dd>
          <t>A list of the records containing handshake messages in the current
flight which the endpoint has received and either processed or buffered,
in numerically increasing
order.</t>
        </dd>
      </dl>
      <t>Implementations MUST NOT acknowledge records containing
handshake messages or fragments which have not been
processed or buffered. Otherwise, deadlock can ensue.
As an example, implementations MUST NOT send ACKs for
handshake messages which they discard because they are
not the next expected message.</t>
      <t>During the handshake, ACKs only cover the current outstanding flight (this is
possible because DTLS is generally a lock-step protocol). In particular,
receiving a message from a handshake flight implicitly acknowledges all
messages from the previous flight(s).  Accordingly, an ACK
from the server would not cover both the ClientHello and the client's
Certificate message, because the ClientHello and client Certificate are in different
flights. Implementations can accomplish this by clearing their ACK
list upon receiving the start of the next flight.</t>
      <t>For post-handshake messages, ACKs SHOULD be sent once for each received
and processed handshake record (potentially subject to some delay) and MAY
cover more than one flight. This includes records containing messages which are
discarded because a previous copy has been received.</t>
      <t>During the handshake, ACK records MUST be sent with an epoch which is
equal to or higher than the record which is being acknowledged.
Note that some care is required when processing flights spanning
multiple epochs. For instance, if the client receives only the ServerHello
and Certificate and wishes to ACK them in a single record,
it must do so in epoch 2, as it is required to use an epoch
greater than or equal to 2 and cannot yet send with any greater
epoch. Implementations SHOULD simply use the highest
current sending epoch, which will generally be the highest available.
After the handshake, implementations MUST use the highest available
sending epoch.</t>
      <section anchor="sending-acks">
        <name>Sending ACKs</name>
        <t>When an implementation detects a disruption in the receipt of the
current incoming flight, it SHOULD generate an ACK that covers the
messages from that flight which it has received and processed so far.
Implementations have some discretion about which events to treat
as signs of disruption, but it is RECOMMENDED that they generate
ACKs under two circumstances:</t>
        <ul spacing="normal">
          <li>
            <t>When they receive a message or fragment which is out of order,
either because it is not the next expected message or because
it is not the next piece of the current message.</t>
          </li>
          <li>
            <t>When they have received part of a flight and do not immediately
receive the rest of the flight (which may be in the same UDP
datagram). "Immediately" is hard to define. One approach is to
set a timer for 1/4 the current retransmit timer value when
the first record in the flight is received and then send an
ACK when that timer expires. Note: The 1/4 value here is somewhat
arbitrary. Given that the round trip estimates in the DTLS
handshake are generally very rough (or the default), any
value will be an approximation, and there is an inherent
compromise due to competition between retransmission due to over-aggressive ACKing
and over-aggressive timeout-based retransmission.
As a comparison point,
QUIC's loss-based recovery algorithms
(Section 6.1.2 of <xref target="RFC9002"/>)
work out to a delay of about 1/3 of the retransmit timer.</t>
          </li>
        </ul>
        <t>In general, flights MUST be ACKed unless they are implicitly
acknowledged. In the present specification, the following flights are implicitly acknowledged
by the receipt of the next flight, which generally immediately follows the flight:</t>
        <ol spacing="normal" type="1"><li>
            <t>Handshake flights other than the client's final flight of the
main handshake.</t>
          </li>
          <li>
            <t>The server's post-handshake CertificateRequest.</t>
          </li>
        </ol>
        <t>ACKs SHOULD NOT be sent for these flights unless
the responding flight cannot be generated immediately.
All other flights MUST be ACKed.
In this case,
implementations MAY send explicit ACKs for the complete received
flight even though it will eventually also be implicitly acknowledged
through the responding flight.
A notable example for this is
the case of client authentication in constrained
environments, where generating the CertificateVerify message can
take considerable time on the client.
Implementations MAY acknowledge the records corresponding to each transmission of
each flight or simply acknowledge the most recent one. In general,
implementations SHOULD ACK as many received packets as can fit
into the ACK record, as this provides the most complete information
and thus reduces the chance of spurious retransmission; if space
is limited, implementations SHOULD favor including records which
have not yet been acknowledged.</t>
        <t>Note: While some post-handshake messages follow a request/response
pattern, this does not necessarily imply receipt.
For example, a KeyUpdate sent in response to a KeyUpdate with
request_update set to "update_requested" does not implicitly
acknowledge the earlier KeyUpdate message because the two KeyUpdate
messages might have crossed in flight.</t>
        <t>ACKs MUST NOT be sent for records of any content type
other than handshake or for records which cannot be deprotected.</t>
        <t>Note that in some cases it may be necessary to send an ACK which
does not contain any record numbers. For instance, a client
might receive an EncryptedExtensions message prior to receiving
a ServerHello. Because it cannot decrypt the EncryptedExtensions,
it cannot safely acknowledge it (as it might be damaged). If the client
does not send an ACK, the server will eventually retransmit
its first flight, but this might take far longer than the
actual round trip time between client and server. Having
the client send an empty ACK shortcuts this process.</t>
      </section>
      <section anchor="receiving-acks">
        <name>Receiving ACKs</name>
        <t>When an implementation receives an ACK, it SHOULD record that the
messages or message fragments sent in the records being
ACKed were received and omit them from any future
retransmissions. Upon receipt of an ACK that leaves it with
only some messages from a flight having been acknowledged,
an implementation SHOULD retransmit the unacknowledged
messages or fragments. Note that this requires implementations to
track which messages appear in which records. Once all the messages in a flight have been
acknowledged, the implementation MUST cancel all retransmissions
of that flight.
Implementations MUST treat a record
as having been acknowledged if it appears in any ACK; this
prevents spurious retransmission in cases where a flight is
very large and the receiver is forced to elide acknowledgements
for records which have already been ACKed.
As noted above, the receipt of any record responding
to a given flight MUST be taken as an implicit acknowledgement for the entire
flight to which it is responding.</t>
      </section>
      <section anchor="design-rationale">
        <name>Design Rationale</name>
        <t>ACK messages are used in two circumstances, namely:</t>
        <ul spacing="normal">
          <li>
            <t>On sign of disruption, or lack of progress; and</t>
          </li>
          <li>
            <t>To indicate complete receipt of the last flight in a handshake.</t>
          </li>
        </ul>
        <t>In the first case, the use of the ACK message is optional, because
the peer will retransmit in any case and therefore the ACK just
allows for selective or early retransmission, as opposed to the timeout-based whole
flight retransmission in previous versions of DTLS. When DTLS 1.3 is used in deployments
with lossy networks, such as low-power, long-range radio networks as well as
low-power mesh networks, the use of ACKs is recommended.</t>
        <t>The use of the ACK for the second case is mandatory for the proper functioning of the
protocol. For instance, the ACK message sent by the client in Figure 13
acknowledges receipt and processing of Record 4 (containing the NewSessionTicket
message), and if it is not sent, the server will continue retransmission
of the NewSessionTicket indefinitely until its maximum retransmission count is reached.</t>
      </section>
    </section>
    <section anchor="key-updates">
      <name>Key Updates</name>
      <t>As with TLS 1.3, DTLS 1.3 implementations send a KeyUpdate message to
indicate that they are updating their sending keys.  As with other
handshake messages with no built-in response, KeyUpdates MUST be
acknowledged.  In order to facilitate epoch reconstruction
(<xref target="reconstructing"/>), implementations MUST NOT send records with the new keys or
send a new KeyUpdate until the previous KeyUpdate has been
acknowledged (this avoids having too many epochs in active use).</t>
      <t>Due to loss and/or reordering, DTLS 1.3 implementations
may receive a record with an older epoch than the
current one (the requirements above preclude receiving
a newer record). They SHOULD attempt to process those records
with that epoch (see <xref target="reconstructing"/> for information
on determining the correct epoch) but MAY opt to discard
such out-of-epoch records.</t>
      <t>Due to the possibility of an ACK message for a KeyUpdate being lost and thereby
preventing the sender of the KeyUpdate from updating its keying material,
receivers MUST retain the pre-update keying material until receipt and successful
decryption of a message using the new keys.</t>
      <t><xref target="dtls-key-update"/> shows an example exchange illustrating that successful
ACK processing updates the keys of the KeyUpdate message sender, which is
reflected in the change of epoch values.</t>
      <figure anchor="dtls-key-update">
        <name>Example DTLS Key Update</name>
        <artwork><![CDATA[
Client                                             Server

      /-------------------------------------------\
     |                                             |
     |             Initial Handshake               |
      \-------------------------------------------/


 [Application Data]         -------->
 (epoch=3)

                            <--------      [Application Data]
                                                    (epoch=3)

      /-------------------------------------------\
     |                                             |
     |              Some time later ...            |
      \-------------------------------------------/


 [Application Data]         -------->
 (epoch=3)


 [KeyUpdate]
 (+ update_requested        -------->
 (epoch 3)


                            <--------      [Application Data]
                                                    (epoch=3)


                                                        [ACK]
                            <--------               (epoch=3)


 [Application Data]
 (epoch=4)                  -------->



                            <--------             [KeyUpdate]
                                                    (epoch=3)


 [ACK]                      -------->
 (epoch=4)


                            <--------      [Application Data]
                                                    (epoch=4)
]]></artwork>
      </figure>
      <t>With a 128-bit key as in AES-128, rekeying 2^64 times has a high
probability of key reuse within a given connection. Note that even if
the key repeats, the IV is also independently generated. In order to
provide an extra margin of security, sending implementations MUST NOT
allow the epoch to exceed 2^48-1. In order to allow this value to
be changed later, receiving implementations MUST NOT
enforce this rule. If a sending implementation receives a KeyUpdate
with request_update set to "update_requested", it MUST NOT send
its own KeyUpdate if that would cause it to exceed these limits
and SHOULD instead ignore the "update_requested" flag.
Note: this overrides the requirement in TLS 1.3 to always
send a KeyUpdate in response to "update_requested".</t>
    </section>
    <section anchor="connection-id-updates">
      <name>Connection ID Updates</name>
      <t>If the client and server have negotiated the "connection_id"
extension <xref target="RFC9146"/>, either side
can send a new CID that it wishes the other side to use
in a NewConnectionId message.</t>
      <artwork><![CDATA[
    enum {
        cid_immediate(0), cid_spare(1), (255)
    } ConnectionIdUsage;

    opaque ConnectionId<0..2^8-1>;

    struct {
        ConnectionId cids<0..2^16-1>;
        ConnectionIdUsage usage;
    } NewConnectionId;
]]></artwork>
      <dl>
        <dt>cids:</dt>
        <dd>
          <t>Indicates the set of CIDs that the sender wishes the peer to use.</t>
        </dd>
        <dt>usage:</dt>
        <dd>
          <t>Indicates whether the new CIDs should be used immediately or are
spare.  If usage is set to "cid_immediate", then one of the new CIDs
MUST be used immediately for all future records. If it is set to
"cid_spare", then either an existing or new CID MAY be used.</t>
        </dd>
      </dl>
      <t>Endpoints SHOULD use receiver-provided CIDs in the order they were provided.
Implementations which receive more spare CIDs than they wish to maintain
MAY simply discard any extra CIDs.
Endpoints MUST NOT have more than one NewConnectionId message outstanding.</t>
      <t>Implementations which either did not negotiate the "connection_id" extension
or which have negotiated receiving an empty CID MUST NOT
send NewConnectionId. Implementations MUST NOT send RequestConnectionId
when sending an empty Connection ID. Implementations which detect a violation
of these rules MUST terminate the connection with an "unexpected_message"
alert.</t>
      <t>Implementations SHOULD use a new CID whenever sending on a new path
and SHOULD request new CIDs for this purpose if path changes are anticipated.</t>
      <artwork><![CDATA[
    struct {
      uint8 num_cids;
    } RequestConnectionId;
]]></artwork>
      <dl>
        <dt>num_cids:</dt>
        <dd>
          <t>The number of CIDs desired.</t>
        </dd>
      </dl>
      <t>Endpoints SHOULD respond to RequestConnectionId by sending a
NewConnectionId with usage "cid_spare" containing num_cids CIDs as soon as
possible.  Endpoints MUST NOT send a RequestConnectionId message
when an existing request is still unfulfilled; this implies that
endpoints need to request new CIDs well in advance.  An endpoint MAY
handle requests which it considers excessive by responding with
a NewConnectionId message containing fewer than num_cids CIDs,
including no CIDs at all. Endpoints MAY handle an excessive number
of RequestConnectionId messages by terminating the connection
using a "too_many_cids_requested" (alert number 52) alert.</t>
      <t>Endpoints MUST NOT send either of these messages if they did not negotiate a
CID. If an implementation receives these messages when CIDs
were not negotiated, it MUST abort the connection with an "unexpected_message"
alert.</t>
      <section anchor="connection-id-example">
        <name>Connection ID Example</name>
        <t>Below is an example exchange for DTLS 1.3 using a single
CID in each direction.</t>
        <t>Note: The "connection_id" extension,
which is used in ClientHello and ServerHello messages,
is defined in <xref target="RFC9146"/>.</t>
        <figure anchor="dtls-example">
          <name>Example DTLS 1.3 Exchange with CIDs</name>
          <artwork><![CDATA[
Client                                             Server
------                                             ------

ClientHello
(connection_id=5)
                            -------->


                            <--------       HelloRetryRequest
                                                     (cookie)

ClientHello                 -------->
(connection_id=5)
  + cookie

                            <--------             ServerHello
                                          (connection_id=100)
                                          EncryptedExtensions
                                                      (cid=5)
                                                  Certificate
                                                      (cid=5)
                                            CertificateVerify
                                                      (cid=5)
                                                     Finished
                                                      (cid=5)

Certificate                -------->
(cid=100)
CertificateVerify
(cid=100)
Finished
(cid=100)
                           <--------                      ACK
                                                      (cid=5)

Application Data           ========>
(cid=100)
                           <========         Application Data
                                                      (cid=5)
]]></artwork>
        </figure>
        <t>If no CID is negotiated, then the receiver MUST reject any
records it receives that contain a CID.</t>
      </section>
    </section>
    <section anchor="application-data-protocol">
      <name>Application Data Protocol</name>
      <t>Application data messages are carried by the record layer and are split
into records
and encrypted based on the current connection state. The messages
are treated as transparent data to the record layer.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Security issues are discussed primarily in <xref target="TLS13"/>.</t>
      <t>The primary additional security consideration raised by DTLS is that
of denial of service by excessive resource consumption.  DTLS includes a cookie exchange designed to
protect against denial of service.  However, implementations that do
not use this cookie exchange are still vulnerable to DoS.  In
particular, DTLS servers that do not use the cookie exchange may be
used as attack amplifiers even if they themselves are not
experiencing DoS.  Therefore, DTLS servers SHOULD use the cookie
exchange unless there is good reason to believe that amplification is
not a threat in their environment.  Clients MUST be prepared to do a
cookie exchange with every handshake.</t>
      <t>Some key properties required of the cookie for the cookie-exchange mechanism
to be functional are described in Section 3.3 of <xref target="RFC2522"/>:</t>
      <ul spacing="normal">
        <li>
          <t>The cookie MUST depend on the client's address.</t>
        </li>
        <li>
          <t>It MUST NOT be possible for anyone other than the issuing entity to generate
cookies that are accepted as valid by that entity.  This typically entails
an integrity check based on a secret key.</t>
        </li>
        <li>
          <t>Cookie generation and verification are triggered by unauthenticated parties,
and as such their resource consumption needs to be restrained in order to
avoid having the cookie-exchange mechanism itself serve as a DoS vector.</t>
        </li>
      </ul>
      <t>Although the cookie must allow the server to produce the right handshake
transcript, it SHOULD be constructed so that knowledge of the cookie
is insufficient to reproduce the ClientHello contents. Otherwise,
this may create problems with future extensions such as Encrypted Client Hello <xref target="I-D.ietf-tls-esni"/>.</t>
      <t>When cookies are generated using a keyed authentication mechanism,
it should be possible to rotate the associated
secret key, so that temporary compromise of the key does not permanently
compromise the integrity of the cookie-exchange mechanism.  Though this secret
is not as high-value as, e.g., a session-ticket-encryption key, rotating the
cookie-generation key on a similar timescale would ensure that the
key rotation functionality is exercised regularly and thus in working order.</t>
      <t>The cookie exchange provides address validation during the initial handshake.
DTLS with Connection IDs allows for endpoint addresses to change during the
association; any such updated addresses are not covered by the cookie exchange
during the handshake.
DTLS implementations MUST NOT update the address they send to in response
to packets from a different address unless they first perform some
reachability test; no such test is defined in this specification and
a future specification would need to specify a complete
procedure for how and when to update addresses.
Even
with such a test, an active on-path adversary can also black-hole traffic or
create a reflection attack against third parties because a DTLS peer
has no means to distinguish a genuine address update event (for
example, due to a NAT rebinding) from one that is malicious. This
attack is of concern when there is a large asymmetry of
request/response message sizes.</t>
      <t>With the exception of order protection and non-replayability, the security
guarantees for DTLS 1.3 are the same as TLS 1.3. While TLS always provides
order protection and non-replayability, DTLS does not provide order protection
and may not provide replay protection.</t>
      <t>Unlike TLS implementations, DTLS implementations SHOULD NOT respond
to invalid records by terminating the connection.</t>
      <t>TLS 1.3 requires replay protection for 0-RTT data (or rather, for connections
that use 0-RTT data; see Section 8 of <xref target="TLS13"/>).  DTLS provides an optional
per-record replay-protection mechanism, since datagram protocols are
inherently subject to message reordering and replay.  These two
replay-protection mechanisms are orthogonal, and neither mechanism meets the
requirements for the other.</t>
      <t>DTLS 1.3's handshake transcript does not include the new DTLS fields,
which makes it have the same format as TLS 1.3. However, the DTLS 1.3 and
TLS 1.3 transcripts are disjoint because they use different version
numbers. Additionally, the DTLS 1.3 key schedule uses a different label
and so will produce different keys for the same transcript.</t>
      <t>The security and privacy properties of the CID for DTLS 1.3 build
on top of what is described for DTLS 1.2 in <xref target="RFC9146"/>. There are,
however, several differences:</t>
      <ul spacing="normal">
        <li>
          <t>In both versions of DTLS, extension negotiation is used to agree on the use of the CID
feature and the CID values. In both versions, the CID is carried in the DTLS record header (if negotiated).
However, the way the CID is included in the record header differs between the two versions.</t>
        </li>
        <li>
          <t>The use of the post-handshake message allows the client and the server
to update their CIDs, and those values are exchanged with confidentiality
protection.</t>
        </li>
        <li>
          <t>The ability to use multiple CIDs allows for improved privacy properties
in multihomed scenarios. When only a single CID is in use on multiple
paths from such a host, an adversary can correlate the communication
interaction across paths, which adds further privacy concerns. In order
to prevent this, implementations SHOULD attempt to use fresh CIDs
whenever they change local addresses or ports (though this is not always
possible to detect). The RequestConnectionId message can be used by a peer
to ask for new CIDs to ensure that a pool of suitable CIDs is available.</t>
        </li>
        <li>
          <t>The mechanism for encrypting sequence numbers (<xref target="rne"/>) prevents
trivial tracking by on-path adversaries that attempt to correlate the
pattern of sequence numbers received on different paths; such tracking
could occur even when different CIDs are used on each path, in the
absence of sequence number encryption. Switching CIDs based on certain
events, or even regularly, helps against tracking by on-path
adversaries.  Note that sequence number encryption is used for all
encrypted DTLS 1.3 records irrespective of whether a CID is used or
not.  Unlike the sequence number, the epoch is not encrypted because it acts as a key identifier, which
may improve correlation of packets from a single connection across
different network paths.</t>
        </li>
        <li>
          <t>DTLS 1.3 encrypts handshake messages much earlier than in previous
DTLS versions. Therefore, less information identifying the DTLS client, such as
the client certificate, is available to an on-path adversary.</t>
        </li>
      </ul>
    </section>
    <section anchor="changes-since-dtls-12">
      <name>Changes since DTLS 1.2</name>
      <t>Since TLS 1.3 introduces a large number of changes with respect to TLS 1.2, the list
of changes from DTLS 1.2 to DTLS 1.3 is equally large. For this reason,
this section focuses on the most important changes only.</t>
      <ul spacing="normal">
        <li>
          <t>New handshake pattern, which leads to a shorter message exchange.</t>
        </li>
        <li>
          <t>Only AEAD ciphers are supported. Additional data calculation has been simplified.</t>
        </li>
        <li>
          <t>Removed support for weaker and older cryptographic algorithms.</t>
        </li>
        <li>
          <t>HelloRetryRequest of TLS 1.3 used instead of HelloVerifyRequest.</t>
        </li>
        <li>
          <t>More flexible cipher suite negotiation.</t>
        </li>
        <li>
          <t>New session resumption mechanism.</t>
        </li>
        <li>
          <t>PSK authentication redefined.</t>
        </li>
        <li>
          <t>New key derivation hierarchy utilizing a new key derivation construct.</t>
        </li>
        <li>
          <t>Improved version negotiation.</t>
        </li>
        <li>
          <t>Optimized record layer encoding and thereby its size.</t>
        </li>
        <li>
          <t>Added CID functionality.</t>
        </li>
        <li>
          <t>Sequence numbers are encrypted.</t>
        </li>
      </ul>
    </section>
    <section anchor="updates-affecting-dtls-12">
      <name>Updates Affecting DTLS 1.2</name>
      <t>This document defines several changes that optionally affect
implementations of DTLS 1.2, including those which do not also support
DTLS 1.3.</t>
      <ul spacing="normal">
        <li>
          <t>A version downgrade protection mechanism as described
in <xref target="TLS13"/>, Section 4.1.3 and applying to DTLS as
described in <xref target="clienthello-message"/>.</t>
        </li>
        <li>
          <t>The updates described in <xref target="TLS13"/>, Section 1.3.</t>
        </li>
        <li>
          <t>The new compliance requirements described in <xref target="TLS13"/>, Section 9.3.</t>
        </li>
      </ul>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>IANA has allocated the content type value 26 in the "TLS ContentType"
registry for the ACK message, defined in <xref target="ack-msg"/>.
The value for the "DTLS-OK" column is "Y".  IANA has reserved
the content type range 32-63 so that content types in this range are not
allocated.</t>
      <t>IANA has allocated value 52 for the "too_many_cids_requested" alert in
the "TLS Alerts" registry. The value for the "DTLS-OK" column is "Y".</t>
      <t>IANA has allocated two values in the "TLS HandshakeType"
registry, defined in <xref target="TLS13"/>, for request_connection_id (9) and
new_connection_id (10), as defined in this document.  The value for the
"DTLS-OK" column is "Y".</t>
      <t>IANA has added this RFC as a reference to the "TLS Cipher Suites" registry
along with the following Note:</t>
      <artwork><![CDATA[
Any TLS cipher suite that is specified for use with DTLS MUST
define limits on the use of the associated AEAD function that
preserves margins for both confidentiality and integrity,
as specified in Section 4.5.3 of RFC 9147.
]]></artwork>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC0768">
          <front>
            <title>User Datagram Protocol</title>
            <author fullname="J. Postel" initials="J." surname="Postel"/>
            <date month="August" year="1980"/>
          </front>
          <seriesInfo name="STD" value="6"/>
          <seriesInfo name="RFC" value="768"/>
          <seriesInfo name="DOI" value="10.17487/RFC0768"/>
        </reference>
        <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="RFC1191">
          <front>
            <title>Path MTU discovery</title>
            <author fullname="J. Mogul" initials="J." surname="Mogul"/>
            <author fullname="S. Deering" initials="S." surname="Deering"/>
            <date month="November" year="1990"/>
            <abstract>
              <t>This memo describes a technique for dynamically discovering the maximum transmission unit (MTU) of an arbitrary internet path. It specifies a small change to the way routers generate one type of ICMP message. For a path that passes through a router that has not been so changed, this technique might not discover the correct Path MTU, but it will always choose a Path MTU as accurate as, and in many cases more accurate than, the Path MTU that would be chosen by current practice. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1191"/>
          <seriesInfo name="DOI" value="10.17487/RFC1191"/>
        </reference>
        <reference anchor="RFC4443">
          <front>
            <title>Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification</title>
            <author fullname="A. Conta" initials="A." surname="Conta"/>
            <author fullname="S. Deering" initials="S." surname="Deering"/>
            <author fullname="M. Gupta" initials="M." role="editor" surname="Gupta"/>
            <date month="March" year="2006"/>
            <abstract>
              <t>This document describes the format of a set of control messages used in ICMPv6 (Internet Control Message Protocol). ICMPv6 is the Internet Control Message Protocol for Internet Protocol version 6 (IPv6). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="89"/>
          <seriesInfo name="RFC" value="4443"/>
          <seriesInfo name="DOI" value="10.17487/RFC4443"/>
        </reference>
        <reference anchor="RFC4821">
          <front>
            <title>Packetization Layer Path MTU Discovery</title>
            <author fullname="M. Mathis" initials="M." surname="Mathis"/>
            <author fullname="J. Heffner" initials="J." surname="Heffner"/>
            <date month="March" year="2007"/>
            <abstract>
              <t>This document describes a robust method for Path MTU Discovery (PMTUD) that relies on TCP or some other Packetization Layer to probe an Internet path with progressively larger packets. This method is described as an extension to RFC 1191 and RFC 1981, which specify ICMP-based Path MTU Discovery for IP versions 4 and 6, respectively. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4821"/>
          <seriesInfo name="DOI" value="10.17487/RFC4821"/>
        </reference>
        <reference anchor="RFC0793">
          <front>
            <title>Transmission Control Protocol</title>
            <author fullname="J. Postel" initials="J." surname="Postel"/>
            <date month="September" year="1981"/>
          </front>
          <seriesInfo name="RFC" value="793"/>
          <seriesInfo name="DOI" value="10.17487/RFC0793"/>
        </reference>
        <reference anchor="RFC6298">
          <front>
            <title>Computing TCP's Retransmission Timer</title>
            <author fullname="V. Paxson" initials="V." surname="Paxson"/>
            <author fullname="M. Allman" initials="M." surname="Allman"/>
            <author fullname="J. Chu" initials="J." surname="Chu"/>
            <author fullname="M. Sargent" initials="M." surname="Sargent"/>
            <date month="June" year="2011"/>
            <abstract>
              <t>This document defines the standard algorithm that Transmission Control Protocol (TCP) senders are required to use to compute and manage their retransmission timer. It expands on the discussion in Section 4.2.3.1 of RFC 1122 and upgrades the requirement of supporting the algorithm from a SHOULD to a MUST. This document obsoletes RFC 2988. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6298"/>
          <seriesInfo name="DOI" value="10.17487/RFC6298"/>
        </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="RFC9146">
          <front>
            <title>Connection Identifier for DTLS 1.2</title>
            <author fullname="E. Rescorla" initials="E." role="editor" surname="Rescorla"/>
            <author fullname="H. Tschofenig" initials="H." role="editor" surname="Tschofenig"/>
            <author fullname="T. Fossati" initials="T." surname="Fossati"/>
            <author fullname="A. Kraus" initials="A." surname="Kraus"/>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document specifies the Connection ID (CID) construct for the Datagram Transport Layer Security (DTLS) protocol version 1.2.</t>
              <t>A CID is an identifier carried in the record layer header that gives the recipient additional information for selecting the appropriate security association. In "classical" DTLS, selecting a security association of an incoming DTLS record is accomplished with the help of the 5-tuple. If the source IP address and/or source port changes during the lifetime of an ongoing DTLS session, then the receiver will be unable to locate the correct security context.</t>
              <t>The new ciphertext record format with the CID also provides content type encryption and record layer padding.</t>
              <t>This document updates RFC 6347.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9146"/>
          <seriesInfo name="DOI" value="10.17487/RFC9146"/>
        </reference>
        <reference anchor="TLS13">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="CHACHA">
          <front>
            <title>ChaCha20 and Poly1305 for IETF Protocols</title>
            <author fullname="Y. Nir" initials="Y." surname="Nir"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <date month="June" year="2018"/>
            <abstract>
              <t>This document defines the ChaCha20 stream cipher as well as the use of the Poly1305 authenticator, both as stand-alone algorithms and as a "combined mode", or Authenticated Encryption with Associated Data (AEAD) algorithm.</t>
              <t>RFC 7539, the predecessor of this document, was meant to serve as a stable reference and an implementation guide. It was a product of the Crypto Forum Research Group (CFRG). This document merges the errata filed against RFC 7539 and adds a little text to the Security Considerations section.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8439"/>
          <seriesInfo name="DOI" value="10.17487/RFC8439"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC7296">
          <front>
            <title>Internet Key Exchange Protocol Version 2 (IKEv2)</title>
            <author fullname="C. Kaufman" initials="C." surname="Kaufman"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="Y. Nir" initials="Y." surname="Nir"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <author fullname="T. Kivinen" initials="T." surname="Kivinen"/>
            <date month="October" year="2014"/>
            <abstract>
              <t>This document describes version 2 of the Internet Key Exchange (IKE) protocol. IKE is a component of IPsec used for performing mutual authentication and establishing and maintaining Security Associations (SAs). This document obsoletes RFC 5996, and includes all of the errata for it. It advances IKEv2 to be an Internet Standard.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="79"/>
          <seriesInfo name="RFC" value="7296"/>
          <seriesInfo name="DOI" value="10.17487/RFC7296"/>
        </reference>
        <reference anchor="RFC2522">
          <front>
            <title>Photuris: Session-Key Management Protocol</title>
            <author fullname="P. Karn" initials="P." surname="Karn"/>
            <author fullname="W. Simpson" initials="W." surname="Simpson"/>
            <date month="March" year="1999"/>
            <abstract>
              <t>This document defines the basic protocol mechanisms. This document defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2522"/>
          <seriesInfo name="DOI" value="10.17487/RFC2522"/>
        </reference>
        <reference anchor="RFC4303">
          <front>
            <title>IP Encapsulating Security Payload (ESP)</title>
            <author fullname="S. Kent" initials="S." surname="Kent"/>
            <date month="December" year="2005"/>
            <abstract>
              <t>This document describes an updated version of the Encapsulating Security Payload (ESP) protocol, which is designed to provide a mix of security services in IPv4 and IPv6. ESP is used to provide confidentiality, data origin authentication, connectionless integrity, an anti-replay service (a form of partial sequence integrity), and limited traffic flow confidentiality. This document obsoletes RFC 2406 (November 1998). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4303"/>
          <seriesInfo name="DOI" value="10.17487/RFC4303"/>
        </reference>
        <reference anchor="RFC4340">
          <front>
            <title>Datagram Congestion Control Protocol (DCCP)</title>
            <author fullname="E. Kohler" initials="E." surname="Kohler"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="S. Floyd" initials="S." surname="Floyd"/>
            <date month="March" year="2006"/>
            <abstract>
              <t>The Datagram Congestion Control Protocol (DCCP) is a transport protocol that provides bidirectional unicast connections of congestion-controlled unreliable datagrams. DCCP is suitable for applications that transfer fairly large amounts of data and that can benefit from control over the tradeoff between timeliness and reliability. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4340"/>
          <seriesInfo name="DOI" value="10.17487/RFC4340"/>
        </reference>
        <reference anchor="RFC4346">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.1</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="April" year="2006"/>
            <abstract>
              <t>This document specifies Version 1.1 of the Transport Layer Security (TLS) protocol. The TLS protocol provides communications security over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4346"/>
          <seriesInfo name="DOI" value="10.17487/RFC4346"/>
        </reference>
        <reference anchor="RFC4347">
          <front>
            <title>Datagram Transport Layer Security</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <date month="April" year="2006"/>
            <abstract>
              <t>This document specifies Version 1.0 of the Datagram Transport Layer Security (DTLS) protocol. The DTLS protocol provides communications privacy for datagram protocols. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery. The DTLS protocol is based on the Transport Layer Security (TLS) protocol and provides equivalent security guarantees. Datagram semantics of the underlying transport are preserved by the DTLS protocol.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4347"/>
          <seriesInfo name="DOI" value="10.17487/RFC4347"/>
        </reference>
        <reference anchor="RFC5238">
          <front>
            <title>Datagram Transport Layer Security (DTLS) over the Datagram Congestion Control Protocol (DCCP)</title>
            <author fullname="T. Phelan" initials="T." surname="Phelan"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This document specifies the use of Datagram Transport Layer Security (DTLS) over the Datagram Congestion Control Protocol (DCCP). DTLS provides communications privacy for applications that use datagram transport protocols and allows client/server applications to communicate in a way that is designed to prevent eavesdropping and detect tampering or message forgery. DCCP is a transport protocol that provides a congestion-controlled unreliable datagram service. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5238"/>
          <seriesInfo name="DOI" value="10.17487/RFC5238"/>
        </reference>
        <reference anchor="RFC5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol. The TLS protocol provides communications security over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="RFC6347">
          <front>
            <title>Datagram Transport Layer Security Version 1.2</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <date month="January" year="2012"/>
            <abstract>
              <t>This document specifies version 1.2 of the Datagram Transport Layer Security (DTLS) protocol. The DTLS protocol provides communications privacy for datagram protocols. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery. The DTLS protocol is based on the Transport Layer Security (TLS) protocol and provides equivalent security guarantees. Datagram semantics of the underlying transport are preserved by the DTLS protocol. This document updates DTLS 1.0 to work with TLS version 1.2. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6347"/>
          <seriesInfo name="DOI" value="10.17487/RFC6347"/>
        </reference>
        <reference anchor="RFC7525">
          <front>
            <title>Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
            <author fullname="R. Holz" initials="R." surname="Holz"/>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) are widely used to protect data exchanged over application protocols such as HTTP, SMTP, IMAP, POP, SIP, and XMPP. Over the last few years, several serious attacks on TLS have emerged, including attacks on its most commonly used cipher suites and their modes of operation. This document provides recommendations for improving the security of deployed services that use TLS and DTLS. The recommendations are applicable to the majority of use cases.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7525"/>
          <seriesInfo name="DOI" value="10.17487/RFC7525"/>
        </reference>
        <reference anchor="AEBounds" target="http://www.isg.rhul.ac.uk/~kp/TLS-AEbounds.pdf">
          <front>
            <title>Limits on Authenticated Encryption Use in TLS</title>
            <author initials="A." surname="Luykx">
              <organization/>
            </author>
            <author initials="K." surname="Paterson">
              <organization/>
            </author>
            <date year="2016" month="March" day="08"/>
          </front>
        </reference>
        <reference anchor="ROBUST" target="https://eprint.iacr.org/2020/718">
          <front>
            <title>Robust Channels: Handling Unreliable Networks in the Record Layers of QUIC and DTLS 1.3</title>
            <author initials="M." surname="Fischlin">
              <organization/>
            </author>
            <author initials="F." surname="Günther">
              <organization/>
            </author>
            <author initials="C." surname="Janson">
              <organization/>
            </author>
            <date year="2020" month="June" day="15"/>
          </front>
        </reference>
        <reference anchor="DEPRECATE">
          <front>
            <title>Deprecating TLS 1.0 and TLS 1.1</title>
            <author fullname="Kathleen Moriarty" initials="K." surname="Moriarty">
              <organization>Dell EMC</organization>
            </author>
            <author fullname="Stephen Farrell" initials="S." surname="Farrell">
              <organization>Trinity College Dublin</organization>
            </author>
            <date day="21" month="January" year="2021"/>
            <abstract>
              <t>This document formally deprecates Transport Layer Security (TLS) versions 1.0 (RFC 2246) and 1.1 (RFC 4346). Accordingly, those documents have been moved to Historic status. These versions lack support for current and recommended cryptographic algorithms and mechanisms, and various government and industry profiles of applications using TLS now mandate avoiding these old TLS versions. TLS version 1.2 became the recommended version for IETF protocols in 2008 (subsequently being obsoleted by TLS version 1.3 in 2018), providing sufficient time to transition away from older versions. Removing support for older versions from implementations reduces the attack surface, reduces opportunity for misconfiguration, and streamlines library and product maintenance.

 This document also deprecates Datagram TLS (DTLS) version 1.0 (RFC 4347) but not DTLS version 1.2, and there is no DTLS version 1.1.

 This document updates many RFCs that normatively refer to TLS version 1.0 or TLS version 1.1, as described herein. This document also updates the best practices for TLS usage in RFC 7525; hence, it is part of BCP 195.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-oldversions-deprecate-12"/>
        </reference>
        <reference anchor="RFC5763">
          <front>
            <title>Framework for Establishing a Secure Real-time Transport Protocol (SRTP) Security Context Using Datagram Transport Layer Security (DTLS)</title>
            <author fullname="J. Fischl" initials="J." surname="Fischl"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies how to use the Session Initiation Protocol (SIP) to establish a Secure Real-time Transport Protocol (SRTP) security context using the Datagram Transport Layer Security (DTLS) protocol. It describes a mechanism of transporting a fingerprint attribute in the Session Description Protocol (SDP) that identifies the key that will be presented during the DTLS handshake. The key exchange travels along the media path as opposed to the signaling path. The SIP Identity mechanism can be used to protect the integrity of the fingerprint attribute from modification by intermediate proxies. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5763"/>
          <seriesInfo name="DOI" value="10.17487/RFC5763"/>
        </reference>
        <reference anchor="RFC7983">
          <front>
            <title>Multiplexing Scheme Updates for Secure Real-time Transport Protocol (SRTP) Extension for Datagram Transport Layer Security (DTLS)</title>
            <author fullname="M. Petit-Huguenin" initials="M." surname="Petit-Huguenin"/>
            <author fullname="G. Salgueiro" initials="G." surname="Salgueiro"/>
            <date month="September" year="2016"/>
            <abstract>
              <t>This document defines how Datagram Transport Layer Security (DTLS), Real-time Transport Protocol (RTP), RTP Control Protocol (RTCP), Session Traversal Utilities for NAT (STUN), Traversal Using Relays around NAT (TURN), and ZRTP packets are multiplexed on a single receiving socket. It overrides the guidance from RFC 5764 ("SRTP Extension for DTLS"), which suffered from four issues described and fixed in this document.</t>
              <t>This document updates RFC 5764.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7983"/>
          <seriesInfo name="DOI" value="10.17487/RFC7983"/>
        </reference>
        <reference anchor="RFC4960">
          <front>
            <title>Stream Control Transmission Protocol</title>
            <author fullname="R. Stewart" initials="R." role="editor" surname="Stewart"/>
            <date month="September" year="2007"/>
            <abstract>
              <t>This document obsoletes RFC 2960 and RFC 3309. It describes the Stream Control Transmission Protocol (SCTP). SCTP is designed to transport Public Switched Telephone Network (PSTN) signaling messages over IP networks, but is capable of broader applications.</t>
              <t>SCTP is a reliable transport protocol operating on top of a connectionless packet network such as IP. It offers the following services to its users:</t>
              <t>-- acknowledged error-free non-duplicated transfer of user data,</t>
              <t>-- data fragmentation to conform to discovered path MTU size,</t>
              <t>-- sequenced delivery of user messages within multiple streams, with an option for order-of-arrival delivery of individual user messages,</t>
              <t>-- optional bundling of multiple user messages into a single SCTP packet, and</t>
              <t>-- network-level fault tolerance through supporting of multi-homing at either or both ends of an association.</t>
              <t>The design of SCTP includes appropriate congestion avoidance behavior and resistance to flooding and masquerade attacks. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4960"/>
          <seriesInfo name="DOI" value="10.17487/RFC4960"/>
        </reference>
        <reference anchor="RFC8201">
          <front>
            <title>Path MTU Discovery for IP version 6</title>
            <author fullname="J. McCann" initials="J." surname="McCann"/>
            <author fullname="S. Deering" initials="S." surname="Deering"/>
            <author fullname="J. Mogul" initials="J." surname="Mogul"/>
            <author fullname="R. Hinden" initials="R." role="editor" surname="Hinden"/>
            <date month="July" year="2017"/>
            <abstract>
              <t>This document describes Path MTU Discovery (PMTUD) for IP version 6. It is largely derived from RFC 1191, which describes Path MTU Discovery for IP version 4. It obsoletes RFC 1981.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="87"/>
          <seriesInfo name="RFC" value="8201"/>
          <seriesInfo name="DOI" value="10.17487/RFC8201"/>
        </reference>
        <reference anchor="RFC8445">
          <front>
            <title>Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal</title>
            <author fullname="A. Keranen" initials="A." surname="Keranen"/>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg"/>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <date month="July" year="2018"/>
            <abstract>
              <t>This document describes a protocol for Network Address Translator (NAT) traversal for UDP-based communication. This protocol is called Interactive Connectivity Establishment (ICE). ICE makes use of the Session Traversal Utilities for NAT (STUN) protocol and its extension, Traversal Using Relay NAT (TURN).</t>
              <t>This document obsoletes RFC 5245.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8445"/>
          <seriesInfo name="DOI" value="10.17487/RFC8445"/>
        </reference>
        <reference anchor="I-D.ietf-uta-tls13-iot-profile">
          <front>
            <title>TLS/DTLS 1.3 Profiles for the Internet of Things</title>
            <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
              <organization>University of Applied Sciences Bonn-Rhein-Sieg</organization>
            </author>
            <author fullname="Thomas Fossati" initials="T." surname="Fossati">
              <organization>Linaro</organization>
            </author>
            <author fullname="Michael Richardson" initials="M." surname="Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <date day="20" month="October" year="2024"/>
            <abstract>
              <t>   This document is a companion to RFC 7925 and defines TLS/DTLS 1.3
   profiles for Internet of Things devices.  It also updates RFC 7925
   with regards to the X.509 certificate profile and ciphersuite
   requirements.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-uta-tls13-iot-profile-11"/>
        </reference>
        <reference anchor="RFC5764">
          <front>
            <title>Datagram Transport Layer Security (DTLS) Extension to Establish Keys for the Secure Real-time Transport Protocol (SRTP)</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document describes a Datagram Transport Layer Security (DTLS) extension to establish keys for Secure RTP (SRTP) and Secure RTP Control Protocol (SRTCP) flows. DTLS keying happens on the media path, independent of any out-of-band signalling channel present. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5764"/>
          <seriesInfo name="DOI" value="10.17487/RFC5764"/>
        </reference>
        <reference anchor="RFC7924">
          <front>
            <title>Transport Layer Security (TLS) Cached Information Extension</title>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="July" year="2016"/>
            <abstract>
              <t>Transport Layer Security (TLS) handshakes often include fairly static information, such as the server certificate and a list of trusted certification authorities (CAs). This information can be of considerable size, particularly if the server certificate is bundled with a complete certificate chain (i.e., the certificates of intermediate CAs up to the root CA).</t>
              <t>This document defines an extension that allows a TLS client to inform a server of cached information, thereby enabling the server to omit already available information.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7924"/>
          <seriesInfo name="DOI" value="10.17487/RFC7924"/>
        </reference>
        <reference anchor="RFC8879">
          <front>
            <title>TLS Certificate Compression</title>
            <author fullname="A. Ghedini" initials="A." surname="Ghedini"/>
            <author fullname="V. Vasiliev" initials="V." surname="Vasiliev"/>
            <date month="December" year="2020"/>
            <abstract>
              <t>In TLS handshakes, certificate chains often take up the majority of the bytes transmitted.</t>
              <t>This document describes how certificate chains can be compressed to reduce the amount of data transmitted and avoid some round trips.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8879"/>
          <seriesInfo name="DOI" value="10.17487/RFC8879"/>
        </reference>
        <reference anchor="RFC6066">
          <front>
            <title>Transport Layer Security (TLS) Extensions: Extension Definitions</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <date month="January" year="2011"/>
            <abstract>
              <t>This document provides specifications for existing TLS extensions. It is a companion document for RFC 5246, "The Transport Layer Security (TLS) Protocol Version 1.2". The extensions specified are server_name, max_fragment_length, client_certificate_url, trusted_ca_keys, truncated_hmac, and status_request. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6066"/>
          <seriesInfo name="DOI" value="10.17487/RFC6066"/>
        </reference>
        <reference anchor="RFC9002">
          <front>
            <title>QUIC Loss Detection and Congestion Control</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="I. Swett" initials="I." role="editor" surname="Swett"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes loss detection and congestion control mechanisms for QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9002"/>
          <seriesInfo name="DOI" value="10.17487/RFC9002"/>
        </reference>
        <reference anchor="I-D.ietf-tls-esni">
          <front>
            <title>TLS Encrypted Client Hello</title>
            <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
              <organization>Independent</organization>
            </author>
            <author fullname="Kazuho Oku" initials="K." surname="Oku">
              <organization>Fastly</organization>
            </author>
            <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
              <organization>Cryptography Consulting LLC</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="15" month="September" year="2024"/>
            <abstract>
              <t>   This document describes a mechanism in Transport Layer Security (TLS)
   for encrypting a ClientHello message under a server public key.

Discussion Venues

   This note is to be removed before publishing as an RFC.

   Source for this draft and an issue tracker can be found at
   https://github.com/tlswg/draft-ietf-tls-esni
   (https://github.com/tlswg/draft-ietf-tls-esni).

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-22"/>
        </reference>
        <reference anchor="CCM-ANALYSIS">
          <front>
            <title>On the Security of CTR + CBC-MAC</title>
            <author fullname="Jakob Jonsson" initials="J." surname="Jonsson">
              <organization/>
            </author>
            <date year="2003"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 76-93"/>
          <seriesInfo name="DOI" value="10.1007/3-540-36492-7_7"/>
          <seriesInfo name="ISBN" value="[&quot;9783540006220&quot;, &quot;9783540364924&quot;]"/>
          <refcontent>Springer Berlin Heidelberg</refcontent>
        </reference>
        <reference anchor="I-D.irtf-cfrg-aead-limits">
          <front>
            <title>Usage Limits on AEAD Algorithms</title>
            <author fullname="Felix Günther" initials="F." surname="Günther">
              <organization>IBM Research Europe - Zurich</organization>
            </author>
            <author fullname="Martin Thomson" initials="M." surname="Thomson">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="9" month="October" year="2024"/>
            <abstract>
              <t>   An Authenticated Encryption with Associated Data (AEAD) algorithm
   provides confidentiality and integrity.  Excessive use of the same
   key can give an attacker advantages in breaking these properties.
   This document provides simple guidance for users of common AEAD
   functions about how to limit the use of keys in order to bound the
   advantage given to an attacker.  It considers limits in both single-
   and multi-key settings.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-aead-limits-09"/>
        </reference>
        <reference anchor="RFC9000">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol. QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances. Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
      </references>
    </references>
    <?line 2477?>

<section anchor="protocol-data-structures-and-constant-values">
      <name>Protocol Data Structures and Constant Values</name>
      <t>This section provides the normative protocol types and constants definitions.</t>
      <section anchor="record-layer">
        <name>Record Layer</name>
        <artwork><![CDATA[
struct {
    ContentType type;
    ProtocolVersion legacy_record_version;
    uint16 epoch = 0
    uint48 sequence_number;
    uint16 length;
    opaque fragment[DTLSPlaintext.length];
} DTLSPlaintext;

struct {
     opaque content[DTLSPlaintext.length];
     ContentType type;
     uint8 zeros[length_of_padding];
} DTLSInnerPlaintext;

struct {
    opaque unified_hdr[variable];
    opaque encrypted_record[length];
} DTLSCiphertext;

0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+
|0|0|1|C|S|L|E E|
+-+-+-+-+-+-+-+-+
| Connection ID |   Legend:
| (if any,      |
/  length as    /   C   - Connection ID (CID) present
|  negotiated)  |   S   - Sequence number length
+-+-+-+-+-+-+-+-+   L   - Length present
|  8 or 16 bit  |   E   - Epoch
|Sequence Number|
+-+-+-+-+-+-+-+-+
| 16 bit Length |
| (if present)  |
+-+-+-+-+-+-+-+-+

struct {
    uint64 epoch;
    uint64 sequence_number;
} RecordNumber;
]]></artwork>
      </section>
      <section anchor="handshake-protocol">
        <name>Handshake Protocol</name>
        <artwork><![CDATA[
enum {
    hello_request_RESERVED(0),
    client_hello(1),
    server_hello(2),
    hello_verify_request_RESERVED(3),
    new_session_ticket(4),
    end_of_early_data(5),
    hello_retry_request_RESERVED(6),
    encrypted_extensions(8),
    request_connection_id(9),           /* New */
    new_connection_id(10),              /* New */
    certificate(11),
    server_key_exchange_RESERVED(12),
    certificate_request(13),
    server_hello_done_RESERVED(14),
    certificate_verify(15),
    client_key_exchange_RESERVED(16),
    finished(20),
    certificate_url_RESERVED(21),
    certificate_status_RESERVED(22),
    supplemental_data_RESERVED(23),
    key_update(24),
    message_hash(254),
    (255)
} HandshakeType;

struct {
    HandshakeType msg_type;    /* handshake type */
    uint24 length;             /* bytes in message */
    uint16 message_seq;        /* DTLS-required field */
    uint24 fragment_offset;    /* DTLS-required field */
    uint24 fragment_length;    /* DTLS-required field */
    select (msg_type) {
        case client_hello:          ClientHello;
        case server_hello:          ServerHello;
        case end_of_early_data:     EndOfEarlyData;
        case encrypted_extensions:  EncryptedExtensions;
        case certificate_request:   CertificateRequest;
        case certificate:           Certificate;
        case certificate_verify:    CertificateVerify;
        case finished:              Finished;
        case new_session_ticket:    NewSessionTicket;
        case key_update:            KeyUpdate;
        case request_connection_id: RequestConnectionId;
        case new_connection_id:     NewConnectionId;
    } body;
} DTLSHandshake;

uint16 ProtocolVersion;
opaque Random[32];

uint8 CipherSuite[2];    /* Cryptographic suite selector */

struct {
    ProtocolVersion legacy_version = { 254,253 }; // DTLSv1.2
    Random random;
    opaque legacy_session_id<0..32>;
    opaque legacy_cookie<0..2^8-1>;                  // DTLS
    CipherSuite cipher_suites<2..2^16-2>;
    opaque legacy_compression_methods<1..2^8-1>;
    Extension extensions<8..2^16-1>;
} ClientHello;
]]></artwork>
      </section>
      <section anchor="acks">
        <name>ACKs</name>
        <artwork><![CDATA[
struct {
    RecordNumber record_numbers<0..2^16-1>;
} ACK;
]]></artwork>
      </section>
      <section anchor="connection-id-management">
        <name>Connection ID Management</name>
        <artwork><![CDATA[
enum {
    cid_immediate(0), cid_spare(1), (255)
} ConnectionIdUsage;

opaque ConnectionId<0..2^8-1>;

struct {
    ConnectionId cids<0..2^16-1>;
    ConnectionIdUsage usage;
} NewConnectionId;

struct {
  uint8 num_cids;
} RequestConnectionId;
]]></artwork>
      </section>
    </section>
    <section anchor="ccm-bounds">
      <name>Analysis of Limits on CCM Usage</name>
      <t>TLS <xref target="TLS13"/> and <xref target="AEBounds"/> do not specify limits on key usage for
AEAD_AES_128_CCM. However, any AEAD that is used with DTLS requires limits on
use that ensure that both confidentiality and integrity are preserved. This
section documents that analysis for AEAD_AES_128_CCM.</t>
      <t><xref target="CCM-ANALYSIS"/> is used as the basis of this
analysis. The results of that analysis are used to derive usage limits that are
based on those chosen in <xref target="TLS13"/>.</t>
      <t>This analysis uses symbols for multiplication (*), division (/), and
exponentiation (^), plus parentheses for establishing precedence. The following
symbols are also used:</t>
      <dl>
        <dt>t:</dt>
        <dd>
          <t>The size of the authentication tag in bits. For this cipher, t is 128.</t>
        </dd>
        <dt>n:</dt>
        <dd>
          <t>The size of the block function in bits. For this cipher, n is 128.</t>
        </dd>
        <dt>l:</dt>
        <dd>
          <t>The number of blocks in each packet (see below).</t>
        </dd>
        <dt>q:</dt>
        <dd>
          <t>The number of genuine packets created and protected by endpoints. This value
is the bound on the number of packets that can be protected before updating
keys.</t>
        </dd>
        <dt>v:</dt>
        <dd>
          <t>The number of forged packets that endpoints will accept. This value is the
bound on the number of forged packets that an endpoint can reject before
updating keys.</t>
        </dd>
      </dl>
      <t>The analysis of AEAD_AES_128_CCM relies on a count of the number of block
operations involved in producing each message. For simplicity, and to match the
analysis of other AEAD functions in <xref target="AEBounds"/>, this analysis assumes a
packet length of 2^10 blocks and a packet size limit of 2^14 bytes.</t>
      <t>For AEAD_AES_128_CCM, the total number of block cipher operations is the sum
of: the length of the associated data in blocks, the length of the ciphertext
in blocks, and the length of the plaintext in blocks, plus 1. In this analysis,
this is simplified to a value of twice the maximum length of a record in blocks
(that is, <tt>2l = 2^11</tt>). This simplification is based on the associated data
being limited to one block.</t>
      <section anchor="ccm-confidentiality">
        <name>Confidentiality Limits</name>
        <t>For confidentiality, Theorem 2 in <xref target="CCM-ANALYSIS"/> establishes that an attacker
gains a distinguishing advantage over an ideal pseudorandom permutation (PRP) of
no more than:</t>
        <artwork><![CDATA[
(2l * q)^2 / 2^n
]]></artwork>
        <t>For a target advantage in a single-key setting of 2^-60, which matches that used by TLS 1.3,
as summarized in <xref target="I-D.irtf-cfrg-aead-limits"/>, this results in the relation:</t>
        <artwork><![CDATA[
q <= 2^23
]]></artwork>
        <t>That is, endpoints cannot protect more than 2^23 packets with the same set of
keys without causing an attacker to gain an larger advantage than the target of
2^-60.</t>
      </section>
      <section anchor="ccm-integrity">
        <name>Integrity Limits</name>
        <t>For integrity, Theorem 1 in <xref target="CCM-ANALYSIS"/> establishes that an attacker
gains an advantage over an ideal PRP of no more than:</t>
        <artwork><![CDATA[
v / 2^t + (2l * (v + q))^2 / 2^n
]]></artwork>
        <t>The goal is to limit this advantage to 2^-57, to match the target in
TLS 1.3, as summarized in <xref target="I-D.irtf-cfrg-aead-limits"/>. As <tt>t</tt> and <tt>n</tt> are both 128, the first term is negligible relative
to the second, so that term can be removed without a significant effect on the
result. This produces the relation:</t>
        <artwork><![CDATA[
v + q <= 2^24.5
]]></artwork>
        <t>Using the previously established value of 2^23 for <tt>q</tt> and rounding, this leads
to an upper limit on <tt>v</tt> of 2^23.5. That is, endpoints cannot attempt to
authenticate more than 2^23.5 packets with the same set of keys without causing
an attacker to gain an larger advantage than the target of 2^-57.</t>
      </section>
      <section anchor="ccm-short">
        <name>Limits for AEAD_AES_128_CCM_8</name>
        <t>The TLS_AES_128_CCM_8_SHA256 cipher suite uses the AEAD_AES_128_CCM_8 function,
which uses a short authentication tag (that is, t=64).</t>
        <t>The confidentiality limits of AEAD_AES_128_CCM_8 are the same as those for
AEAD_AES_128_CCM, as this does not depend on the tag length; see
<xref target="ccm-confidentiality"/>.</t>
        <t>The shorter tag length of 64 bits means that the simplification used in
<xref target="ccm-integrity"/> does not apply to AEAD_AES_128_CCM_8. If the goal is to
preserve the same margins as other cipher suites, then the limit on forgeries
is largely dictated by the first term of the advantage formula:</t>
        <artwork><![CDATA[
v <= 2^7
]]></artwork>
        <t>As this represents attempts that fail authentication, applying this limit might
be feasible in some environments. However, applying this limit in an
implementation intended for general use exposes connections to an inexpensive
denial-of-service attack.</t>
        <t>This analysis supports the view that TLS_AES_128_CCM_8_SHA256 is not suitable
for general use. Specifically, TLS_AES_128_CCM_8_SHA256 cannot be used without
additional measures to prevent forgery of records, or to mitigate the effect of
forgeries. This might require understanding the constraints that exist in a
particular deployment or application. For instance, it might be possible to set
a different target for the advantage an attacker gains based on an
understanding of the constraints imposed on a specific usage of DTLS.</t>
      </section>
    </section>
    <section anchor="implementation-pitfalls">
      <name>Implementation Pitfalls</name>
      <t>In addition to the aspects of TLS that have been a source of interoperability
and security problems (Appendix C.3 of <xref target="TLS13"/>), DTLS presents a few new
potential sources of issues, noted here.</t>
      <ul spacing="normal">
        <li>
          <t>Do you correctly handle messages received from multiple epochs during a key
transition?  This includes locating the correct key as well as performing
replay detection, if enabled.</t>
        </li>
        <li>
          <t>Do you retransmit handshake messages that are not (implicitly or explicitly)
acknowledged (<xref target="timeout-retransmissions"/>)?</t>
        </li>
        <li>
          <t>Do you correctly handle handshake message fragments received, including
when they are out of order?</t>
        </li>
        <li>
          <t>Do you correctly handle handshake messages received out of order?
This may include either buffering or discarding them.</t>
        </li>
        <li>
          <t>Do you limit how much data you send to a peer before its address is
validated?</t>
        </li>
        <li>
          <t>Do you verify that the explicit record length is contained within the
datagram in which it is contained?</t>
        </li>
      </ul>
    </section>
    <section anchor="contributors">
      <name>Contributors</name>
      <t>Many people have contributed to previous DTLS versions and they are acknowledged
in prior versions of DTLS specifications or in the referenced specifications. The
following people made significant contributions to this specification:</t>
      <artwork><![CDATA[
* David Benjamin
  Google
  davidben@google.com
]]></artwork>
      <artwork><![CDATA[
* Thomas Fossati
  Arm Limited
  Thomas.Fossati@arm.com
]]></artwork>
      <artwork><![CDATA[
* Tobias Gondrom
  Huawei
  tobias.gondrom@gondrom.org
]]></artwork>
      <artwork><![CDATA[
* Felix Günther
  ETH Zurich
  mail@felixguenther.info
]]></artwork>
      <artwork><![CDATA[
* Benjamin Kaduk
  Akamai Technologies
  kaduk@mit.edu
]]></artwork>
      <artwork><![CDATA[
* Ilari Liusvaara
  Independent
  ilariliusvaara@welho.com
]]></artwork>
      <artwork><![CDATA[
* Martin Thomson
  Mozilla
  mt@lowentropy.net
]]></artwork>
      <artwork><![CDATA[
* Christopher A. Wood
  Apple Inc.
  cawood@apple.com
]]></artwork>
      <artwork><![CDATA[
* Yin Xinxing
  Huawei
  yinxinxing@huawei.com
]]></artwork>
      <artwork><![CDATA[
* Hanno Becker
  Arm Limited
  Hanno.Becker@arm.com
]]></artwork>
      <t>The sequence number encryption concept is taken from QUIC
<xref target="RFC9000"/>. We would like to thank the authors of RFC 9000 for their
work. Felix Günther and Martin Thomson contributed the analysis in
<xref target="ccm-bounds"/>. We would like to thank Jonathan Hammell, Bernard
Aboba, and Andy Cunningham for their review comments.</t>
      <t>Additionally, we would like to thank the IESG members for their review comments: Martin Duke, Erik Kline, Francesca Palombini, Lars Eggert, Zaheduzzaman Sarker, John Scudder, Éric Vyncke, Robert Wilton, Roman Danyliw, Benjamin Kaduk, Murray Kucherawy, Martin Vigoureux, and Alvaro Retana.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+y9a3vbVpYu+H3/ChzlQ6SEpHWz49hJTiuSXdHEjn0sudI1
qZQekAQllEmABYCWWbb7l823+WOz7ntvAJQlp7r7PDPD6q6SSWBf1157Xd81
HA5dkzfz7FFyfpUlJ2mTXlbpIjmv0qJellWTPEvXWZWcZZNVlTfrZPvk/NnZ
TvKyKptyUs6TP2dVnZdFsjc6cOl4XGVvHyX4CH0xLSdFuoC2p1U6a4Z51syG
zbweVrPJt3uH34zzeri76yZpk12W1fpRUjdTV47rcp41Wf0owWecy5fVo2RZ
ZfcPvnl4Xq3qZn9399vdfZdWWfrIBuauy+rNZVWuljCTZ2fuTbaGb6aPktOi
yaoia4YnOAbn6iYtphfpvCxgXOusdsv8kUsSGFI2rZv1XL5NEphf8GdeTLOi
0S9qWJkqm9X27/Ui+mdT5RN7eFIuFvCu/ZoX87zw3WTvmuE8r5shNDIu5/DY
sPzqa/gFVm+RLpd5ccnPpqvmqqxgsEP4kT55AU8/GSWvsnpSVvNUv+dFfwKD
6PxUVpdpkf8zbWDTcHGm2TKjqekD2SLN54+S7E31b1UzW4xg9K7d5U+j5Lye
XJWzrMgv405/Sosiq3t+jjt+XeRvkXKAospZcrRczvNsmpxN8qyYwOs/lkUx
fHWV5cXwLM8u32kjSmE/DX98ddYa8RX1PGqs53+7XLwbwc53hv/LKHleTtPp
6nIVD/6X9BIWo0o7P8eD/1NZXs6zAazeZNQaRCEt/NukHiGlzYAGR9l05VxR
Vgt4/22G1Pbq6fHuNw8eyp/7e3vfyp/w1578eXh4eKB/Ptzfs9e+1W8f7H+r
LTzc++ZQ/oRD8+ARnBrsOurwm/1vH2iH9/f3temDXevl4HDX//nA//mN/Hl/
/+Ch/WkPPPAPfHN//z7+efTkx3JVTOtHtDrCX7ae5Yu8qRNgFkdAyUByOZ78
afKkmFTrJS5t8rrOYIvwAG/Rq0by9Bny9h2Nkmer9Zt38bc/j5KX0FxVlwX9
MIV/PEr2d/ceDHcPhrsPeShpdZnBwdy6aprlo3v3rq+vR3l9OaquVvNROhmt
3tz7jzfLe9D/8OjJmOYwWk5nOJhXL358fXYez+hVOQZ+lBwT6eHJBeqfwuG+
BPqusnmejudZ8kvWIG+qcWIwbTiRcCCnzFdrpP7/9fr0OIEXjW/eMPfno+Rp
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
mrcJytsBAA==

-->

</rfc>
