<?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-03" 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="5" day="21" />

    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    

    <abstract>


<t>This document describes how Transport Layer Security (TLS) is used to secure
QUIC.</t>



    </abstract>


    <note 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"/> as well as
“EXPORTER-QUIC client 1-RTT Secret” and
“EXPORTER-QUIC server 1-RTT Secret” from <xref target="one-rtt-secrets"/>.  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='December' day='13' year='2016' />

<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-12' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-eastlake-fnv-12.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:
H4sIAPeEIlkAA81963fbRpLv9/4rcO1zTywPKUty7DhykjHHkmNt/NCVlMzM
2bPrQCQoYQwCXACUzCiev/3Ws7saAGVldj+szkkskUA/q6vr8auq8Xjs2rwt
sv3k5yYvL5KzOi2bZVW3yZt0ndXJaTZd1Xm7Th6cvTndStqKP8mS//fz0UuX
np/X2dU+/ZFUV/A8POVm1bRMF9DkrE7n7TjP2vn4v1b5dNwWzbhI26xp3Qz+
2U9uDiZnh5/dFP64qOr1ftK0M5cv6/2krVdNu7ez8+3OnkvrLN0PI3PXVf3x
oq5WS+7YuaZNy9mHtKhKaHOdNW6Z7yf/3lbTUdLAC3U2b+C39YJ/geEt0uUS
ZvsfzqWr9rKq912SjOG/JMnLZj95u52cXVaLpirpM57M27Ru8zL6oqov4PPq
t7woUvogW6R5sZ8s6NHtlh99cYGfbk+rBT1TV7ja2Sxvqzru9hS6XdVlVpte
T7O0tJ9Sl035uJ7ZDht46gV9OtyNK6t6kbb5Vbbv4FtctfHZyeTd6fH7k7N9
el6o4B5+t59Mkp8Pjsd/SZtslrxdFW2+LLJP8DussxKA34979H60ofhBk9V5
BjQ1r7iDJDkq2wwm0o4PkC4GyENbVCLBl8IG4c9Y/pUV+7ft5GidlRdp7T/n
Zfu3tEx7X9Ha/VhVF0XmP+vsxkAfHWK4lSAGiaK/G7godj8mh3+pVuWsiXfi
Tb7I2yapymQCa5CVbY7nZJYcltN6vWxz+OLnJktwCG9O7w0tFk9gsp28Wa0/
foo//Wk7OYbmah0679/ezu7T8c7j8c4zHkpaX2SwU/cu23a5/+jR9fX1dt5c
bNeXq2I7nW6vPj7658flI+h/PDk8pzlsL2fze57IXp+dHcezer1eZnWbfWqZ
gObAM47rCs5qVSQP8PEtZiT4+v8YZeHw70xUsOF/yZvLatnd7/xj1v2GNzuf
1lVTzdsN2y1rcXL48v0vhyd/75+35E3VNMlB1mZT2lY8ZS+r8gKGi3/Cry20
+D+2GnU2xSVe/686Zkfbyel11radHo6A/cWff7F558bjcZKeN8BPpq1zZ5d5
g0x/tYAzlMyyZlrn51mTXFbXX7ru4MUVskC49hrieg63a5t7KKs2+/AO/9dW
H06ydAaHybmDvJmumgb3rZonLfWN6w9n6SN0uizSaYZnGk40X5t4m+HNSzda
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
FUDtdkWSTub+P7wMBwETCwEA

-->

</rfc>

