<?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.13 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-tls-26" category="std" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 2.37.3 -->
  <front>
    <title>Using TLS to Secure QUIC</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-tls-26"/>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
      <address>
        <email>mt@lowentropy.net</email>
      </address>
    </author>
    <author initials="S." surname="Turner" fullname="Sean Turner" role="editor">
      <organization>sn3rd</organization>
      <address>
        <email>sean@sn3rd.com</email>
      </address>
    </author>
    <date year="2020" month="February" day="21"/>
    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    <abstract>
      <t>This document describes how Transport Layer Security (TLS) is used to secure
QUIC.</t>
    </abstract>
    <note>
      <name>Note to Readers</name>
      <t>Discussion of this draft takes place on the QUIC working group mailing list
(quic@ietf.org), which is archived at
<eref target="https://mailarchive.ietf.org/arch/search/?email_list=quic">https://mailarchive.ietf.org/arch/search/?email_list=quic</eref>.</t>
      <t>Working Group information can be found at <eref target="https://github.com/quicwg">https://github.com/quicwg</eref>; source
code and issues list for this draft can be found at
<eref target="https://github.com/quicwg/base-drafts/labels/-tls">https://github.com/quicwg/base-drafts/labels/-tls</eref>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>This document describes how QUIC <xref target="QUIC-TRANSPORT" format="default"/> is secured using TLS
<xref target="TLS13" format="default"/>.</t>
      <t>TLS 1.3 provides critical latency improvements for connection establishment over
previous versions.  Absent packet loss, most new connections can be established
and secured within a single round trip; on subsequent connections between the
same client and server, the client can often send application data immediately,
that is, using a zero round trip setup.</t>
      <t>This document describes how TLS acts as a security component of QUIC.</t>
    </section>
    <section anchor="notational-conventions" numbered="true" toc="default">
      <name>Notational Conventions</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>This document uses the terminology established in <xref target="QUIC-TRANSPORT" format="default"/>.</t>
      <t>For brevity, the acronym TLS is used to refer to TLS 1.3, though a newer version
could be used (see <xref target="tls-version" format="default"/>).</t>
      <section anchor="tls-overview" numbered="true" toc="default">
        <name>TLS Overview</name>
        <t>TLS provides two endpoints with a way to establish a means of communication over
an untrusted medium (that is, the Internet) that ensures that messages they
exchange cannot be observed, modified, or forged.</t>
        <t>Internally, TLS is a layered protocol, with the structure shown in
<xref target="tls-layers" format="default"/>.</t>
        <figure anchor="tls-layers">
          <name>TLS Layers</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
          +-------------+------------+--------------+---------+
Handshake |             |            |  Application |         |
Layer     |  Handshake  |   Alerts   |     Data     |   ...   |
          |             |            |              |         |
          +-------------+------------+--------------+---------+
Record    |                                                   |
Layer     |                      Records                      |
          |                                                   |
          +---------------------------------------------------+
]]></artwork>
        </figure>
        <t>Each Handshake layer message (e.g., Handshake, Alerts, and Application Data) is
carried as a series of typed TLS records by the Record layer.  Records are
individually cryptographically protected and then transmitted over a reliable
transport (typically TCP) which provides sequencing and guaranteed delivery.</t>
        <t>The TLS authenticated key exchange occurs between two endpoints: client and
server.  The client initiates the exchange and the server responds.  If the key
exchange completes successfully, both client and server will agree on a secret.
TLS supports both pre-shared key (PSK) and Diffie-Hellman over either finite
fields or elliptic curves ((EC)DHE) key exchanges.  PSK is the basis for 0-RTT;
the latter provides perfect forward secrecy (PFS) when the (EC)DHE keys are
destroyed.</t>
        <t>After completing the TLS handshake, the client will have learned and
authenticated an identity for the server and the server is optionally able to
learn and authenticate an identity for the client.  TLS supports X.509
<xref target="RFC5280" format="default"/> certificate-based authentication for both server and client.</t>
        <t>The TLS key exchange is resistant to tampering by attackers and it produces
shared secrets that cannot be controlled by either participating peer.</t>
        <t>TLS provides two basic handshake modes of interest to QUIC:</t>
        <ul spacing="normal">
          <li>A full 1-RTT handshake in which the client is able to send Application Data
after one round trip and the server immediately responds after receiving the
first handshake message from the client.</li>
          <li>A 0-RTT handshake in which the client uses information it has previously
learned about the server to send Application Data immediately.  This
Application Data can be replayed by an attacker so it MUST NOT carry a
self-contained trigger for any non-idempotent action.</li>
        </ul>
        <t>A simplified TLS handshake with 0-RTT application data is shown in <xref target="tls-full" format="default"/>.
Note that this omits the EndOfEarlyData message, which is not used in QUIC (see
<xref target="remove-eoed" format="default"/>).  Likewise, neither ChangeCipherSpec nor KeyUpdate messages are
used by QUIC; ChangeCipherSpec is redundant in TLS 1.3 and QUIC has defined its
own key update mechanism <xref target="key-update" format="default"/>.</t>
        <figure anchor="tls-full">
          <name>TLS Handshake with 0-RTT</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
    Client                                             Server

    ClientHello
   (0-RTT Application Data)  -------->
                                                  ServerHello
                                         {EncryptedExtensions}
                                                    {Finished}
                             <--------      [Application Data]
   {Finished}                -------->

   [Application Data]        <------->      [Application Data]

    () Indicates messages protected by Early Data (0-RTT) Keys
    {} Indicates messages protected using Handshake Keys
    [] Indicates messages protected using Application Data
       (1-RTT) Keys
]]></artwork>
        </figure>
        <t>Data is protected using a number of encryption levels:</t>
        <ul spacing="normal">
          <li>Initial Keys</li>
          <li>Early Data (0-RTT) Keys</li>
          <li>Handshake Keys</li>
          <li>Application Data (1-RTT) Keys</li>
        </ul>
        <t>Application Data may appear only in the Early Data and Application Data
levels. Handshake and Alert messages may appear in any level.</t>
        <t>The 0-RTT handshake is only possible if the client and server have previously
communicated.  In the 1-RTT handshake, the client is unable to send protected
Application Data until it has received all of the Handshake messages sent by the
server.</t>
      </section>
    </section>
    <section anchor="protocol-overview" numbered="true" toc="default">
      <name>Protocol Overview</name>
      <t>QUIC <xref target="QUIC-TRANSPORT" format="default"/> assumes responsibility for the confidentiality and
integrity protection of packets.  For this it uses keys derived from a TLS
handshake <xref target="TLS13" format="default"/>, but instead of carrying TLS records over QUIC (as with
TCP), TLS Handshake and Alert messages are carried directly over the QUIC
transport, which takes over the responsibilities of the TLS record layer, as
shown in <xref target="quic-layers" format="default"/>.</t>
      <figure anchor="quic-layers">
        <name>QUIC Layers</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
+--------------+--------------+ +-------------+
|     TLS      |     TLS      | |    QUIC     |
|  Handshake   |    Alerts    | | Applications|
|              |              | |  (h3, etc.) |
+--------------+--------------+-+-------------+
|                                             |
|                QUIC Transport               |
|   (streams, reliability, congestion, etc.)  |
|                                             |
+---------------------------------------------+
|                                             |
|            QUIC Packet Protection           |
|                                             |
+---------------------------------------------+
]]></artwork>
      </figure>
      <t>QUIC also relies on TLS for authentication and negotiation of parameters that
are critical to security and performance.</t>
      <t>Rather than a strict layering, these two protocols cooperate: QUIC uses the TLS
handshake; TLS uses the reliability, ordered delivery, and record layer provided
by QUIC.</t>
      <t>At a high level, there are two main interactions between the TLS and QUIC
components:</t>
      <ul spacing="normal">
        <li>The TLS component sends and receives messages via the QUIC component, with
QUIC providing a reliable stream abstraction to TLS.</li>
        <li>The TLS component provides a series of updates to the QUIC component,
including (a) new packet protection keys to install (b) state changes such as
handshake completion, the server certificate, etc.</li>
      </ul>
      <t><xref target="schematic" format="default"/> shows these interactions in more detail, with the QUIC packet
protection being called out specially.</t>
      <figure anchor="schematic">
        <name>QUIC and TLS Interactions</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
+------------+                               +------------+
|            |<---- Handshake Messages ----->|            |
|            |<- Validate 0-RTT parameters ->|            |
|            |<--------- 0-RTT Keys ---------|            |
|    QUIC    |<------- Handshake Keys -------|    TLS     |
|            |<--------- 1-RTT Keys ---------|            |
|            |<------- Handshake Done -------|            |
+------------+                               +------------+
 |         ^
 | Protect | Protected
 v         | Packet
+------------+
|   QUIC     |
|  Packet    |
| Protection |
+------------+
]]></artwork>
      </figure>
      <t>Unlike TLS over TCP, QUIC applications which want to send data do not send it
through TLS "application_data" records. Rather, they send it as QUIC STREAM
frames or other frame types which are then carried in QUIC packets.</t>
    </section>
    <section anchor="carrying-tls" numbered="true" toc="default">
      <name>Carrying TLS Messages</name>
      <t>QUIC carries TLS handshake data in CRYPTO frames, each of which consists of a
contiguous block of handshake data identified by an offset and length. Those
frames are packaged into QUIC packets and encrypted under the current TLS
encryption level.  As with TLS over TCP, once TLS handshake data has been
delivered to QUIC, it is QUIC's responsibility to deliver it reliably. Each
chunk of data that is produced by TLS is associated with the set of keys that
TLS is currently using.  If QUIC needs to retransmit that data, it MUST use the
same keys even if TLS has already updated to newer keys.</t>
      <t>One important difference between TLS records (used with TCP) and QUIC CRYPTO
frames is that in QUIC multiple frames may appear in the same QUIC packet as
long as they are associated with the same encryption level. For instance, an
implementation might bundle a Handshake message and an ACK for some Handshake
data into the same packet.</t>
      <t>Some frames are prohibited in different encryption levels, others cannot be
sent. The rules here generalize those of TLS, in that frames associated with
establishing the connection can usually appear at any encryption level, whereas
those associated with transferring data can only appear in the 0-RTT and 1-RTT
encryption levels:</t>
      <ul spacing="normal">
        <li>PADDING and PING frames MAY appear in packets of any encryption level.</li>
        <li>CRYPTO frames and CONNECTION_CLOSE frames signaling errors at the QUIC layer
(type 0x1c) MAY appear in packets of any encryption level except 0-RTT.</li>
        <li>CONNECTION_CLOSE frames signaling application errors (type 0x1d) MUST only be
sent in packets at the 1-RTT encryption level.</li>
        <li>ACK frames MAY appear in packets of any encryption level other than 0-RTT, but
can only acknowledge packets which appeared in that packet number space.</li>
        <li>All other frame types MUST only be sent in the 0-RTT and 1-RTT levels.</li>
      </ul>
      <t>Note that it is not possible to send the following frames in 0-RTT for various
reasons: ACK, CRYPTO, HANDSHAKE_DONE, NEW_TOKEN, PATH_RESPONSE, and
RETIRE_CONNECTION_ID.</t>
      <t>Because packets could be reordered on the wire, QUIC uses the packet type to
indicate which level a given packet was encrypted under, as shown in
<xref target="packet-types-levels" format="default"/>. When multiple packets of different encryption levels
need to be sent, endpoints SHOULD use coalesced packets to send them in the same
UDP datagram.</t>
      <table anchor="packet-types-levels" align="center">
        <name>Encryption Levels by Packet Type</name>
        <thead>
          <tr>
            <th align="left">Packet Type</th>
            <th align="left">Encryption Level</th>
            <th align="left">PN Space</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Initial</td>
            <td align="left">Initial secrets</td>
            <td align="left">Initial</td>
          </tr>
          <tr>
            <td align="left">0-RTT Protected</td>
            <td align="left">0-RTT</td>
            <td align="left">0/1-RTT</td>
          </tr>
          <tr>
            <td align="left">Handshake</td>
            <td align="left">Handshake</td>
            <td align="left">Handshake</td>
          </tr>
          <tr>
            <td align="left">Retry</td>
            <td align="left">N/A</td>
            <td align="left">N/A</td>
          </tr>
          <tr>
            <td align="left">Version Negotiation</td>
            <td align="left">N/A</td>
            <td align="left">N/A</td>
          </tr>
          <tr>
            <td align="left">Short Header</td>
            <td align="left">1-RTT</td>
            <td align="left">0/1-RTT</td>
          </tr>
        </tbody>
      </table>
      <t>Section 17 of <xref target="QUIC-TRANSPORT" format="default"/> shows how packets at the various encryption
levels fit into the handshake process.</t>
      <section anchor="interface-to-tls" numbered="true" toc="default">
        <name>Interface to TLS</name>
        <t>As shown in <xref target="schematic" format="default"/>, the interface from QUIC to TLS consists of four
