<?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.2 -->

<!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-04" category="std">

  <feedback xmlns='http://purl.org/net/xml2rfc/ext' template="mailto:quic@ietf.org?subject={docname},%20%22{section}%22&amp;body=%3c{ref}%3e:"/><front>
    <title abbrev="QUIC over TLS">Using Transport Layer Security (TLS) to Secure QUIC</title>

    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
      <address>
        <email>martin.thomson@gmail.com</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="2017" month="6" day="13"/>

    <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
Transport Layer Security (TLS) version 1.3 <xref target="I-D.ietf-tls-tls13"/>.  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 the standardized TLS 1.3 acts a security
component of QUIC.  The same design could work for TLS 1.2, though few of the
benefits QUIC provides would be realized due to the handshake latency in
versions of TLS prior to 1.3.</t>

</section>
<section anchor="notational-conventions" title="Notational Conventions">

<t>The words “MUST”, “MUST NOT”, “SHOULD”, and “MAY” are used in this document.
It’s not shouting; when they are capitalized, they have the special meaning
defined in <xref target="RFC2119"/>.</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.</t>

<t>TLS terminology is used when referring to parts of TLS. Though TLS assumes a
continuous stream of octets, it divides that stream into <spanx style="emph">records</spanx>. Most
relevant to QUIC are the records that contain TLS <spanx style="emph">handshake messages</spanx>, which
are discrete messages that are used for key agreement, authentication and
parameter negotiation. Ordinarily, TLS records can also contain <spanx style="emph">application
data</spanx>, though in the QUIC usage there is no use of TLS application data.</t>

</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 1.3
connection <xref target="I-D.ietf-tls-tls13"/>; QUIC also relies on TLS 1.3 for
authentication and negotiation of parameters that are critical to security and
performance.</t>

<t>Rather than a strict layering, these two protocols are co-dependent: QUIC uses
the TLS handshake; TLS uses the reliability and ordered delivery provided by
QUIC streams.</t>

<t>This document defines how QUIC interacts with TLS.  This includes a description
of how TLS is used, how keying material is derived from TLS, and the application
of that keying material to protect QUIC packets.  <xref target="schematic"/> shows the basic
interactions between TLS and QUIC, with the QUIC packet protection being called
out specially.</t>

<figure title="QUIC and TLS Interactions" anchor="schematic"><artwork><![CDATA[
+------------+                        +------------+
|            |------ Handshake ------>|            |
|            |<-- Validate Address ---|            |
|            |-- OK/Error/Validate -->|            |
|            |<----- Handshake -------|            |
|   QUIC     |------ Validate ------->|    TLS     |
|            |                        |            |
|            |<------ 0-RTT OK -------|            |
|            |<------ 1-RTT OK -------|            |
|            |<--- Handshake Done ----|            |
+------------+                        +------------+
 |         ^                               ^ |
 | Protect | Protected                     | |
 v         | Packet                        | |
+------------+                             / /
|   QUIC     |                            / /
|  Packet    |-------- Get Secret -------' /
| Protection |<-------- Secret -----------'
+------------+
]]></artwork></figure>

<t>The initial state of a QUIC connection has packets exchanged without any form of
protection.  In this state, QUIC is limited to using stream 0 and associated
packets.  Stream 0 is reserved for a TLS connection.  This is a complete TLS
connection as it would appear when layered over TCP; the only difference is that
QUIC provides the reliability and ordering that would otherwise be provided by
TCP.</t>

<t>At certain points during the TLS handshake, keying material is exported from the
TLS connection for use by QUIC.  This keying material is used to derive packet
protection keys.  Details on how and when keys are derived and used are included
in <xref target="packet-protection"/>.</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>TLS features can be separated into two basic functions: an authenticated key
exchange and record protection.  QUIC primarily uses the authenticated key
exchange provided by TLS but provides its own packet protection.</t>

<t>The TLS authenticated key exchange occurs between two entities: 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 (DH) key exchanges.
PSK is the basis for 0-RTT; the latter provides perfect forward secrecy (PFS)
when the DH 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 resistent to tampering by attackers and it produces
shared secrets that cannot be controlled by either participating peer.</t>

</section>
<section anchor="tls-handshake" title="TLS Handshake">

<t>TLS 1.3 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 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 1.3 handshake with 0-RTT application data is shown in
<xref target="tls-full"/>, see <xref target="I-D.ietf-tls-tls13"/> for more options and details.</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]
   (EndOfEarlyData)
   {Finished}                -------->

   [Application Data]        <------->      [Application Data]
]]></artwork></figure>

<t>This 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>

<t>Two additional variations on this basic handshake exchange are relevant to this
document:</t>

<t><list style="symbols">
  <t>The server can respond to a ClientHello with a HelloRetryRequest, which adds
an additional round trip prior to the basic exchange.  This is needed if the
server wishes to request a different key exchange key from the client.
HelloRetryRequest is also used to verify that the client is correctly able to
receive packets on the address it claims to have (see <xref target="QUIC-TRANSPORT"/>).</t>
  <t>A pre-shared key mode can be used for subsequent handshakes to reduce the
number of public key operations.  This is the basis for 0-RTT data, even if
the remainder of the connection is protected by a new Diffie-Hellman
exchange.</t>
</list></t>

</section>
</section>
<section anchor="tls-usage" title="TLS Usage">

<t>QUIC reserves stream 0 for a TLS connection.  Stream 0 contains a complete TLS
connection, which includes the TLS record layer.  Other than the definition of a
QUIC-specific extension (see <xref target="quic_parameters"/>), TLS is unmodified for this
use.  This means that TLS will apply confidentiality and integrity protection to
its records.  In particular, TLS record protection is what provides
confidentiality protection for the TLS handshake messages sent by the server.</t>

<t>QUIC permits a client to send frames on streams starting from the first packet.
The initial packet from a client contains a stream frame for stream 0 that
contains the first TLS handshake messages from the client.  This allows the TLS
handshake to start with the first packet that a client sends.</t>

<t>QUIC packets are protected using a scheme that is specific to QUIC, see
<xref target="packet-protection"/>.  Keys are exported from the TLS connection when they
become available using a TLS exporter (see Section 7.5 of
<xref target="I-D.ietf-tls-tls13"/> and <xref target="key-expansion"/>).  After keys are exported from
TLS, QUIC manages its own key schedule.</t>

<section anchor="handshake-and-setup-sequence" title="Handshake and Setup Sequence">

<t>The integration of QUIC with a TLS handshake is shown in more detail in
<xref target="quic-tls-handshake"/>.  QUIC <spanx style="verb">STREAM</spanx> frames on stream 0 carry the TLS
handshake.  QUIC performs loss recovery <xref target="QUIC-RECOVERY"/> for this stream and
ensures that TLS handshake messages are delivered in the correct order.</t>

<figure title="QUIC over TLS Handshake" anchor="quic-tls-handshake"><artwork><![CDATA[
    Client                                             Server

@C QUIC STREAM Frame(s) <0>:
     ClientHello
       + QUIC Extension
                            -------->
                        0-RTT Key => @0

@0 QUIC STREAM Frame(s) <any stream>:
   Replayable QUIC Frames
                            -------->

                                      QUIC STREAM Frame <0>: @C
                                               ServerHello
                                  {TLS Handshake Messages}
                            <--------
                        1-RTT Key => @1

                                           QUIC Frames <any> @1
                            <--------
@C QUIC STREAM Frame(s) <0>:
     (EndOfEarlyData)
     {Finished}
                            -------->

@1 QUIC Frames <any>        <------->      QUIC Frames <any> @1
]]></artwork></figure>

