<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.14 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc rfcedstyle="yes"?>
<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc text-list-symbols="-o*+"?>
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="pre5378Trust200902" docName="draft-ietf-tls-dtls13-36" category="std" obsoletes="6347" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 2.40.1 -->
  <front>
    <title abbrev="DTLS 1.3">The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-tls-dtls13-36"/>
    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>RTFM, Inc.</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="2020" month="March" day="09"/>
    <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 intentionally 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>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>RFC EDITOR: PLEASE REMOVE THE FOLLOWING PARAGRAPH</t>
      <t>The source for this draft is maintained in GitHub. Suggested changes
should be submitted as pull requests at https://github.com/tlswg/dtls13-spec.
Instructions are on that page as well. Editorial changes can be managed in GitHub,
but any substantive change should be discussed on the TLS mailing list.</t>
      <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" format="default"/>.</t>
      <t>There are applications that use UDP <xref target="RFC0768" format="default"/> as a transport and to offer communication
security protection for those applications the Datagram Transport Layer
Security (DTLS) protocol has been developed. 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" format="default"/> was originally defined as a delta from TLS 1.1 <xref target="RFC4346" format="default"/> and
DTLS 1.2 <xref target="RFC6347" format="default"/> was defined as a series of deltas to TLS 1.2 <xref target="RFC5246" format="default"/>.  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
based on TLS 1.3 <xref target="TLS13" format="default"/>.</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" format="default"/> 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 RFC 7525 <xref target="RFC7525" format="default"/>.</t>
    </section>
    <section anchor="conventions-and-terminology" numbered="true" toc="default">
      <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" format="default"/> <xref target="RFC8174" format="default"/>
when, and only when, they appear in all capitals, as shown here.</t>
      <t>The following terms are used:</t>
      <ul spacing="normal">
        <li>client: The endpoint initiating the DTLS connection.</li>
        <li>connection: A transport-layer connection between two endpoints.</li>
        <li>endpoint: Either the client or server of the connection.</li>
        <li>handshake: An initial negotiation between client and server that establishes
the parameters of their transactions.</li>
        <li>peer: An endpoint. When discussing a particular endpoint, "peer" refers to
the endpoint that is remote to the primary subject of discussion.</li>
        <li>receiver: An endpoint that is receiving records.</li>
        <li>sender: An endpoint that is transmitting records.</li>
        <li>session: An association between a client and a server resulting from a handshake.</li>
        <li>server: The endpoint which did not initiate the DTLS connection.</li>
        <li>CID: Connection ID</li>
      </ul>
      <t>The reader is assumed to be familiar with the TLS 1.3 specification since this
document is defined as a delta from TLS 1.3. 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>Figures in this document illustrate various combinations of the DTLS protocol exchanges and the symbols have the following meaning:</t>
      <ul spacing="normal">
        <li>'+'  indicates noteworthy extensions sent in the previously noted message.</li>
        <li>'*'  indicates optional or situation-dependent messages/extensions that are not always sent.</li>
        <li>'{}' indicates messages protected using keys derived from a [sender]_handshake_traffic_secret.</li>
        <li>'[]' indicates messages protected using keys derived from traffic_secret_N.</li>
      </ul>
    </section>
    <section anchor="dtls-rational" numbered="true" toc="default">
      <name>DTLS Design Rationale and Overview</name>
      <t>The basic design philosophy of DTLS is to construct "TLS over datagram transport".
Datagram transport does not require nor provide 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.</t>
      <t>TLS cannot be used directly in datagram environments for the following five reasons:</t>
      <ol spacing="normal" type="1">
        <li>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.</li>
        <li>The TLS handshake is a lock-step cryptographic handshake.  Messages must be
transmitted and received in a defined order; any other order is an error.
DTLS handshake messages are also assigned sequence numbers to enable
reassembly in the correct order in case datagrams are lost or reordered.</li>
        <li>During the handshake, messages are implicitly acknowledged by other handshake
messages, but the last flight of messages and post-handshake messages (such
as the NewSessionTicket message) do not result in any direct response that
would allow the sender to detect loss. DTLS adds an acknowledgment message to
enable better loss recovery.</li>
        <li>Handshake messages are potentially larger than can be contained in a single
datagram.  DTLS adds fields to handshake messages to support fragmentation
and reassembly.</li>
        <li>Datagram transport protocols, like UDP, are susceptible to abusive behavior
effecting denial of service attacks against nonparticipants.  DTLS adds a
return-routability check that uses the TLS HelloRetryRequest message (see
<xref target="dos" format="default"/> for details).</li>
      </ol>
      <section anchor="packet-loss" numbered="true" toc="default">
        <name>Packet Loss</name>
        <t>DTLS uses a simple retransmission timer to handle packet loss.