primary functions:</t>
        <ul spacing="normal">
          <li>Sending and receiving handshake messages</li>
          <li>Processing stored transport and application state from a resumed session
and determining if it is valid to accept early data</li>
          <li>Rekeying (both transmit and receive)</li>
          <li>Handshake state updates</li>
        </ul>
        <t>Additional functions might be needed to configure TLS.</t>
        <section anchor="handshake-complete" numbered="true" toc="default">
          <name>Handshake Complete</name>
          <t>In this document, the TLS handshake is considered complete when the TLS stack
has reported that the handshake is complete.  This happens when the TLS stack
has both sent a Finished message and verified the peer's Finished message.
Verifying the peer's Finished provides the endpoints with an assurance that
previous handshake messages have not been modified.  Note that the handshake
does not complete at both endpoints simultaneously.  Consequently, any
requirement that is based on the completion of the handshake depends on the
perspective of the endpoint in question.</t>
        </section>
        <section anchor="handshake-confirmed" numbered="true" toc="default">
          <name>Handshake Confirmed</name>
          <t>In this document, the TLS handshake is considered confirmed at the server when
the handshake completes.  At the client, the handshake is considered confirmed
when a HANDSHAKE_DONE frame is received.</t>
          <t>A client MAY consider the handshake to be confirmed when it receives an
acknowledgement for a 1-RTT packet.  This can be implemented by recording the
lowest packet number sent with 1-RTT keys, and comparing it to the Largest
Acknowledged field in any received 1-RTT ACK frame: once the latter is greater
than or equal to the former, the handshake is confirmed.</t>
        </section>
        <section anchor="sending-and-receiving-handshake-messages" numbered="true" toc="default">
          <name>Sending and Receiving Handshake Messages</name>
          <t>In order to drive the handshake, TLS depends on being able to send and receive
handshake messages. There are two basic functions on this interface: one where
QUIC requests handshake messages and one where QUIC provides handshake packets.</t>
          <t>Before starting the handshake QUIC provides TLS with the transport parameters
(see <xref target="quic_parameters" format="default"/>) that it wishes to carry.</t>
          <t>A QUIC client starts TLS by requesting TLS handshake bytes from TLS.  The client
acquires handshake bytes before sending its first packet.  A QUIC server starts
the process by providing TLS with the client's handshake bytes.</t>
          <t>At any time, the TLS stack at an endpoint will have a current sending encryption
level and receiving encryption level. Each encryption level is associated with a
different flow of bytes, which is reliably transmitted to the peer in CRYPTO
frames. When TLS provides handshake bytes to be sent, they are appended to the
current flow and any packet that includes the CRYPTO frame is protected using
keys from the corresponding encryption level.</t>
          <t>QUIC takes the unprotected content of TLS handshake records as the content of
CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
CRYPTO frames into QUIC packets, which are protected using QUIC packet
protection.</t>
          <t>QUIC is only capable of conveying TLS handshake records in CRYPTO frames.  TLS
alerts are turned into QUIC CONNECTION_CLOSE error codes; see <xref target="tls-errors" format="default"/>.
TLS application data and other message types cannot be carried by QUIC at any
encryption level and is an error if they are received from the TLS stack.</t>
          <t>When an endpoint receives a QUIC packet containing a CRYPTO frame from the
network, it proceeds as follows:</t>
          <ul spacing="normal">
            <li>If the packet was in the TLS receiving encryption level, sequence the data
into the input flow as usual. As with STREAM frames, the offset is used to
find the proper location in the data sequence.  If the result of this process
is that new data is available, then it is delivered to TLS in order.</li>
            <li>If the packet is from a previously installed encryption level, it MUST not
contain data which extends past the end of previously received data in that
flow. Implementations MUST treat any violations of this requirement as a
connection error of type PROTOCOL_VIOLATION.</li>
            <li>If the packet is from a new encryption level, it is saved for later processing
by TLS.  Once TLS moves to receiving from this encryption level, saved data
can be provided.  When providing data from any new encryption level to TLS, if
there is data from a previous encryption level that TLS has not consumed, this
MUST be treated as a connection error of type PROTOCOL_VIOLATION.</li>
          </ul>
          <t>Each time that TLS is provided with new data, new handshake bytes are requested
from TLS.  TLS might not provide any bytes if the handshake messages it has
received are incomplete or it has no data to send.</t>
          <t>Once the TLS handshake is complete, this is indicated to QUIC along with any
final handshake bytes that TLS needs to send.  TLS also provides QUIC with the
transport parameters that the peer advertised during the handshake.</t>
          <t>Once the handshake is complete, TLS becomes passive.  TLS can still receive data
from its peer and respond in kind, but it will not need to send more data unless
specifically requested - either by an application or QUIC.  One reason to send
data is that the server might wish to provide additional or updated session
tickets to a client.</t>
          <t>When the handshake is complete, QUIC only needs to provide TLS with any data
that arrives in CRYPTO streams.  In the same way that is done during the
handshake, new data is requested from TLS after providing received data.</t>
        </section>
        <section anchor="encryption-level-changes" numbered="true" toc="default">
          <name>Encryption Level Changes</name>
          <t>As keys for new encryption levels become available, TLS provides QUIC with those
keys.  Separately, as keys at a given encryption level become available to TLS,
TLS indicates to QUIC that reading or writing keys at that encryption level are
available.  These events are not asynchronous; they always occur immediately
after TLS is provided with new handshake bytes, or after TLS produces handshake
bytes.</t>
          <t>TLS provides QUIC with three items as a new encryption level becomes available:</t>
          <ul spacing="normal">
            <li>A secret</li>
            <li>An Authenticated Encryption with Associated Data (AEAD) function</li>
            <li>A Key Derivation Function (KDF)</li>
          </ul>
          <t>These values are based on the values that TLS negotiates and are used by QUIC to
generate packet and header protection keys (see <xref target="packet-protection" format="default"/> and
<xref target="header-protect" format="default"/>).</t>
          <t>If 0-RTT is possible, it is ready after the client sends a TLS ClientHello
message or the server receives that message.  After providing a QUIC client with
the first handshake bytes, the TLS stack might signal the change to 0-RTT
keys. On the server, after receiving handshake bytes that contain a ClientHello
message, a TLS server might signal that 0-RTT keys are available.</t>
          <t>Although TLS only uses one encryption level at a time, QUIC may use more than
one level. For instance, after sending its Finished message (using a CRYPTO
frame at the Handshake encryption level) an endpoint can send STREAM data (in
1-RTT encryption). If the Finished message is lost, the endpoint uses the
Handshake encryption level to retransmit the lost message.  Reordering or loss
of packets can mean that QUIC will need to handle packets at multiple encryption
levels.  During the handshake, this means potentially handling packets at higher
and lower encryption levels than the current encryption level used by TLS.</t>
          <t>In particular, server implementations need to be able to read packets at the
Handshake encryption level at the same time as the 0-RTT encryption level.  A
client could interleave ACK frames that are protected with Handshake keys with
0-RTT data and the server needs to process those acknowledgments in order to
detect lost Handshake packets.</t>
          <t>QUIC also needs access to keys that might not ordinarily be available to a TLS
implementation.  For instance, a client might need to acknowledge Handshake
packets before it is ready to send CRYPTO frames at that encryption level.  TLS
therefore needs to provide keys to QUIC before it might produce them for its own
use.</t>
        </section>
        <section anchor="tls-interface-summary" numbered="true" toc="default">
          <name>TLS Interface Summary</name>
          <t><xref target="exchange-summary" format="default"/> summarizes the exchange between QUIC and TLS for both
client and server. Each arrow is tagged with the encryption level used for that
transmission.</t>
          <figure anchor="exchange-summary">
            <name>Interaction Summary between QUIC and TLS</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Client                                                    Server

Get Handshake
                     Initial ------------->
                                              Handshake Received
Install tx 0-RTT Keys
                     0-RTT --------------->
                                                   Get Handshake
                     <------------- Initial
Handshake Received
Install Handshake keys
                                           Install rx 0-RTT keys
                                          Install Handshake keys
                                                   Get Handshake
                     <----------- Handshake
Handshake Received
                                           Install tx 1-RTT keys
                     <--------------- 1-RTT
Get Handshake
Handshake Complete
                     Handshake ----------->
                                              Handshake Received
                                           Install rx 1-RTT keys
                                              Handshake Complete
Install 1-RTT keys
                     1-RTT --------------->
                                                   Get Handshake
                     <--------------- 1-RTT
Handshake Received
]]></artwork>
          </figure>
          <t><xref target="exchange-summary" format="default"/> shows the multiple packets that form a single "flight" of
messages being processed individually, to show what incoming messages trigger
different actions.  New handshake messages are requested after all incoming
packets have been processed.  This process might vary depending on how QUIC
implementations and the packets they receive are structured.</t>
        </section>
      </section>
      <section anchor="tls-version" numbered="true" toc="default">
        <name>TLS Version</name>
        <t>This document describes how TLS 1.3 <xref target="TLS13" format="default"/> is used with QUIC.</t>
        <t>In practice, the TLS handshake will negotiate a version of TLS to use.  This
could result in a newer version of TLS than 1.3 being negotiated if both
endpoints support that version.  This is acceptable provided that the features
of TLS 1.3 that are used by QUIC are supported by the newer version.</t>
        <t>A badly configured TLS implementation could negotiate TLS 1.2 or another older
version of TLS.  An endpoint MUST terminate the connection if a version of TLS
older than 1.3 is negotiated.</t>
      </section>
      <section anchor="clienthello-size" numbered="true" toc="default">
        <name>ClientHello Size</name>
        <t>The first Initial packet from a client contains the start or all of its first
cryptographic handshake message, which for TLS is the ClientHello.  Servers
might need to parse the entire ClientHello (e.g., to access extensions such as
Server Name Identification (SNI) or Application Layer Protocol Negotiation
(ALPN)) in order to decide whether to accept the new incoming QUIC connection.
If the ClientHello spans multiple Initial packets, such servers would need to
buffer the first received fragments, which could consume excessive resources if
the client's address has not yet been validated.  To avoid this, servers MAY
use the Retry feature (see Section 8.1 of <xref target="QUIC-TRANSPORT" format="default"/>) to only buffer
partial ClientHello messages from clients with a validated address.</t>
        <t>QUIC packet and framing add at least 36 bytes of overhead to the ClientHello
message.  That overhead increases if the client chooses a connection ID without
zero length.  Overheads also do not include the token or a connection ID longer
than 8 bytes, both of which might be required if a server sends a Retry packet.</t>
        <t>A typical TLS ClientHello can easily fit into a 1200 byte packet.  However, in
addition to the overheads added by QUIC, there are several variables that could
cause this limit to be exceeded.  Large session tickets, multiple or large key
shares, and long lists of supported ciphers, signature algorithms, versions,
QUIC transport parameters, and other negotiable parameters and extensions could
cause this message to grow.</t>
        <t>For servers, in addition to connection IDs and tokens, the size of TLS session
tickets can have an effect on a client's ability to connect efficiently.
Minimizing the size of these values increases the probability that clients can
use them and still fit their ClientHello message in their first Initial packet.</t>
        <t>The TLS implementation does not need to ensure that the ClientHello is
sufficiently large.  QUIC PADDING frames are added to increase the size of the
packet as necessary.</t>
      </section>
      <section anchor="peer-authentication" numbered="true" toc="default">
        <name>Peer Authentication</name>
        <t>The requirements for authentication depend on the application protocol that is
in use.  TLS provides server authentication and permits the server to request
client authentication.</t>
        <t>A client MUST authenticate the identity of the server.  This typically involves
verification that the identity of the server is included in a certificate and
that the certificate is issued by a trusted entity (see for example
<xref target="RFC2818" format="default"/>).</t>
        <t>A server MAY request that the client authenticate during the handshake. A server
MAY refuse a connection if the client is unable to authenticate when requested.
The requirements for client authentication vary based on application protocol
and deployment.</t>
        <t>A server MUST NOT use post-handshake client authentication (as defined in
Section 4.6.2 of <xref target="TLS13" format="default"/>), because the multiplexing offered by QUIC prevents
clients from correlating the certificate request with the application-level
event that triggered it (see <xref target="HTTP2-TLS13" format="default"/>).
More specifically, servers MUST NOT send post-handshake TLS CertificateRequest
messages and clients MUST treat receipt of such messages as a connection error
of type PROTOCOL_VIOLATION.</t>
      </section>
      <section anchor="enable-0rtt" numbered="true" toc="default">
        <name>Enabling 0-RTT</name>
        <t>To communicate their willingness to process 0-RTT data, servers send a
NewSessionTicket message that contains the "early_data" extension with a
max_early_data_size of 0xffffffff; the amount of data which the client can send
in 0-RTT is controlled by the "initial_max_data" transport parameter supplied
by the server.  Servers MUST NOT send the "early_data" extension with a
max_early_data_size set to any value other than 0xffffffff.  A client MUST
treat receipt of a NewSessionTicket that contains an "early_data" extension
with any other value as a connection error of type PROTOCOL_VIOLATION.</t>
        <t>A client that wishes to send 0-RTT packets uses the "early_data" extension in