<t>In <xref target="quic-tls-handshake"/>, symbols mean:</t>

<t><list style="symbols">
  <t>”&lt;” and “&gt;” enclose stream numbers.</t>
  <t>”@” indicates the keys that are used for protecting the QUIC packet (C =
cleartext, with integrity only; 0 = 0-RTT keys; 1 = 1-RTT keys).</t>
  <t>”(“ and “)” enclose messages that are protected with TLS 0-RTT handshake or
application keys.</t>
  <t>”{“ and “}” enclose messages that are protected by the TLS Handshake keys.</t>
</list></t>

<t>If 0-RTT is not attempted, then the client does not send packets protected by
the 0-RTT key (@0).  In that case, the only key transition on the client is from
cleartext packets (@C) to 1-RTT protection (@1), which happens after it sends
its final set of TLS handshake messages.</t>

<t>Note: the client uses two different types of cleartext packet during the
handshake.  The Client Initial packet carries a TLS ClientHello message; the
remainder of the TLS handshake is carried in Client Cleartext packets.</t>

<t>The server sends TLS handshake messages without protection (@C).  The server
transitions from no protection (@C) to full 1-RTT protection (@1) after it sends
the last of its handshake messages.</t>

<t>Some TLS handshake messages are protected by the TLS handshake record
protection.  These keys are not exported from the TLS connection for use in
QUIC.  QUIC packets from the server are sent in the clear until the final
transition to 1-RTT keys.</t>

<t>The client transitions from cleartext (@C) to 0-RTT keys (@0) when sending 0-RTT
data, and subsequently to to 1-RTT keys (@1) after its second flight of TLS
handshake messages.  This creates the potential for unprotected packets to be
received by a server in close proximity to packets that are protected with 1-RTT
keys.</t>

<t>More information on key transitions is included in <xref target="cleartext-hs"/>.</t>

</section>
<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: Handshake, Source Address Validation, Key Ready Events, and
Secret Export.</t>

<t>Additional functions might be needed to configure TLS.</t>

<section anchor="handshake-interface" title="Handshake Interface">

<t>In order to drive the handshake, TLS depends on being able to send and receive
handshake messages on stream 0.  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 octets from
TLS.  The client acquires handshake octets before sending its first packet.</t>

<t>A QUIC server starts the process by providing TLS with stream 0 octets.</t>

<t>Each time that an endpoint receives data on stream 0, it delivers the octets to
TLS if it is able.  Each time that TLS is provided with new data, new handshake
octets are requested from TLS.  TLS might not provide any octets 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 octets 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 on stream 0.  In the same way that is done during the handshake,
new data is requested from TLS after providing received data.</t>

<t><list style="hanging">
  <t hangText='Important:'>
  Until the handshake is reported as complete, the connection and key exchange
are not properly authenticated at the server.  Even though 1-RTT keys are
available to a server after receiving the first handshake messages from a
client, the server cannot consider the client to be authenticated until it
receives and validates the client’s Finished message.</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 a copy of the
STREAM frame that carries the Finished message in multiple packets.  This
enables immediate server processing for those packets.</t>
</list></t>

</section>
<section anchor="source-address-validation" title="Source Address Validation">

<t>During the processing of the TLS ClientHello, TLS requests that the transport
make a decision about whether to request source address validation from the
client.</t>

<t>An initial TLS ClientHello that resumes a session includes an address validation
token in the session ticket; this includes all attempts at 0-RTT.  If the client
does not attempt session resumption, no token will be present.  While processing
the initial ClientHello, TLS provides QUIC with any token that is present. In
response, QUIC provides one of three responses:</t>

<t><list style="symbols">
  <t>proceed with the connection,</t>
  <t>ask for client address validation, or</t>
  <t>abort the connection.</t>
</list></t>

<t>If QUIC requests source address validation, it also provides a new address
validation token.  TLS includes that along with any information it requires in
the cookie extension of a TLS HelloRetryRequest message.  In the other cases,
the connection either proceeds or terminates with a handshake error.</t>

<t>The client echoes the cookie extension in a second ClientHello.  A ClientHello
that contains a valid cookie extension will always be in response to a
HelloRetryRequest.  If address validation was requested by QUIC, then this will
include an address validation token.  TLS makes a second address validation
request of QUIC, including the value extracted from the cookie extension.  In
response to this request, QUIC cannot ask for client address validation, it can
only abort or permit the connection attempt to proceed.</t>

<t>QUIC can provide a new address validation token for use in session resumption at
any time after the handshake is complete.  Each time a new token is provided TLS
generates a NewSessionTicket message, with the token included in the ticket.</t>

<t>See <xref target="client-address-validation"/> for more details on client address validation.</t>

</section>
<section anchor="key-ready-events" title="Key Ready Events">

<t>TLS provides QUIC with signals when 0-RTT and 1-RTT keys are ready for use.
These events are not asynchronous, they always occur immediately after TLS is
provided with new handshake octets, or after TLS produces handshake octets.</t>

<t>When TLS completed its handshake, 1-RTT keys can be provided to QUIC.  On both
client and server, this occurs after sending the TLS Finished message.</t>

<t>This ordering means that there could be frames that carry TLS handshake messages
ready to send at the same time that application data is available.  An
implementation MUST ensure that TLS handshake messages are always sent in
cleartext packets.  Separate packets are required for data that needs protection
from 1-RTT keys.</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 octets, the TLS stack might signal that 0-RTT keys are
ready.  On the server, after receiving handshake octets that contain a
ClientHello message, a TLS server might signal that 0-RTT keys are available.</t>

<t>1-RTT keys are used for packets in both directions.  0-RTT keys are only
used to protect packets sent by the client.</t>

</section>
<section anchor="secret-export" title="Secret Export">

<t>Details how secrets are exported from TLS are included in <xref target="key-expansion"/>.</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.</t>

<figure title="Interaction Summary between QUIC and TLS" anchor="exchange-summary"><artwork><![CDATA[
Client                                                    Server

Get Handshake
0-RTT Key Ready
                      --- send/receive --->
                                              Handshake Received
                                                 0-RTT Key Ready
                                                   Get Handshake
                                                1-RTT Keys Ready
                     <--- send/receive ---
Handshake Received
Get Handshake
Handshake Complete
1-RTT Keys Ready
                      --- send/receive --->
                                              Handshake Received
                                                   Get Handshake
                                              Handshake Complete
                     <--- send/receive ---
Handshake Received
Get Handshake
]]></artwork></figure>

</section>
</section>
<section anchor="tls-version" title="TLS Version">

<t>This document describes how TLS 1.3 <xref target="I-D.ietf-tls-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>QUIC requires that the initial handshake packet from a client fit within the
payload of a single packet.  The size limits on QUIC packets mean that a record
containing a ClientHello needs to fit within 1197 octets.</t>

<t>A TLS ClientHello can fit within this limit with ample space remaining.
However, there are several variables that could cause this limit to be exceeded.
Implementations are reminded that large session tickets or HelloRetryRequest
cookies, 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, the size of the session tickets and HelloRetryRequest cookie
extension can have an effect on a client’s ability to connect.  Choosing a small
value increases the probability that these values can be successfully used by a
client.</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 (see Section 4.6.2 of
<xref target="I-D.ietf-tls-tls13"/>).</t>

</section>
<section anchor="tls-errors" title="TLS Errors">

<t>Errors in the TLS connection SHOULD be signaled using TLS alerts on stream 0.  A
failure in the handshake MUST be treated as a QUIC connection error of type
TLS_HANDSHAKE_FAILED.  Once the handshake is complete, an error in the TLS
connection that causes a TLS alert to be sent or received MUST be treated as a
QUIC connection error of type TLS_FATAL_ALERT_GENERATED or
TLS_FATAL_ALERT_RECEIVED respectively.</t>