<xref target="dtls-retransmission" format="default"/> demonstrates the basic concept, using the first
phase of the DTLS handshake:</t>
        <figure anchor="dtls-retransmission">
          <name>DTLS retransmission example</name>
          <artwork name="" type="" align="left" alt=""><![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
server's message is lost, the client knows that either the
ClientHello or the response from the server has been lost and retransmits.
When the server receives the retransmission, it knows to retransmit.</t>
        <t>The server also maintains a retransmission timer and retransmits when
that timer expires.</t>
        <t>Note that timeout and retransmission do not apply to the
HelloRetryRequest since this would require creating 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>
      </section>
      <section anchor="reordering" numbered="true" toc="default">
        <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="message-size" numbered="true" toc="default">
        <name>Message Size</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.  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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
      <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>The DTLSCiphertext structure omits the superfluous version number and
type fields.</li>
        <li>DTLS adds an epoch and sequence number to the TLS record header.
This sequence number allows the recipient to correctly verify the DTLS MAC.
However, the number of bits used for the epoch and sequence number fields in
the DTLSCiphertext structure have been reduced from those in previous
versions.</li>
        <li>The DTLSCiphertext structure has a variable length header.</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 Format</name>
        <artwork name="" type="" align="left" alt=""><![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 newline="false" spacing="normal">
        <dt>unified_hdr:</dt>
        <dd>
  The unified_hdr is a field of variable length, as shown in <xref target="cid_hdr" format="default"/>.</dd>
        <dt>encrypted_record:</dt>
        <dd>
  Identical to the encrypted_record field in a TLS 1.3 record.</dd>
      </dl>
      <t>The DTLSCiphertext header is tightly bit-packed, as shown below:</t>
      <figure anchor="cid_hdr">
        <name>DTLS 1.3 CipherText Header</name>
        <artwork name="" type="" align="left" alt=""><![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 newline="false" spacing="normal">
        <dt>Fixed Bits:</dt>
        <dd>
  The three high bits of the first byte of the DTLSCiphertext header are set to
001.</dd>
        <dt>C:</dt>
        <dd>
  The C bit (0x10) is set if the Connection ID is present.</dd>
        <dt>S:</dt>
        <dd>
  The S bit (0x08) indicates the size of the sequence number.
0 means an 8-bit sequence number, 1 means 16-bit.</dd>
        <dt>L:</dt>
        <dd>
  The L bit (0x04) is set if the length is present.</dd>
        <dt>E:</dt>
        <dd>
  The two low bits (0x03) include the low order two bits of the epoch.</dd>
        <dt>Connection ID:</dt>
        <dd>
  Variable length CID. The CID concept
is described in <xref target="I-D.ietf-tls-dtls-connection-id" format="default"/>. An example
can be found in <xref target="connection-id-example" format="default"/>.</dd>
        <dt>Sequence Number:</dt>
        <dd>
  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.</dd>
        <dt>Length:</dt>
        <dd>
  Identical to the length field in a TLS 1.3 record.</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" format="default"/> illustrates different record layer header types.</t>
      <figure anchor="hdr_examples">
        <name>Header Examples</name>
        <artwork name="" type="" align="left" alt=""><![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      |     |    16 bit     |     |8-bit Seq. No. |
|   Version     |     |Sequence Number|     +-+-+-+-+-+-+-+-+
+-+-+-+-+-+-+-+-+     +-+-+-+-+-+-+-+-+     |               |
|   16 bit      |     |               |     |   Encrypted   |
|    Epoch      |     / Connection ID /     /   Record      /
+-+-+-+-+-+-+-+-+     |               |     |               |
|               |     +-+-+-+-+-+-+-+-+     +-+-+-+-+-+-+-+-+
|               |     |   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.</t>
      <t>Implementations which send multiple records in the same datagram
SHOULD omit the connection id from all but the first record; receiving
implementations MUST assume that any subsequent records without
connection IDs belong to the same assocatiation.  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 name="" type="" align="left" alt=""><![CDATA[
    struct {
        uint16 epoch;
        uint48 sequence_number;
    } RecordNumber;
]]></artwork>
      <t>This 64-bit value is used in the ACK message as well as in the "record_sequence_number"
input to the AEAD function.</t>
      <t>The entire header value shown in <xref target="hdr_examples" format="default"/> (but prior to record number
encryption) is used as as the additional data value for the AEAD
function. For instance, if the minimal variant is used,
the AAD 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 ID.</t>
      <section anchor="determining-the-header-format" numbered="true" toc="default">
        <name>Determining the Header Format</name>
        <t>Implementations can distinguish the two header formats by examining
the first byte:</t>
        <ul spacing="normal">
          <li>If the first byte is alert(21), handshake(22), or ack(proposed, 25),
the record MUST be interpreted as a DTLSPlaintext record.</li>
          <li>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.</li>
          <li>Otherwise, the record MUST be rejected as if it had failed
deprotection, as described in <xref target="handling-invalid-records" format="default"/>.</li>
        </ul>
      </section>
      <section anchor="sequence-number-and-epoch" numbered="true" toc="default">
        <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" format="default"/>.</t>
        <section anchor="processing-guidelines" numbered="true" toc="default">
          <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.  In general,
implementations SHOULD discard records from earlier epochs, but if
packet loss causes noticeable problems implementations MAY choose to
retain keying material from previous epochs for up to the default MSL
specified for TCP <xref target="RFC0793" format="default"/> 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" format="default"/> 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" format="default"/>), 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 re-key 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" numbered="true" toc="default">
          <name>Reconstructing the Sequence Number and Epoch</name>
          <t>When receiving protected DTLS records message, the recipient does not
have a full epoch or sequence number value and so there is some
opportunity for ambiguity.  Because the full epoch and sequence number
are used to compute the per-record nonce, 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.</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 as
described above.</t>
        </section>
        <section anchor="sne" numbered="true" toc="default">
          <name>Sequence 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 name="" type="" align="left" alt=""><![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" format="default"/>):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
  Mask = ChaCha20(sn_key, Ciphertext[0..3], Ciphertext[4..15])
]]></artwork>
          <t>The sn_key is computed as follows:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
   [sender]_sn_key  = HKDF-Expand-Label(Secret, "sn" , "", key_length)
]]></artwork>
          <t>[sender] denotes the sending side. The Secret value to be used is described
in Section 7.3 of <xref target="TLS13" format="default"/>.</t>
          <t>The encrypted sequence number is computed by XORing the leading
bytes of the Mask with the sequence number. Decryption is
accomplished by the same process.</t>
          <t>This procedure requires the ciphertext length be at least 16 bytes. Receivers
MUST reject shorter records as if they had failed deprotection, as described in
<xref target="handling-invalid-records" format="default"/>. Senders MUST pad short plaintexts out (using the
conventional record padding mechanism) in order to make a suitable-length
ciphertext. Note 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>Note that sequence number encryption is only applied to the DTLSCiphertext
structure and not to the DTLSPlaintext structure, which also contains a
sequence number.</t>
        </section>
      </section>
      <section anchor="transport-layer-mapping" numbered="true" toc="default">
        <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 PMTU estimates
obtained from the record layer.</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.</t>
        <t>Some transports, such as DCCP <xref target="RFC4340" format="default"/>, 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" format="default"/>
defines a mapping of DTLS to DCCP that takes these issues into account.</t>
      </section>
      <section anchor="pmtu-issues" numbered="true" toc="default">
        <name>PMTU Issues</name>
        <t>In general, DTLS's philosophy is to leave PMTU discovery to the application.
However, DTLS cannot completely ignore PMTU for three reasons:</t>
        <ul spacing="normal">
          <li>The DTLS record framing expands the datagram size, thus lowering
the effective PMTU from the application's perspective.</li>
          <li>In some implementations, the application may not directly talk to
the network, in which case the DTLS stack may absorb ICMP
<xref target="RFC1191" format="default"/> "Datagram Too Big" indications or ICMPv6 <xref target="RFC4443" format="default"/>
"Packet Too Big" indications.</li>
          <li>The DTLS handshake messages can exceed the PMTU.</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>For DTLS over UDP, the upper layer protocol SHOULD be allowed to
obtain the PMTU estimate maintained in the IP layer.</li>
          <li>For DTLS over DCCP, the upper layer protocol SHOULD be allowed to
obtain the current estimate of the PMTU.</li>
          <li>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.</li>
        </ul>
        <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>The DTLS record layer SHOULD allow the upper layer protocol to
discover the amount of record expansion expected by the DTLS
processing.</t>
        <t>If there is a transport protocol indication (either via ICMP or via a
refusal to send the datagram as in Section 14 of <xref target="RFC4340" format="default"/>), 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" format="default"/> or <xref target="RFC4821" format="default"/>
mechanisms.  In particular:</t>
        <ul spacing="normal">
          <li>Where allowed by the underlying transport protocol, the upper
layer protocol SHOULD be allowed to set the state of the DF bit
(in IPv4) or prohibit local fragmentation (in IPv6).</li>
          <li>If the underlying transport protocol allows the application to
request PMTU probing (e.g., DCCP), the DTLS record layer SHOULD
honor this request.</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>If the DTLS record layer informs the DTLS handshake layer that a
message is too big, it SHOULD immediately attempt to fragment it,
using any existing information about the PMTU.</li>
          <li>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 standard does not specify an exact number of
retransmits to attempt before backing off, but 2-3 seems
appropriate.</li>
        </ul>
      </section>
      <section anchor="record-payload-protection" numbered="true" toc="default">
        <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" numbered="true" toc="default">
          <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" format="default"/>.</t>
          <t>The received record counter for a session MUST be initialized to
