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

<!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-10" category="std">

  <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="2018" month="March" day="05"/>

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

<t>This document uses the terminology established in <xref target="QUIC-TRANSPORT"/>.</t>

<t>For brevity, the acronym TLS is used to refer to TLS 1.3.</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="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 responds after receiving the
first handshake message from the client.</t>
  <t>A 0-RTT handshake in which the client uses information it has previously
learned about the server to send application data immediately.  This
application data can be replayed by an attacker so it MUST NOT carry a
self-contained trigger for any non-idempotent action.</t>
</list></t>

<t>A simplified TLS 1.3 handshake with 0-RTT application data is shown in
<xref target="tls-full"/>, see <xref target="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="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

@H 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>: @H
                                               ServerHello
                                  {TLS Handshake Messages}
                            <--------
                        1-RTT Key => @1

                                           QUIC Frames <any> @1
                            <--------
@H 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 (H =
handshake, using keys from the well-known cleartext packet secret;
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
handshake packets (@H) to 1-RTT protection (@1), which happens after it sends
its final set of TLS handshake messages.</t>

<t>Note: two different types of packet are used during the handshake by both client
and server.  The Initial packet carries a TLS ClientHello message; the remainder
of the TLS handshake is carried in Handshake packets.  The Retry packet carries
a TLS HelloRetryRequest, if it is needed, and Handshake packets carry the
remainder of the server handshake.</t>

<t>The server sends TLS handshake messages without protection (@H).  The server
transitions from no protection (@H) 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 handshake (@H) 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="hs-protection"/>.</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
packets protected with handshake keys (see <xref target="handshake-secrets"/>).  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="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 1171 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="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 handshake packets (see <xref target="hs-protection"/>), 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="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="TLS13"/>).</t>

<section anchor="qhkdf-expand" title="QHKDF-Expand">

<t>QUIC uses the Hash-based Key Derivation Function (HKDF) <xref target="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>

<t>Most key derivations in this document use the QHKDF-Expand function, which uses
the HKDF expand function and is modelled on the HKDF-Expand-Label function from
TLS 1.3 (see Section 7.1 of <xref target="TLS13"/>). QHKDF-Expand differs from
HKDF-Expand-Label in that it uses a different base label and omits the Context
argument.</t>

<figure><artwork><![CDATA[
QHKDF-Expand(Secret, Label, Length) =
   HKDF-Expand(Secret, QhkdfExpandInfo, Length)
]]></artwork></figure>

<t>The HKDF-Expand function used by QHKDF-Expand uses the PRF hash function
negotiated by TLS, except for handshake secrets and keys derived from them (see
<xref target="handshake-secrets"/>).</t>

<t>Where the <spanx style="verb">info</spanx> parameter of HKDF-Expand is an encoded <spanx style="verb">QhkdfExpandInfo</spanx>
structure:</t>

<figure><artwork><![CDATA[
struct {
   uint16 length = Length;
   opaque label<6..255> = "QUIC " + Label;
} QhkdfExpandInfo;
]]></artwork></figure>

<t>For example, assuming a hash function with a 32 octet output, derivation for a
client packet protection key would use HKDF-Expand with an <spanx style="verb">info</spanx> parameter of
0x00200851554943206b6579.</t>

</section>
<section anchor="handshake-secrets" title="Handshake Secrets">

<t>Packets that carry the TLS handshake (Initial, Retry, and Handshake) are
protected with a secret derived from the connection ID used in the client’s
Initial packet.  Specifically:</t>

<figure><artwork><![CDATA[
handshake_salt = 0x9c108f98520a5c5c32968e950e8a2c5fe06d6c38
handshake_secret =
    HKDF-Extract(handshake_salt, client_connection_id)

client_handshake_secret =
   QHKDF-Expand(handshake_secret, "client hs", Hash.length)
server_handshake_secret =
   QHKDF-Expand(handshake_secret, "server hs", Hash.length)
]]></artwork></figure>

<t>The hash function for HKDF when deriving handshake secrets and keys is SHA-256
<xref target="FIPS180"/>.  The connection ID used with QHKDF-Expand is the connection ID
chosen by the client.</t>

<t>The handshake salt is a 20 octet sequence shown in the figure in hexadecimal
notation. Future versions of QUIC SHOULD generate a new salt value, thus
ensuring that the keys are different for each version of QUIC. This prevents a
middlebox that only recognizes one version of QUIC from seeing or modifying the
contents of handshake packets from future versions.</t>

</section>
<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 0rtt”
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-Early-Exporter("EXPORTER-QUIC 0rtt", "", 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 1rtt”; the initial server packet protection
secret uses the exporter label “EXPORTER-QUIC server 1rtt”.  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 1rtt", "", Hash.length)
server_pp_secret_0 =
   TLS-Exporter("EXPORTER-QUIC server 1rtt", "", Hash.length)
]]></artwork></figure>