</section>
</section>
<section anchor="packet-protection" title="QUIC Packet Protection">

<t>QUIC packet protection provides authenticated encryption of packets.  This
provides confidentiality and integrity protection for the content of packets
(see <xref target="aead"/>).  Packet protection uses keys that are exported from the TLS
connection (see <xref target="key-expansion"/>).</t>

<t>Different keys are used for QUIC packet protection and TLS record protection.
TLS handshake messages are protected solely with TLS record protection,
but post-handshake messages are redundantly proteted with both
both the QUIC packet protection and the TLS record protection. These messages
are limited in number, and so the additional overhead is small.</t>

<section anchor="new-key" title="Installing New Keys">

<t>As TLS reports the availability of keying material, the packet protection keys
and initialization vectors (IVs) are updated (see <xref target="key-expansion"/>).  The
selection of AEAD function is also updated to match the AEAD negotiated by TLS.</t>

<t>For packets other than any unprotected handshake packets (see <xref target="cleartext-hs"/>),
once a change of keys has been made, packets with higher packet numbers MUST be
sent with the new keying material.  The KEY_PHASE bit on these packets is
inverted each time new keys are installed to signal the use of the new keys to
the recipient (see <xref target="key-phases"/> for details).</t>

<t>An endpoint retransmits stream data in a new packet.  New packets have new
packet numbers and use the latest packet protection keys.  This simplifies key
management when there are key updates (see <xref target="key-update"/>).</t>

</section>
<section anchor="key-expansion" title="QUIC Key Expansion">

<t>QUIC uses a system of packet protection secrets, keys and IVs that are modelled
on the system used in TLS <xref target="I-D.ietf-tls-tls13"/>.  The secrets that QUIC uses
as the basis of its key schedule are obtained using TLS exporters (see Section
7.5 of <xref target="I-D.ietf-tls-tls13"/>).</t>

<t>QUIC uses HKDF with the same hash function negotiated by TLS for
key derivation.  For example, if TLS is using the TLS_AES_128_GCM_SHA256, the
SHA-256 hash function is used.</t>

<section anchor="zero-rtt-secrets" title="0-RTT Secret">

<t>0-RTT keys are those keys that are used in resumed connections prior to the
completion of the TLS handshake.  Data sent using 0-RTT keys might be replayed
and so has some restrictions on its use, see <xref target="using-early-data"/>.  0-RTT keys
are used after sending or receiving a ClientHello.</t>

<t>The secret is exported from TLS using the exporter label “EXPORTER-QUIC 0-RTT
Secret” and an empty context.  The size of the secret MUST be the size of the
hash output for the PRF hash function negotiated by TLS.  This uses the TLS
early_exporter_secret.  The QUIC 0-RTT secret is only used for protection of
packets sent by the client.</t>

<figure><artwork><![CDATA[
   client_0rtt_secret
       = TLS-Exporter("EXPORTER-QUIC 0-RTT Secret"
                      "", Hash.length)
]]></artwork></figure>

</section>
<section anchor="one-rtt-secrets" title="1-RTT Secrets">

<t>1-RTT keys are used by both client and server after the TLS handshake completes.
There are two secrets used at any time: one is used to derive packet protection
keys for packets sent by the client, the other for packet protection keys on
packets sent by the server.</t>

<t>The initial client packet protection secret is exported from TLS using the
exporter label “EXPORTER-QUIC client 1-RTT Secret”; the initial server packet
protection secret uses the exporter label “EXPORTER-QUIC server 1-RTT Secret”.
Both exporters use an empty context.  The size of the secret MUST be the size of
the hash output for the PRF hash function negotiated by TLS.</t>

<figure><artwork><![CDATA[
   client_pp_secret_0
       = TLS-Exporter("EXPORTER-QUIC client 1-RTT Secret"
                      "", Hash.length)
   server_pp_secret_0
       = TLS-Exporter("EXPORTER-QUIC server 1-RTT Secret"
                      "", Hash.length)
]]></artwork></figure>

<t>These secrets are used to derive the initial client and server packet protection
keys.</t>

<t>After a key update (see <xref target="key-update"/>), these secrets are updated using the
HKDF-Expand-Label function defined in Section 7.1 of <xref target="I-D.ietf-tls-tls13"/>.
HKDF-Expand-Label uses the PRF hash function negotiated by TLS.  The
replacement secret is derived using the existing Secret, a Label of “QUIC client
1-RTT Secret” for the client and “QUIC server 1-RTT Secret” for the server, an
empty HashValue, and the same output Length as the hash function selected by TLS
for its PRF.</t>

<figure><artwork><![CDATA[
   client_pp_secret_<N+1>
       = HKDF-Expand-Label(client_pp_secret_<N>,
                           "QUIC client 1-RTT Secret",
                           "", Hash.length)
   server_pp_secret_<N+1>
       = HKDF-Expand-Label(server_pp_secret_<N>,
                           "QUIC server 1-RTT Secret",
                           "", Hash.length)
]]></artwork></figure>

<t>This allows for a succession of new secrets to be created as needed.</t>

<t>HKDF-Expand-Label uses HKDF-Expand <xref target="RFC5869"/> with a specially formatted info
parameter, as shown:</t>

<figure><artwork><![CDATA[
    HKDF-Expand-Label(Secret, Label, HashValue, Length) =
         HKDF-Expand(Secret, HkdfLabel, Length)

    Where HkdfLabel is specified as:

    struct {
        uint16 length = Length;
        opaque label<10..255> = "TLS 1.3, " + Label;
        uint8 hashLength;     // Always 0
    } HkdfLabel;
]]></artwork></figure>

<t>For example, the client packet protection secret uses an info parameter of:</t>

<figure><artwork><![CDATA[
   info = (HashLen / 256) || (HashLen % 256) || 0x21 ||
          "TLS 1.3, QUIC client 1-RTT secret" || 0x00
]]></artwork></figure>

</section>
<section anchor="packet-protection-key-and-iv" title="Packet Protection Key and IV">

<t>The complete key expansion uses an identical process for key expansion as
defined in Section 7.3 of <xref target="I-D.ietf-tls-tls13"/>, using different values for
the input secret.  QUIC uses the AEAD function negotiated by TLS.</t>

<t>The packet protection key and IV used to protect the 0-RTT packets sent by a
client are derived from the QUIC 0-RTT secret. The packet protection keys
and IVs for 1-RTT packets sent by the client and server are derived from
the current generation of client_pp_secret and server_pp_secret respectively.
The length of the output is determined by the requirements of the AEAD function
selected by TLS.  The key length is the AEAD key size.  As defined in Section
5.3 of <xref target="I-D.ietf-tls-tls13"/>, the IV length is the larger of 8 or N_MIN (see
Section 4 of <xref target="RFC5116"/>). For any secret S, the corresponding key and
IV are derived as shown below:</t>

<figure><artwork><![CDATA[
   key = HKDF-Expand-Label(S, "key", "", key_length)
   iv  = HKDF-Expand-Label(S, "iv", "", iv_length)
]]></artwork></figure>

<t>The QUIC record protection initially starts without keying material.  When the
TLS state machine reports that the ClientHello has been sent, the 0-RTT keys can
be generated and installed for writing.  When the TLS state machine reports
completion of the handshake, the 1-RTT keys can be generated and installed for
writing.</t>

</section>
</section>
<section anchor="aead" title="QUIC AEAD Usage">