the ClientHello message of a subsequent handshake (see Section 4.2.10 of
<xref target="TLS13" format="default"/>). It then sends the application data in 0-RTT packets.</t>
      </section>
      <section anchor="accepting-and-rejecting-0-rtt" numbered="true" toc="default">
        <name>Accepting and Rejecting 0-RTT</name>
        <t>A server accepts 0-RTT by sending an early_data extension in the
EncryptedExtensions (see Section 4.2.10 of <xref target="TLS13" format="default"/>).  The server then
processes and acknowledges the 0-RTT packets that it receives.</t>
        <t>A server rejects 0-RTT by sending the EncryptedExtensions without an early_data
extension.  A server will always reject 0-RTT if it sends a TLS
HelloRetryRequest.  When rejecting 0-RTT, a server MUST NOT process any 0-RTT
packets, even if it could.  When 0-RTT was rejected, a client SHOULD treat
receipt of an acknowledgement for a 0-RTT packet as a connection error of type
PROTOCOL_VIOLATION, if it is able to detect the condition.</t>
        <t>When 0-RTT is rejected, all connection characteristics that the client assumed
might be incorrect.  This includes the choice of application protocol, transport
parameters, and any application configuration.  The client therefore MUST reset
the state of all streams, including application state bound to those streams.</t>
        <t>A client MAY attempt to send 0-RTT again if it receives a Retry or Version
Negotiation packet.  These packets do not signify rejection of 0-RTT.</t>
      </section>
      <section anchor="validating-0-rtt-configuration" numbered="true" toc="default">
        <name>Validating 0-RTT Configuration</name>
        <t>When a server receives a ClientHello with the "early_data" extension, it has to
decide whether to accept or reject early data from the client. Some of this
decision is made by the TLS stack (e.g., checking that the cipher suite being
resumed was included in the ClientHello; see Section 4.2.10 of <xref target="TLS13" format="default"/>). Even
when the TLS stack has no reason to reject early data, the QUIC stack or the
application protocol using QUIC might reject early data because the
configuration of the transport or application associated with the resumed
session is not compatible with the server's current configuration.</t>
        <t>QUIC requires additional transport state to be associated with a 0-RTT session
ticket. One common way to implement this is using stateless session tickets and
storing this state in the session ticket. Application protocols that use QUIC
might have similar requirements regarding associating or storing state. This
associated state is used for deciding whether early data must be rejected. For
example, HTTP/3 (<xref target="QUIC-HTTP" format="default"/>) settings determine how early data from the
client is interpreted. Other applications using QUIC could have different
requirements for determining whether to accept or reject early data.</t>
      </section>
      <section anchor="helloretryrequest" numbered="true" toc="default">
        <name>HelloRetryRequest</name>
        <t>In TLS over TCP, the HelloRetryRequest feature (see Section 4.1.4 of <xref target="TLS13" format="default"/>)
can be used to correct a client's incorrect KeyShare extension as well as for a
stateless round-trip check. From the perspective of QUIC, this just looks like
additional messages carried in the Initial encryption level. Although it is in
principle possible to use this feature for address verification in QUIC, QUIC
implementations SHOULD instead use the Retry feature (see Section 8.1 of
<xref target="QUIC-TRANSPORT" format="default"/>).  HelloRetryRequest is still used to request key shares.</t>
      </section>
      <section anchor="tls-errors" numbered="true" toc="default">
        <name>TLS Errors</name>
        <t>If TLS experiences an error, it generates an appropriate alert as defined in
Section 6 of <xref target="TLS13" format="default"/>.</t>
        <t>A TLS alert is turned into a QUIC connection error by converting the one-byte
alert description into a QUIC error code.  The alert description is added to
0x100 to produce a QUIC error code from the range reserved for CRYPTO_ERROR.
The resulting value is sent in a QUIC CONNECTION_CLOSE frame.</t>
        <t>The alert level of all TLS alerts is "fatal"; a TLS stack MUST NOT generate
alerts at the "warning" level.</t>
      </section>
      <section anchor="discarding-unused-keys" numbered="true" toc="default">
        <name>Discarding Unused Keys</name>
        <t>After QUIC moves to a new encryption level, packet protection keys for previous
encryption levels can be discarded.  This occurs several times during the
handshake, as well as when keys are updated; see <xref target="key-update" format="default"/>.</t>
        <t>Packet protection keys are not discarded immediately when new keys are
available.  If packets from a lower encryption level contain CRYPTO frames,
frames that retransmit that data MUST be sent at the same encryption level.
Similarly, an endpoint generates acknowledgements for packets at the same
encryption level as the packet being acknowledged.  Thus, it is possible that
keys for a lower encryption level are needed for a short time after keys for a
newer encryption level are available.</t>
        <t>An endpoint cannot discard keys for a given encryption level unless it has both
received and acknowledged all CRYPTO frames for that encryption level and when
all CRYPTO frames for that encryption level have been acknowledged by its peer.
However, this does not guarantee that no further packets will need to be
received or sent at that encryption level because a peer might not have received
all the acknowledgements necessary to reach the same state.</t>
        <t>Though an endpoint might retain older keys, new data MUST be sent at the highest
currently-available encryption level.  Only ACK frames and retransmissions of
data in CRYPTO frames are sent at a previous encryption level.  These packets
MAY also include PADDING frames.</t>
        <section anchor="discarding-initial-keys" numbered="true" toc="default">
          <name>Discarding Initial Keys</name>
          <t>Packets protected with Initial secrets (<xref target="initial-secrets" format="default"/>) are not
authenticated, meaning that an attacker could spoof packets with the intent to
disrupt a connection.  To limit these attacks, Initial packet protection keys
can be discarded more aggressively than other keys.</t>
          <t>The successful use of Handshake packets indicates that no more Initial packets
need to be exchanged, as these keys can only be produced after receiving all
CRYPTO frames from Initial packets.  Thus, a client MUST discard Initial keys
when it first sends a Handshake packet and a server MUST discard Initial keys
when it first successfully processes a Handshake packet.  Endpoints MUST NOT
send Initial packets after this point.</t>
          <t>This results in abandoning loss recovery state for the Initial encryption level
and ignoring any outstanding Initial packets.</t>
        </section>
        <section anchor="discarding-handshake-keys" numbered="true" toc="default">
          <name>Discarding Handshake Keys</name>
          <t>An endpoint MUST discard its handshake keys when the TLS handshake is confirmed
(<xref target="handshake-confirmed" format="default"/>).  The server MUST send a HANDSHAKE_DONE frame as soon
as it completes the handshake.</t>
        </section>
        <section anchor="discarding-0-rtt-keys" numbered="true" toc="default">
          <name>Discarding 0-RTT Keys</name>
          <t>0-RTT and 1-RTT packets share the same packet number space, and clients do not
send 0-RTT packets after sending a 1-RTT packet (<xref target="using-early-data" format="default"/>).</t>
          <t>Therefore, a client SHOULD discard 0-RTT keys as soon as it installs 1-RTT
keys, since they have no use after that moment.</t>
          <t>Additionally, a server MAY discard 0-RTT keys as soon as it receives a 1-RTT
packet.  However, due to packet reordering, a 0-RTT packet could arrive after
a 1-RTT packet.  Servers MAY temporarily retain 0-RTT keys to allow decrypting
reordered packets without requiring their contents to be retransmitted with
1-RTT keys.  After receiving a 1-RTT packet, servers MUST discard 0-RTT keys
within a short time; the RECOMMENDED time period is three times the Probe
Timeout (PTO, see <xref target="QUIC-RECOVERY" format="default"/>).  A server MAY discard 0-RTT keys earlier
if it determines that it has received all 0-RTT packets, which can be done by
keeping track of missing packet numbers.</t>
        </section>
      </section>
    </section>
    <section anchor="packet-protection" numbered="true" toc="default">
      <name>Packet Protection</name>
      <t>As with TLS over TCP, QUIC protects packets with keys derived from the TLS
handshake, using the AEAD algorithm negotiated by TLS.</t>
      <section anchor="protection-keys" numbered="true" toc="default">
        <name>Packet Protection Keys</name>
        <t>QUIC derives packet protection keys in the same way that TLS derives record
protection keys.</t>
        <t>Each encryption level has separate secret values for protection of packets sent
in each direction.  These traffic secrets are derived by TLS (see Section 7.1 of
<xref target="TLS13" format="default"/>) and are used by QUIC for all encryption levels except the Initial
encryption level.  The secrets for the Initial encryption level are computed
based on the client's initial Destination Connection ID, as described in
<xref target="initial-secrets" format="default"/>.</t>
        <t>The keys used for packet protection are computed from the TLS secrets using the
KDF provided by TLS.  In TLS 1.3, the HKDF-Expand-Label function described in
Section 7.1 of <xref target="TLS13" format="default"/> is used, using the hash function from the negotiated
cipher suite.  Other versions of TLS MUST provide a similar function in order to
be used with QUIC.</t>
        <t>The current encryption level secret and the label "quic key" are input to the
KDF to produce the AEAD key; the label "quic iv" is used to derive the IV; see
<xref target="aead" format="default"/>.  The header protection key uses the "quic hp" label; see
<xref target="header-protect" format="default"/>.  Using these labels provides key separation between QUIC
and TLS; see <xref target="key-diversity" format="default"/>.</t>
        <t>The KDF used for initial secrets is always the HKDF-Expand-Label function from
TLS 1.3 (see <xref target="initial-secrets" format="default"/>).</t>
      </section>
      <section anchor="initial-secrets" numbered="true" toc="default">
        <name>Initial Secrets</name>
        <t>Initial packets are protected with a secret derived from the Destination
Connection ID field from the client's Initial packet. Specifically:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
initial_salt = 0xc3eef712c72ebb5a11a7d2432bb46365bef9f502
initial_secret = HKDF-Extract(initial_salt,
                              client_dst_connection_id)

client_initial_secret = HKDF-Expand-Label(initial_secret,
                                          "client in", "",
                                          Hash.length)
server_initial_secret = HKDF-Expand-Label(initial_secret,
                                          "server in", "",
                                          Hash.length)
]]></artwork>
        <t>The hash function for HKDF when deriving initial secrets and keys is SHA-256
<xref target="SHA" format="default"/>.</t>
        <t>The connection ID used with HKDF-Expand-Label is the Destination Connection ID
in the Initial packet sent by the client.  This will be a randomly-selected
value unless the client creates the Initial packet after receiving a Retry
packet, where the Destination Connection ID is selected by the server.</t>
        <t>The value of initial_salt is a 20 byte sequence shown in the figure in
hexadecimal notation. Future versions of QUIC SHOULD generate a new salt value,
thus ensuring that the keys are different for each version of QUIC. This
prevents a middlebox that only recognizes one version of QUIC from seeing or
modifying the contents of packets from future versions.</t>
        <t>The HKDF-Expand-Label function defined in TLS 1.3 MUST be used for Initial
packets even where the TLS versions offered do not include TLS 1.3.</t>
        <t>The secrets used for protecting Initial packets change when a server sends a
Retry packet to use the connection ID value selected by the server.  The secrets
do not change when a client changes the Destination Connection ID it uses in
response to an Initial packet from the server.</t>
        <dl newline="false" spacing="normal">
          <dt>Note:</dt>
          <dd>
  The Destination Connection ID is of arbitrary length, and it could be zero
length if the server sends a Retry packet with a zero-length Source Connection
ID field.  In this case, the Initial keys provide no assurance to the client
that the server received its packet; the client has to rely on the exchange
that included the Retry packet for that property.</dd>
        </dl>
        <t><xref target="test-vectors" format="default"/> contains test vectors for packet encryption.</t>
      </section>
      <section anchor="aead" numbered="true" toc="default">
        <name>AEAD Usage</name>
        <t>The Authentication Encryption with Associated Data (AEAD) <xref target="AEAD" format="default"/> function
used for QUIC packet protection is the AEAD that is negotiated for use with the
TLS connection.  For example, if TLS is using the TLS_AES_128_GCM_SHA256, the
AEAD_AES_128_GCM function is used.</t>
        <t>Packets are protected prior to applying header protection (<xref target="header-protect" format="default"/>).
The unprotected packet header is part of the associated data (A).  When removing
packet protection, an endpoint first removes the header protection.</t>
        <t>All QUIC packets other than Version Negotiation and Retry packets are protected
with an AEAD algorithm <xref target="AEAD" format="default"/>. Prior to establishing a shared secret, packets
are protected with AEAD_AES_128_GCM and a key derived from the Destination
Connection ID in the client's first Initial packet (see <xref target="initial-secrets" format="default"/>).
This provides protection against off-path attackers and robustness against QUIC
version unaware middleboxes, but not against on-path attackers.</t>
        <t>QUIC can use any of the ciphersuites defined in <xref target="TLS13" format="default"/> with the exception of