<t>These secrets are used to derive the initial client and server packet protection
keys.</t>

</section>
<section anchor="updating-1-rtt-secrets" title="Updating 1-RTT Secrets">

<t>After a key update (see <xref target="key-update"/>), the 1-RTT secrets are updated using
QHKDF-Expand.  Updated secrets are derived from the existing packet protection
secret.  A Label parameter of “client 1rtt” is used for the client secret and
“server 1rtt” for the server.  The Length is the same as the native output of
the PRF hash function.</t>

<figure><artwork><![CDATA[
client_pp_secret_<N+1> =
  QHKDF-Update(client_pp_secret_<N>, "client 1rtt", Hash.length)
server_pp_secret_<N+1> =
  QHKDF-Update(server_pp_secret_<N>, "server 1rtt", Hash.length)
]]></artwork></figure>

<t>This allows for a succession of new secrets to be created as needed.</t>

</section>
<section anchor="packet-protection-keys" title="Packet Protection Keys">

<t>The complete key expansion uses a similar process for key expansion to that
defined in Section 7.3 of <xref target="TLS13"/>, using QHKDF-Expand in place of
HKDF-Expand-Label.  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 and server 1-RTT secrets (client_pp_secret_&lt;i&gt; and
server_pp_secret_&lt;i&gt;) respectively.</t>

<t>The length of the QHKDF-Expand 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="TLS13"/>, the IV length is the larger of 8 or N_MIN (see
Section 4 of <xref target="AEAD"/>; all ciphersuites defined in <xref target="TLS13"/> have
N_MIN set to 12).</t>

<t>For any secret S, the AEAD key uses a label of “key”, and the IV uses a label of
“iv”:</t>

<figure><artwork><![CDATA[
   key = QHKDF-Expand(S, "key", key_length)
   iv  = QHKDF-Expand(S, "iv", iv_length)
]]></artwork></figure>

<t>The QUIC record protection initially starts with keying material derived from
handshake keys.  For a client, when the TLS state machine reports that the
ClientHello has been sent, 0-RTT keys can be generated and installed for
writing, if 0-RTT is available.  Finally, the TLS state machine reports
completion of the handshake and 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="AEAD"/> 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>All QUIC packets other than Version Negotiation and Stateless Reset packets are
protected with an AEAD algorithm <xref target="AEAD"/>. Prior to establishing a shared
secret, packets are protected with AEAD_AES_128_GCM and a key derived from the
client’s connection ID (see <xref target="handshake-secrets"/>).  This provides protection
against off-path attackers and robustness against QUIC version unaware
middleboxes, but not against on-path attackers.</t>

<t>All ciphersuites currently defined for TLS 1.3 - and therefore QUIC - have a
16-byte authentication tag and produce an output 16 bytes larger than their
input.</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_&lt;i&gt;) or
the server packet protection key (server_pp_key_&lt;i&gt;), 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_&lt;i&gt; or server_pp_iv_&lt;i&gt;) 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 either the short or long header.</t>

<t>The input plaintext, P, for the AEAD is the content of the QUIC frame following
the header, as described in <xref target="QUIC-TRANSPORT"/>.</t>

<t>The output ciphertext, C, of the AEAD is transmitted in place of P.</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^62-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>Section 7.7.1.1 of <xref target="QUIC-TRANSPORT"/> 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", "", Hash.length)
]]></artwork></figure>

</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.</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="hs-protection" title="Packet Protection for the TLS Handshake">

<t>The initial exchange of packets that carry the TLS handshake are AEAD-protected
using the handshake secrets generated as described in <xref target="handshake-secrets"/>.
All TLS handshake messages up to the TLS Finished message sent by either
endpoint use packets protected with handshake keys.</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 packets protected with handshake keys.</t>

<section anchor="first-keys" title="Initial Key Transitions">

<t>Once the TLS handshake is complete, keying material is exported from TLS and
used to protect QUIC packets.</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 packets
protected with handshake keys.</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, ending in the Finished.
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 packets protected with handshake
keys.  An endpoint MUST generate ACK frames for these messages and send them in
packets protected with handshake keys.</t>

<t>A HelloRetryRequest handshake message might be used to reject an initial
ClientHello.  A HelloRetryRequest handshake message is sent in a Retry packet;
any second ClientHello that is sent in response uses a Initial packet type.
These packets are only protected with a predictable key (see
<xref target="handshake-secrets"/>).  This is natural, because no shared secret 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 Retry packet.  Using a 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 Retry packets.
This means that HelloRetryRequest is subject to the same size constraints as a
ClientHello (see <xref target="clienthello-size"/>).</t>