<t>The Authentication Encryption with Associated Data (AEAD) <xref target="RFC5116"/> function
used for QUIC packet protection is 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>Regular QUIC packets are protected by an AEAD algorithm <xref target="RFC5116"/>.  Version
negotiation and public reset packets are not protected.</t>

<t>Once TLS has provided a key, the contents of regular QUIC packets immediately
after any TLS messages have been sent are protected by the AEAD selected by TLS.</t>

<t>The key, K, is either the client packet protection key (client_pp_key_n) or the
server packet protection key (server_pp_key_n), derived as defined in
<xref target="key-expansion"/>.</t>

<t>The nonce, N, is formed by combining the packet protection IV (either
client_pp_iv_n or server_pp_iv_n) with the packet number.  The 64 bits of the
reconstructed QUIC packet number in network byte order is 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 octet in the common header.</t>

<t>The input plaintext, P, for the AEAD is the contents of the QUIC frame following
the packet number, as described in <xref target="QUIC-TRANSPORT"/>.</t>

<t>The output ciphertext, C, of the AEAD is transmitted in place of P.</t>

<t>Prior to TLS providing keys, no record protection is performed and the
plaintext, P, is transmitted unmodified.</t>

</section>
<section anchor="packet-number" title="Packet Numbers">

<t>QUIC has a single, contiguous packet number space.  In comparison, TLS
restarts its sequence number each time that record protection keys are
changed.  The sequence number restart in TLS ensures that a compromise of the
current traffic keys does not allow an attacker to truncate the data that is
sent after a key update by sending additional packets under the old key
(causing new packets to be discarded).</t>

<t>QUIC does not assume a reliable transport and is required to handle attacks
where packets are dropped in other ways.  QUIC is therefore not affected by this
form of truncation.</t>

<t>The QUIC packet number is not reset and it is not permitted to go higher than
its maximum value of 2^64-1.  This establishes a hard limit on the number of
packets that can be sent.</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>

<t>TLS maintains a separate sequence number that is used for record protection on
the connection that is hosted on stream 0.  This sequence number is not visible
to QUIC.</t>

</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 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="packet-number-gaps" title="Packet Number Gaps">

<t><xref target="QUIC-TRANSPORT"/>; Section 7.5.1.1 also requires a secret to compute packet
number gaps on connection ID transitions. That secret is computed as:</t>

<figure><artwork><![CDATA[
      packet_number_secret
          = TLS-Exporter("EXPORTER-QUIC Packet Number Secret"
                         "", Hash.length)
]]></artwork></figure>

</section>
</section>
<section anchor="unprotected-packets" title="Unprotected Packets">

<t>QUIC adds an integrity check to all unprotected packets.  Any packet that is not
protected by the negotiated AEAD (see <xref target="packet-protection"/>), includes an
integrity check.  This check does not prevent the packet from being altered, it
exists for added resilience against data corruption and to provided added
assurance that the sender intends to use QUIC.</t>

<t>Unprotected packets all use the long form of the QUIC header and so will include
a version number.  For this version of QUIC, the integrity check uses the 64-bit
FNV-1a hash (see <xref target="fnv1a"/>).  The output of this hash is appended to the payload
of the packet.</t>

<t>The integrity check algorithm MAY change for other versions of the protocol.</t>

<section anchor="integrity-check-processing" title="Integrity Check Processing">

<t>An endpoint sending a packet that has a long header and a type that does not
indicate that the packet will be protected (that is, 0-RTT Encrypted (0x05),
1-RTT Encrypted (key phase 0) (0x06), or 1-RTT Encrypted (key phase 1) (0x07))
first constructs the packet that it sends without the integrity check.</t>

<t>The sender then calculates the integrity check over the entire packet, starting
from the type field.  The output of the hash is appended to the packet.</t>

<t>A receiver that receives an unprotected packet first checks that the version is
correct, then removes the trailing 8 octets.  It calculates the integrity check
over the remainder of the packet.  Unprotected packets that do not contain a
valid integrity check MUST be discarded.</t>

</section>
<section anchor="fnv1a" title="The 64-bit FNV-1a Algorithm">

<t>QUIC uses the 64-bit version of the alternative Fowler/Noll/Vo hash (FNV-1a)
<xref target="FNV"/>.</t>

<t>FNV-1a can be expressed in pseudocode as:</t>

<t><spanx style="verb">
hash := offset basis
for each input octet:
    hash := hash XOR input octet
    hash := hash * prime
</spanx></t>

<t>That is, a 64-bit unsigned integer is initialized with an offset basis.  Then,
for each octet of the input, the exclusive binary OR of the value is taken, then
multiplied by a prime.  Any overflow from multiplication is discarded.</t>

<t>The offset basis for the 64-bit FNV-1a is the decimal value 14695981039346656037
(in hex, 0xcbf29ce484222325).  The prime is 1099511628211 (in hex,
0x100000001b3; or as an expression 2^40 + 2^8 + 0xb3).</t>

<t>Once all octets have been processed in this fashion, the final integer value is
encoded as 8 octets in network byte order.</t>

</section>
</section>
<section anchor="key-phases" title="Key Phases">

<t>As TLS reports the availability of 0-RTT and 1-RTT keys, new keying material can
be exported from TLS and used for QUIC packet protection.  At each transition
during the handshake a new secret is exported from TLS and packet protection
keys are derived from that secret.</t>

<t>Every time that a new set of keys is used for protecting outbound packets, the
KEY_PHASE bit in the public flags is toggled.  0-RTT protected packets use the
QUIC long header, they do not use the KEY_PHASE bit to select the correct keys
(see <xref target="first-keys"/>).</t>

<t>Once the connection is fully enabled, the KEY_PHASE bit allows a recipient to
detect a change in keying material without necessarily needing to receive the
first packet that triggered the change.  An endpoint that notices a changed
KEY_PHASE bit can update keys and decrypt the packet that contains the changed
bit, see <xref target="key-update"/>.</t>

<t>The KEY_PHASE bit is included as the 0x20 bit of the QUIC short header, or is
determined by the packet type from the long header (a type of 0x06 indicates a
key phase of 0, 0x07 indicates key phase 1).</t>

<t>Transitions between keys during the handshake are complicated by the need to
ensure that TLS handshake messages are sent with the correct packet protection.</t>

<section anchor="cleartext-hs" title="Packet Protection for the TLS Handshake">

<t>The initial exchange of packets are sent without protection.  These packets use
a cleartext packet type.</t>

<t>TLS handshake messages MUST NOT be protected using QUIC packet protection.  All
TLS handshake messages up to the TLS Finished message sent by either endpoint
use cleartext packets.</t>

<t>Any TLS handshake messages that are sent after completing the TLS handshake do
not need special packet protection rules.  Packets containing these messages use
the packet protection keys that are current at the time of sending (or
retransmission).</t>

<t>Like the client, a server MUST send retransmissions of its unprotected handshake
messages or acknowledgments for unprotected handshake messages sent by the
client in cleartext packets.</t>

<section anchor="first-keys" title="Initial Key Transitions">

<t>Once the TLS handshake is complete, keying material is exported from TLS and
QUIC packet protection commences.</t>

<t>Packets protected with 1-RTT keys initially have a KEY_PHASE bit set to 0.  This
bit inverts with each subsequent key update (see <xref target="key-update"/>).</t>

<t>If the client sends 0-RTT data, it uses the 0-RTT packet type.  The packet that
contains the TLS EndOfEarlyData and Finished messages are sent in cleartext
packets.</t>

<t>Using distinct packet types during the handshake for handshake messages, 0-RTT
data, and 1-RTT data ensures that the server is able to distinguish between the
different keys used to remove packet protection.  All of these packets can
arrive concurrently at a server.</t>