TLS_AES_128_CCM_8_SHA256.  A ciphersuite MUST NOT be negotiated unless a header
protection scheme is defined for the ciphersuite.  This document defines a
header protection scheme for all ciphersuites defined in <xref target="TLS13" format="default"/> aside from
TLS_AES_128_CCM_8_SHA256.  These ciphersuites have a 16-byte authentication tag
and produce an output 16 bytes larger than their input.</t>
        <dl newline="false" spacing="normal">
          <dt>Note:</dt>
          <dd>
  An endpoint MUST NOT reject a ClientHello that offers a ciphersuite that it
does not support, or it would be impossible to deploy a new ciphersuite.  This
also applies to TLS_AES_128_CCM_8_SHA256.</dd>
        </dl>
        <t>The key and IV for the packet are computed as described in <xref target="protection-keys" format="default"/>.
The nonce, N, is formed by combining the packet protection IV with the packet
number.  The 62 bits of the reconstructed QUIC packet number in network byte
order are left-padded with zeros to the size of the IV.  The exclusive OR of the
padded packet number and the IV forms the AEAD nonce.</t>
        <t>The associated data, A, for the AEAD is the contents of the QUIC header,
starting from the flags byte in either the short or long header, up to and
including the unprotected packet number.</t>
        <t>The input plaintext, P, for the AEAD is the payload of the QUIC packet, as
described in <xref target="QUIC-TRANSPORT" format="default"/>.</t>
        <t>The output ciphertext, C, of the AEAD is transmitted in place of P.</t>
        <t>Some AEAD functions have limits for how many packets can be encrypted under the
same key and IV (see for example <xref target="AEBounds" format="default"/>).  This might be lower than the
packet number limit.  An endpoint MUST initiate a key update (<xref target="key-update" format="default"/>)
prior to exceeding any limit set for the AEAD that is in use.</t>
      </section>
      <section anchor="header-protect" numbered="true" toc="default">
        <name>Header Protection</name>
        <t>Parts of QUIC packet headers, in particular the Packet Number field, are
protected using a key that is derived separate to the packet protection key and
IV.  The key derived using the "quic hp" label is used to provide
confidentiality protection for those fields that are not exposed to on-path
elements.</t>
        <t>This protection applies to the least-significant bits of the first byte, plus
the Packet Number field.  The four least-significant bits of the first byte are
protected for packets with long headers; the five least significant bits of the
first byte are protected for packets with short headers.  For both header forms,
this covers the reserved bits and the Packet Number Length field; the Key Phase
bit is also protected for packets with a short header.</t>
        <t>The same header protection key is used for the duration of the connection, with
the value not changing after a key update (see <xref target="key-update" format="default"/>).  This allows
header protection to be used to protect the key phase.</t>
        <t>This process does not apply to Retry or Version Negotiation packets, which do
not contain a protected payload or any of the fields that are protected by this
process.</t>
        <section anchor="header-protection-application" numbered="true" toc="default">
          <name>Header Protection Application</name>
          <t>Header protection is applied after packet protection is applied (see <xref target="aead" format="default"/>).
The ciphertext of the packet is sampled and used as input to an encryption
algorithm.  The algorithm used depends on the negotiated AEAD.</t>
          <t>The output of this algorithm is a 5 byte mask which is applied to the protected
header fields using exclusive OR.  The least significant bits of the first byte
of the packet are masked by the least significant bits of the first mask byte,
and the packet number is masked with the remaining bytes.  Any unused bytes of
mask that might result from a shorter packet number encoding are unused.</t>
          <t><xref target="pseudo-hp" format="default"/> shows a sample algorithm for applying header protection. Removing
header protection only differs in the order in which the packet number length
(pn_length) is determined.</t>
          <figure anchor="pseudo-hp">
            <name>Header Protection Pseudocode</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
mask = header_protection(hp_key, sample)

pn_length = (packet[0] & 0x03) + 1
if (packet[0] & 0x80) == 0x80:
   # Long header: 4 bits masked
   packet[0] ^= mask[0] & 0x0f
else:
   # Short header: 5 bits masked
   packet[0] ^= mask[0] & 0x1f

# pn_offset is the start of the Packet Number field.
packet[pn_offset:pn_offset+pn_length] ^= mask[1:1+pn_length]
]]></artwork>
          </figure>
          <t><xref target="fig-sample" format="default"/> shows the protected fields of long and short headers marked with
an E.  <xref target="fig-sample" format="default"/> also shows the sampled fields.</t>
          <figure anchor="fig-sample">
            <name>Header Protection and Ciphertext Sample</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Long Header:
+-+-+-+-+-+-+-+-+
|1|1|T T|E E E E|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Version -> Length Fields                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

Short Header:
+-+-+-+-+-+-+-+-+
|0|1|S|E E E E E|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|               Destination Connection ID (0/32..144)         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

Common Fields:
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|E E E E E E E E E  Packet Number (8/16/24/32) E E E E E E E E...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   [Protected Payload (8/16/24)]             ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|             Sampled part of Protected Payload (128)         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                 Protected Payload Remainder (*)             ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
          </figure>
          <t>Before a TLS ciphersuite can be used with QUIC, a header protection algorithm
MUST be specified for the AEAD used with that ciphersuite.  This document
defines algorithms for AEAD_AES_128_GCM, AEAD_AES_128_CCM, AEAD_AES_256_GCM
(all AES AEADs are defined in <xref target="AEAD" format="default"/>), and
AEAD_CHACHA20_POLY1305 <xref target="CHACHA" format="default"/>.  Prior to TLS selecting a
ciphersuite, AES header protection is used (<xref target="hp-aes" format="default"/>), matching the
AEAD_AES_128_GCM packet protection.</t>
        </section>
        <section anchor="hp-sample" numbered="true" toc="default">
          <name>Header Protection Sample</name>
          <t>The header protection algorithm uses both the header protection key and a sample
of the ciphertext from the packet Payload field.</t>
          <t>The same number of bytes are always sampled, but an allowance needs to be made
for the endpoint removing protection, which will not know the length of the
Packet Number field.  In sampling the packet ciphertext, the Packet Number field
is assumed to be 4 bytes long (its maximum possible encoded length).</t>
          <t>An endpoint MUST discard packets that are not long enough to contain a complete
sample.</t>
          <t>To ensure that sufficient data is available for sampling, packets are padded so
that the combined lengths of the encoded packet number and protected payload is
at least 4 bytes longer than the sample required for header protection.  The
ciphersuites defined in <xref target="TLS13" format="default"/> - other than TLS_AES_128_CCM_8_SHA256, for
which a header protection scheme is not defined in this document - have 16-byte
expansions and 16-byte header protection samples.  This results in needing at
least 3 bytes of frames in the unprotected payload if the packet number is
encoded on a single byte, or 2 bytes of frames for a 2-byte packet number
encoding.</t>
          <t>The sampled ciphertext for a packet with a short header can be determined by the
following pseudocode:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
sample_offset = 1 + len(connection_id) + 4

sample = packet[sample_offset..sample_offset+sample_length]
]]></artwork>
          <t>For example, for a packet with a short header, an 8 byte connection ID, and
protected with AEAD_AES_128_GCM, the sample takes bytes 13 to 28 inclusive
(using zero-based indexing).</t>
          <t>A packet with a long header is sampled in the same way, noting that multiple
QUIC packets might be included in the same UDP datagram and that each one is
handled separately.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
sample_offset = 7 + len(destination_connection_id) +
                    len(source_connection_id) +
                    len(payload_length) + 4
if packet_type == Initial:
    sample_offset += len(token_length) +
                     len(token)

sample = packet[sample_offset..sample_offset+sample_length]
]]></artwork>
        </section>
        <section anchor="hp-aes" numbered="true" toc="default">
          <name>AES-Based Header Protection</name>
          <t>This section defines the packet protection algorithm for AEAD_AES_128_GCM,
AEAD_AES_128_CCM, and AEAD_AES_256_GCM. AEAD_AES_128_GCM and
AEAD_AES_128_CCM use 128-bit AES <xref target="AES" format="default"/> in
electronic code-book (ECB) mode. AEAD_AES_256_GCM uses
256-bit AES in ECB mode.</t>
          <t>This algorithm samples 16 bytes from the packet ciphertext. This value is used
as the input to AES-ECB.  In pseudocode:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
mask = AES-ECB(hp_key, sample)
]]></artwork>
        </section>
        <section anchor="hp-chacha" numbered="true" toc="default">
          <name>ChaCha20-Based Header Protection</name>
          <t>When AEAD_CHACHA20_POLY1305 is in use, header protection uses the raw ChaCha20
function as defined in Section 2.4 of <xref target="CHACHA" format="default"/>.  This uses a 256-bit key and
16 bytes sampled from the packet protection output.</t>
          <t>The first 4 bytes of the sampled ciphertext are the block counter.  A ChaCha20
implementation could take a 32-bit integer in place of a byte sequence, in
which case the byte sequence is interpreted as a little-endian value.</t>
          <t>The remaining 12 bytes are used as the nonce. A ChaCha20 implementation might
take an array of three 32-bit integers in place of a byte sequence, in which
case the nonce bytes are interpreted as a sequence of 32-bit little-endian
integers.</t>
          <t>The encryption mask is produced by invoking ChaCha20 to protect 5 zero bytes. In
pseudocode:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
counter = sample[0..3]
nonce = sample[4..15]
mask = ChaCha20(hp_key, counter, nonce, {0,0,0,0,0})
]]></artwork>
        </section>
      </section>
      <section anchor="receiving-protected-packets" numbered="true" toc="default">
        <name>Receiving Protected Packets</name>
        <t>Once an endpoint successfully receives a packet with a given packet number, it
MUST discard all packets in the same packet number space with higher packet
numbers if they cannot be successfully unprotected with either the same key, or
- if there is a key update - the next packet protection key (see
<xref target="key-update" format="default"/>).  Similarly, a packet that appears to trigger a key update, but
cannot be unprotected successfully MUST be discarded.</t>
        <t>Failure to unprotect a packet does not necessarily indicate the existence of a
protocol error in a peer or an attack.  The truncated packet number encoding
used in QUIC can cause packet numbers to be decoded incorrectly if they are
delayed significantly.</t>
      </section>
      <section anchor="using-early-data" numbered="true" toc="default">
        <name>Use of 0-RTT Keys</name>
        <t>If 0-RTT keys are available (see <xref target="enable-0rtt" format="default"/>), the lack of replay protection
means that restrictions on their use are necessary to avoid replay attacks on
the protocol.</t>
        <t>A client MUST only use 0-RTT keys to protect data that is idempotent.  A client
MAY wish to apply additional restrictions on what data it sends prior to the
completion of the TLS handshake.  A client otherwise treats 0-RTT keys as
equivalent to 1-RTT keys, except that it MUST NOT send ACKs with 0-RTT keys.</t>
        <t>A client that receives an indication that its 0-RTT data has been accepted by a
server can send 0-RTT data until it receives all of the server's handshake
messages.  A client SHOULD stop sending 0-RTT data if it receives an indication
that 0-RTT data has been rejected.</t>
        <t>A server MUST NOT use 0-RTT keys to protect packets; it uses 1-RTT keys to
protect acknowledgements of 0-RTT packets.  A client MUST NOT attempt to
decrypt 0-RTT packets it receives and instead MUST discard them.</t>
        <t>Once a client has installed 1-RTT keys, it MUST NOT send any more 0-RTT
packets.</t>
        <dl newline="false" spacing="normal">
          <dt>Note:</dt>
          <dd>
  0-RTT data can be acknowledged by the server as it receives it, but any
packets containing acknowledgments of 0-RTT data cannot have packet protection
removed by the client until the TLS handshake is complete.  The 1-RTT keys
necessary to remove packet protection cannot be derived until the client
receives all server handshake messages.</dd>
        </dl>
      </section>
      <section anchor="pre-hs-protected" numbered="true" toc="default">
        <name>Receiving Out-of-Order Protected Frames</name>
        <t>Due to reordering and loss, protected packets might be received by an endpoint
before the final TLS handshake messages are received.  A client will be unable
to decrypt 1-RTT packets from the server, whereas a server will be able to
decrypt 1-RTT packets from the client.  Endpoints in either role MUST NOT
decrypt 1-RTT packets from their peer prior to completing the handshake.</t>
        <t>Even though 1-RTT keys are available to a server after receiving the first
handshake messages from a client, it is missing assurances on the client state:</t>
        <ul spacing="normal">
          <li>The client is not authenticated, unless the server has chosen to use a
pre-shared key and validated the client's pre-shared key binder; see Section
4.2.11 of <xref target="TLS13" format="default"/>.</li>
          <li>The client has not demonstrated liveness, unless a RETRY packet was used.</li>
          <li>Any received 0-RTT data that the server responds to might be due to a replay
attack.</li>
        </ul>
        <t>Therefore, the server's use of 1-RTT keys MUST be limited to sending data before