<t>A client might send multiple Initial packets in response to loss.  If a server
sends a Retry packet in response to an Initial packet, it does not have to
generate the same Retry packet each time.  Variations in Retry packet, if used
by a client, could lead to multiple connections derived from the same
ClientHello.  Reuse of the client nonce is not supported by TLS and could lead
to security vulnerabilities.  Clients that receive multiple Retry packets MUST
use only one and discard the remainder.</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 <spanx style="verb">ACK</spanx> frame in an unprotected packet to acknowledge
packets that were protected by 0-RTT or 1-RTT keys.  An endpoint MUST treat
receipt of an <spanx style="verb">ACK</spanx> frame in an unprotected packet that claims to acknowledge
protected packets as a connection error of type OPTIMISTIC_ACK.  An endpoint
that can read protected data is always able to send protected data.</t>

<t><list style="hanging">
  <t hangText='Note:'>
  0-RTT data can be acknowledged by the server as it receives it, but any
packets containing acknowledgments of 0-RTT data cannot have packet protection
removed by the client until the TLS handshake is complete.  The 1-RTT keys
necessary to remove packet protection cannot be derived until the client
receives all server handshake messages.</t>
</list></t>

<t>An endpoint SHOULD use data from <spanx style="verb">ACK</spanx> frames carried in unprotected packets or
packets protected with 0-RTT keys only during the initial handshake.  All <spanx style="verb">ACK</spanx>
frames contained in unprotected packets that are received after successful
receipt of a packet protected with 1-RTT keys MUST be discarded.  An endpoint
SHOULD therefore include acknowledgments for unprotected and any packets
protected with 0-RTT keys until it sees an acknowledgment for a packet that is
both protected with 1-RTT keys and contains an <spanx style="verb">ACK</spanx> frame.</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="handshake-failures" title="Handshake Failures">

<t>The <spanx style="verb">CONNECTION_CLOSE</spanx> frame MAY be sent by either endpoint in a Handshake
packet.  This allows an endpoint to signal a fatal error with connection
establishment.  A <spanx style="verb">STREAM</spanx> frame carrying a TLS alert MAY be included in the
same packet.</t>

</section>
<section anchor="address-verification" title="Address Verification">

<t>In order to perform source-address verification before the handshake is
complete, <spanx style="verb">PATH_CHALLENGE</spanx> and <spanx style="verb">PATH_RESPONSE</spanx> frames MAY be exchanged
unprotected.</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="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.</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. In order to be usable for 0-RTT,
the NewSessionTicket MUST contain the “max_early_data” extension with the
value 0xffffffff; the amount of data which the client can send in 0-RTT
is controlled by the “initial_max_data” transport parameter supplied by the
server. A client MUST treat receipt of a NewSessionTicket that contains a
“max_early_data” extension with any other value as a connection error of type
PROTOCOL_VIOLATION.</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>This section defines error codes from the error code space used in
<xref target="QUIC-TRANSPORT"/>.</t>

<t>The following error codes are defined when TLS is used for the crypto handshake:</t>

<t><list style="hanging">
  <t hangText='TLS_HANDSHAKE_FAILED (0x201):'>
  The TLS handshake failed.</t>
  <t hangText='TLS_FATAL_ALERT_GENERATED (0x202):'>
  A TLS fatal alert was sent, causing the TLS connection to end prematurely.</t>
  <t hangText='TLS_FATAL_ALERT_RECEIVED (0x203):'>
  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 registers the
values in the following registries:</t>

<t><list style="symbols">
  <t>QUIC Transport Error Codes Registry <xref target="QUIC-TRANSPORT"/> - IANA is to register
the three error codes found in <xref target="errors"/>, these are summarized in
<xref target="iana-errors"/>.</t>
  <t>TLS ExtensionsType Registry
<xref target="TLS-REGISTRIES"/> - 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.  The TLS 1.3 Column is to include CH
and EE.</t>
  <t>TLS Exporter Label Registry <xref target="TLS-REGISTRIES"/> - IANA is requested to
register “EXPORTER-QUIC 0rtt” from <xref target="zero-rtt-secrets"/>; “EXPORTER-QUIC client
1rtt” and “EXPORTER-QUIC server 1-RTT” 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>

<texttable title="QUIC Transport Error Codes for TLS" anchor="iana-errors">
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Error</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <c>0x201</c>
      <c>TLS_HANDSHAKE_FAILED</c>
      <c>TLS handshake failure</c>
      <c><xref target="errors"/></c>
      <c>0x202</c>
      <c>TLS_FATAL_ALERT_GENERATED</c>
      <c>Sent TLS alert</c>
      <c><xref target="errors"/></c>
      <c>0x203</c>
      <c>TLS_FATAL_ALERT_RECEIVED</c>
      <c>Receives TLS alert</c>
      <c><xref target="errors"/></c>
</texttable>

