<?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.12 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc docmapping="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-quic-tls-24" category="std">

  <front>
    <title>Using TLS to Secure QUIC</title>

    <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="2019" month="November" day="04"/>

    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    

    <abstract>


<t>This document describes how Transport Layer Security (TLS) is used to secure
QUIC.</t>



    </abstract>


    <note title="Note to Readers">


<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" title="Introduction">

<t>This document describes how QUIC <xref target="QUIC-TRANSPORT"/> is secured using TLS
<xref target="TLS13"/>.</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" title="Notational Conventions">

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”,
“SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>

<t>This document uses the terminology established in <xref target="QUIC-TRANSPORT"/>.</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"/>).</t>

<section anchor="tls-overview" title="TLS Overview">

<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"/>.</t>

<figure title="TLS Layers" anchor="tls-layers"><artwork><![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"/> 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>

<t><list style="symbols">
  <t>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.</t>
  <t>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.</t>
</list></t>

<t>A simplified TLS handshake with 0-RTT application data is shown in <xref target="tls-full"/>.
Note that this omits the EndOfEarlyData message, which is not used in QUIC (see
<xref target="remove-eoed"/>).  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"/>.</t>

<figure title="TLS Handshake with 0-RTT" anchor="tls-full"><artwork><![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>

<t><list style="symbols">
  <t>Initial Keys</t>
  <t>Early Data (0-RTT) Keys</t>
  <t>Handshake Keys</t>
  <t>Application Data (1-RTT) Keys</t>
</list></t>

<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" title="Protocol Overview">

<t>QUIC <xref target="QUIC-TRANSPORT"/> assumes responsibility for the confidentiality and
integrity protection of packets.  For this it uses keys derived from a TLS
handshake <xref target="TLS13"/>, 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"/>.</t>

<figure title="QUIC Layers" anchor="quic-layers"><artwork><![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>

<t><list style="symbols">
  <t>The TLS component sends and receives messages via the QUIC component, with
QUIC providing a reliable stream abstraction to TLS.</t>
  <t>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.</t>
</list></t>

<t><xref target="schematic"/> shows these interactions in more detail, with the QUIC packet
protection being called out specially.</t>

<figure title="QUIC and TLS Interactions" anchor="schematic"><artwork><![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" title="Carrying TLS Messages">

<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>

<t><list style="symbols">
  <t>PADDING and PING frames MAY appear in packets of any encryption level.</t>
  <t>CRYPTO and CONNECTION_CLOSE frames MAY appear in packets of any encryption
level except 0-RTT.</t>
  <t>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.</t>
  <t>All other frame types MUST only be sent in the 0-RTT and 1-RTT levels.</t>
</list></t>

<t>Note that it is not possible to send the following frames in 0-RTT for various
reasons: ACK, CRYPTO, 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"/>. 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>

<texttable title="Encryption Levels by Packet Type" anchor="packet-types-levels">
      <ttcol align='left'>Packet Type</ttcol>
      <ttcol align='left'>Encryption Level</ttcol>
      <ttcol align='left'>PN Space</ttcol>
      <c>Initial</c>
      <c>Initial secrets</c>
      <c>Initial</c>
      <c>0-RTT Protected</c>
      <c>0-RTT</c>
      <c>0/1-RTT</c>
      <c>Handshake</c>
      <c>Handshake</c>
      <c>Handshake</c>
      <c>Retry</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>Version Negotiation</c>
      <c>N/A</c>
      <c>N/A</c>
      <c>Short Header</c>
      <c>1-RTT</c>
      <c>0/1-RTT</c>
</texttable>

<t>Section 17 of <xref target="QUIC-TRANSPORT"/> shows how packets at the various encryption
levels fit into the handshake process.</t>

<section anchor="interface-to-tls" title="Interface to TLS">

<t>As shown in <xref target="schematic"/>, the interface from QUIC to TLS consists of four
primary functions:</t>

<t><list style="symbols">
  <t>Sending and receiving handshake messages</t>
  <t>Processing stored transport and application state from a resumed session
and determining if it is valid to accept early data</t>
  <t>Rekeying (both transmit and receive)</t>
  <t>Handshake state updates</t>
</list></t>

<t>Additional functions might be needed to configure TLS.</t>

<section anchor="handshake-complete" title="Handshake Complete">

<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" title="Handshake Confirmed">

<t>In this document, the TLS handshake is considered confirmed at an endpoint when
the following two conditions are met: the handshake is complete, and the
endpoint has received an acknowledgment for a packet sent with 1-RTT keys.
This second condition can be implemented by recording the lowest packet number
sent with 1-RTT keys, and the highest value of the Largest Acknowledged field
in any received 1-RTT ACK frame: once the latter is higher than or equal to the
former, the handshake is confirmed.</t>

</section>
<section anchor="sending-and-receiving-handshake-messages" title="Sending and Receiving Handshake Messages">

<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"/>) 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"/>.
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>

<t><list style="symbols">
  <t>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.</t>
  <t>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.</t>
  <t>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.</t>
</list></t>

<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" title="Encryption Level Changes">

<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>

<t><list style="symbols">
  <t>A secret</t>
  <t>An Authenticated Encryption with Associated Data (AEAD) function</t>
  <t>A Key Derivation Function (KDF)</t>
</list></t>

<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"/> and
<xref target="header-protect"/>).</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" title="TLS Interface Summary">

<t><xref target="exchange-summary"/> 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 title="Interaction Summary between QUIC and TLS" anchor="exchange-summary"><artwork><![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"/> 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" title="TLS Version">

<t>This document describes how TLS 1.3 <xref target="TLS13"/> 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" title="ClientHello Size">

<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"/>) 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" title="Peer Authentication">

<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"/>).</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"/>), 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"/>).
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" title="Enabling 0-RTT">

<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"/>). It then sends the application data in 0-RTT packets.</t>

</section>
<section anchor="accepting-and-rejecting-0-rtt" title="Accepting and Rejecting 0-RTT">

<t>A server accepts 0-RTT by sending an early_data extension in the
EncryptedExtensions (see Section 4.2.10 of <xref target="TLS13"/>).  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" title="Validating 0-RTT Configuration">

<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"/>). 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"/>) 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" title="HelloRetryRequest">

<t>In TLS over TCP, the HelloRetryRequest feature (see Section 4.1.4 of <xref target="TLS13"/>)
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"/>).  HelloRetryRequest is still used to request key shares.</t>

</section>
<section anchor="tls-errors" title="TLS Errors">

<t>If TLS experiences an error, it generates an appropriate alert as defined in
Section 6 of <xref target="TLS13"/>.</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" title="Discarding Unused Keys">

<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"/>.</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" title="Discarding Initial Keys">

<t>Packets protected with Initial secrets (<xref target="initial-secrets"/>) 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" title="Discarding Handshake Keys">

<t>An endpoint MUST NOT discard its handshake keys until the TLS handshake is
confirmed (<xref target="handshake-confirmed"/>).  An endpoint SHOULD discard its handshake
keys as soon as it has confirmed the handshake.  Most application protocols
will send data after the handshake, resulting in acknowledgements that allow
both endpoints to discard their handshake keys promptly.  Endpoints that do
not have reason to send immediately after completing the handshake MAY send
ack-eliciting frames, such as PING, which will cause the handshake to be
confirmed when they are acknowledged.</t>

</section>
<section anchor="discarding-0-rtt-keys" title="Discarding 0-RTT Keys">

<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"/>).</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"/>).  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" title="Packet Protection">

<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" title="Packet Protection Keys">

<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"/>) 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"/>.</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"/> 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"/>.  The header protection key uses the “quic hp” label; see
<xref target="header-protect"/>.  Using these labels provides key separation between QUIC
and TLS; see <xref target="key-diversity"/>.</t>

<t>The KDF used for initial secrets is always the HKDF-Expand-Label function from
TLS 1.3 (see <xref target="initial-secrets"/>).</t>

</section>
<section anchor="initial-secrets" title="Initial Secrets">

<t>Initial packets are protected with a secret derived from the Destination
Connection ID field from the client’s Initial packet. Specifically:</t>

<figure><artwork><![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></figure>

<t>The hash function for HKDF when deriving initial secrets and keys is SHA-256
<xref target="SHA"/>.</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>

<t><list style="hanging">
  <t hangText='Note:'>
  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.</t>
</list></t>

<t><xref target="test-vectors-initial"/> contains test vectors for the initial packet
encryption.</t>

</section>
<section anchor="aead" title="AEAD Usage">

<t>The Authentication Encryption with Associated Data (AEAD) <xref target="AEAD"/> 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"/>).
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"/>. 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"/>).
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"/> 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"/> 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>

<t><list style="hanging">
  <t hangText='Note:'>
  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.</t>
</list></t>

<t>The key and IV for the packet are computed as described in <xref target="protection-keys"/>.
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"/>.</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"/>).  This might be lower than the
packet number limit.  An endpoint MUST initiate a key update (<xref target="key-update"/>)
prior to exceeding any limit set for the AEAD that is in use.</t>