the handshake is complete.  A server MUST NOT process incoming 1-RTT protected
packets before the TLS handshake is complete.  Because sending acknowledgments
indicates that all frames in a packet have been processed, a server cannot send
acknowledgments for 1-RTT packets until the TLS handshake is complete.  Received
packets protected with 1-RTT keys MAY be stored and later decrypted and used
once the handshake is complete.</t>
        <dl newline="false" spacing="normal">
          <dt>Note:</dt>
          <dd>
  TLS implementations might provide all 1-RTT secrets prior to handshake
completion.  Even where QUIC implementations have 1-RTT read keys, those keys
cannot be used prior to completing the handshake.</dd>
        </dl>
        <t>The requirement for the server to wait for the client Finished message creates
a dependency on that message being delivered.  A client can avoid the
potential for head-of-line blocking that this implies by sending its 1-RTT
packets coalesced with a handshake packet containing a copy of the CRYPTO frame
that carries the Finished message, until one of the handshake packets is
acknowledged.  This enables immediate server processing for those packets.</t>
        <t>A server could receive packets protected with 0-RTT keys prior to receiving a
TLS ClientHello.  The server MAY retain these packets for later decryption in
anticipation of receiving a ClientHello.</t>
      </section>
      <section anchor="retry-integrity" numbered="true" toc="default">
        <name>Retry Packet Integrity</name>
        <t>Retry packets (see the Retry Packet section of <xref target="QUIC-TRANSPORT" format="default"/>) carry a
Retry Integrity Tag that provides two properties: it allows discarding
packets that have accidentally been corrupted by the network, and it diminishes
off-path attackers' ability to send valid Retry packets.</t>
        <t>The Retry Integrity Tag is a 128-bit field that is computed as the output of
AEAD_AES_128_GCM <xref target="AEAD" format="default"/> used with the following inputs:</t>
        <ul spacing="normal">
          <li>The secret key, K, is 128 bits equal to 0x4d32ecdb2a2133c841e4043df27d4430.</li>
          <li>The nonce, N, is 96 bits equal to 0x4d1611d05513a552c587d575.</li>
          <li>The plaintext, P, is empty.</li>
          <li>The associated data, A, is the contents of the Retry Pseudo-Packet, as
illustrated in <xref target="retry-pseudo" format="default"/>:</li>
        </ul>
        <t>The secret key and the nonce are values derived by calling HKDF-Expand-Label
using 0x656e61e336ae9417f7f0edd8d78d461e2aa7084aba7a14c1e9f726d55709169a as the
secret, with labels being "quic key" and "quic iv" (<xref target="protection-keys" format="default"/>).</t>
        <figure anchor="retry-pseudo">
          <name>Retry Pseudo-Packet</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| ODCID Len (8) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|          Original Destination Connection ID (0..160)        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|1|1| 3 | Unused|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Version (32)                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| DCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|               Destination Connection ID (0..160)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| SCID Len (8)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                 Source Connection ID (0..160)               ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Retry Token (*)                      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        </figure>
        <t>The Retry Pseudo-Packet is not sent over the wire. It is computed by taking
the transmitted Retry packet, removing the Retry Integrity Tag and prepending
the two following fields:</t>
        <dl newline="false" spacing="normal">
          <dt>ODCID Len:</dt>
          <dd>
  The ODCID Len contains the length in bytes of the Original Destination
Connection ID field that follows it, encoded as an 8-bit unsigned integer.</dd>
          <dt>Original Destination Connection ID:</dt>
          <dd>
  The Original Destination Connection ID contains the value of the Destination
Connection ID from the Initial packet that this Retry is in response to. The
length of this field is given in ODCID Len. The presence of this field
mitigates an off-path attacker's ability to inject a Retry packet.</dd>
        </dl>
      </section>
    </section>
    <section anchor="key-update" numbered="true" toc="default">
      <name>Key Update</name>
      <t>Once the handshake is confirmed (see <xref target="handshake-confirmed" format="default"/>), an endpoint MAY
initiate a key update.</t>
      <t>The Key Phase bit indicates which packet protection keys are used to protect the
packet.  The Key Phase bit is initially set to 0 for the first set of 1-RTT
packets and toggled to signal each subsequent key update.</t>
      <t>The Key Phase bit allows a recipient to detect a change in keying material
without needing to receive the first packet that triggered the change.  An
endpoint that notices a changed Key Phase bit updates keys and decrypts the
packet that contains the changed value.</t>
      <t>This mechanism replaces the TLS KeyUpdate message.  Endpoints MUST NOT send a
TLS KeyUpdate message.  Endpoints MUST treat the receipt of a TLS KeyUpdate
message as a connection error of type 0x10a, equivalent to a fatal TLS alert of
unexpected_message (see <xref target="tls-errors" format="default"/>).</t>
      <t><xref target="ex-key-update" format="default"/> shows a key update process, where the initial set of keys used
(identified with @M) are replaced by updated keys (identified with @N).  The
value of the Key Phase bit is indicated in brackets [].</t>
      <figure anchor="ex-key-update">
        <name>Key Update</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
   Initiating Peer                    Responding Peer

@M [0] QUIC Packets

... Update to @N
@N [1] QUIC Packets
                      -------->
                                         Update to @N ...
                                      QUIC Packets [1] @N
                      <--------
                                      QUIC Packets [1] @N
                                    containing ACK
                      <--------
... Key Update Permitted

@N [1] QUIC Packets
         containing ACK for @N packets
                      -------->
                                 Key Update Permitted ...
]]></artwork>
      </figure>
      <section anchor="key-update-initiate" numbered="true" toc="default">
        <name>Initiating a Key Update</name>
        <t>Endpoints maintain separate read and write secrets for packet protection.  An
endpoint initiates a key update by updating its packet protection write secret
and using that to protect new packets.  The endpoint creates a new write secret
from the existing write secret as performed in Section 7.2 of <xref target="TLS13" format="default"/>.  This
uses the KDF function provided by TLS with a label of "quic ku".  The
corresponding key and IV are created from that secret as defined in
<xref target="protection-keys" format="default"/>.  The header protection key is not updated.</t>
        <t>For example, to update write keys with TLS 1.3, HKDF-Expand-Label is used as:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
secret_<n+1> = HKDF-Expand-Label(secret_<n>, "quic ku",
                                 "", Hash.length)
]]></artwork>
        <t>The endpoint toggles the value of the Key Phase bit and uses the updated key and
IV to protect all subsequent packets.</t>
        <t>An endpoint MUST NOT initiate a key update prior to having confirmed the
handshake (<xref target="handshake-confirmed" format="default"/>).  An endpoint MUST NOT initiate a subsequent
key update prior unless it has received an acknowledgment for a packet that was
sent protected with keys from the current key phase.  This ensures that keys are
available to both peers before another key update can be initiated.  This can be
implemented by tracking the lowest packet number sent with each key phase, and
the highest acknowledged packet number in the 1-RTT space: once the latter is
higher than or equal to the former, another key update can be initiated.</t>
        <dl newline="false" spacing="normal">
          <dt>Note:</dt>
          <dd>
  Keys of packets other than the 1-RTT packets are never updated; their keys are
derived solely from the TLS handshake state.</dd>
        </dl>
        <t>The endpoint that initiates a key update also updates the keys that it uses for
receiving packets.  These keys will be needed to process packets the peer sends
after updating.</t>
        <t>An endpoint SHOULD retain old keys so that packets sent by its peer prior to
receiving the key update can be processed.  Discarding old keys too early can
cause delayed packets to be discarded.  Discarding packets will be interpreted
as packet loss by the peer and could adversely affect performance.</t>
      </section>
      <section anchor="responding-to-a-key-update" numbered="true" toc="default">
        <name>Responding to a Key Update</name>
        <t>A peer is permitted to initiate a key update after receiving an acknowledgement
of a packet in the current key phase.  An endpoint detects a key update when
processing a packet with a key phase that differs from the value last used to
protect the last packet it sent.  To process this packet, the endpoint uses the
next packet protection key and IV.  See <xref target="receive-key-generation" format="default"/> for
considerations about generating these keys.</t>
        <t>If a packet is successfully processed using the next key and IV, then the peer
has initiated a key update.  The endpoint MUST update its send keys to the
corresponding key phase in response, as described in <xref target="key-update-initiate" format="default"/>.
Sending keys MUST be updated before sending an acknowledgement for the packet
that was received with updated keys.  By acknowledging the packet that triggered
the key update in a packet protected with the updated keys, the endpoint signals
that the key update is complete.</t>
        <t>An endpoint can defer sending the packet or acknowledgement according to its
normal packet sending behaviour; it is not necessary to immediately generate a
packet in response to a key update.  The next packet sent by the endpoint will
use the updated keys.  The next packet that contains an acknowledgement will
cause the key update to be completed.  If an endpoint detects a second update
before it has sent any packets with updated keys containing an
acknowledgement for the packet that initiated the key update, it indicates that
its peer has updated keys twice without awaiting confirmation.  An endpoint MAY
treat consecutive key updates as a connection error of type KEY_UPDATE_ERROR.</t>
        <t>An endpoint that receives an acknowledgement that is carried in a packet
protected with old keys where any acknowledged packet was protected with newer
keys MAY treat that as a connection error of type KEY_UPDATE_ERROR.  This
indicates that a peer has received and acknowledged a packet that initiates a
key update, but has not updated keys in response.</t>
      </section>
      <section anchor="receive-key-generation" numbered="true" toc="default">
        <name>Timing of Receive Key Generation</name>
        <t>Endpoints responding to an apparent key update MUST NOT generate a timing
side-channel signal that might indicate that the Key Phase bit was invalid (see
<xref target="header-protect-analysis" format="default"/>).  Endpoints can use dummy packet protection keys in
place of discarded keys when key updates are not yet permitted.  Using dummy
keys will generate no variation in the timing signal produced by attempting to
remove packet protection, and results in all packets with an invalid Key Phase
bit being rejected.</t>
        <t>The process of creating new packet protection keys for receiving packets could
reveal that a key update has occurred.  An endpoint MAY perform this process as
part of packet processing, but this creates a timing signal that can be used by
an attacker to learn when key updates happen and thus the value of the Key Phase
bit in certain packets.  Endpoints MAY instead defer the creation of the next
set of receive packet protection keys until some time after a key update
completes, up to three times the PTO; see <xref target="old-keys-recv" format="default"/>.</t>
        <t>Once generated, the next set of packet protection keys SHOULD be retained, even
if the packet that was received was subsequently discarded.  Packets containing
apparent key updates are easy to forge and - while the process of key update
does not require significant effort - triggering this process could be used by
an attacker for DoS.</t>
        <t>For this reason, endpoints MUST be able to retain two sets of packet protection
keys for receiving packets: the current and the next.  Retaining the previous
keys in addition to these might improve performance, but this is not essential.</t>
      </section>
      <section anchor="old-keys-send" numbered="true" toc="default">
        <name>Sending with Updated Keys</name>
        <t>An endpoint always sends packets that are protected with the newest keys.  Keys
used for packet protection can be discarded immediately after switching to newer
keys.</t>
        <t>Packets with higher packet numbers MUST be protected with either the same or
newer packet protection keys than packets with lower packet numbers.  An
endpoint that successfully removes protection with old keys when newer keys were
used for packets with lower packet numbers MUST treat this as a connection error
of type KEY_UPDATE_ERROR.</t>
      </section>
      <section anchor="old-keys-recv" numbered="true" toc="default">
        <name>Receiving with Different Keys</name>
        <t>For receiving packets during a key update, packets protected with older keys
might arrive if they were delayed by the network.  Retaining old packet
protection keys allows these packets to be successfully processed.</t>
        <t>As packets protected with keys from the next key phase use the same Key Phase
value as those protected with keys from the previous key phase, it can be
necessary to distinguish between the two.  This can be done using packet
numbers.  A recovered packet number that is lower than any packet number from
the current key phase uses the previous packet protection keys; a recovered
packet number that is higher than any packet number from the current key phase
requires the use of the next packet protection keys.</t>
        <t>Some care is necessary to ensure that any process for selecting between
previous, current, and next packet protection keys does not expose a timing side
channel that might reveal which keys were used to remove packet protection.  See
<xref target="hp-side-channel" format="default"/> for more information.</t>
        <t>Alternatively, endpoints can retain only two sets of packet protection keys,
swapping previous for next after enough time has passed to allow for reordering
in the network.  In this case, the Key Phase bit alone can be used to select
keys.</t>
        <t>An endpoint MAY allow a period of approximately the Probe Timeout (PTO; see
<xref target="QUIC-RECOVERY" format="default"/>) after a key update before it creates the next set of packet
protection keys.  These updated keys MAY replace the previous keys at that time.
With the caveat that PTO is a subjective measure - that is, a peer could have a
different view of the RTT - this time is expected to be long enough that any
reordered packets would be declared lost by a peer even if they were
acknowledged and short enough to allow for subsequent key updates.</t>
        <t>Endpoints need to allow for the possibility that a peer might not be able to