</section>


  </middle>

  <back>

    <references title='Normative References'>

<reference anchor="QUIC-TRANSPORT" >
  <front>
    <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Fastly</organization>
    </author>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
    </author>
    <date year="2018" month="March" day="05"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-10"/>
</reference>
<reference anchor="FIPS180" target="http://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf">
  <front>
    <title>NIST FIPS 180-4, Secure Hash Standard</title>
    <author initials="National Institute of Standards and Technology, U.S." surname="Department of Commerce" fullname="NIST">
      <organization></organization>
    </author>
    <date year="2012" month="March"/>
  </front>
</reference>




<reference anchor="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='July' day='3' 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-21' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-tls13-21.txt' />
</reference>



<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference  anchor="RFC8174" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>



<reference  anchor="HKDF" target='https://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="AEAD" target='https://www.rfc-editor.org/info/rfc5116'>
<front>
<title>An Interface and Algorithms for Authenticated Encryption</title>
<author initials='D.' surname='McGrew' fullname='D. McGrew'><organization /></author>
<date year='2008' month='January' />
<abstract><t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms.  The interface and registry can be used as an application-independent set of cryptoalgorithm suites.  This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5116'/>
<seriesInfo name='DOI' value='10.17487/RFC5116'/>
</reference>



<reference  anchor="RFC7301" target='https://www.rfc-editor.org/info/rfc7301'>
<front>
<title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
<author initials='S.' surname='Friedl' fullname='S. Friedl'><organization /></author>
<author initials='A.' surname='Popov' fullname='A. Popov'><organization /></author>
<author initials='A.' surname='Langley' fullname='A. Langley'><organization /></author>
<author initials='E.' surname='Stephan' fullname='E. Stephan'><organization /></author>
<date year='2014' month='July' />
<abstract><t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t></abstract>
</front>
<seriesInfo name='RFC' value='7301'/>
<seriesInfo name='DOI' value='10.17487/RFC7301'/>
</reference>



<reference anchor="TLS-REGISTRIES">
<front>
<title>IANA Registry Updates for TLS and DTLS</title>

<author initials='J' surname='Salowey' fullname='Joseph Salowey'>
    <organization />
</author>

<author initials='S' surname='Turner' fullname='Sean Turner'>
    <organization />
</author>

<date month='February' day='15' year='2018' />

<abstract><t>This document describes a number of changes to (D)TLS IANA registries that range from adding notes to the registry all the way to changing the registration policy.  These changes were mostly motivated by WG review of the (D)TLS-related registries undertaken as part of the TLS1.3 development process.  This document updates many (D)TLS RFCs (see updates header).</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-tls-iana-registry-updates-04' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-iana-registry-updates-04.txt' />
</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 year="2018" month="March" day="05"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-10"/>
</reference>
<reference anchor="QUIC-RECOVERY" >
  <front>
    <title>QUIC Loss Detection and Congestion Control</title>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Fastly</organization>
    </author>
    <author initials="I." surname="Swett" fullname="Ian Swett" role="editor">
      <organization>Google</organization>
    </author>
    <date year="2018" month="March" day="05"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-recovery-10"/>
</reference>




<reference  anchor="RFC5280" target='https://www.rfc-editor.org/info/rfc5280'>
<front>
<title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
<author initials='D.' surname='Cooper' fullname='D. Cooper'><organization /></author>
<author initials='S.' surname='Santesson' fullname='S. Santesson'><organization /></author>
<author initials='S.' surname='Farrell' fullname='S. Farrell'><organization /></author>
<author initials='S.' surname='Boeyen' fullname='S. Boeyen'><organization /></author>
<author initials='R.' surname='Housley' fullname='R. Housley'><organization /></author>
<author initials='W.' surname='Polk' fullname='W. Polk'><organization /></author>
<date year='2008' month='May' />
<abstract><t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5280'/>
<seriesInfo name='DOI' value='10.17487/RFC5280'/>
</reference>



<reference  anchor="RFC2818" target='https://www.rfc-editor.org/info/rfc2818'>
<front>
<title>HTTP Over TLS</title>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<date year='2000' month='May' />
<abstract><t>This memo describes how to use Transport Layer Security (TLS) to secure Hypertext Transfer Protocol (HTTP) connections over the Internet.  This memo provides information for the Internet community.</t></abstract>
</front>
<seriesInfo name='RFC' value='2818'/>
<seriesInfo name='DOI' value='10.17487/RFC2818'/>
</reference>



<reference  anchor="RFC7924" target='https://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-09" title="Since draft-ietf-quic-tls-09">

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

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

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

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

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

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

<t>No significant changes.</t>

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

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

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

<t>No significant changes.</t>

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

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

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

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

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

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

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

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

</section>
</section>


  </back>

<!-- ##markdown-source:
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
AQA=

-->

</rfc>