zero when that session is established. 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
during the lifetime of the session. 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 decompressing
the records number is still a potential timing channel for the record
number, though a less powerful one than whether it 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 on the session.  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" format="default"/>. 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 until the record has been deprotected
successfully.</t>
        </section>
        <section anchor="handling-invalid-records" numbered="true" toc="default">
          <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 error 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
denial-of-service (DoS) attacks because UDP forgery is so easy.
Thus, this practice 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>
        </section>
      </section>
    </section>
    <section anchor="dtls" numbered="true" toc="default">
      <name>The DTLS Handshake Protocol</name>
      <t>DTLS 1.3 re-uses the TLS 1.3 handshake messages and flows, with
the following changes:</t>
      <ol spacing="normal" type="1">
        <li>To handle message loss, reordering, and fragmentation modifications to
the handshake header are necessary.</li>
        <li>Retransmission timers are introduced to handle message loss.</li>
        <li>A new ACK content type has been added for reliable message delivery of handshake messages.</li>
      </ol>
      <t>Note that TLS 1.3 already supports a cookie extension, which is used to
prevent denial-of-service attacks. This DoS prevention mechanism is
described in more detail below since UDP-based protocols are more vulnerable
to amplification attacks than a connection-oriented transport like TCP
that performs return-routability checks as part of the connection establishment.</t>
      <t>DTLS implementations do not use the TLS 1.3 "compatibility mode" described in
Section D.4 of <xref target="TLS13" format="default"/>.  DTLS servers MUST NOT echo the
"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" numbered="true" toc="default">
        <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>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.</li>
          <li>An attacker can use the server as an amplifier by sending
connection initiation messages with a forged source of the
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 it
is the case for a Certificate message.</li>
        </ol>
        <t>In order to counter both of these attacks, DTLS borrows the stateless
cookie technique used by Photuris <xref target="RFC2522" format="default"/> and IKE <xref target="RFC7296" format="default"/>.  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 generated using
the technique of <xref target="RFC2522" format="default"/>. The client MUST retransmit the 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 the way how cookies are exchanged
compared to DTLS 1.2. DTLS 1.3 re-uses 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" format="default"/>. 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 name="" type="" align="left" alt=""><![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" format="default"/>. 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 single zero 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" format="default"/>.</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" format="default"/>.</t>
        <t>The handshake transcript is not reset with the second ClientHello
and a stateless server-cookie implementation requires the transcript
of the HelloRetryRequest to be stored in the cookie or the internal state
of the hash algorithm, since only the hash of the transcript is required
for the handshake to complete.</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" format="default"/> 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 lifetime.</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, 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.
Clients MUST be prepared to do a cookie exchange with every
handshake.</t>
        <t>If a server receives a ClientHello with an invalid cookie, it
MUST NOT 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" format="default"/>, 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>
      </section>
      <section anchor="dtls-handshake-message-format" numbered="true" toc="default">
        <name>DTLS Handshake Message Format</name>
        <t>In order to support message loss, reordering, and message
fragmentation, DTLS modifies the TLS 1.3 handshake header:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
enum {
    client_hello(1),
    server_hello(2),
    new_session_ticket(4),
    end_of_early_data(5),
    encrypted_extensions(8),
    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 (HandshakeType) {
        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;
    } body;
} Handshake;
]]></artwork>
        <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 re-used, 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 tradeoff).</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 implements 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" numbered="true" toc="default">
        <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 name="" type="" align="left" alt=""><![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 newline="false" spacing="normal">
          <dt>legacy_version:</dt>
          <dd>
  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" format="default"/>) and the
legacy_version field MUST be set to {254, 253}, which was the version
number for DTLS 1.2. The version fields for DTLS 1.0 and DTLS 1.2 are
0xfeff and 0xfefd (to match the wire versions) but the version field
for DTLS 1.3 is 0x0304.</dd>
          <dt>random:</dt>
          <dd>
  Same as for TLS 1.3.</dd>
          <dt>legacy_session_id:</dt>
          <dd>
  Same as for TLS 1.3.</dd>
          <dt>legacy_cookie:</dt>
          <dd>
  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.</dd>
          <dt>cipher_suites:</dt>
          <dd>
  Same as for TLS 1.3.</dd>
          <dt>legacy_compression_methods:</dt>
          <dd>
  Same as for TLS 1.3.</dd>
          <dt>extensions:</dt>
          <dd>
  Same as for TLS 1.3.</dd>
        </dl>
      </section>
      <section anchor="handshake-message-fragmentation-and-reassembly" numbered="true" toc="default">
        <name>Handshake Message Fragmentation and Reassembly</name>
        <t>Each DTLS message MUST fit within a single
transport layer datagram.  However, handshake messages are
potentially bigger than the maximum record size.  Therefore, DTLS
provides a mechanism for fragmenting a handshake message over a
number of records, each of which can be transmitted separately, 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 handshake messages, all with the
same message_seq value as the original handshake 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 range MUST be delivered in a single UDP datagram.</t>
        <t>When a DTLS implementation receives a handshake message fragment, it
MUST buffer it until it has the entire handshake message.  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.</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 messages into the same datagram: in the same record or in
separate records.</t>
      </section>
      <section anchor="end-of-early-data" numbered="true" toc="default">
        <name>End Of Early Data</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 aggressively
age out the epoch 1 keys upon receiving the first epoch 2 record
and SHOULD NOT accept epoch 1 data after the first epoch 3 record
is received. (See <xref target="dtls-epoch" format="default"/> for the definitions of each epoch.)</t>
      </section>
      <section anchor="dtls-handshake-flights" numbered="true" toc="default">
        <name>DTLS Handshake Flights</name>
        <t>DTLS messages are grouped into a series of message flights, according
to the diagrams below.</t>
        <figure anchor="dtls-full">
          <name>Message flights for a full DTLS Handshake (with cookie exchange)</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Client                                             Server

ClientHello                                                 +----------+
 + key_share*                                               | Flight 1 |
 + pre_shared_key*      -------->                           +----------+

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


ClientHello                                                 +----------+
 + key_share*                                               | Flight 3 |
 + pre_shared_key*      -------->                           +----------+
 + cookie

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


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

                                                            +----------+
                        <--------                    [ACK]  | Flight 6 |
                                       [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 name="" type="" align="left" alt=""><![CDATA[
 ClientHello                                              +----------+
  + pre_shared_key                                        | Flight 1 |
  + key_share*         -------->                          +----------+


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

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

 [Application Data]    <------->      [Application Data]
]]></artwork>
        </figure>
        <figure anchor="dtls-zero-rtt">
          <name>Message flights for the Zero-RTT handshake</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Client                                            Server

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

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


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

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

 [Application Data]    <------->      [Application Data]
]]></artwork>
        </figure>
        <figure anchor="dtls-post-handshake-ticket">
          <name>Message flights for the new session ticket message</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Client                                            Server

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

                                                          +----------+
[ACK]                  -------->                          | Flight 2 |
                                                          +----------+
]]></artwork>
        </figure>
        <t>Note: The application data sent by the client is not included in the