decrypt packets that initiate a key update during the period when it retains old
keys.  Endpoints SHOULD wait three times the PTO before initiating a key update
after receiving an acknowledgment that confirms that the previous key update was
received.  Failing to allow sufficient time could lead to packets being
discarded.</t>
        <t>An endpoint SHOULD retain old read keys for no more than three times the PTO.
After this period, old read keys and their corresponding secrets SHOULD be
discarded.</t>
      </section>
      <section anchor="key-update-frequency" numbered="true" toc="default">
        <name>Key Update Frequency</name>
        <t>Key updates MUST be initiated before usage limits on packet protection keys are
exceeded.  For the cipher suites mentioned in this document, the limits in
Section 5.5 of <xref target="TLS13" format="default"/> apply.  Other cipher suites MUST define usage limits
in order to be used with QUIC.</t>
      </section>
      <section anchor="key-update-error" numbered="true" toc="default">
        <name>Key Update Error Code</name>
        <t>The KEY_UPDATE_ERROR error code (0xE) is used to signal errors related to key
updates.</t>
      </section>
    </section>
    <section anchor="security-of-initial-messages" numbered="true" toc="default">
      <name>Security of Initial Messages</name>
      <t>Initial packets are not protected with a secret key, so they are subject to
potential tampering by an attacker.  QUIC provides protection against attackers
that cannot read packets, but does not attempt to provide additional protection
against attacks where the attacker can observe and inject packets.  Some forms
of tampering - such as modifying the TLS messages themselves - are detectable,
but some - such as modifying ACKs - are not.</t>
      <t>For example, an attacker could inject a packet containing an ACK frame that
makes it appear that a packet had not been received or to create a false
impression of the state of the connection (e.g., by modifying the ACK Delay).
Note that such a packet could cause a legitimate packet to be dropped as a
duplicate.  Implementations SHOULD use caution in relying on any data which is
contained in Initial packets that is not otherwise authenticated.</t>
      <t>It is also possible for the attacker to tamper with data that is carried in
Handshake packets, but because that tampering requires modifying TLS handshake
messages, that tampering will cause the TLS handshake to fail.</t>
    </section>
    <section anchor="quic-specific-additions-to-the-tls-handshake" numbered="true" toc="default">
      <name>QUIC-Specific Additions to the TLS Handshake</name>
      <t>QUIC uses the TLS handshake for more than just negotiation of cryptographic
parameters.  The TLS handshake provides preliminary values for QUIC transport
parameters and allows a server to perform return routability checks on clients.</t>
      <section anchor="protocol-negotiation" numbered="true" toc="default">
        <name>Protocol Negotiation</name>
        <t>QUIC requires that the cryptographic handshake provide authenticated protocol
negotiation.  TLS uses Application Layer Protocol Negotiation (ALPN)
<xref target="ALPN" format="default"/> to select an application protocol.  Unless another mechanism
is used for agreeing on an application protocol, endpoints MUST use ALPN for
this purpose.  When using ALPN, endpoints MUST immediately close a connection
(see Section 10.3 in <xref target="QUIC-TRANSPORT" format="default"/>) if an application protocol is not
negotiated with a no_application_protocol TLS alert (QUIC error code 0x178, see
<xref target="tls-errors" format="default"/>).  While <xref target="ALPN" format="default"/> only specifies that servers use this alert,
QUIC clients MUST also use it to terminate a connection when ALPN negotiation
fails.</t>
        <t>An application protocol MAY restrict the QUIC versions that it can operate over.
Servers MUST select an application protocol compatible with the QUIC version
that the client has selected.  The server MUST treat the inability to select a
compatible application protocol as a connection error of type 0x178
(no_application_protocol).  Similarly, a client MUST treat the selection of an
incompatible application protocol by a server as a connection error of type
0x178.</t>
      </section>
      <section anchor="quic_parameters" numbered="true" toc="default">
        <name>QUIC Transport Parameters Extension</name>
        <t>QUIC transport parameters are carried in a TLS extension. Different versions of
QUIC might define a different method for negotiating transport configuration.</t>
        <t>Including transport parameters in the TLS handshake provides integrity
protection for these values.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
   enum {
      quic_transport_parameters(0xffa5), (65535)
   } ExtensionType;
]]></artwork>
        <t>The <tt>extension_data</tt> field of the quic_transport_parameters extension contains a
value that is defined by the version of QUIC that is in use.</t>
        <t>The quic_transport_parameters extension is carried in the ClientHello and the
EncryptedExtensions messages during the handshake. Endpoints MUST send the
quic_transport_parameters extension; endpoints that receive ClientHello or
EncryptedExtensions messages without the quic_transport_parameters extension
MUST close the connection with an error of type 0x16d (equivalent to a fatal TLS
missing_extension alert, see <xref target="tls-errors" format="default"/>).</t>
        <t>While the transport parameters are technically available prior to the completion
of the handshake, they cannot be fully trusted until the handshake completes,
and reliance on them should be minimized.  However, any tampering with the
parameters will cause the handshake to fail.</t>
        <t>Endpoints MUST NOT send this extension in a TLS connection that does not use
QUIC (such as the use of TLS with TCP defined in <xref target="TLS13" format="default"/>).  A fatal
unsupported_extension alert MUST be sent by an implementation that supports this
extension if the extension is received when the transport is not QUIC.</t>
      </section>
      <section anchor="remove-eoed" numbered="true" toc="default">
        <name>Removing the EndOfEarlyData Message</name>
        <t>The TLS EndOfEarlyData message is not used with QUIC.  QUIC does not rely on
this message to mark the end of 0-RTT data or to signal the change to Handshake
keys.</t>
        <t>Clients MUST NOT send the EndOfEarlyData message.  A server MUST treat receipt
of a CRYPTO frame in a 0-RTT packet as a connection error of type
PROTOCOL_VIOLATION.</t>
        <t>As a result, EndOfEarlyData does not appear in the TLS handshake transcript.</t>
      </section>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>There are likely to be some real clangers here eventually, but the current set
of issues is well captured in the relevant sections of the main text.</t>
      <t>Never assume that because it isn't in the security considerations section it
doesn't affect security.  Most of this document does.</t>
      <section anchor="replay-attacks-with-0-rtt" numbered="true" toc="default">
        <name>Replay Attacks with 0-RTT</name>
        <t>As described in Section 8 of <xref target="TLS13" format="default"/>, use of TLS early data comes with an
exposure to replay attack.  The use of 0-RTT in QUIC is similarly vulnerable to
replay attack.</t>
        <t>Endpoints MUST implement and use the replay protections described in <xref target="TLS13" format="default"/>,
however it is recognized that these protections are imperfect.  Therefore,
additional consideration of the risk of replay is needed.</t>
        <t>QUIC is not vulnerable to replay attack, except via the application protocol
information it might carry.  The management of QUIC protocol state based on the
frame types defined in <xref target="QUIC-TRANSPORT" format="default"/> is not vulnerable to replay.
Processing of QUIC frames is idempotent and cannot result in invalid connection
states if frames are replayed, reordered or lost.  QUIC connections do not
produce effects that last beyond the lifetime of the connection, except for
those produced by the application protocol that QUIC serves.</t>
        <dl newline="false" spacing="normal">
          <dt>Note:</dt>
          <dd>
  TLS session tickets and address validation tokens are used to carry QUIC
configuration information between connections.  These MUST NOT be used to
carry application semantics.  The potential for reuse of these tokens means
that they require stronger protections against replay.</dd>
        </dl>
        <t>A server that accepts 0-RTT on a connection incurs a higher cost than accepting
a connection without 0-RTT.  This includes higher processing and computation
costs.  Servers need to consider the probability of replay and all associated
costs when accepting 0-RTT.</t>
        <t>Ultimately, the responsibility for managing the risks of replay attacks with
0-RTT lies with an application protocol.  An application protocol that uses QUIC
MUST describe how the protocol uses 0-RTT and the measures that are employed to
protect against replay attack.  An analysis of replay risk needs to consider
all QUIC protocol features that carry application semantics.</t>
        <t>Disabling 0-RTT entirely is the most effective defense against replay attack.</t>
        <t>QUIC extensions MUST describe how replay attacks affect their operation, or
prohibit their use in 0-RTT.  Application protocols MUST either prohibit the use
of extensions that carry application semantics in 0-RTT or provide replay
mitigation strategies.</t>
      </section>
      <section anchor="reflection" numbered="true" toc="default">
        <name>Packet Reflection Attack Mitigation</name>
        <t>A small ClientHello that results in a large block of handshake messages from a
server can be used in packet reflection attacks to amplify the traffic generated
by an attacker.</t>
        <t>QUIC includes three defenses against this attack. First, the packet containing a
ClientHello MUST be padded to a minimum size. Second, if responding to an
unverified source address, the server is forbidden to send more than three UDP
datagrams in its first flight (see Section 8.1 of <xref target="QUIC-TRANSPORT" format="default"/>). Finally,
because acknowledgements of Handshake packets are authenticated, a blind
attacker cannot forge them.  Put together, these defenses limit the level of
amplification.</t>
      </section>
      <section anchor="header-protect-analysis" numbered="true" toc="default">
        <name>Header Protection Analysis</name>
        <t><xref target="NAN" format="default"/> analyzes authenticated encryption
algorithms which provide nonce privacy, referred to as "Hide Nonce" (HN)
transforms. The general header protection construction in this document is
one of those algorithms (HN1). Header protection uses the output of the packet
protection AEAD to derive <tt>sample</tt>, and then encrypts the header field using
a pseudorandom function (PRF) as follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
protected_field = field XOR PRF(hp_key, sample)
]]></artwork>
        <t>The header protection variants in this document use a pseudorandom permutation
(PRP) in place of a generic PRF. However, since all PRPs are also PRFs <xref target="IMC" format="default"/>,
these variants do not deviate from the HN1 construction.</t>
        <t>As <tt>hp_key</tt> is distinct from the packet protection key, it follows that header
protection achieves AE2 security as defined in <xref target="NAN" format="default"/> and therefore guarantees
privacy of <tt>field</tt>, the protected packet header. Future header protection
variants based on this construction MUST use a PRF to ensure equivalent
security guarantees.</t>
        <t>Use of the same key and ciphertext sample more than once risks compromising
header protection. Protecting two different headers with the same key and
ciphertext sample reveals the exclusive OR of the protected fields.  Assuming
that the AEAD acts as a PRF, if L bits are sampled, the odds of two ciphertext
samples being identical approach 2^(-L/2), that is, the birthday bound. For the
algorithms described in this document, that probability is one in 2^64.</t>
        <dl newline="false" spacing="normal">
          <dt>Note:</dt>
          <dd>
  In some cases, inputs shorter than the full size required by the packet
protection algorithm might be used.</dd>
        </dl>
        <t>To prevent an attacker from modifying packet headers, the header is transitively
authenticated using packet protection; the entire packet header is part of the
authenticated additional data.  Protected fields that are falsified or modified
can only be detected once the packet protection is removed.</t>
      </section>
      <section anchor="hp-side-channel" numbered="true" toc="default">
        <name>Header Protection Timing Side-Channels</name>
        <t>An attacker could guess values for packet numbers or Key Phase and have an
endpoint confirm guesses through timing side channels.  Similarly, guesses for
the packet number length can be trialed and exposed.  If the recipient of a
packet discards packets with duplicate packet numbers without attempting to
remove packet protection they could reveal through timing side-channels that the
packet number matches a received packet.  For authentication to be free from
side-channels, the entire process of header protection removal, packet number
recovery, and packet protection removal MUST be applied together without timing
and other side-channels.</t>
        <t>For the sending of packets, construction and protection of packet payloads and
packet numbers MUST be free from side-channels that would reveal the packet
number or its encoded size.</t>
        <t>During a key update, the time taken to generate new keys could reveal through
timing side-channels that a key update has occurred.  Alternatively, where an
attacker injects packets this side-channel could reveal the value of the Key
Phase on injected packets.  After receiving a key update, an endpoint SHOULD
generate and save the next set of receive packet protection keys, as described
in <xref target="receive-key-generation" format="default"/>.  By generating new keys before a key update is
received, receipt of packets will not create timing signals that leak the value
of the Key Phase.</t>
        <t>This depends on not doing this key generation during packet processing and it
can require that endpoints maintain three sets of packet protection keys for
receiving: for the previous key phase, for the current key phase, and for the
next key phase.  Endpoints can instead choose to defer generation of the next
receive packet protection keys until they discard old keys so that only two sets
of receive keys need to be retained at any point in time.</t>
      </section>
      <section anchor="key-diversity" numbered="true" toc="default">
        <name>Key Diversity</name>
        <t>In using TLS, the central key schedule of TLS is used.  As a result of the TLS
handshake messages being integrated into the calculation of secrets, the
inclusion of the QUIC transport parameters extension ensures that handshake and
1-RTT keys are not the same as those that might be produced by a server running
TLS over TCP.  To avoid the possibility of cross-protocol key synchronization,
additional measures are provided to improve key separation.</t>
        <t>The QUIC packet protection keys and IVs are derived using a different label than
