<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.31 (Ruby 2.6.10) -->
<?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-rescorla-tls-rfc9147bis-00" category="std" consensus="true" obsoletes="6347" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.1 -->
  <front>
    <title abbrev="DTLS 1.3">The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
    <seriesInfo name="Internet-Draft" value="draft-rescorla-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>Arm Limited</organization>
      <address>
        <email>hannes.tschofenig@arm.com</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="November" day="24"/>
    <area>Security</area>
    <workgroup>TLS</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <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>
    <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>
      <name>References</name>
      <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>
        <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"/>
        </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>
    <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:
H4sIAIK5Q2cAA+y9a3vbVpYu+H3/ChzlQ6SEpHWz49hJTiuSXdHEjn0sudI1
qZQekAQllEmABYCWWbb7l823+WOz7ntvAJQlp7r7PDPD6q6SSWBf1157Xd81
HA5dkzfz7FFyfpUlJ2mTXlbpIjmv0qJellWTPEvXWZWcZZNVlTfrZPvk/NnZ
TvKyKptyUs6TP2dVnZdFsjc6cOl4XGVvHyX4CH0xLSdFuoC2p1U6a4ZVVk/K
ap4Om3k9rGaTb/cOvxnn9XB3103SJrssq/WjpG6mrhzX5TxrsvpR8uDg8Bvn
8mX1KFlW2f2Dbx6eV6u62d/d/XZ336VVlj6ywbnrsnpzWZWrJczm2Zl7k63h
m+mj5LRosqrImuEJjsO5ukmL6UU6LwsY2zqr3TJ/5JIEhpRN62Y9l2+TBOYY
/JkX06xo9IsaVqfKZrX9e72I/tlU+cQenpSLBbxrv+bFPC98N9m7ZjjP62YI
jYzLOTw2LL/6Gn6BFVyky2VeXPKz6aq5KisY7BB+pE9ewNNPRskrWVz9nhf+
CQyi81NZXaZF/s+0gY3DxZlmy4ympg9kizSfP0qyN9W/Vc1sMYLRu3aXP42S
83pyVc6yIr+MO/0pLYqs7vk57vioWiTP8kXeZNNWx1fUwKixBv4trfpH8cso
eV5O0+nqchWP4Zf0EuZUpZ2f4zH8qSwv59kAFmEyag2ikBb+bVKPkGBmQEqj
bLpyriirBbz/NkOiefX0ePebBw/lz/29vW/lT/hrT/48PDw80D8f7u/Za9/q
tw/2v9UWHu59cyh/wvl48AiIH7uOOvxm/9sH2uH9/X1t+mDXejk43PV/PvB/
fiN/3t8/eGh/2gMP/APf3N+/j38ePfmxXBXT+hGtjrCKLdq2OoFzfwQECZST
4wGeJk+KSbVe4tImr+sMtgjP4Ra9apRLnyFv39EoebZav3kXf/vzKHkJzVV1
WdAPU/jHo2R/d+/BcPdguPuQh5JWlxmcr62rplk+unfv+vp6lNeXo+pqNR+l
k9Hqzb3/eLO8B/0Pj56MaQ6j5XSGg3n14sfXZ+fxjF6VY2AryTGRHh5AIOIp
nNHL5HVRZfM8Hc+z5JesQRZT48Rg2nCw4FxNmUXCasyS//X69DiBF40F3jD3
56PkaQ4UDp3EPzwdJX/6v/+vAjqo4h+OR8n/AWy5tSr7u8PdB8O9+91VqWFZ
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
q4e4Z/t/e3A4hCOokOO3WASctye92036l2T7lx92sZbh61ocphTkSpaVmEty
EXYOHkjQMMO595+4z9R0QpbpAra7wvtUb7k0iHBoWcCk5g6DT2hWUeyc4YE5
XBm+Wouy5UEPx6axXYHvnG3gTkoZ5VIZUruiJmdkmsFa1zRijq3z7Cu6RqRU
7XWFdde8z6SVyUceRIe3HYUfwMOB70ZDlsXuHnvfgqvTafUpO2iTdI7BIY1E
JUdRZd6TfRDf6NCOIFehZKflPAwyX6xW0SQx5NAbB+O6HX8YF/8zjEUdS1Hb
HCQOkJtViECK/5zPraxFbTG9cwt/Vt/B/Lzl5wbk5mCmt1uajZ9bGZr6dZPP
V+X5c/eR90J//pG+9+++aiHG+n9d311k9//qeSd3x4je3Lc300XLGT/fJXJ8
tXclwt+DQf6h2d7SmPhJANM/slYHfq0ONqLM46e7Vp9rbrmVbe9TZQ3+6KQ3
v36GKR2kis4pNW00GnUf3u6Pivdw039oaW62obWXpoOe+i+ih0OXbAA8xU8v
PfzBVQ1Go6aeP7aQN9u0/lNp7NAv5P07Hix4tWNOY+HqRnsaB+bQc6c+uZGN
aWSnUyJ9/4X6HVk+DByspkwx6iqoBssyZ/ON2VsUrUlpX7JMnESk+Ng0kOW9
n9XULY89MKKeOUzA9VWFxcAS9D9y/FLqKy1TcB4Oa73MBgwZMSmnaIzDwe4/
EB2NnOG1BsYThGxGcQ3TKScjxQl5YUFFL7tTZD8qBXXD+Q5OkWgsICgsgovK
QWdtAmRXrqCavA8x+uCRXzhujJ+/EN/sd7uj0f7f9h4M9354TM9/xNE8prZc
/CiXldfCcd4sWGuBOZx3b/3MMCPSGcqfZHCiWK800NlcCc3xe2yQD2xdwKy0
1QIzEsl/DNoy1rNlywfZRHvSVi2OKPTqd6fSLdVXJ0Gh7whSjAM3ssL1DnSU
vMBZcCbGNEun83LyhvYbY2lBVzkKwxw2J0ZwlLymgfSNz5Z0bYUZNZyh0YKp
ONbmql3x2Jc0OyHLUUy3A+6VYiEmVMo8zHHFXFFMwaOAHYHZkqBCHyzXLuUp
6ZIYXIHBnG+GaPW1tNKddqJBGGEZg3L0FZOT8IQ4coPSeXyejceHivGGtmsM
YD2aTCi09pKTDgjA0N6QaA+OwMX15DWhvATKNAyUHi2qqogtricNcRDuUudt
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
lbR5K923WCUl0i+DA5eMo/8BVEQDiJvbAQA=

-->

</rfc>