<t>A server might choose to retain 0-RTT packets that arrive before a TLS
ClientHello.  The server can then use those packets once the ClientHello
arrives.  However, the potential for denial of service from buffering 0-RTT
packets is significant.  These packets cannot be authenticated and so might be
employed by an attacker to exhaust server resources.  Limiting the number of
packets that are saved might be necessary.</t>

<t>The server transitions to using 1-RTT keys after sending its first flight of TLS
handshake messages.  From this point, the server protects all packets with 1-RTT
keys.  Future packets are therefore protected with 1-RTT keys.  Initially, these
are marked with a KEY_PHASE of 0.</t>

</section>
<section anchor="retransmission-and-acknowledgment-of-unprotected-packets" title="Retransmission and Acknowledgment of Unprotected Packets">

<t>TLS handshake messages from both client and server are critical to the key
exchange.  The contents of these messages determines the keys used to protect
later messages.  If these handshake messages are included in packets that are
protected with these keys, they will be indecipherable to the recipient.</t>

<t>Even though newer keys could be available when retransmitting, retransmissions
of these handshake messages MUST be sent in cleartext packets.  An endpoint
MUST generate ACK frames for these messages and send them in cleartext packets.</t>

<t>A HelloRetryRequest handshake message might be used to reject an initial
ClientHello.  A HelloRetryRequest handshake message is sent in a Server
Stateless Retry packet; any second ClientHello that is sent in response uses a
Client Initial packet type.  Neither packet is protected.  This is natural,
because no new keying material will be available when these messages need to be
sent.  Upon receipt of a HelloRetryRequest, a client SHOULD cease any
transmission of 0-RTT data; 0-RTT data will only be discarded by any server that
sends a HelloRetryRequest.</t>

<t>The packet type ensures that protected packets are clearly distinguished from
unprotected packets.  Loss or reordering might cause unprotected packets to
arrive once 1-RTT keys are in use, unprotected packets are easily distinguished
from 1-RTT packets using the packet type.</t>

<t>Once 1-RTT keys are available to an endpoint, it no longer needs the TLS
handshake messages that are carried in unprotected packets.  However, a server
might need to retransmit its TLS handshake messages in response to receiving an
unprotected packet that contains ACK frames.  A server MUST process ACK frames
in unprotected packets until the TLS handshake is reported as complete, or it
receives an ACK frame in a protected packet that acknowledges all of its
handshake messages.</t>

<t>To limit the number of key phases that could be active, an endpoint MUST NOT
initiate a key update while there are any unacknowledged handshake messages, see
<xref target="key-update"/>.</t>

</section>
</section>
<section anchor="key-update" title="Key Update">

<t>Once the TLS handshake is complete, the KEY_PHASE bit allows for refreshes of
keying material by either peer.  Endpoints start using updated keys immediately
without additional signaling; the change in the KEY_PHASE bit indicates that a
new key is in use.</t>

<t>An endpoint MUST NOT initiate more than one key update at a time.  A new key
cannot be used until the endpoint has received and successfully decrypted a
packet with a matching KEY_PHASE.  Note that when 0-RTT is attempted the value
of the KEY_PHASE bit will be different on packets sent by either peer.</t>

<t>A receiving endpoint detects an update when the KEY_PHASE bit doesn’t match what
it is expecting.  It creates a new secret (see <xref target="key-expansion"/>) and the
corresponding read key and IV.  If the packet can be decrypted and authenticated
using these values, then the keys it uses for packet protection are also
updated.  The next packet sent by the endpoint will then use the new keys.</t>

<t>An endpoint doesn’t need to send packets immediately when it detects that its
peer has updated keys.  The next packet that it sends will simply use the new
keys.  If an endpoint detects a second update before it has sent any packets
with updated keys it indicates that its peer has updated keys twice without
awaiting a reciprocal update.  An endpoint MUST treat consecutive key updates as
a fatal error and abort the connection.</t>

<t>An endpoint SHOULD retain old keys for a short period to allow it to decrypt
packets with smaller packet numbers than the packet that triggered the key
update.  This allows an endpoint to consume packets that are reordered around
the transition between keys.  Packets with higher packet numbers always use the
updated keys and MUST NOT be decrypted with old keys.</t>

<t>Keys and their corresponding secrets SHOULD be discarded when an endpoint has
received all packets with sequence numbers lower than the lowest sequence number
used for the new key.  An endpoint might discard keys if it determines that the
length of the delay to affected packets is excessive.</t>

<t>This ensures that once the handshake is complete, packets with the same
KEY_PHASE will have the same packet protection keys, unless there are multiple
key updates in a short time frame succession and significant packet reordering.</t>

<figure title="Key Update" anchor="ex-key-update"><artwork><![CDATA[
   Initiating Peer                    Responding Peer

@M QUIC Frames
               New Keys -> @N
@N QUIC Frames
                      -------->
                                          QUIC Frames @M
                          New Keys -> @N
                                          QUIC Frames @N
                      <--------
]]></artwork></figure>

<t>As shown in <xref target="quic-tls-handshake"/> and <xref target="ex-key-update"/>, there is never a
situation where there are more than two different sets of keying material that
might be received by a peer.  Once both sending and receiving keys have been
updated,</t>

<t>A server cannot initiate a key update until it has received the client’s
Finished message.  Otherwise, packets protected by the updated keys could be
confused for retransmissions of handshake messages.  A client cannot initiate a
key update until all of its handshake messages have been acknowledged by the
server.</t>

<t>A packet that triggers a key update could arrive after successfully processing a
packet with a higher packet number.  This is only possible if there is a key
compromise and an attack, or if the peer is incorrectly reverting to use of old
keys.  Because the latter cannot be differentiated from an attack, an endpoint
MUST immediately terminate the connection if it detects this condition.</t>

</section>
</section>
<section anchor="client-address-validation" title="Client Address Validation">

<t>Two tools are provided by TLS to enable validation of client source addresses at
a server: the cookie in the HelloRetryRequest message, and the ticket in the
NewSessionTicket message.</t>

<section anchor="helloretryrequest-address-validation" title="HelloRetryRequest Address Validation">

<t>The cookie extension in the TLS HelloRetryRequest message allows a server to
perform source address validation during the handshake.</t>

<t>When QUIC requests address validation during the processing of the first
ClientHello, the token it provides is included in the cookie extension of a
HelloRetryRequest.  As long as the cookie cannot be successfully guessed by a
client, the server can be assured that the client received the HelloRetryRequest
if it includes the value in a second ClientHello.</t>

<t>An initial ClientHello never includes a cookie extension.  Thus, if a server
constructs a cookie that contains all the information necessary to reconstruct
state, it can discard local state after sending a HelloRetryRequest.  Presence
of a valid cookie in a ClientHello indicates that the ClientHello is a second
attempt from the client.</t>

<t>An address validation token can be extracted from a second ClientHello and
passed to the transport for further validation.  If that validation fails, the
server MUST fail the TLS handshake and send an illegal_parameter alert.</t>

<t>Combining address validation with the other uses of HelloRetryRequest ensures
that there are fewer ways in which an additional round-trip can be added to the
handshake.  In particular, this makes it possible to combine a request for
address validation with a request for a different client key share.</t>

<t>If TLS needs to send a HelloRetryRequest for other reasons, it needs to ensure
that it can correctly identify the reason that the HelloRetryRequest was
generated.  During the processing of a second ClientHello, TLS does not need to
consult the transport protocol regarding address validation if address
validation was not requested originally.  In such cases, the cookie extension
could either be absent or it could indicate that an address validation token is
not present.</t>