</section>
<section anchor="header-protect" title="Header Protection">

<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"/>).  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" title="Header Protection Application">

<t>Header protection is applied after packet protection is applied (see <xref target="aead"/>).
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"/> 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 title="Header Protection Pseudocode" anchor="pseudo-hp"><artwork><![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"/> shows the protected fields of long and short headers marked with
an E.  <xref target="fig-sample"/> also shows the sampled fields.</t>

<figure title="Header Protection and Ciphertext Sample" anchor="fig-sample"><artwork><![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"/>), and
AEAD_CHACHA20_POLY1305 <xref target="CHACHA"/>.  Prior to TLS selecting a
ciphersuite, AES header protection is used (<xref target="hp-aes"/>), matching the
AEAD_AES_128_GCM packet protection.</t>

</section>
<section anchor="hp-sample" title="Header Protection Sample">

<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"/> - 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>

<figure><artwork><![CDATA[
sample_offset = 1 + len(connection_id) + 4

sample = packet[sample_offset..sample_offset+sample_length]
]]></artwork></figure>

<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>

<figure><artwork><![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></figure>

</section>
<section anchor="hp-aes" title="AES-Based Header Protection">

<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"/> 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>

<figure><artwork><![CDATA[
mask = AES-ECB(hp_key, sample)
]]></artwork></figure>

</section>
<section anchor="hp-chacha" title="ChaCha20-Based Header Protection">

<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"/>.  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>

<figure><artwork><![CDATA[
counter = sample[0..3]
nonce = sample[4..15]
mask = ChaCha20(hp_key, counter, nonce, {0,0,0,0,0})
]]></artwork></figure>

</section>
</section>
<section anchor="receiving-protected-packets" title="Receiving Protected Packets">

<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"/>).  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" title="Use of 0-RTT Keys">

<t>If 0-RTT keys are available (see <xref target="enable-0rtt"/>), 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>

<t><list style="hanging">
  <t hangText='Note:'>
  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.</t>
</list></t>

</section>
<section anchor="pre-hs-protected" title="Receiving Out-of-Order Protected Frames">

<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.</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>

<t><list style="symbols">
  <t>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"/>.</t>
  <t>The client has not demonstrated liveness, unless a RETRY packet was used.</t>
  <t>Any received 0-RTT data that the server responds to might be due to a replay
attack.</t>
</list></t>

<t>Therefore, the server’s use of 1-RTT keys is limited before the handshake is
complete.  A server MUST NOT process data from 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>

<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>
<section anchor="key-update" title="Key Update">

<t>Once the handshake is confirmed (see <xref target="handshake-confirmed"/>), 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"/>).</t>

<t><xref target="ex-key-update"/> 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 title="Key Update" anchor="ex-key-update"><artwork><![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" title="Initiating a Key Update">

<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"/>.  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"/>.  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>

<figure><artwork><![CDATA[
secret_<n+1> = HKDF-Expand-Label(secret_<n>, "quic ku",
                                 "", Hash.length)
]]></artwork></figure>

<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"/>).  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>

<t><list style="hanging">
  <t hangText='Note:'>
  Keys of packets other than the 1-RTT packets are never updated; their keys are
derived solely from the TLS handshake state.</t>
</list></t>

<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" title="Responding to a Key Update">

<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"/> 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"/>.
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" title="Timing of Receive Key Generation">

<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"/>).  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 SHOULD 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"/>.</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" title="Sending with Updated Keys">

<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" title="Receiving with Different Keys">

<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"/> 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"/>) 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" title="Key Update Frequency">

<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"/> apply.  Other cipher suites MUST define usage limits
in order to be used with QUIC.</t>

</section>
<section anchor="key-update-error" title="Key Update Error Code">

<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" title="Security of Initial Messages">

<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" title="QUIC-Specific Additions to the TLS Handshake">

<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" title="Protocol Negotiation">

<t>QUIC requires that the cryptographic handshake provide authenticated protocol
negotiation.  TLS uses Application Layer Protocol Negotiation (ALPN)
<xref target="RFC7301"/> 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"/>) if an application protocol is not
negotiated with a no_application_protocol TLS alert (QUIC error code 0x178,
see <xref target="tls-errors"/>).  While <xref target="RFC7301"/> 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-layer 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.  If the server cannot select a compatible
combination of application protocol and QUIC version, it MUST abort the
connection.  A client MUST abort a connection if the server picks an application
protocol incompatible with the protocol version being used.</t>

</section>
<section anchor="quic_parameters" title="QUIC Transport Parameters Extension">

<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>

<figure><artwork><![CDATA[
   enum {
      quic_transport_parameters(0xffa5), (65535)
   } ExtensionType;
]]></artwork></figure>

<t>The <spanx style="verb">extension_data</spanx> 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"/>).</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"/>).  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" title="Removing the EndOfEarlyData Message">

<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" title="Security Considerations">

<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" title="Replay Attacks with 0-RTT">

<t>As described in Section 8 of <xref target="TLS13"/>, 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"/>,
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"/> 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>

<t><list style="hanging">
  <t hangText='Note:'>
  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.</t>
</list></t>

<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" title="Packet Reflection Attack Mitigation">

<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"/>). 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" title="Header Protection Analysis">

<t><xref target="NAN"/> 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 <spanx style="verb">sample</spanx>, and then encrypts the header field using
a pseudorandom function (PRF) as follows:</t>

<figure><artwork><![CDATA[
protected_field = field XOR PRF(hp_key, sample)
]]></artwork></figure>

<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"/>,
these variants do not deviate from the HN1 construction.</t>

<t>As <spanx style="verb">hp_key</spanx> is distinct from the packet protection key, it follows that header
protection achieves AE2 security as defined in <xref target="NAN"/> and therefore guarantees
privacy of <spanx style="verb">field</spanx>, 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>

<t><list style="hanging">
  <t hangText='Note:'>
  In some cases, inputs shorter than the full size required by the packet
protection algorithm might be used.</t>
</list></t>

<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" title="Header Protection Timing Side-Channels">

<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"/>.  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" title="Key Diversity">

<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" title="IANA Considerations">

<t>This document does not create any new IANA registries, but it registers the
values in the following registries:</t>

<t><list style="symbols">
  <t>TLS ExtensionsType Registry <xref target="TLS-REGISTRIES"/> - IANA is to register
the quic_transport_parameters extension found in <xref target="quic_parameters"/>.  The
Recommended column is to be marked Yes.  The TLS 1.3 Column is to include CH
and EE.</t>
  <t>QUIC Error Codes Registry <xref target="QUIC-TRANSPORT"/> - IANA is to register the
KEY_UPDATE_ERROR (0xE), as described in <xref target="key-update-error"/>.</t>
</list></t>

</section>


  </middle>

  <back>

    <references title='Normative References'>

<reference anchor="QUIC-TRANSPORT" >
  <front>
    <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
    <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="2019" month="November" day="04"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-24"/>
</reference>
<reference anchor="QUIC-RECOVERY" >
  <front>
    <title>QUIC Loss Detection and Congestion Control</title>
    <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="2019" month="November" day="04"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-recovery-24"/>
</reference>




<reference  anchor="TLS13" target='https://www.rfc-editor.org/info/rfc8446'>
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
<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>
<seriesInfo name='RFC' value='8446'/>
<seriesInfo name='DOI' value='10.17487/RFC8446'/>
</reference>



<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author 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>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference  anchor="RFC8174" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author 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>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>

<reference anchor="SHA" >
  <front>
    <title>Secure Hash Standard</title>
    <author initials="Q." surname="Dang" fullname="Quynh H. Dang">
      <organization></organization>
    </author>
    <date year="2015" month="July"/>
  </front>
  <seriesInfo name="National Institute of Standards and Technology" value="report"/>
  <seriesInfo name="DOI" value="10.6028/nist.fips.180-4"/>
</reference>



<reference  anchor="AEAD" target='https://www.rfc-editor.org/info/rfc5116'>
<front>
<title>An Interface and Algorithms for Authenticated Encryption</title>
<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>
<seriesInfo name='RFC' value='5116'/>
<seriesInfo name='DOI' value='10.17487/RFC5116'/>
</reference>



<reference  anchor="CHACHA" target='https://www.rfc-editor.org/info/rfc8439'>
<front>
<title>ChaCha20 and Poly1305 for IETF Protocols</title>
<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 &quot;combined mode&quot;, or Authenticated Encryption with Associated Data (AEAD) algorithm.</t><t>RFC 7539, the predecessor of this document, was meant to serve as a stable reference and an implementation guide.  It was a product of the Crypto Forum Research Group (CFRG).  This document merges the errata filed against RFC 7539 and adds a little text to the Security Considerations section.</t></abstract>
</front>
<seriesInfo name='RFC' value='8439'/>
<seriesInfo name='DOI' value='10.17487/RFC8439'/>
</reference>

<reference anchor="AES" >
  <front>
    <title>Advanced encryption standard (AES)</title>
    <author >
      <organization></organization>
    </author>
    <date year="2001" month="November"/>
  </front>
  <seriesInfo name="National Institute of Standards and Technology" value="report"/>
  <seriesInfo name="DOI" value="10.6028/nist.fips.197"/>
</reference>



<reference  anchor="RFC7301" target='https://www.rfc-editor.org/info/rfc7301'>
<front>
<title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
<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>
<seriesInfo name='RFC' value='7301'/>
<seriesInfo name='DOI' value='10.17487/RFC7301'/>
</reference>



<reference  anchor="TLS-REGISTRIES" target='https://www.rfc-editor.org/info/rfc8447'>
<front>
<title>IANA Registry Updates for TLS and DTLS</title>
<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>
<seriesInfo name='RFC' value='8447'/>
<seriesInfo name='DOI' value='10.17487/RFC8447'/>
</reference>




    </references>

    <references title='Informative References'>

<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></organization>
    </author>
    <author initials="K." surname="Paterson">
      <organization></organization>
    </author>
    <date year="2016" month="March" day="08"/>
  </front>
</reference>
<reference anchor="IMC" >
  <front>
    <title>Introduction to Modern Cryptography, Second Edition</title>
    <author initials="J." surname="Katz">
      <organization></organization>
    </author>
    <author initials="Y." surname="Lindell">
      <organization></organization>
    </author>
    <date year="2014" month="November" day="06"/>
  </front>
  <seriesInfo name="ISBN" value="978-1466570269"/>
</reference>
<reference anchor="QUIC-HTTP" >
  <front>
    <title>Hypertext Transfer Protocol (HTTP) over QUIC</title>
    <author initials="M." surname="Bishop" fullname="Mike Bishop" role="editor">
      <organization>Microsoft</organization>
    </author>
    <date year="2019" month="November" day="04"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-24"/>
</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>
<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>
<seriesInfo name='RFC' value='5280'/>
<seriesInfo name='DOI' value='10.17487/RFC5280'/>
</reference>



<reference  anchor="RFC2818" target='https://www.rfc-editor.org/info/rfc2818'>
<front>
<title>HTTP Over TLS</title>
<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>
<seriesInfo name='RFC' value='2818'/>
<seriesInfo name='DOI' value='10.17487/RFC2818'/>
</reference>



<reference anchor="HTTP2-TLS13">
<front>
<title>Using TLS 1.3 with HTTP/2</title>

<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>

<seriesInfo name='Internet-Draft' value='draft-ietf-httpbis-http2-tls13-03' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-httpbis-http2-tls13-03.txt' />
</reference>

<reference anchor="NAN" >
  <front>
    <title>Nonces Are Noticed: AEAD Revisited</title>
    <author initials="M." surname="Bellare" fullname="Mihir Bellare">
      <organization></organization>
    </author>
    <author initials="R." surname="Ng" fullname="Ruth Ng">
      <organization></organization>
    </author>
    <author initials="B." surname="Tackmann" fullname="Björn Tackmann">
      <organization></organization>
    </author>
    <date year="2019"/>
  </front>
  <seriesInfo name="Advances in Cryptology – CRYPTO 2019" value="pp. 235-265"/>
  <seriesInfo name="DOI" value="10.1007/978-3-030-26948-7_9"/>
</reference>




    </references>


<section anchor="test-vectors-initial" title="Sample Initial Packet Protection">

<t>This section shows examples of packet protection for Initial packets so that
implementations can be verified incrementally.  These packets use an 8-byte
client-chosen Destination Connection ID of 0x8394c8f03e515708.  Values for both
server and client packet protection are shown together with values in
hexadecimal.</t>

<section anchor="keys" title="Keys">

<t>The labels generated by the HKDF-Expand-Label function are:</t>

<t><list style="hanging">
  <t hangText='client in:'>
  00200f746c73313320636c69656e7420696e00</t>
  <t hangText='server in:'>
  00200f746c7331332073657276657220696e00</t>
  <t hangText='quic key:'>
  00100e746c7331332071756963206b657900</t>
  <t hangText='quic iv:'>
  000c0d746c733133207175696320697600</t>
  <t hangText='quic hp:'>
  00100d746c733133207175696320687000</t>
</list></t>

<t>The initial secret is common:</t>

<figure><artwork><![CDATA[
initial_secret = HKDF-Extract(initial_salt, cid)
    = 524e374c6da8cf8b496f4bcb69678350
      7aafee6198b202b4bc823ebf7514a423
]]></artwork></figure>

<t>The secrets for protecting client packets are:</t>

<figure><artwork><![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></figure>

<t>The secrets for protecting server packets are:</t>

<figure><artwork><![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></figure>

</section>
<section anchor="client-initial" title="Client Initial">

<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>

<figure><artwork><![CDATA[
060040c4010000c003036660261ff947 cea49cce6cfad687f457cf1b14531ba1
4131a0e8f309a1d0b9c4000006130113 031302010000910000000b0009000006
736572766572ff01000100000a001400 12001d00170018001901000101010201
03010400230000003300260024001d00 204cfdfcd178b784bf328cae793b136f
2aedce005ff183d7bb14952072366470 37002b0003020304000d0020001e0403
05030603020308040805080604010501 060102010402050206020202002d0002
0101001c00024001
]]></artwork></figure>

<t>The unprotected header includes the connection ID and a 4 byte packet number
encoding for a packet number of 2:</t>

<figure><artwork><![CDATA[
c3ff000017088394c8f03e5157080000449e00000002
]]></artwork></figure>

<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>

<figure><artwork><![CDATA[
sample = 535064a4268a0d9d7b1c9d250ae35516

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

header[0] ^= mask[0] & 0x0f
     = c0
header[17..20] ^= mask[1..4]
     = 3b343aa8
header = c0ff000017088394c8f03e5157080000449e3b343aa8
]]></artwork></figure>

<t>The resulting protected packet is:</t>

<figure><artwork><![CDATA[
c0ff000017088394c8f03e5157080000 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
c9be6c7803567321829dd85853396269
]]></artwork></figure>

</section>
<section anchor="server-initial" title="Server Initial">

<t>The server sends the following payload in response, including an ACK frame, a
CRYPTO frame, and no PADDING frames:</t>

<figure><artwork><![CDATA[
0d0000000018410a020000560303eefc e7f7b37ba1d1632e96677825ddf73988
cfc79825df566dc5430b9a045a120013 0100002e00330024001d00209d3c940d
89690b84d08a60993c144eca684d1081 287c834d5311bcf32bb9da1a002b0002
0304
]]></artwork></figure>

<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>

<figure><artwork><![CDATA[
c1ff0000170008f067a5502a4262b50040740001
]]></artwork></figure>

<t>As a result, after protection, the header protection sample is taken starting
from the third protected octet:</t>

<figure><artwork><![CDATA[
sample = 7002596f99ae67abf65a5852f54f58c3
mask   = 38168a0c25
header = c9ff0000170008f067a5502a4262b5004074168b
]]></artwork></figure>

<t>The final protected packet is then:</t>

<figure><artwork><![CDATA[
c9ff0000170008f067a5502a4262b500 4074168bf22b7002596f99ae67abf65a
5852f54f58c37c808682e2e40492d8a3 899fb04fc0afe9aabc8767b18a0aa493
537426373b48d502214dd856d63b78ce e37bc664b3fe86d487ac7a77c53038a3
cd32f0b5004d9f5754c4f7f2d1f35cf3 f7116351c92b9cf9bb6d091ddfc8b32d
432348a2c413
]]></artwork></figure>

</section>
</section>
<section anchor="change-log" title="Change Log">

<t><list style='empty'>
  <t><spanx style="strong">RFC Editor’s Note:</spanx> Please remove this section prior to publication of a
final version of this document.</t>
</list></t>

<t>Issue and pull request numbers are listed with a leading octothorp.</t>

<section anchor="since-draft-ietf-quic-tls-23" title="Since draft-ietf-quic-tls-23">

<t><list style="symbols">
  <t>Key update text update (#3050):
  <list style="symbols">
      <t>Recommend constant-time key replacement (#2792)</t>
      <t>Provide explicit labels for key update key derivation (#3054)</t>
    </list></t>
  <t>Allow first Initial from a client to span multiple packets (#2928, #3045)</t>
  <t>PING can be sent at any encryption level (#3034, #3035)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-22" title="Since draft-ietf-quic-tls-22">

<t><list style="symbols">
  <t>Update the salt used for Initial secrets (#2887, #2980)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-21" title="Since draft-ietf-quic-tls-21">

<t><list style="symbols">
  <t>No changes</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-20" title="Since draft-ietf-quic-tls-20">

<t><list style="symbols">
  <t>Mandate the use of the QUIC transport parameters extension (#2528, #2560)</t>
  <t>Define handshake completion and confirmation; define clearer rules when it
encryption keys should be discarded (#2214, #2267, #2673)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-18" title="Since draft-ietf-quic-tls-18">

<t><list style="symbols">
  <t>Increased the set of permissible frames in 0-RTT (#2344, #2355)</t>
  <t>Transport parameter extension is mandatory (#2528, #2560)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-17" title="Since draft-ietf-quic-tls-17">

<t><list style="symbols">
  <t>Endpoints discard initial keys as soon as handshake keys are available (#1951,
#2045)</t>
  <t>Use of ALPN or equivalent is mandatory (#2263, #2284)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-14" title="Since draft-ietf-quic-tls-14">

<t><list style="symbols">
  <t>Update the salt used for Initial secrets (#1970)</t>
  <t>Clarify that TLS_AES_128_CCM_8_SHA256 isn’t supported (#2019)</t>
  <t>Change header protection
  <list style="symbols">
      <t>Sample from a fixed offset (#1575, #2030)</t>
      <t>Cover part of the first byte, including the key phase (#1322, #2006)</t>
    </list></t>
  <t>TLS provides an AEAD and KDF function (#2046)
  <list style="symbols">
      <t>Clarify that the TLS KDF is used with TLS (#1997)</t>
      <t>Change the labels for calculation of QUIC keys (#1845, #1971, #1991)</t>
    </list></t>
  <t>Initial keys are discarded once Handshake keys are available (#1951, #2045)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-13" title="Since draft-ietf-quic-tls-13">

<t><list style="symbols">
  <t>Updated to TLS 1.3 final (#1660)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-12" title="Since draft-ietf-quic-tls-12">

<t><list style="symbols">
  <t>Changes to integration of the TLS handshake (#829, #1018, #1094, #1165, #1190,
#1233, #1242, #1252, #1450)
  <list style="symbols">
      <t>The cryptographic handshake uses CRYPTO frames, not stream 0</t>
      <t>QUIC packet protection is used in place of TLS record protection</t>
      <t>Separate QUIC packet number spaces are used for the handshake</t>
      <t>Changed Retry to be independent of the cryptographic handshake</t>
      <t>Limit the use of HelloRetryRequest to address TLS needs (like key shares)</t>
    </list></t>
  <t>Changed codepoint of TLS extension (#1395, #1402)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-11" title="Since draft-ietf-quic-tls-11">

<t><list style="symbols">
  <t>Encrypted packet numbers.</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-10" title="Since draft-ietf-quic-tls-10">

<t><list style="symbols">
  <t>No significant changes.</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-09" title="Since draft-ietf-quic-tls-09">

<t><list style="symbols">
  <t>Cleaned up key schedule and updated the salt used for handshake packet
protection (#1077)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-08" title="Since draft-ietf-quic-tls-08">

<t><list style="symbols">
  <t>Specify value for max_early_data_size to enable 0-RTT (#942)</t>
  <t>Update key derivation function (#1003, #1004)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-07" title="Since draft-ietf-quic-tls-07">

<t><list style="symbols">
  <t>Handshake errors can be reported with CONNECTION_CLOSE (#608, #891)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-05" title="Since draft-ietf-quic-tls-05">

<t>No significant changes.</t>

</section>
<section anchor="since-draft-ietf-quic-tls-04" title="Since draft-ietf-quic-tls-04">

<t><list style="symbols">
  <t>Update labels used in HKDF-Expand-Label to match TLS 1.3 (#642)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-03" title="Since draft-ietf-quic-tls-03">

<t>No significant changes.</t>

</section>
<section anchor="since-draft-ietf-quic-tls-02" title="Since draft-ietf-quic-tls-02">

<t><list style="symbols">
  <t>Updates to match changes in transport draft</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-01" title="Since draft-ietf-quic-tls-01">

<t><list style="symbols">
  <t>Use TLS alerts to signal TLS errors (#272, #374)</t>
  <t>Require ClientHello to fit in a single packet (#338)</t>
  <t>The second client handshake flight is now sent in the clear (#262, #337)</t>
  <t>The QUIC header is included as AEAD Associated Data (#226, #243, #302)</t>
  <t>Add interface necessary for client address validation (#275)</t>
  <t>Define peer authentication (#140)</t>
  <t>Require at least TLS 1.3 (#138)</t>
  <t>Define transport parameters as a TLS extension (#122)</t>
  <t>Define handling for protected packets before the handshake completes (#39)</t>
  <t>Decouple QUIC version and ALPN (#12)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-tls-00" title="Since draft-ietf-quic-tls-00">

<t><list style="symbols">
  <t>Changed bit used to signal key phase</t>
  <t>Updated key phase markings during the handshake</t>
  <t>Added TLS interface requirements section</t>
  <t>Moved to use of TLS exporters for key derivation</t>
  <t>Moved TLS error code definitions into this document</t>
</list></t>

</section>
<section anchor="since-draft-thomson-quic-tls-01" title="Since draft-thomson-quic-tls-01">

<t><list style="symbols">
  <t>Adopted as base for draft-ietf-quic-tls</t>
  <t>Updated authors/editors list</t>
  <t>Added status note</t>
</list></t>

</section>
</section>
<section numbered="false" anchor="acknowledgments" title="Acknowledgments">

<t>This document has benefited from input from Dragana Damjanovic, Christian
Huitema, Jana Iyengar, Adam Langley, Roberto Peon, Eric Rescorla, Ian Swett, and
many others.</t>

</section>
<section numbered="false" anchor="contributors" title="Contributors">

<t>Ryan Hamilton was originally an author of this specification.</t>

</section>


  </back>

<!-- ##markdown-source:
H4sIAOmfv10AA8y9aXcb15Uo+v38irryWrfJBIAxD3I7HYaiY13Lkp4oJzcr
L60Uqk6R1QJQbBQginF0f/vd4xmqCpScTq/36MQmgaoz7LPPnod+v28O5WFj
nyY/1eXuJnn74jo5VMm1zY57m/w/Pz2/NHmV7dItPJHv0+LQL+2h6P/nscz6
h03dH09Nnh7gy/FwtOqPRv3h1GTwwU21f3ia1IfclHf7p8lhf6wP4+FwNRyb
dG/Tp8nbfbqr76r9wdxX+/c3++p495TnM/Uh3eXv0k21g3EfbG3uyqfJnw9V
1ktqeGFvixp+e9jyL7C8bXp3B4v/izHp8XBb7Z+aJOnD/5Ok3NVPkx8Hydvb
altXO/qMN/Njuj+Uu+iLan8Dn1d/KzeblD6w27TcPE22h99uqnu7O+yru4fB
zh7oy32FULN5eaj28XzXMN9xv7P7YLprm+7CT2muejfZ5+FMNTz1W/p0kFXb
9jRmV+236aH8YJ8a+BbB1X/75uLl9etXb94+peflNJ/gd0+Ti+SnZ6/7v0tr
myc/HjeH8m5jP8LvAGA9Y3cQT+j91mnih7Xdlxbwo6h4kiR5vjtY2Myh/wyR
ogM3dFTEEHzBnwz+9OW/ArH/NUieP9jdTbp3nzPY/le6S1tfEey+S+vD5sF9
1jiNjjkaWPAoJnRiQ/s05ATeXF2++sPVmz+1DyB5UdV18swebHYoqx2B/bLa
3dia/oRfAac2/1TA721WfbD7h//fwP35ILm+t4dDY4bncB/iz2n431fVzcae
gDfCIcT/i6vfVcddXseAf1Fuy0OdAHwvYO9wbUskSHlytcv2D3cE+J9qm+CR
v7h+0gUkXvjFIHlxfHj/Mf70h0HyGobbK6q4Y5v3h5P+cMlLSfc3Fg7nye3h
cPf066/v7+8HZX0z2N8eN4M0Gxzff/1/3t99DfP3L67WtIfBXV48wU09//Ey
3s9zRJL8yBgEtPnHKgcMSC5xM9XNPr27fejhZa4Aua4AUvDYI7uCI/8hPfwt
/vBPsNVyl9vNJt7TlFBxfgoVr3/38mmyWiz7o+l8PlsMx/OVuxTfv337Ot7H
9w93dn+wHw9Mcgq7T17vKyDr1SY5w8fPE8Rcev2feiXwEL7oOgCJ+F1Z31Z3
TQpRvrfNb5g8lNm+qqvicAJhTb/fT9J1DdQwOxjz9raskV8dt4CVSW7rbF+u
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

-->

</rfc>