timeout and retransmission calculation.</t>
      </section>
      <section anchor="timeout-and-retransmission" numbered="true" toc="default">
        <name>Timeout and Retransmission</name>
        <section anchor="state-machine" numbered="true" toc="default">
          <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" format="default"/>.
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>
          <figure anchor="dtls-timeout-state-machine">
            <name>DTLS timeout and retransmission state machine</name>
            <artwork name="" type="" align="left" alt=""><![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 |  |  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 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" format="default"/>) from the peer, then it SHOULD omit any messages or
message fragments which have already been ACKed. Once the messages
have been sent, the implementation then enters the FINISHED state
if this is the last flight in the handshake.  Or, if the
implementation expects to receive more messages, it sets a
retransmit timer and then enters the WAITING state.</t>
          <t>There are four ways to exit the WAITING state:</t>
          <ol spacing="normal" type="1">
            <li>The retransmit timer expires: the implementation transitions to
the SENDING state, where it retransmits the flight, resets the
retransmit timer, and returns to the WAITING state.</li>
            <li>The implementation reads an ACK from the peer: upon receiving
an ACK for a partial flight (as mentioned in <xref target="sending-acks" format="default"/>),
the implementation transitions
to the SENDING state, where it retransmits the unacked portion
of the flight, resets 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.</li>
            <li>The implementation reads a retransmitted flight from the peer: the
implementation transitions to the SENDING state, where it
retransmits the flight, resets 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.</li>
            <li>The implementation receives some or all 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" format="default"/>.</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 Maximum Segment Lifetime
(MSL) defined for <xref target="RFC0793" format="default"/>, when in the FINISHED state, the server
MUST respond to retransmission of the client's second 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 the new epoch
until they have received the Finished message for that epoch.
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" numbered="true" toc="default">
          <name>Timer Values</name>
          <t>Though timer values are the choice of the implementation, 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.  Implementations SHOULD use an initial timer value
of 100 msec (the minimum defined in RFC 6298 <xref target="RFC6298" format="default"/>) and double
the value at each retransmission, up to no less than the RFC 6298
maximum of 60 seconds. Application specific profiles, such as those
used for the Internet of Things environment, may recommend longer
timer values. Note that a 100 msec timer is recommended
rather than the 3-second RFC 6298 default in order to improve latency
for time-sensitive applications.  Because DTLS only uses
retransmission for handshake and not dataflow, the effect on
congestion should be minimal.</t>
          <t>Implementations SHOULD retain the current timer value until a
transmission without loss occurs, at which time the value may be
reset to the initial value.  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>
        </section>
      </section>
      <section anchor="certificateverify-and-finished-messages" numbered="true" toc="default">
        <name>CertificateVerify and Finished Messages</name>
        <t>CertificateVerify and Finished messages have the same format as in
TLS 1.3.  Hash calculations include entire handshake messages, including
DTLS-specific fields: message_seq, fragment_offset, and
fragment_length.  However, in order to remove sensitivity to
handshake message fragmentation, the CertificateVerify and the Finished messages MUST be computed as
if each handshake message had been sent as a single fragment following
the algorithm described in Section 4.4.3 and Section 4.4.4 of <xref target="TLS13" format="default"/>, respectively.</t>
      </section>
      <section anchor="cryptographic-label-prefix" numbered="true" toc="default">
        <name>Cryptographic Label Prefix</name>
        <t>Section 7.1 of <xref target="TLS13" format="default"/> 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" numbered="true" toc="default">
        <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.</t>
      </section>
      <section anchor="establishing-new-associations-with-existing-parameters" numbered="true" toc="default">
        <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 the CID concept.</t>
      </section>
    </section>
    <section anchor="example-of-handshake-with-timeout-and-retransmission" numbered="true" toc="default">
      <name>Example of Handshake with Timeout and Retransmission</name>
      <t>The following is an example of a handshake with lost packets and
retransmissions.</t>
      <figure anchor="dtls-msg-loss">
        <name>Example DTLS exchange illustrating message loss</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Client                                                Server
------                                                ------

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

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


                           <--------                 Record 1
                                            CertificateVerify
                                              (message_seq=4)
                                                     Finished
                                              (message_seq=5)

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


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

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

                           <--------               Record 3
                                                    ACK [2]

]]></artwork>
      </figure>
      <section anchor="dtls-epoch" numbered="true" toc="default">
        <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 re-order 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 key derivation steps described in
Section 7 of <xref target="TLS13" format="default"/> triggered by the states during the handshake
a sender may want to rekey at any time during
the lifetime of the connection and has to have a way 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>epoch value (0) is used with unencrypted messages. There are
three unencrypted messages in DTLS, namely ClientHello, ServerHello,
and HelloRetryRequest.</li>
          <li>epoch value (1) is used for messages protected using keys derived
from client_early_traffic_secret. Note this epoch is skipped if
the client does not offer early data.</li>
          <li>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, post-handshake are
protected under the appropriate application traffic key and are not included in this category.</li>
          <li>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).</li>
          <li>epoch value (4 to 2^16-1) is used for payloads protected using keys from
the [sender]_application_traffic_secret_N (N&gt;0).</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 payload with an epoch value
for which no corresponding cipher state can be determined MUST
generate a "unexpected_message" alert. For example, client incorrectly
uses epoch value 5 when sending early application data in a 0-RTT
exchange. A server will not be able to compute the appropriate keys
and will therefore have to respond with an alert.</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" format="default"/>.</t>
        <t><xref target="dtls-msg-epoch" format="default"/> illustrates the epoch values in an example DTLS handshake.</t>
        <figure anchor="dtls-msg-epoch">
          <name>Example DTLS exchange with epoch information</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Client                                             Server
------                                             ------

 ClientHello
 (epoch=0)
                            -------->

                            <--------       HelloRetryRequest
                                                    (epoch=0)

 ClientHello                -------->
 (epoch=0)

                            <--------             ServerHello
                                                    (epoch=0)
                                        {EncryptedExtensions}
                                                    (epoch=2)
                                                {Certificate}
                                                    (epoch=2)
                                          {CertificateVerify}
                                                    (epoch=2)
                                                   {Finished}
                                                    (epoch=2)

 {Certificate}              -------->
 (epoch=2)
 {CertificateVerify}
 (epoch=2)
 {Finished}
 (epoch=2)

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

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

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

                         Some time later ...
                 (Post-Handshake Message Exchange)

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

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

                         Some time later ...
                           (Rekeying)

                            <--------      [Application Data]
                                                    (epoch=4)
 [Application Data]         -------->
 (epoch=4)
]]></artwork>
        </figure>
      </section>
    </section>
    <section anchor="ack-msg" numbered="true" toc="default">
      <name>ACK Message</name>
      <t>The ACK message is used by an endpoint to indicate handshake-containing
the TLS records it has received from the other side. ACK is not
a handshake message but is rather a separate content type,
with code point TBD (proposed, 25). 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 name="" type="" align="left" alt=""><![CDATA[
struct {
    RecordNumber record_numbers<0..2^16-1>;
} ACK;
]]></artwork>
      <dl newline="false" spacing="normal">
        <dt>record_numbers:</dt>
        <dd>
  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.</dd>
      </dl>
      <t>Implementations MUST NOT acknowledge records containing