<section anchor="stateless-address-validation" title="Stateless Address Validation">

<t>A server can use the cookie extension to store all state necessary to continue
the connection.  This allows a server to avoid committing state for clients that
have unvalidated source addresses.</t>

<t>For instance, a server could use a statically-configured key to encrypt the
information that it requires and include that information in the cookie.  In
addition to address validation information, a server that uses encryption also
needs to be able recover the hash of the ClientHello and its length, plus any
information it needs in order to reconstruct the HelloRetryRequest.</t>

</section>
<section anchor="sending-helloretryrequest" title="Sending HelloRetryRequest">

<t>A server does not need to maintain state for the connection when sending a
HelloRetryRequest message.  This might be necessary to avoid creating a denial
of service exposure for the server.  However, this means that information about
the transport will be lost at the server.  This includes the stream offset of
stream 0, the packet number that the server selects, and any opportunity to
measure round trip time.</t>

<t>A server MUST send a TLS HelloRetryRequest in a Server Stateless Retry packet.
Using a Server Stateless Retry packet causes the client to reset stream offsets.
It also avoids the need for the server select an initial packet number, which
would need to be remembered so that subsequent packets could be correctly
numbered.</t>

<t>A HelloRetryRequest message MUST NOT be split between multiple Server Stateless
Retry packets.  This means that HelloRetryRequest is subject to the same size
constraints as a ClientHello (see <xref target="clienthello-size"/>).</t>

</section>
</section>
<section anchor="newsessionticket-address-validation" title="NewSessionTicket Address Validation">

<t>The ticket in the TLS NewSessionTicket message allows a server to provide a
client with a similar sort of token.  When a client resumes a TLS connection -
whether or not 0-RTT is attempted - it includes the ticket in the handshake
message.  As with the HelloRetryRequest cookie, the server includes the address
validation token in the ticket.  TLS provides the token it extracts from the
session ticket to the transport when it asks whether source address validation
is needed.</t>

<t>If both a HelloRetryRequest cookie and a session ticket are present in the
ClientHello, only the token from the cookie is passed to the transport.  The
presence of a cookie indicates that this is a second ClientHello - the token
from the session ticket will have been provided to the transport when it
appeared in the first ClientHello.</t>

<t>A server can send a NewSessionTicket message at any time.  This allows it to
update the state - and the address validation token - that is included in the
ticket.  This might be done to refresh the ticket or token, or it might be
generated in response to changes in the state of the connection.  QUIC can
request that a NewSessionTicket be sent by providing a new address validation
token.</t>

<t>A server that intends to support 0-RTT SHOULD provide an address validation
token immediately after completing the TLS handshake.</t>

</section>
<section anchor="validation-token-integrity" title="Address Validation Token Integrity">

<t>TLS MUST provide integrity protection for address validation token unless the
transport guarantees integrity protection by other means.  For a
NewSessionTicket that includes confidential information - such as the resumption
secret - including the token under authenticated encryption ensures that the
token gains both confidentiality and integrity protection without duplicating
the overheads of that protection.</t>

</section>
</section>
<section anchor="pre-hs" title="Pre-handshake QUIC Messages">

<t>Implementations MUST NOT exchange data on any stream other than stream 0 without
packet protection.  QUIC requires the use of several types of frame for managing
loss detection and recovery during this phase.  In addition, it might be useful
to use the data acquired during the exchange of unauthenticated messages for
congestion control.</t>

<t>This section generally only applies to TLS handshake messages from both peers
and acknowledgments of the packets carrying those messages.  In many cases, the
need for servers to provide acknowledgments is minimal, since the messages that
clients send are small and implicitly acknowledged by the server’s responses.</t>

<t>The actions that a peer takes as a result of receiving an unauthenticated packet
needs to be limited.  In particular, state established by these packets cannot
be retained once record protection commences.</t>

<t>There are several approaches possible for dealing with unauthenticated packets
prior to handshake completion:</t>

<t><list style="symbols">
  <t>discard and ignore them</t>
  <t>use them, but reset any state that is established once the handshake completes</t>
  <t>use them and authenticate them afterwards; failing the handshake if they can’t
be authenticated</t>
  <t>save them and use them when they can be properly authenticated</t>
  <t>treat them as a fatal error</t>
</list></t>

<t>Different strategies are appropriate for different types of data.  This document
proposes that all strategies are possible depending on the type of message.</t>

<t><list style="symbols">
  <t>Transport parameters are made usable and authenticated as part of the TLS
handshake (see <xref target="quic_parameters"/>).</t>
  <t>Most unprotected messages are treated as fatal errors when received except for
the small number necessary to permit the handshake to complete (see
<xref target="pre-hs-unprotected"/>).</t>
  <t>Protected packets can either be discarded or saved and later used (see
<xref target="pre-hs-protected"/>).</t>
</list></t>

<section anchor="pre-hs-unprotected" title="Unprotected Packets Prior to Handshake Completion">

<t>This section describes the handling of messages that are sent and received prior
to the completion of the TLS handshake.</t>

<t>Sending and receiving unprotected messages is hazardous.  Unless expressly
permitted, receipt of an unprotected message of any kind MUST be treated as a
fatal error.</t>

<section anchor="stream-frames" title="STREAM Frames">

<t><spanx style="verb">STREAM</spanx> frames for stream 0 are permitted.  These carry the TLS handshake
messages.  Once 1-RTT keys are available, unprotected <spanx style="verb">STREAM</spanx> frames on stream
0 can be ignored.</t>

<t>Receiving unprotected <spanx style="verb">STREAM</spanx> frames for other streams MUST be treated as a
fatal error.</t>

</section>
<section anchor="ack-frames" title="ACK Frames">

<t><spanx style="verb">ACK</spanx> frames are permitted prior to the handshake being complete.  Information
learned from <spanx style="verb">ACK</spanx> frames cannot be entirely relied upon, since an attacker is
able to inject these packets.  Timing and packet retransmission information from
<spanx style="verb">ACK</spanx> frames is critical to the functioning of the protocol, but these frames
might be spoofed or altered.</t>

<t>Endpoints MUST NOT use an unprotected <spanx style="verb">ACK</spanx> frame to acknowledge data that was
protected by 0-RTT or 1-RTT keys.  An endpoint MUST ignore an unprotected <spanx style="verb">ACK</spanx>
frame if it claims to acknowledge data that was sent in a protected packet.
Such an acknowledgement can only serve as a denial of service, since an endpoint
that can read protected data is always able to send protected data.</t>

<t><list style="hanging">
  <t hangText='ISSUE:'>
  What about 0-RTT data?  Should we allow acknowledgment of 0-RTT with
unprotected frames?  If we don’t, then 0-RTT data will be unacknowledged until
the handshake completes.  This isn’t a problem if the handshake completes
without loss, but it could mean that 0-RTT stalls when a handshake packet
disappears for any reason.</t>
</list></t>

<t>An endpoint SHOULD use data from unprotected or 0-RTT-protected <spanx style="verb">ACK</spanx> frames
only during the initial handshake and while they have insufficient information
from 1-RTT-protected <spanx style="verb">ACK</spanx> frames.  Once sufficient information has been
obtained from protected messages, information obtained from less reliable
sources can be discarded.</t>

</section>
<section anchor="updates-to-data-and-stream-limits" title="Updates to Data and Stream Limits">

<t><spanx style="verb">MAX_DATA</spanx>, <spanx style="verb">MAX_STREAM_DATA</spanx>, <spanx style="verb">BLOCKED</spanx>, <spanx style="verb">STREAM_BLOCKED</spanx>, and <spanx style="verb">MAX_STREAM_ID</spanx>
frames MUST NOT be sent unprotected.</t>