the equivalent keys in TLS.</t>
        <t>To preserve this separation, a new version of QUIC SHOULD define new labels for
key derivation for packet protection key and IV, plus the header protection
keys.  This version of QUIC uses the string "quic".  Other versions can use a
version-specific label in place of that string.</t>
        <t>The initial secrets use a key that is specific to the negotiated QUIC version.
New QUIC versions SHOULD define a new salt value used in calculating initial
secrets.</t>
      </section>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>This document does not create any new IANA registries, but it registers the
values in the following registries:</t>
      <ul spacing="normal">
        <li>TLS ExtensionType Values Registry <xref target="TLS-REGISTRIES" format="default"/> - IANA is to
register the quic_transport_parameters extension found in <xref target="quic_parameters" format="default"/>.
The Recommended column is to be marked Yes.  The TLS 1.3 Column is to include
CH and EE.</li>
        <li>QUIC Transport Error Codes Registry <xref target="QUIC-TRANSPORT" format="default"/> - IANA is to register
the KEY_UPDATE_ERROR (0xE), as described in <xref target="key-update-error" format="default"/>.</li>
      </ul>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="QUIC-TRANSPORT">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-26"/>
            <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
              <organization>Fastly</organization>
            </author>
            <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
              <organization>Mozilla</organization>
            </author>
            <date year="2020" month="February" day="21"/>
          </front>
        </reference>
        <reference anchor="QUIC-RECOVERY">
          <front>
            <title>QUIC Loss Detection and Congestion Control</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-quic-recovery-26"/>
            <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
              <organization>Fastly</organization>
            </author>
            <author initials="I." surname="Swett" fullname="Ian Swett" role="editor">
              <organization>Google</organization>
            </author>
            <date year="2020" month="February" day="21"/>
          </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="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="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="SHA">
          <front>
            <title>Secure Hash Standard</title>
            <seriesInfo name="DOI" value="10.6028/nist.fips.180-4"/>
            <seriesInfo name="National Institute of Standards and Technology" value="report"/>
            <author initials="Q." surname="Dang" fullname="Quynh H. Dang">
              <organization/>
            </author>
            <date year="2015" month="July"/>
          </front>
        </reference>
        <reference anchor="AEAD" target="https://www.rfc-editor.org/info/rfc5116">
          <front>
            <title>An Interface and Algorithms for Authenticated Encryption</title>
            <seriesInfo name="DOI" value="10.17487/RFC5116"/>
            <seriesInfo name="RFC" value="5116"/>
            <author initials="D." surname="McGrew" fullname="D. McGrew">
              <organization/>
            </author>
            <date year="2008" month="January"/>
            <abstract>
              <t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms.  The interface and registry can be used as an application-independent set of cryptoalgorithm suites.  This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </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>
        <reference anchor="AES">
          <front>
            <title>Advanced encryption standard (AES)</title>
            <seriesInfo name="DOI" value="10.6028/nist.fips.197"/>
            <seriesInfo name="National Institute of Standards and Technology" value="report"/>
            <author>
              <organization/>
            </author>
            <date year="2001" month="November"/>
          </front>
        </reference>
        <reference anchor="ALPN" target="https://www.rfc-editor.org/info/rfc7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <seriesInfo name="DOI" value="10.17487/RFC7301"/>
            <seriesInfo name="RFC" value="7301"/>
            <author initials="S." surname="Friedl" fullname="S. Friedl">
              <organization/>
            </author>
            <author initials="A." surname="Popov" fullname="A. Popov">
              <organization/>
            </author>
            <author initials="A." surname="Langley" fullname="A. Langley">
              <organization/>
            </author>
            <author initials="E." surname="Stephan" fullname="E. Stephan">
              <organization/>
            </author>
            <date year="2014" month="July"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="TLS-REGISTRIES" target="https://www.rfc-editor.org/info/rfc8447">
          <front>
            <title>IANA Registry Updates for TLS and DTLS</title>
            <seriesInfo name="DOI" value="10.17487/RFC8447"/>
            <seriesInfo name="RFC" value="8447"/>
            <author initials="J." surname="Salowey" fullname="J. Salowey">
              <organization/>
            </author>
            <author initials="S." surname="Turner" fullname="S. Turner">
              <organization/>
            </author>
            <date year="2018" month="August"/>
            <abstract>
              <t>This document describes a number of changes to TLS and DTLS IANA registries that range from adding notes to the registry all the way to changing the registration policy.  These changes were mostly motivated by WG review of the TLS- and DTLS-related registries undertaken as part of the TLS 1.3 development process.</t>
              <t>This document updates the following RFCs: 3749, 5077, 4680, 5246, 5705, 5878, 6520, and 7301.</t>
            </abstract>
          </front>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="AEBounds" target="http://www.isg.rhul.ac.uk/~kp/TLS-AEbounds.pdf">
          <front>
            <title>Limits on Authenticated Encryption Use in TLS</title>
            <author initials="A." surname="Luykx">
              <organization/>
            </author>
            <author initials="K." surname="Paterson">
              <organization/>
            </author>
            <date year="2016" month="March" day="08"/>
          </front>
        </reference>
        <reference anchor="IMC">
          <front>
            <title>Introduction to Modern Cryptography, Second Edition</title>
            <seriesInfo name="ISBN" value="978-1466570269"/>
            <author initials="J." surname="Katz">
              <organization/>
            </author>
            <author initials="Y." surname="Lindell">
              <organization/>
            </author>
            <date year="2014" month="November" day="06"/>
          </front>
        </reference>
        <reference anchor="QUIC-HTTP">
          <front>
            <title>Hypertext Transfer Protocol Version 3 (HTTP/3)</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-26"/>
            <author initials="M." surname="Bishop" fullname="Mike Bishop" role="editor">
              <organization>Akamai Technologies</organization>
            </author>
            <date year="2020" month="February" day="21"/>
          </front>
        </reference>
        <reference anchor="RFC5280" target="https://www.rfc-editor.org/info/rfc5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <seriesInfo name="DOI" value="10.17487/RFC5280"/>
            <seriesInfo name="RFC" value="5280"/>
            <author initials="D." surname="Cooper" fullname="D. Cooper">
              <organization/>
            </author>
            <author initials="S." surname="Santesson" fullname="S. Santesson">
              <organization/>
            </author>
            <author initials="S." surname="Farrell" fullname="S. Farrell">
              <organization/>
            </author>
            <author initials="S." surname="Boeyen" fullname="S. Boeyen">
              <organization/>
            </author>
            <author initials="R." surname="Housley" fullname="R. Housley">
              <organization/>
            </author>
            <author initials="W." surname="Polk" fullname="W. Polk">
              <organization/>
            </author>
            <date year="2008" month="May"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC2818" target="https://www.rfc-editor.org/info/rfc2818">
          <front>
            <title>HTTP Over TLS</title>
            <seriesInfo name="DOI" value="10.17487/RFC2818"/>
            <seriesInfo name="RFC" value="2818"/>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2000" month="May"/>
            <abstract>
              <t>This memo describes how to use Transport Layer Security (TLS) to secure Hypertext Transfer Protocol (HTTP) connections over the Internet.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="HTTP2-TLS13" target="http://www.ietf.org/internet-drafts/draft-ietf-httpbis-http2-tls13-03.txt">
          <front>
            <title>Using TLS 1.3 with HTTP/2</title>
            <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-http2-tls13-03"/>
            <author initials="D" surname="Benjamin" fullname="David Benjamin">
              <organization/>
            </author>
            <date month="October" day="17" year="2019"/>
            <abstract>
              <t>This document updates RFC 7540 by forbidding TLS 1.3 post-handshake authentication, as an analog to the existing TLS 1.2 renegotiation restriction.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="NAN">
          <front>
            <title>Nonces Are Noticed: AEAD Revisited</title>
            <seriesInfo name="DOI" value="10.1007/978-3-030-26948-7_9"/>
            <seriesInfo name="Advances in Cryptology - CRYPTO 2019" value="pp. 235-265"/>
            <author initials="M." surname="Bellare" fullname="Mihir Bellare">
              <organization/>
            </author>
            <author initials="R." surname="Ng" fullname="Ruth Ng">
              <organization/>
            </author>
            <author initials="B." surname="Tackmann" fullname="Björn Tackmann">
              <organization/>
            </author>
            <date year="2019"/>
          </front>
        </reference>
      </references>
    </references>
    <section anchor="test-vectors" numbered="true" toc="default">
      <name>Sample Packet Protection</name>
      <t>This section shows examples of packet protection so that implementations can be
verified incrementally. Samples of Initial packets from both client and server,
plus a Retry packet are defined. These packets use an 8-byte client-chosen
Destination Connection ID of 0x8394c8f03e515708. Some intermediate values are
included. All values are shown in hexadecimal.</t>
      <section anchor="keys" numbered="true" toc="default">
        <name>Keys</name>
        <t>The labels generated by the HKDF-Expand-Label function are:</t>
        <dl newline="false" spacing="normal">
          <dt>client in:</dt>
          <dd>
  00200f746c73313320636c69656e7420696e00</dd>
          <dt>server in:</dt>
          <dd>
  00200f746c7331332073657276657220696e00</dd>
          <dt>quic key:</dt>
          <dd>
  00100e746c7331332071756963206b657900</dd>
          <dt>quic iv:</dt>
          <dd>
  000c0d746c733133207175696320697600</dd>
          <dt>quic hp:</dt>
          <dd>
  00100d746c733133207175696320687000</dd>
        </dl>
        <t>The initial secret is common:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
initial_secret = HKDF-Extract(initial_salt, cid)
    = 524e374c6da8cf8b496f4bcb69678350
      7aafee6198b202b4bc823ebf7514a423
]]></artwork>
        <t>The secrets for protecting client packets are:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
client_initial_secret
    = HKDF-Expand-Label(initial_secret, "client in", _, 32)
    = fda3953aecc040e48b34e27ef87de3a6
      098ecf0e38b7e032c5c57bcbd5975b84

key = HKDF-Expand-Label(client_initial_secret, "quic key", _, 16)
    = af7fd7efebd21878ff66811248983694

iv  = HKDF-Expand-Label(client_initial_secret, "quic iv", _, 12)
    = 8681359410a70bb9c92f0420

hp  = HKDF-Expand-Label(client_initial_secret, "quic hp", _, 16)
    = a980b8b4fb7d9fbc13e814c23164253d
]]></artwork>
        <t>The secrets for protecting server packets are:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
server_initial_secret
    = HKDF-Expand-Label(initial_secret, "server in", _, 32)
    = 554366b81912ff90be41f17e80222130
      90ab17d8149179bcadf222f29ff2ddd5

key = HKDF-Expand-Label(server_initial_secret, "quic key", _, 16)
    = 5d51da9ee897a21b2659ccc7e5bfa577

iv  = HKDF-Expand-Label(server_initial_secret, "quic iv", _, 12)
    = 5e5ae651fd1e8495af13508b

hp  = HKDF-Expand-Label(server_initial_secret, "quic hp", _, 16)
    = a8ed82e6664f865aedf6106943f95fb8
]]></artwork>
      </section>
      <section anchor="sample-client-initial" numbered="true" toc="default">
        <name>Client Initial</name>
        <t>The client sends an Initial packet.  The unprotected payload of this packet
contains the following CRYPTO frame, plus enough PADDING frames to make a 1162
byte payload:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
060040c4010000c003036660261ff947 cea49cce6cfad687f457cf1b14531ba1
4131a0e8f309a1d0b9c4000006130113 031302010000910000000b0009000006
736572766572ff01000100000a001400 12001d00170018001901000101010201
03010400230000003300260024001d00 204cfdfcd178b784bf328cae793b136f
2aedce005ff183d7bb14952072366470 37002b0003020304000d0020001e0403
05030603020308040805080604010501 060102010402050206020202002d0002
0101001c00024001
]]></artwork>
        <t>The unprotected header includes the connection ID and a 4 byte packet number
encoding for a packet number of 2:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
c3ff000019088394c8f03e5157080000449e00000002
]]></artwork>
        <t>Protecting the payload produces output that is sampled for header protection.
Because the header uses a 4 byte packet number encoding, the first 16 bytes of
the protected payload is sampled, then applied to the header:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
sample = 535064a4268a0d9d7b1c9d250ae35516

mask = AES-ECB(hp, sample)[0..4]
     = 833b343aaa

header[0] ^= mask[0] & 0x0f
     = c0
header[18..21] ^= mask[1..4]
     = 3b343aa8
header = c0ff000019088394c8f03e5157080000449e3b343aa8
]]></artwork>
        <t>The resulting protected packet is:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