non-duplicative handshake messages or fragments which have not been
processed or buffered. Otherwise, deadlock can ensue.</t>
      <t>During the handshake, ACKs only cover the current outstanding flight (this is
possible because DTLS is generally a lockstep protocol). Thus, an ACK
from the server would not cover both the ClientHello and the client's
Certificate. Implementations can accomplish this by clearing their ACK
list upon receiving the start of the next flight.</t>
      <t>After the handshake, ACKs SHOULD be sent once for each received
and processed record (potentially subject to some delay) and MAY
cover more than one flight.</t>
      <t>ACK records MUST be sent with an epoch that is equal to or higher
than the record which is being acknowledged. Implementations SHOULD
simply use the current key.</t>
      <section anchor="sending-acks" numbered="true" toc="default">
        <name>Sending ACKs</name>
        <t>When an implementation receives a partial flight, it SHOULD generate
an ACK that covers the messages from that flight which it has
received so far. Implementations have some discretion about when
to generate ACKs, but it is RECOMMENDED that they do so under
two circumstances:</t>
        <ul spacing="normal">
          <li>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. Implementations
MUST NOT send ACKs for handshake messages which they discard
as out-of-order, because otherwise those messages will not be
retransmitted.</li>
          <li>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). A reasonable approach here 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.</li>
        </ul>
        <t>In addition, implementations MUST send ACKs upon receiving
all of any flight which they do not respond to with their
own messages. Specifically, this means the client's final
flight of the main handshake, the server's transmission
of the NewSessionTicket, and KeyUpdate messages.
ACKs SHOULD NOT be sent for other
complete flights because they are implicitly acknowledged
by the receipt of the next flight, which generally
immediately follows the flight. Each NewSessionTicket
or KeyUpdate is an individual flight; in particular, a KeyUpdate
sent in response to a KeyUpdate with update_requested does not
implicitly acknowledge that message. Implementations MAY
acknowledge the records corresponding to each transmission of
that flight or simply acknowledge the most recent one.</t>
        <t>ACKs MUST NOT be sent for other records of any content type
other than handshake or for records which cannot be unprotected.</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" numbered="true" toc="default">
        <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 for only some messages
from a flight, an implementation SHOULD retransmit the remaining
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. As noted above, the receipt of any record responding
to a given flight MUST be taken as an implicit acknowledgement for the entire
flight.</t>
      </section>
    </section>
    <section anchor="key-updates" numbered="true" toc="default">
      <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" format="default"/> implementations MUST NOT send 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 re-ordering, 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" format="default"/> for information
on determining the correct epoch), but MAY opt to discard
such out-of-epoch records.</t>
      <t>Although KeyUpdate MUST be acknowledged, it is possible for the ACK to be
lost, in which case the sender of the KeyUpdate will retransmit it.
Implementations MUST retain the ability to ACK the KeyUpdate for
up to 2MSL. It is RECOMMENDED that they do so by retaining the
pre-update keying material, but they MAY do so by responding
to messages which appear to be out-of-epoch with a canned ACK
message; in this case, implementations SHOULD rate limit how
often they send such ACKs.</t>
    </section>
    <section anchor="connection-id-updates" numbered="true" toc="default">
      <name>Connection ID Updates</name>
      <t>If the client and server have negotiated the "connection_id"
extension <xref target="I-D.ietf-tls-dtls-connection-id" format="default"/>, either side
can send a new CID which it wishes the other side to use
in a NewConnectionId message.</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
enum {
    cid_immediate(0), cid_spare(1), (255)
} ConnectionIdUsage;

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

struct {
    ConnectionIds cids<0..2^16-1>;
    ConnectionIdUsage usage;
} NewConnectionId;
]]></artwork>
      <dl newline="false" spacing="normal">
        <dt>cid</dt>
        <dd>
  Indicates the set of CIDs which the sender wishes the peer to use.</dd>
        <dt>usage</dt>
        <dd>
  Indicates whether the new CIDs should be used immediately or are
spare.  If usage is set to "cid_immediate", then one of the new CID
MUST be used immediately for all future records. If it is set to
"cid_spare", then either existing or new CID MAY be used.</dd>
      </dl>
      <t>Endpoints SHOULD use receiver-provided CIDs in the order they were provided.
Endpoints MUST NOT have more than one NewConnectionId message outstanding.</t>
      <t>If the client and server have negotiated the "connection_id" extension,
either side can request a new CID using the RequestConnectionId message.</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
struct {
  uint8 num_cids;
} RequestConnectionId;
]]></artwork>
      <dl newline="false" spacing="normal">
        <dt>num_cids</dt>
        <dd>
  The number of CIDs desired.</dd>
      </dl>
      <t>Endpoints SHOULD respond to RequestConnectionId by sending a
NewConnectionId with usage "cid_spare" containing num_cid CIDs soon as
possible.  Endpoints MUST NOT send a RequestConnectionId message
when an existing request is still unfulfilled; this implies that
endpoints needs to request new CIDs well in advance.  An endpoint MAY
ignore requests, which it considers excessive (though they MUST be
acknowledged as usual).</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" numbered="true" toc="default">
        <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 is defined in
<xref target="I-D.ietf-tls-dtls-connection-id" format="default"/>, which is used
in ClientHello and ServerHello messages.</t>
        <figure anchor="dtls-example">
          <name>Example DTLS 1.3 Exchange with CIDs</name>
          <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
      <name>Application Data Protocol</name>
      <t>Application data messages are carried by the record layer and are fragmented
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" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>Security issues are discussed primarily in <xref target="TLS13" format="default"/>.</t>
      <t>The primary additional security consideration raised by DTLS is that
of denial of service.  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>DTLS implementations MUST NOT update their sending address in response
to packets from a different address unless they first perform some
reachability test; no such test is defined in this specification. Even
with such a test, An 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>If implementations process out-of-epoch records as recommended in
<xref target="key-updates" format="default"/>, then this creates a denial of service risk since an adversary could
inject records with fake epoch values, forcing the recipient
to compute the next-generation application_traffic_secret using the
HKDF-Expand-Label construct to only find out that the message was
does not pass the AEAD cipher processing. The impact of this
attack is small since the HKDF-Expand-Label only performs symmetric
key hashing operations. Implementations which are concerned about
this form of attack can discard out-of-epoch records.</t>
      <t>The security and privacy properties of the CID for DTLS 1.3 builds
on top of what is described in <xref target="I-D.ietf-tls-dtls-connection-id" format="default"/>. There are,
however, several improvements:</t>
      <ul spacing="normal">
        <li>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.</li>
        <li>With multi-homing, an adversary is able to correlate the communication
interaction over the two 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.</li>
        <li>Switching CID based on certain events, or even regularly, helps against
tracking by on-path adversaries but the sequence numbers can still allow
linkability. For this reason this specification defines an algorithm for encrypting
sequence numbers, see <xref target="sne" format="default"/>. Note that sequence number encryption is used for
all encrypted DTLS 1.3 records irrespectively of the use of a CID.</li>
        <li>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.</li>
      </ul>
    </section>
    <section anchor="changes-to-dtls-12" numbered="true" toc="default">
      <name>Changes to DTLS 1.2</name>
      <t>Since TLS 1.3 introduces a large number of changes 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>New handshake pattern, which leads to a shorter message exchange</li>
        <li>Only AEAD ciphers are supported. Additional data calculation has been simplified.</li>
        <li>Removed support for weaker and older cryptographic algorithms</li>
        <li>HelloRetryRequest of TLS 1.3 used instead of HelloVerifyRequest</li>
        <li>More flexible ciphersuite negotiation</li>
        <li>New session resumption mechanism</li>
        <li>PSK authentication redefined</li>
        <li>New key derivation hierarchy utilizing a new key derivation construct</li>
        <li>Improved version negotiation</li>
        <li>Optimized record layer encoding and thereby its size</li>
        <li>Added CID functionality</li>
        <li>Sequence numbers are encrypted.</li>
      </ul>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>IANA is requested to allocate a new value in the "TLS ContentType"