<t>Though data is exchanged on stream 0, the initial flow control window on that
stream is sufficiently large to allow the TLS handshake to complete.  This
limits the maximum size of the TLS handshake and would prevent a server or
client from using an abnormally large certificate chain.</t>

<t>Stream 0 is exempt from the connection-level flow control window.</t>

<t>Consequently, there is no need to signal being blocked on flow control.</t>

<t>Similarly, there is no need to increase the number of allowed streams until the
handshake completes.</t>

</section>
<section anchor="denial-of-service-with-unprotected-packets" title="Denial of Service with Unprotected Packets">

<t>Accepting unprotected - specifically unauthenticated - packets presents a denial
of service risk to endpoints.  An attacker that is able to inject unprotected
packets can cause a recipient to drop even protected packets with a matching
sequence number.  The spurious packet shadows the genuine packet, causing the
genuine packet to be ignored as redundant.</t>

<t>Once the TLS handshake is complete, both peers MUST ignore unprotected packets.
From that point onward, unprotected messages can be safely dropped.</t>

<t>Since only TLS handshake packets and acknowledgments are sent in the clear, an
attacker is able to force implementations to rely on retransmission for packets
that are lost or shadowed.  Thus, an attacker that intends to deny service to an
endpoint has to drop or shadow protected packets in order to ensure that their
victim continues to accept unprotected packets.  The ability to shadow packets
means that an attacker does not need to be on path.</t>

<t>In addition to causing valid packets to be dropped, an attacker can generate
packets with an intent of causing the recipient to expend processing resources.
See <xref target="useless"/> for a discussion of these risks.</t>

<t>To avoid receiving TLS packets that contain no useful data, a TLS implementation
MUST reject empty TLS handshake records and any record that is not permitted by
the TLS state machine.  Any TLS application data or alerts that is received
prior to the end of the handshake MUST be treated as a fatal error.</t>

</section>
</section>
<section anchor="using-early-data" title="Use of 0-RTT Keys">

<t>If 0-RTT keys are available, 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.</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.</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>Packets protected with 1-RTT keys MAY be stored and later decrypted and used
once the handshake is complete.  A server MUST NOT use 1-RTT protected packets
before verifying either the client Finished message or - in the case that the
server has chosen to use a pre-shared key - the pre-shared key binder (see
Section 4.2.8 of <xref target="I-D.ietf-tls-tls13"/>).  Verifying these values provides the
server with an assurance that the ClientHello has not been modified.</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>

<t>Receiving and verifying the TLS Finished message is critical in ensuring the
integrity of the TLS handshake.  A server MUST NOT use protected packets from
the client prior to verifying the client Finished message if its response
depends on client authentication.</t>

</section>
</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 validates protocol version selection, provides
preliminary values for QUIC transport parameters, and allows a server to perform
return routeability checks on clients.</t>

<section anchor="version-negotiation" title="Protocol and Version Negotiation">

<t>The QUIC version negotiation mechanism is used to negotiate the version of QUIC
that is used prior to the completion of the handshake.  However, this packet is
not authenticated, enabling an active attacker to force a version downgrade.</t>

<t>To ensure that a QUIC version downgrade is not forced by an attacker, version
information is copied into the TLS handshake, which provides integrity
protection for the QUIC negotiation.  This does not prevent version downgrade
prior to the completion of the handshake, though it means that a downgrade
causes a handshake failure.</t>

<t>TLS uses Application Layer Protocol Negotiation (ALPN) <xref target="RFC7301"/> to select an
application protocol.  The 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.</t>

<t>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 incompatible combination of QUIC version and ALPN
identifier.</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 format for this struct.</t>

<t>Including transport parameters in the TLS handshake provides integrity
protection for these values.</t>