c0ff000019088394c8f03e5157080000 449e3b343aa8535064a4268a0d9d7b1c
9d250ae355162276e9b1e3011ef6bbc0 ab48ad5bcc2681e953857ca62becd752
4daac473e68d7405fbba4e9ee616c870 38bdbe908c06d9605d9ac49030359eec
b1d05a14e117db8cede2bb09d0dbbfee 271cb374d8f10abec82d0f59a1dee29f
e95638ed8dd41da07487468791b719c5 5c46968eb3b54680037102a28e53dc1d
12903db0af5821794b41c4a93357fa59 ce69cfe7f6bdfa629eef78616447e1d6
11c4baf71bf33febcb03137c2c75d253 17d3e13b684370f668411c0f00304b50
1c8fd422bd9b9ad81d643b20da89ca05 25d24d2b142041cae0af205092e43008
0cd8559ea4c5c6e4fa3f66082b7d303e 52ce0162baa958532b0bbc2bc785681f
cf37485dff6595e01e739c8ac9efba31 b985d5f656cc092432d781db95221724
87641c4d3ab8ece01e39bc85b1543661 4775a98ba8fa12d46f9b35e2a55eb72d
7f85181a366663387ddc20551807e007 673bd7e26bf9b29b5ab10a1ca87cbb7a
d97e99eb66959c2a9bc3cbde4707ff77 20b110fa95354674e395812e47a0ae53
b464dcb2d1f345df360dc227270c7506 76f6724eb479f0d2fbb6124429990457
ac6c9167f40aab739998f38b9eccb24f d47c8410131bf65a52af841275d5b3d1
880b197df2b5dea3e6de56ebce3ffb6e 9277a82082f8d9677a6767089b671ebd
244c214f0bde95c2beb02cd1172d58bd f39dce56ff68eb35ab39b49b4eac7c81
5ea60451d6e6ab82119118df02a58684 4a9ffe162ba006d0669ef57668cab38b
62f71a2523a084852cd1d079b3658dc2 f3e87949b550bab3e177cfc49ed190df
f0630e43077c30de8f6ae081537f1e83 da537da980afa668e7b7fb25301cf741
524be3c49884b42821f17552fbd1931a 813017b6b6590a41ea18b6ba49cd48a4
40bd9a3346a7623fb4ba34a3ee571e3c 731f35a7a3cf25b551a680fa68763507
b7fde3aaf023c50b9d22da6876ba337e b5e9dd9ec3daf970242b6c5aab3aa4b2
96ad8b9f6832f686ef70fa938b31b4e5 ddd7364442d3ea72e73d668fb0937796
f462923a81a47e1cee7426ff6d922126 9b5a62ec03d6ec94d12606cb485560ba
b574816009e96504249385bb61a819be 04f62c2066214d8360a2022beb316240
b6c7d78bbe56c13082e0ca272661210a bf020bf3b5783f1426436cf9ff418405
93a5d0638d32fc51c5c65ff291a3a7a5 2fd6775e623a4439cc08dd25582febc9
44ef92d8dbd329c91de3e9c9582e41f1 7f3d186f104ad3f90995116c682a2a14
a3b4b1f547c335f0be710fc9fc03e0e5 87b8cda31ce65b969878a4ad4283e6d5
b0373f43da86e9e0ffe1ae0fddd35162 55bd74566f36a38703d5f34249ded1f6
6b3d9b45b9af2ccfefe984e13376b1b2 c6404aa48c8026132343da3f3a33659e
c1b3e95080540b28b7f3fcd35fa5d843 b579a84c089121a60d8c1754915c344e
eaf45a9bf27dc0c1e784161691220913 13eb0e87555abd706626e557fc36a04f
cd191a58829104d6075c5594f627ca50 6bf181daec940f4a4f3af0074eee89da
acde6758312622d4fa675b39f728e062 d2bee680d8f41a597c262648bb18bcfc
13c8b3d97b1a77b2ac3af745d61a34cc 4709865bac824a94bb19058015e4e42d
aebe13f98ec51170a4aad0a8324bb768
]]></artwork>
      </section>
      <section anchor="server-initial" numbered="true" toc="default">
        <name>Server Initial</name>
        <t>The server sends the following payload in response, including an ACK frame, a
CRYPTO frame, and no PADDING frames:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
0d0000000018410a020000560303eefc e7f7b37ba1d1632e96677825ddf73988
cfc79825df566dc5430b9a045a120013 0100002e00330024001d00209d3c940d
89690b84d08a60993c144eca684d1081 287c834d5311bcf32bb9da1a002b0002
0304
]]></artwork>
        <t>The header from the server includes a new connection ID and a 2-byte packet
number encoding for a packet number of 1:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
c1ff0000190008f067a5502a4262b50040740001
]]></artwork>
        <t>As a result, after protection, the header protection sample is taken starting
from the third protected octet:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
sample = 7002596f99ae67abf65a5852f54f58c3
mask   = 38168a0c25
header = c9ff0000190008f067a5502a4262b5004074168b
]]></artwork>
        <t>The final protected packet is then:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
c9ff0000190008f067a5502a4262b500 4074168bf22b7002596f99ae67abf65a
5852f54f58c37c808682e2e40492d8a3 899fb04fc0afe9aabc8767b18a0aa493
537426373b48d502214dd856d63b78ce e37bc664b3fe86d487ac7a77c53038a3
cd32f0b5004d9f5754c4f7f2d1f35cf3 f7116351c92b99c8ae5833225cb51855
20d61e68cf5f
]]></artwork>
      </section>
      <section anchor="retry" numbered="true" toc="default">
        <name>Retry</name>
        <t>This shows a Retry packet that might be sent in response to the Initial packet
in <xref target="sample-client-initial" format="default"/>. The integrity check includes the client-chosen
connection ID value of 0x8394c8f03e515708, but that value is not
included in the final Retry packet:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
ffff0000190008f067a5502a4262b574 6f6b656e1e5ec5b014cbb1f0fd93df40
48c446a6
]]></artwork>
      </section>
    </section>
    <section anchor="change-log" numbered="true" toc="default">
      <name>Change Log</name>
      <ul empty="true" spacing="normal">
        <li>
          <strong>RFC Editor's Note:</strong> Please remove this section prior to publication of a
final version of this document.</li>
      </ul>
      <t>Issue and pull request numbers are listed with a leading octothorp.</t>
      <section anchor="since-draft-ietf-quic-tls-25" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-25</name>
        <ul spacing="normal">
          <li>No changes</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-24" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-24</name>
        <ul spacing="normal">
          <li>
            <t>Rewrite key updates (#3050)
            </t>
            <ul spacing="normal">
              <li>Allow but don't recommend deferring key updates (#2792, #3263)</li>
              <li>More completely define received behavior (#2791)</li>
              <li>Define the label used with HKDF-Expand-Label (#3054)</li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-23" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-23</name>
        <ul spacing="normal">
          <li>
            <t>Key update text update (#3050):
            </t>
            <ul spacing="normal">
              <li>Recommend constant-time key replacement (#2792)</li>
              <li>Provide explicit labels for key update key derivation (#3054)</li>
            </ul>
          </li>
          <li>Allow first Initial from a client to span multiple packets (#2928, #3045)</li>
          <li>PING can be sent at any encryption level (#3034, #3035)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-22" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-22</name>
        <ul spacing="normal">
          <li>Update the salt used for Initial secrets (#2887, #2980)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-21" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-21</name>
        <ul spacing="normal">
          <li>No changes</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-20" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-20</name>
        <ul spacing="normal">
          <li>Mandate the use of the QUIC transport parameters extension (#2528, #2560)</li>
          <li>Define handshake completion and confirmation; define clearer rules when it
encryption keys should be discarded (#2214, #2267, #2673)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-18" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-18</name>
        <ul spacing="normal">
          <li>Increased the set of permissible frames in 0-RTT (#2344, #2355)</li>
          <li>Transport parameter extension is mandatory (#2528, #2560)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-17" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-17</name>
        <ul spacing="normal">
          <li>Endpoints discard initial keys as soon as handshake keys are available (#1951,
#2045)</li>
          <li>Use of ALPN or equivalent is mandatory (#2263, #2284)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-14" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-14</name>
        <ul spacing="normal">
          <li>Update the salt used for Initial secrets (#1970)</li>
          <li>Clarify that TLS_AES_128_CCM_8_SHA256 isn't supported (#2019)</li>
          <li>
            <t>Change header protection
            </t>
            <ul spacing="normal">
              <li>Sample from a fixed offset (#1575, #2030)</li>
              <li>Cover part of the first byte, including the key phase (#1322, #2006)</li>
            </ul>
          </li>
          <li>
            <t>TLS provides an AEAD and KDF function (#2046)
            </t>
            <ul spacing="normal">
              <li>Clarify that the TLS KDF is used with TLS (#1997)</li>
              <li>Change the labels for calculation of QUIC keys (#1845, #1971, #1991)</li>
            </ul>
          </li>
          <li>Initial keys are discarded once Handshake keys are available (#1951, #2045)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-13" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-13</name>
        <ul spacing="normal">
          <li>Updated to TLS 1.3 final (#1660)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-12" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-12</name>
        <ul spacing="normal">
          <li>
            <t>Changes to integration of the TLS handshake (#829, #1018, #1094, #1165, #1190,
#1233, #1242, #1252, #1450)
            </t>
            <ul spacing="normal">
              <li>The cryptographic handshake uses CRYPTO frames, not stream 0</li>
              <li>QUIC packet protection is used in place of TLS record protection</li>
              <li>Separate QUIC packet number spaces are used for the handshake</li>
              <li>Changed Retry to be independent of the cryptographic handshake</li>
              <li>Limit the use of HelloRetryRequest to address TLS needs (like key shares)</li>
            </ul>
          </li>
          <li>Changed codepoint of TLS extension (#1395, #1402)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-11" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-11</name>
        <ul spacing="normal">
          <li>Encrypted packet numbers.</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-10" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-10</name>
        <ul spacing="normal">
          <li>No significant changes.</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-09" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-09</name>
        <ul spacing="normal">
          <li>Cleaned up key schedule and updated the salt used for handshake packet
protection (#1077)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-08" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-08</name>
        <ul spacing="normal">
          <li>Specify value for max_early_data_size to enable 0-RTT (#942)</li>
          <li>Update key derivation function (#1003, #1004)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-07" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-07</name>
        <ul spacing="normal">
          <li>Handshake errors can be reported with CONNECTION_CLOSE (#608, #891)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-05" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-05</name>
        <t>No significant changes.</t>
      </section>
      <section anchor="since-draft-ietf-quic-tls-04" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-04</name>
        <ul spacing="normal">
          <li>Update labels used in HKDF-Expand-Label to match TLS 1.3 (#642)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-03" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-03</name>
        <t>No significant changes.</t>
      </section>
      <section anchor="since-draft-ietf-quic-tls-02" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-02</name>
        <ul spacing="normal">
          <li>Updates to match changes in transport draft</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-01" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-01</name>
        <ul spacing="normal">
          <li>Use TLS alerts to signal TLS errors (#272, #374)</li>
          <li>Require ClientHello to fit in a single packet (#338)</li>
          <li>The second client handshake flight is now sent in the clear (#262, #337)</li>
          <li>The QUIC header is included as AEAD Associated Data (#226, #243, #302)</li>
          <li>Add interface necessary for client address validation (#275)</li>
          <li>Define peer authentication (#140)</li>
          <li>Require at least TLS 1.3 (#138)</li>
          <li>Define transport parameters as a TLS extension (#122)</li>
          <li>Define handling for protected packets before the handshake completes (#39)</li>
          <li>Decouple QUIC version and ALPN (#12)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-tls-00" numbered="true" toc="default">
        <name>Since draft-ietf-quic-tls-00</name>
        <ul spacing="normal">
          <li>Changed bit used to signal key phase</li>
          <li>Updated key phase markings during the handshake</li>
          <li>Added TLS interface requirements section</li>
          <li>Moved to use of TLS exporters for key derivation</li>
          <li>Moved TLS error code definitions into this document</li>
        </ul>
      </section>
      <section anchor="since-draft-thomson-quic-tls-01" numbered="true" toc="default">
        <name>Since draft-thomson-quic-tls-01</name>
        <ul spacing="normal">
          <li>Adopted as base for draft-ietf-quic-tls</li>
          <li>Updated authors/editors list</li>
          <li>Added status note</li>
        </ul>
      </section>
    </section>
    <section numbered="false" anchor="contributors" toc="default">
      <name>Contributors</name>
      <t>The IETF QUIC Working Group received an enormous amount of support from many
people. The following people provided substantive contributions to this
document:
Adam Langley,
Alessandro Ghedini,
Christian Huitema,
Christopher Wood,
David Schinazi,
Dragana Damjanovic,
Eric Rescorla,
Ian Swett,
Jana Iyengar, <contact asciiFullname="Kazuho Oku" fullname="奥 一穂"/>,
Marten Seemann,
Martin Duke,
Mike Bishop, <contact fullname="Mikkel Fahnøe Jørgensen"/>,
Nick Banks,
Nick Harper,
Roberto Peon,
Rui Paulo,
Ryan Hamilton,
and Victor Vasiliev.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
7f0Xts4fJypsAQA=

-->
</rfc>