registry for the ACK message, defined in <xref target="ack-msg" format="default"/>, with content type 26.
The value for the "DTLS-OK" column is "Y".  IANA is requested to reserve
the content type range 32-63 so that content types in this range are not
allocated.</t>
      <t>IANA is requested to allocate two values in the "TLS Handshake Type"
registry, defined in <xref target="TLS13" format="default"/>, for RequestConnectionId (TBD), and
NewConnectionId (TBD), as defined in this document.  The value for the
"DTLS-OK" columns are "Y".</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC0768" target="https://www.rfc-editor.org/info/rfc768">
          <front>
            <title>User Datagram Protocol</title>
            <seriesInfo name="DOI" value="10.17487/RFC0768"/>
            <seriesInfo name="RFC" value="768"/>
            <seriesInfo name="STD" value="6"/>
            <author initials="J." surname="Postel" fullname="J. Postel">
              <organization/>
            </author>
            <date year="1980" month="August"/>
          </front>
        </reference>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <seriesInfo name="DOI" value="10.17487/RFC2119"/>
            <seriesInfo name="RFC" value="2119"/>
            <seriesInfo name="BCP" value="14"/>
            <author initials="S." surname="Bradner" fullname="S. Bradner">
              <organization/>
            </author>
            <date year="1997" month="March"/>
            <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>
        </reference>
        <reference anchor="RFC1191" target="https://www.rfc-editor.org/info/rfc1191">
          <front>
            <title>Path MTU discovery</title>
            <seriesInfo name="DOI" value="10.17487/RFC1191"/>
            <seriesInfo name="RFC" value="1191"/>
            <author initials="J.C." surname="Mogul" fullname="J.C. Mogul">
              <organization/>
            </author>
            <author initials="S.E." surname="Deering" fullname="S.E. Deering">
              <organization/>
            </author>
            <date year="1990" month="November"/>
            <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>
        </reference>
        <reference anchor="RFC4443" target="https://www.rfc-editor.org/info/rfc4443">
          <front>
            <title>Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification</title>
            <seriesInfo name="DOI" value="10.17487/RFC4443"/>
            <seriesInfo name="RFC" value="4443"/>
            <seriesInfo name="STD" value="89"/>
            <author initials="A." surname="Conta" fullname="A. Conta">
              <organization/>
            </author>
            <author initials="S." surname="Deering" fullname="S. Deering">
              <organization/>
            </author>
            <author initials="M." surname="Gupta" fullname="M. Gupta" role="editor">
              <organization/>
            </author>
            <date year="2006" month="March"/>
            <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>
        </reference>
        <reference anchor="RFC4821" target="https://www.rfc-editor.org/info/rfc4821">
          <front>
            <title>Packetization Layer Path MTU Discovery</title>
            <seriesInfo name="DOI" value="10.17487/RFC4821"/>
            <seriesInfo name="RFC" value="4821"/>
            <author initials="M." surname="Mathis" fullname="M. Mathis">
              <organization/>
            </author>
            <author initials="J." surname="Heffner" fullname="J. Heffner">
              <organization/>
            </author>
            <date year="2007" month="March"/>
            <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>
        </reference>
        <reference anchor="RFC0793" target="https://www.rfc-editor.org/info/rfc793">
          <front>
            <title>Transmission Control Protocol</title>
            <seriesInfo name="DOI" value="10.17487/RFC0793"/>
            <seriesInfo name="RFC" value="793"/>
            <seriesInfo name="STD" value="7"/>
            <author initials="J." surname="Postel" fullname="J. Postel">
              <organization/>
            </author>
            <date year="1981" month="September"/>
          </front>
        </reference>
        <reference anchor="RFC6298" target="https://www.rfc-editor.org/info/rfc6298">
          <front>
            <title>Computing TCP's Retransmission Timer</title>
            <seriesInfo name="DOI" value="10.17487/RFC6298"/>
            <seriesInfo name="RFC" value="6298"/>
            <author initials="V." surname="Paxson" fullname="V. Paxson">
              <organization/>
            </author>
            <author initials="M." surname="Allman" fullname="M. Allman">
              <organization/>
            </author>
            <author initials="J." surname="Chu" fullname="J. Chu">
              <organization/>
            </author>
            <author initials="M." surname="Sargent" fullname="M. Sargent">
              <organization/>
            </author>
            <date year="2011" month="June"/>
            <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>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <seriesInfo name="DOI" value="10.17487/RFC8174"/>
            <seriesInfo name="RFC" value="8174"/>
            <seriesInfo name="BCP" value="14"/>
            <author initials="B." surname="Leiba" fullname="B. Leiba">
              <organization/>
            </author>
            <date year="2017" month="May"/>
            <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>
        </reference>
        <reference anchor="I-D.ietf-tls-dtls-connection-id" target="http://www.ietf.org/internet-drafts/draft-ietf-tls-dtls-connection-id-07.txt">
          <front>
            <title>Connection Identifiers for DTLS 1.2</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-tls-dtls-connection-id-07"/>
            <author initials="E" surname="Rescorla" fullname="Eric Rescorla">
              <organization/>
            </author>
            <author initials="H" surname="Tschofenig" fullname="Hannes Tschofenig">
              <organization/>
            </author>
            <author initials="T" surname="Fossati" fullname="Thomas Fossati">
              <organization/>
            </author>
            <date month="October" day="21" year="2019"/>
            <abstract>
              <t>This document specifies the Connection ID (CID) construct for the Datagram Transport Layer Security (DTLS) protocol version 1.2.  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>
            </abstract>
          </front>
        </reference>
        <reference anchor="TLS13" target="https://www.rfc-editor.org/info/rfc8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <seriesInfo name="DOI" value="10.17487/RFC8446"/>
            <seriesInfo name="RFC" value="8446"/>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2018" month="August"/>
            <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>
        </reference>
        <reference anchor="CHACHA" target="https://www.rfc-editor.org/info/rfc8439">
          <front>
            <title>ChaCha20 and Poly1305 for IETF Protocols</title>
            <seriesInfo name="DOI" value="10.17487/RFC8439"/>
            <seriesInfo name="RFC" value="8439"/>
            <author initials="Y." surname="Nir" fullname="Y. Nir">
              <organization/>
            </author>
            <author initials="A." surname="Langley" fullname="A. Langley">
              <organization/>
            </author>
            <date year="2018" month="June"/>
            <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>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC7296" target="https://www.rfc-editor.org/info/rfc7296">
          <front>
            <title>Internet Key Exchange Protocol Version 2 (IKEv2)</title>
            <seriesInfo name="DOI" value="10.17487/RFC7296"/>
            <seriesInfo name="RFC" value="7296"/>
            <seriesInfo name="STD" value="79"/>
            <author initials="C." surname="Kaufman" fullname="C. Kaufman">
              <organization/>
            </author>
            <author initials="P." surname="Hoffman" fullname="P. Hoffman">
              <organization/>
            </author>
            <author initials="Y." surname="Nir" fullname="Y. Nir">
              <organization/>
            </author>
            <author initials="P." surname="Eronen" fullname="P. Eronen">
              <organization/>
            </author>
            <author initials="T." surname="Kivinen" fullname="T. Kivinen">
              <organization/>
            </author>
            <date year="2014" month="October"/>
            <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>
        </reference>
        <reference anchor="RFC2522" target="https://www.rfc-editor.org/info/rfc2522">
          <front>
            <title>Photuris: Session-Key Management Protocol</title>
            <seriesInfo name="DOI" value="10.17487/RFC2522"/>
            <seriesInfo name="RFC" value="2522"/>
            <author initials="P." surname="Karn" fullname="P. Karn">
              <organization/>
            </author>
            <author initials="W." surname="Simpson" fullname="W. Simpson">
              <organization/>
            </author>
            <date year="1999" month="March"/>
            <abstract>
              <t>This document defines the basic protocol mechanisms. This document defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC4303" target="https://www.rfc-editor.org/info/rfc4303">
          <front>
            <title>IP Encapsulating Security Payload (ESP)</title>
            <seriesInfo name="DOI" value="10.17487/RFC4303"/>
            <seriesInfo name="RFC" value="4303"/>
            <author initials="S." surname="Kent" fullname="S. Kent">
              <organization/>
            </author>
            <date year="2005" month="December"/>
            <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>
        </reference>
        <reference anchor="RFC4340" target="https://www.rfc-editor.org/info/rfc4340">
          <front>
            <title>Datagram Congestion Control Protocol (DCCP)</title>
            <seriesInfo name="DOI" value="10.17487/RFC4340"/>
            <seriesInfo name="RFC" value="4340"/>
            <author initials="E." surname="Kohler" fullname="E. Kohler">
              <organization/>
            </author>
            <author initials="M." surname="Handley" fullname="M. Handley">
              <organization/>
            </author>
            <author initials="S." surname="Floyd" fullname="S. Floyd">
              <organization/>
            </author>
            <date year="2006" month="March"/>
            <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>
        </reference>
        <reference anchor="RFC4346" target="https://www.rfc-editor.org/info/rfc4346">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.1</title>
            <seriesInfo name="DOI" value="10.17487/RFC4346"/>
            <seriesInfo name="RFC" value="4346"/>
            <author initials="T." surname="Dierks" fullname="T. Dierks">
              <organization/>
            </author>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2006" month="April"/>
            <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.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC4347" target="https://www.rfc-editor.org/info/rfc4347">
          <front>
            <title>Datagram Transport Layer Security</title>
            <seriesInfo name="DOI" value="10.17487/RFC4347"/>
            <seriesInfo name="RFC" value="4347"/>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <author initials="N." surname="Modadugu" fullname="N. Modadugu">
              <organization/>
            </author>
            <date year="2006" month="April"/>
            <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.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC5238" target="https://www.rfc-editor.org/info/rfc5238">
          <front>
            <title>Datagram Transport Layer Security (DTLS) over the Datagram Congestion Control Protocol (DCCP)</title>
            <seriesInfo name="DOI" value="10.17487/RFC5238"/>
            <seriesInfo name="RFC" value="5238"/>
            <author initials="T." surname="Phelan" fullname="T. Phelan">
              <organization/>
            </author>
            <date year="2008" month="May"/>
            <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>
        </reference>
        <reference anchor="RFC5246" target="https://www.rfc-editor.org/info/rfc5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <seriesInfo name="DOI" value="10.17487/RFC5246"/>
            <seriesInfo name="RFC" value="5246"/>
            <author initials="T." surname="Dierks" fullname="T. Dierks">
              <organization/>
            </author>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2008" month="August"/>
            <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>
        </reference>
        <reference anchor="RFC6347" target="https://www.rfc-editor.org/info/rfc6347">
          <front>
            <title>Datagram Transport Layer Security Version 1.2</title>
            <seriesInfo name="DOI" value="10.17487/RFC6347"/>
            <seriesInfo name="RFC" value="6347"/>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <author initials="N." surname="Modadugu" fullname="N. Modadugu">
              <organization/>
            </author>
            <date year="2012" month="January"/>
            <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>
        </reference>
        <reference anchor="RFC7525" target="https://www.rfc-editor.org/info/rfc7525">
          <front>
            <title>Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
            <seriesInfo name="DOI" value="10.17487/RFC7525"/>
            <seriesInfo name="RFC" value="7525"/>
            <seriesInfo name="BCP" value="195"/>
            <author initials="Y." surname="Sheffer" fullname="Y. Sheffer">
              <organization/>
            </author>
            <author initials="R." surname="Holz" fullname="R. Holz">
              <organization/>
            </author>
            <author initials="P." surname="Saint-Andre" fullname="P. Saint-Andre">
              <organization/>
            </author>
            <date year="2015" month="May"/>
            <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>
        </reference>
        <reference anchor="RFC4960" target="https://www.rfc-editor.org/info/rfc4960">
          <front>
            <title>Stream Control Transmission Protocol</title>
            <seriesInfo name="DOI" value="10.17487/RFC4960"/>
            <seriesInfo name="RFC" value="4960"/>
            <author initials="R." surname="Stewart" fullname="R. Stewart" role="editor">
              <organization/>
            </author>
            <date year="2007" month="September"/>
            <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>
        </reference>
      </references>
    </references>
    <section anchor="protocol-data-structures-and-constant-values" numbered="true" toc="default">
      <name>Protocol Data Structures and Constant Values</name>
      <t>This section provides the normative protocol types and constants definitions.</t>
      <section anchor="record-layer" numbered="true" toc="default">
        <name>Record Layer</name>
        <artwork name="" type="" align="left" alt=""><![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)  |