<figure><artwork><![CDATA[
   enum {
      quic_transport_parameters(26), (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.  The
quic_transport_parameters extension carries a TransportParameters when the
version of QUIC defined in <xref target="QUIC-TRANSPORT"/> is used.</t>

<t>The quic_transport_parameters extension is carried in the ClientHello and the
EncryptedExtensions messages during the handshake.  The extension MAY be
included in a NewSessionTicket message.</t>

</section>
<section anchor="priming-0-rtt" title="Priming 0-RTT">

<t>QUIC uses TLS without modification.  Therefore, it is possible to use a
pre-shared key that was established in a TLS handshake over TCP to enable 0-RTT
in QUIC.  Similarly, QUIC can provide a pre-shared key that can be used to
enable 0-RTT in TCP.</t>

<t>All the restrictions on the use of 0-RTT apply, with the exception of the ALPN
label, which MUST only change to a label that is explicitly designated as being
compatible.  The client indicates which ALPN label it has chosen by placing that
ALPN label first in the ALPN extension.</t>

<t>The certificate that the server uses MUST be considered valid for both
connections, which will use different protocol stacks and could use different
port numbers.  For instance, HTTP/1.1 and HTTP/2 operate over TLS and TCP,
whereas QUIC operates over UDP.</t>

<t>Source address validation is not completely portable between different protocol
stacks.  Even if the source IP address remains constant, the port number is
likely to be different.  Packet reflection attacks are still possible in this
situation, though the set of hosts that can initiate these attacks is greatly
reduced.  A server might choose to avoid source address validation for such a
connection, or allow an increase to the amount of data that it sends toward the
client without source validation.</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="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>Certificate caching <xref target="RFC7924"/> can reduce the size of the server’s handshake
messages significantly.</t>

<t>QUIC requires that the packet containing a ClientHello be padded to a minimum
size.  A server is less likely to generate a packet reflection attack if the
data it sends is a small multiple of this size.  A server SHOULD use a
HelloRetryRequest if the size of the handshake messages it sends is likely to
significantly exceed the size of the packet containing the ClientHello.</t>

</section>
<section anchor="useless" title="Peer Denial of Service">

<t>QUIC, TLS and HTTP/2 all contain a messages that have legitimate uses in some
contexts, but that can be abused to cause a peer to expend processing resources
without having any observable impact on the state of the connection.  If
processing is disproportionately large in comparison to the observable effects
on bandwidth or state, then this could allow a malicious peer to exhaust
processing capacity without consequence.</t>

<t>QUIC prohibits the sending of empty <spanx style="verb">STREAM</spanx> frames unless they are marked with
the FIN bit.  This prevents <spanx style="verb">STREAM</spanx> frames from being sent that only waste
effort.</t>

<t>TLS records SHOULD always contain at least one octet of a handshake messages or
alert.  Records containing only padding are permitted during the handshake, but
an excessive number might be used to generate unnecessary work.  Once the TLS
handshake is complete, endpoints SHOULD NOT send TLS application data records
unless it is to hide the length of QUIC records.  QUIC packet protection does
not include any allowance for padding; padded TLS application data records can
be used to mask the length of QUIC frames.</t>

<t>While there are legitimate uses for some redundant packets, implementations
SHOULD track redundant packets and treat excessive volumes of any non-productive
packets as indicative of an attack.</t>

</section>
</section>
<section anchor="errors" title="Error codes">

<t>The portion of the QUIC error code space allocated for the crypto handshake is
0xC0000000-0xFFFFFFFF. The following error codes are defined when TLS is used
for the crypto handshake:</t>

<t><list style="hanging">
  <t hangText='TLS_HANDSHAKE_FAILED (0xC000001C):'>
  The TLS handshake failed.</t>
  <t hangText='TLS_FATAL_ALERT_GENERATED (0xC000001D):'>
  A TLS fatal alert was sent, causing the TLS connection to end prematurely.</t>
  <t hangText='TLS_FATAL_ALERT_RECEIVED (0xC000001E):'>
  A TLS fatal alert was received, causing the TLS connection to end prematurely.</t>
</list></t>

</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>This document does not create any new IANA registries, but it does utilize the
following registries:</t>

<t><list style="symbols">
  <t>QUIC Transport Parameter Registry - IANA is to register the three values found
in <xref target="errors"/>.</t>
  <t>TLS ExtensionsType Registry - IANA is to register the
quic_transport_parameters extension found in <xref target="quic_parameters"/>.  Assigning
26 to the extension would be greatly appreciated.  The Recommended column is
to be marked Yes.</t>
  <t>TLS Exporter Label Registry - IANA is requested to register
“EXPORTER-QUIC 0-RTT Secret” from <xref target="zero-rtt-secrets"/>;
“EXPORTER-QUIC client 1-RTT Secret” and “EXPORTER-QUIC server 1-RTT Secret”
from <xref target="one-rtt-secrets"/>; “EXPORTER-QUIC Packet Number Secret”
<xref target="packet-number-gaps"/>.  The DTLS column is to be marked No.  The Recommended
column is to be marked Yes.</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>Google</organization>
    </author>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
    </author>
    <date />
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-latest"/>
</reference>




<reference anchor="I-D.ietf-tls-tls13">
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>

<author initials='E' surname='Rescorla' fullname='Eric Rescorla'>
    <organization />
</author>

<date month='April' day='28' year='2017' />

<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></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-tls-tls13-20' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-tls13-20.txt' />
</reference>



<reference  anchor="RFC2119" target='http://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="RFC5869" target='http://www.rfc-editor.org/info/rfc5869'>
<front>
<title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
<author initials='H.' surname='Krawczyk' fullname='H. Krawczyk'><organization /></author>
<author initials='P.' surname='Eronen' fullname='P. Eronen'><organization /></author>
<date year='2010' month='May' />
<abstract><t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t></abstract>
</front>
<seriesInfo name='RFC' value='5869'/>
<seriesInfo name='DOI' value='10.17487/RFC5869'/>
</reference>



<reference  anchor="RFC5116" target='http://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="RFC7301" target='http://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>




    </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="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 />
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-latest"/>
</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>Google</organization>
    </author>
    <author initials="I." surname="Swett" fullname="Ian Swett" role="editor">
      <organization>Google</organization>
    </author>
    <date />
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-recovery-latest"/>
</reference>




<reference  anchor="RFC5280" target='http://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='http://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="FNV">
<front>
<title>The FNV Non-Cryptographic Hash Algorithm</title>

<author initials='G' surname='Fowler' fullname='Glenn Fowler'>
    <organization />
</author>

<author initials='L' surname='Noll' fullname='Landon Noll'>
    <organization />
</author>

<author initials='K' surname='Vo' fullname='Kiem-Phong Vo'>
    <organization />
</author>

<author initials='D' surname='Eastlake' fullname='Donald Eastlake'>
    <organization />
</author>

<author initials='T' surname='Hansen' fullname='Tony Hansen'>
    <organization />
</author>

<date month='June' day='8' year='2017' />

<abstract><t>FNV (Fowler/Noll/Vo) is a fast, non-cryptographic hash algorithm with good dispersion. The purpose of this document is to make information on FNV and open source code performing FNV conveniently available to the Internet community.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-eastlake-fnv-13' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-eastlake-fnv-13.txt' />
</reference>



<reference  anchor="RFC7924" target='http://www.rfc-editor.org/info/rfc7924'>
<front>
<title>Transport Layer Security (TLS) Cached Information Extension</title>
<author initials='S.' surname='Santesson' fullname='S. Santesson'><organization /></author>
<author initials='H.' surname='Tschofenig' fullname='H. Tschofenig'><organization /></author>
<date year='2016' month='July' />
<abstract><t>Transport Layer Security (TLS) handshakes often include fairly static information, such as the server certificate and a list of trusted certification authorities (CAs).  This information can be of considerable size, particularly if the server certificate is bundled with a complete certificate chain (i.e., the certificates of intermediate CAs up to the root CA).</t><t>This document defines an extension that allows a TLS client to inform a server of cached information, thereby enabling the server to omit already available information.</t></abstract>
</front>
<seriesInfo name='RFC' value='7924'/>
<seriesInfo name='DOI' value='10.17487/RFC7924'/>
</reference>




    </references>


<section anchor="contributors" title="Contributors">

<t>Ryan Hamilton was originally an author of this specification.</t>

</section>
<section 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 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-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>


  </back>

<!-- ##markdown-source:
H4sIAIPoQFkAA819a3PbRpbo9/4VuHbdiuUhZUmOHUdOMuZYcqyNH7qSkpmp
rV0HIkEJYxDgAqBkRvH89nue3acBUFZm98OqKrFEAv04ffq8H+Px2LV5W2T7
yc9NXl4kZ3VaNsuqbpM36Tqrk9Nsuqrzdp08OHtzupW0FX+SJf/v56OXLj0/
r7Orffojqa7geXjKzappmS5gyFmdzttxnrXz8X+t8um4LZpxkbZZ07oZ/LOf
3BxMzg4/uyn8cVHV6/2kaWcuX9b7SVuvmnZvZ+fbnT2X1lm6H1bmrqv640Vd
rZY8sXNNm5azD2lRlTDmOmvcMt9P/r2tpqOkgRfqbN7Ab+sF/wLLW6TLJez2
P5xLV+1lVe+7JBnDf0mSl81+8nY7ObusFk1V0me8mbdp3eZl9EVVX8Dn1W95
UaT0QbZI82I/WdCj2y0/+uICP92eVgt6pq4Q2tksb6s6nvYUpl3VZVabWU+z
tLSf0pRN+bie2QkbeOoFfTo8jSurepG2+VW27+BbhNr47GTy7vT4/cnZPj0v
WHAPv9tPJsnPB8fjv6RNNkveroo2XxbZJ/gd4KwI4M/jHr0fHSh+0GR1ngFO
zSueIEmOyjaDjbTjA8SLAfTQERVJ8KVwQPgzln8FYv+2nRyts/Iirf3nDLZ/
S8u09xXB7sequigy/1nnNAbm6CDDrQgxiBT900Cg2POYHP6lWpWzJj6JN/ki
b5ukKpMJwCAr2xzvySw5LKf1etnm8MXPTZbgEt6c3hsCFm9gsp28Wa0/foo/
/Wk7OYbhal06n9/ezu7T8c7j8c4zXkpaX2RwUvcu23a5/+jR9fX1dt5cbNeX
q2I7nW6vPj7658flI5h/PDk8pz1sL2fzex7JXp+dHce7er1eZnWbfWoZgeZA
M47rCu5qVSQP8PEtJiT4+v8YZuHy74xUcOB/yZvLatk97/xj1v2GDzuf1lVT
zdsNxy2wODl8+f6Xw5O/9+9b8qZqmuQga7MpHSvespdVeQHLxT/h1xZG/B+D
Rp1NEcTr/1XX7Gg7Ob3O2rYzwxGQv/jzLw7v3Hg8TtLzBujJtHXu7DJvkOiv
FnCHklnWTOv8PGuSy+r6S+wOXlwhCQS21xDVc3hc2zxDWbXZh3f4v7b6cJKl
M7hMzh3kzXTVNHhu1TxpaW6EP9yljzDpskinGd5puNHMNpGbIecljpYgPce/
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

-->

</rfc>