+-+-+-+-+-+-+-+-+
]]></artwork>
      </section>
      <section anchor="handshake-protocol" numbered="true" toc="default">
        <name>Handshake Protocol</name>
        <artwork name="" type="" align="left" alt=""><![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),
    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),
    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 (HandshakeType) {
        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;
    } body;
} Handshake;

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" numbered="true" toc="default">
        <name>ACKs</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
struct {
    RecordNumber record_numbers<0..2^16-1>;
} ACK;
]]></artwork>
      </section>
      <section anchor="connection-id-management" numbered="true" toc="default">
        <name>Connection ID Management</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
enum {
    cid_immediate(0), cid_spare(1), (255)
} ConnectionIdUsage;

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

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

struct {
  uint8 num_cids;
} RequestConnectionId;
]]></artwork>
      </section>
    </section>
    <section anchor="history" numbered="true" toc="default">
      <name>History</name>
      <t>RFC EDITOR: PLEASE REMOVE THE THIS SECTION</t>
      <t>IETF Drafts</t>
      <t>draft-36:
- Some editorial changes.
- Changed the content type to not conflict with existing allocations (*)</t>
      <t>draft-35:
- I-D.ietf-tls-dtls-connection-id became a normative reference
- Removed duplicate reference to I-D.ietf-tls-dtls-connection-id.
- Fix figure 11 to have the right numbers andno cookie in message 1.
- Clarify when you can ACK.
- Clarify additional data computation.</t>
      <t>draft-33:
- Key separation between TLS and DTLS. Issue #72.</t>
      <t>draft-32:
- Editorial improvements and clarifications.</t>
      <t>draft-31:
- Editorial improvements in text and figures.
- Added normative reference to ChaCha20 and Poly1305.</t>
      <t>draft-30:
- Changed record format
- Added text about end of early data
- Changed format of the Connection ID Update message
- Added Appendix A "Protocol Data Structures and Constant Values"</t>
      <t>draft-29:
- Added support for sequence number encryption
- Update to new record format
- Emphasize that compatibility mode isn't used.</t>
      <t>draft-28:
- Version bump to align with TLS 1.3 pre-RFC version.</t>
      <t>draft-27:
- Incorporated unified header format.
- Added support for CIDs.</t>
      <t>draft-04 - 26:
- Submissions to align with TLS 1.3 draft versions</t>
      <t>draft-03
- Only update keys after KeyUpdate is ACKed.</t>
      <t>draft-02
- Shorten the protected record header and introduce an ultra-short
  version of the record header.
- Reintroduce KeyUpdate, which works properly now that we have ACK.
- Clarify the ACK rules.</t>
      <t>draft-01
- Restructured the ACK to contain a list of records and also
  be a record rather than a handshake message.</t>
      <t>draft-00
- First IETF Draft</t>
      <t>Personal Drafts
draft-01
- Alignment with version -19 of the TLS 1.3 specification</t>
      <t>draft-00</t>
      <ul spacing="normal">
        <li>Initial version using TLS 1.3 as a baseline.</li>
        <li>Use of epoch values instead of KeyUpdate message</li>
        <li>Use of cookie extension instead of cookie field in
ClientHello and HelloVerifyRequest messages</li>
        <li>Added ACK message</li>
        <li>Text about sequence number handling</li>
      </ul>
    </section>
    <section anchor="working-group-information" numbered="true" toc="default">
      <name>Working Group Information</name>
      <t>The discussion list for the IETF TLS working group is located at the e-mail
address <eref target="mailto:tls@ietf.org">tls@ietf.org</eref>. Information on the group and information on how to
subscribe to the list is at <eref target="https://www1.ietf.org/mailman/listinfo/tls">https://www1.ietf.org/mailman/listinfo/tls</eref></t>
      <t>Archives of the list can be found at:
<eref target="https://www.ietf.org/mail-archive/web/tls/current/index.html">https://www.ietf.org/mail-archive/web/tls/current/index.html</eref></t>
    </section>
    <section anchor="contributors" numbered="true" toc="default">
      <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
sequence number encryption concept is taken from the QUIC specification. We would
like to thank the authors of the QUIC specification for their work.</t>
      <t>In addition, we would like to thank:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
* David Benjamin
  Google
  davidben@google.com
]]></artwork>
      <artwork name="" type="" align="left" alt=""><![CDATA[
* Thomas Fossati
  Arm Limited
  Thomas.Fossati@arm.com
]]></artwork>
      <artwork name="" type="" align="left" alt=""><![CDATA[
* Tobias Gondrom
  Huawei
  tobias.gondrom@gondrom.org
]]></artwork>
      <artwork name="" type="" align="left" alt=""><![CDATA[
* Ilari Liusvaara
  Independent
  ilariliusvaara@welho.com
]]></artwork>
      <artwork name="" type="" align="left" alt=""><![CDATA[
* Martin Thomson
  Mozilla
  martin.thomson@gmail.com
]]></artwork>
      <artwork name="" type="" align="left" alt=""><![CDATA[
* Christopher A. Wood
  Apple Inc.
  cawood@apple.com
]]></artwork>
      <artwork name="" type="" align="left" alt=""><![CDATA[
* Yin Xinxing
  Huawei
  yinxinxing@huawei.com
]]></artwork>
      <artwork name="" type="" align="left" alt=""><![CDATA[
* Hanno Becker
  Arm Limited
  Hanno.Becker@arm.com
]]></artwork>
    </section>
  </back>
  <!-- ##markdown-source:
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
i3sQuq7CYTeI0GisHarHMf9UR/a7ryIuN5SYtA9Ya4zCy6M0Q+fxngYlGOTK
uW7qeAvhHMkSNckqF2znGxpE99tfbw6508o95l4s2TkJkA4ib2371wIzTGDN
/BeG2IURdpsRJH58eO9Au39BpJ3d5Nzurbu7g/pF9m3u2/u03vwrQ+9ai9jd
+YTQu78iucyv4+Pn2//z+cllXzL3l+ZNfsnc7ucz8ybbc4du9fYzIboqfnT3
7r9zS/If3bGCOxtaAoMbX3/p1trhTcEzP8rPT/dcqz7vl9ca+wvXGodWKUvp
C6xCpnISBVcha8R4KmCqRUlyHqW+eQ7ZaHdylysgWjfFHCTFynVADwtsiFtd
vAM4LqmanZ3bVxL2EQN8ErRq56I646SqMp++JuabPFlJeWgq/Cz2VYma8ElU
lwmFwsSVydrlYjg7z1l+qQpgxQVaEvHxoVRYcNE0TckLF8JbPEthBrRCHIns
JPYn476g2jy8LbTBLCmyY1FlcyndU8Qx8OdkU8NvV86DmuRYDo+HG4fzgOqf
SbCbhtuQoAhy1iQtMCYCfkMVIRu7wqSSGlP3VBlBefuqoGQA45I8sAZQ3fSO
56t99aV/TEqDAhi7Lqk+TjwbQoTF3ptljg5JyZA4Ls+4QkzoPYxqqsrw1g+f
dkaX4nGkRKJRmaqAWLwdlPNZc3kmFT/Rm1Cn+Y0v6mRQCgQkLMYolfGazjUr
o7WeQEv0S3EJISBRSsVDcd1fleVEfPtsDqKaN7wrWeBYkycIhIB/Myrbycpm
VoV1DGFdR1LCVjVnKdHP6awgv5k2cDjSEta+ihImelJEAkFebGGx0RtQtMLN
BWZstH1pvQzxqEwyCkpDnVWe9zBZiWtMapyQS8ZEVV4akLWeIMEiS1YjGlNQ
nJLQS+vXcSsuewLHy+ZVqcTUUOLdIarbVB4GNSQ4PLxnFBKGlYYvcwwsnWFm
ruazlJUZE2EgM/I010RXwSe5HbCCiqNEUFlTj70k3VC5aa4tqxEIcZGYBD3y
S0w5duBhWJM70W6iMdMlL02W4i5/cYiE+TKjg5CeA2hK0PCteYI+lHJZc/So
kSVn5GimQiqVr0/GmInl4ioq3bqaz1HSRbe3KIrbzlmvtgksv4ZKgMu/Rq1x
ofmzbBERMqK5wRjuCMgJBFQOV12oTN3M1TIB0tukaR3rRlqllSJlAJKuutwf
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

-->

</rfc>
