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

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

  <front>
    <title abbrev="QUIC over TLS">Using TLS to Secure QUIC</title>

    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
      <address>
        <email>mt@lowentropy.net</email>
      </address>
    </author>
    <author initials="S." surname="Turner" fullname="Sean Turner" role="editor">
      <organization>sn3rd</organization>
      <address>
        <email>sean@sn3rd.com</email>
      </address>
    </author>

    <date year="2019" month="January" day="23"/>

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

    <abstract>


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



    </abstract>


    <note title="Note to Readers">


<t>Discussion of this draft takes place on the QUIC working group mailing list
(quic@ietf.org), which is archived at
<eref target="https://mailarchive.ietf.org/arch/search/?email_list=quic">https://mailarchive.ietf.org/arch/search/?email_list=quic</eref>.</t>

<t>Working Group information can be found at <eref target="https://github.com/quicwg">https://github.com/quicwg</eref>; source
code and issues list for this draft can be found at
<eref target="https://github.com/quicwg/base-drafts/labels/-tls">https://github.com/quicwg/base-drafts/labels/-tls</eref>.</t>


    </note>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>This document describes how QUIC <xref target="QUIC-TRANSPORT"/> is secured using TLS
<xref target="TLS13"/>.</t>

<t>TLS 1.3 provides critical latency improvements for connection establishment over
previous versions.  Absent packet loss, most new connections can be established
and secured within a single round trip; on subsequent connections between the
same client and server, the client can often send application data immediately,
that is, using a zero round trip setup.</t>

<t>This document describes how TLS acts as a security component of QUIC.</t>

</section>
<section anchor="notational-conventions" title="Notational Conventions">

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

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

<t>For brevity, the acronym TLS is used to refer to TLS 1.3, though a newer version
could be used (see <xref target="tls-version"/>).</t>

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

<t>TLS provides two endpoints with a way to establish a means of communication over
an untrusted medium (that is, the Internet) that ensures that messages they
exchange cannot be observed, modified, or forged.</t>

<t>Internally, TLS is a layered protocol, with the structure shown below:</t>

<figure><artwork><![CDATA[
+--------------+--------------+--------------+
|  Handshake   |    Alerts    |  Application |
|    Layer     |              |     Data     |
|              |              |              |
+--------------+--------------+--------------+
|                                            |
|               Record Layer                 |
|                                            |
+--------------------------------------------+
]]></artwork></figure>

<t>Each upper layer (handshake, alerts, and application data) is carried as a
series of typed TLS records. Records are individually cryptographically
protected and then transmitted over a reliable transport (typically TCP) which
provides sequencing and guaranteed delivery.</t>

<t>Change Cipher Spec records cannot be sent in QUIC.</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 resistant to tampering by attackers and it produces
shared secrets that cannot be controlled by either participating peer.</t>

<t>TLS provides two basic handshake modes of interest to QUIC:</t>

<t><list style="symbols">
  <t>A full 1-RTT handshake in which the client is able to send application data
after one round trip and the server immediately responds after receiving the
first handshake message from the client.</t>
  <t>A 0-RTT handshake in which the client uses information it has previously
learned about the server to send application data immediately.  This
application data can be replayed by an attacker so it MUST NOT carry a
self-contained trigger for any non-idempotent action.</t>
</list></t>

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

<figure title="TLS Handshake with 0-RTT" anchor="tls-full"><artwork><![CDATA[
    Client                                             Server

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

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

    () Indicates messages protected by early data (0-RTT) keys
    {} Indicates messages protected using handshake keys
    [] Indicates messages protected using application data
       (1-RTT) keys
]]></artwork></figure>

<t>Data is protected using a number of encryption levels:</t>

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

<t>Application data may appear only in the early data and application data
levels. Handshake and Alert messages may appear in any level.</t>

<t>The 0-RTT handshake is only possible if the client and server have previously
communicated.  In the 1-RTT handshake, the client is unable to send protected
application data until it has received all of the handshake messages sent by the
server.</t>

</section>
</section>
<section anchor="protocol-overview" title="Protocol Overview">

<t>QUIC <xref target="QUIC-TRANSPORT"/> assumes responsibility for the confidentiality and
integrity protection of packets.  For this it uses keys derived from a TLS
handshake <xref target="TLS13"/>, but instead of carrying TLS records over QUIC (as with
TCP), TLS Handshake and Alert messages are carried directly over the QUIC
transport, which takes over the responsibilities of the TLS record layer, as
shown below.</t>

<figure><artwork><![CDATA[
+--------------+--------------+ +-------------+
|     TLS      |     TLS      | |    QUIC     |
|  Handshake   |    Alerts    | | Applications|
|              |              | | (h2q, etc.) |
+--------------+--------------+-+-------------+
|                                             |
|                QUIC Transport               |
|   (streams, reliability, congestion, etc.)  |
|                                             |
+---------------------------------------------+
|                                             |
|            QUIC Packet Protection           |
|                                             |
+---------------------------------------------+
]]></artwork></figure>

<t>QUIC also relies on TLS for authentication and negotiation of parameters that
are critical to security and performance.</t>

<t>Rather than a strict layering, these two protocols are co-dependent: QUIC uses
the TLS handshake; TLS uses the reliability, ordered delivery, and record
layer provided by QUIC.</t>

<t>At a high level, there are two main interactions between the TLS and QUIC
components:</t>

<t><list style="symbols">
  <t>The TLS component sends and receives messages via the QUIC component, with
QUIC providing a reliable stream abstraction to TLS.</t>
  <t>The TLS component provides a series of updates to the QUIC component,
including (a) new packet protection keys to install (b) state changes such as
handshake completion, the server certificate, etc.</t>
</list></t>

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

<figure title="QUIC and TLS Interactions" anchor="schematic"><artwork><![CDATA[
+------------+                        +------------+
|            |<- Handshake Messages ->|            |
|            |<---- 0-RTT Keys -------|            |
|            |<--- Handshake Keys-----|            |
|   QUIC     |<---- 1-RTT Keys -------|    TLS     |
|            |<--- Handshake Done ----|            |
+------------+                        +------------+
 |         ^
 | Protect | Protected
 v         | Packet
+------------+
|   QUIC     |
|  Packet    |
| Protection |
+------------+
]]></artwork></figure>

<t>Unlike TLS over TCP, QUIC applications which want to send data do not send it
through TLS “application_data” records. Rather, they send it as QUIC STREAM
frames which are then carried in QUIC packets.</t>

</section>
<section anchor="carrying-tls" title="Carrying TLS Messages">

<t>QUIC carries TLS handshake data in CRYPTO frames, each of which consists of a
contiguous block of handshake data identified by an offset and length. Those
frames are packaged into QUIC packets and encrypted under the current TLS
encryption level.  As with TLS over TCP, once TLS handshake data has been
delivered to QUIC, it is QUIC’s responsibility to deliver it reliably. Each
chunk of data that is produced by TLS is associated with the set of keys that
TLS is currently using.  If QUIC needs to retransmit that data, it MUST use the
same keys even if TLS has already updated to newer keys.</t>

<t>One important difference between TLS records (used with TCP) and QUIC CRYPTO
frames is that in QUIC multiple frames may appear in the same QUIC packet as
long as they are associated with the same encryption level. For instance, an
implementation might bundle a Handshake message and an ACK for some Handshake
data into the same packet.</t>

<t>Each encryption level has a specific list of frames which may appear in it. The
rules here generalize those of TLS, in that frames associated with establishing
the connection can usually appear at any encryption level, whereas those
associated with transferring data can only appear in the 0-RTT and 1-RTT
encryption levels:</t>

<t><list style="symbols">
  <t>CRYPTO frames MAY appear in packets of any encryption level except 0-RTT.</t>
  <t>CONNECTION_CLOSE MAY appear in packets of any encryption level other than
0-RTT.</t>
  <t>PADDING frames MAY appear in packets of any encryption level.</t>
  <t>ACK frames MAY appear in packets of any encryption level other than 0-RTT, but
can only acknowledge packets which appeared in that packet number space.</t>
  <t>STREAM frames MUST ONLY appear in the 0-RTT and 1-RTT levels.</t>
  <t>All other frame types MUST only appear at the 1-RTT levels.</t>
</list></t>

<t>Because packets could be reordered on the wire, QUIC uses the packet type to
indicate which level a given packet was encrypted under, as shown in
<xref target="packet-types-levels"/>. When multiple packets of different encryption levels
need to be sent, endpoints SHOULD use coalesced packets to send them in the same
UDP datagram.</t>

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

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

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

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

<t><list style="symbols">
  <t>Sending and receiving handshake messages</t>
  <t>Rekeying (both transmit and receive)</t>
  <t>Handshake state updates</t>
</list></t>

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

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

<t>In order to drive the handshake, TLS depends on being able to send and receive
handshake messages. There are two basic functions on this interface: one where
QUIC requests handshake messages and one where QUIC provides handshake packets.</t>

<t>Before starting the handshake QUIC provides TLS with the transport parameters
(see <xref target="quic_parameters"/>) that it wishes to carry.</t>

<t>A QUIC client starts TLS by requesting TLS handshake bytes from TLS.  The client
acquires handshake bytes before sending its first packet.  A QUIC server starts
the process by providing TLS with the client’s handshake bytes.</t>

<t>At any given time, the TLS stack at an endpoint will have a current sending
encryption level and receiving encryption level. Each encryption level is
associated with a different flow of bytes, which is reliably transmitted to the
peer in CRYPTO frames. When TLS provides handshake bytes to be sent, they are
appended to the current flow and any packet that includes the CRYPTO frame is
protected using keys from the corresponding encryption level.</t>

<t>QUIC takes the unprotected content of TLS handshake records as the content of
CRYPTO frames. TLS record protection is not used by QUIC. QUIC assembles
CRYPTO frames into QUIC packets, which are protected using QUIC packet
protection.</t>

<t>When an endpoint receives a QUIC packet containing a CRYPTO frame from the
network, it proceeds as follows:</t>

<t><list style="symbols">
  <t>If the packet was in the TLS receiving encryption level, sequence the data
into the input flow as usual. As with STREAM frames, the offset is used to
find the proper location in the data sequence.  If the result of this process
is that new data is available, then it is delivered to TLS in order.</t>
  <t>If the packet is from a previously installed encryption level, it MUST not
contain data which extends past the end of previously received data in that
flow. Implementations MUST treat any violations of this requirement as a
connection error of type PROTOCOL_VIOLATION.</t>
  <t>If the packet is from a new encryption level, it is saved for later processing
by TLS.  Once TLS moves to receiving from this encryption level, saved data
can be provided.  When providing data from any new encryption level to TLS, if
there is data from a previous encryption level that TLS has not consumed, this
MUST be treated as a connection error of type PROTOCOL_VIOLATION.</t>
</list></t>

<t>Each time that TLS is provided with new data, new handshake bytes are requested
from TLS.  TLS might not provide any bytes if the handshake messages it has
received are incomplete or it has no data to send.</t>

<t>Once the TLS handshake is complete, this is indicated to QUIC along with any
final handshake bytes that TLS needs to send.  TLS also provides QUIC with the
transport parameters that the peer advertised during the handshake.</t>

<t>Once the handshake is complete, TLS becomes passive.  TLS can still receive data
from its peer and respond in kind, but it will not need to send more data unless
specifically requested - either by an application or QUIC.  One reason to send
data is that the server might wish to provide additional or updated session
tickets to a client.</t>

<t>When the handshake is complete, QUIC only needs to provide TLS with any data
that arrives in CRYPTO streams.  In the same way that is done during the
handshake, new data is requested from TLS after providing received data.</t>

<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
CRYPTO frame that carries the Finished message in multiple packets.  This
enables immediate server processing for those packets.</t>
</list></t>

</section>
<section anchor="encryption-level-changes" title="Encryption Level Changes">

<t>As keys for new encryption levels become available, TLS provides QUIC with those
keys.  Separately, as TLS starts using keys at a given encryption level, TLS
indicates to QUIC that it is now reading or writing with keys at that encryption
level.  These events are not asynchronous; they always occur immediately after
TLS is provided with new handshake bytes, or after TLS produces handshake bytes.</t>

<t>TLS provides QUIC with three items as a new encryption level becomes available:</t>

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

<t>These values are based on the values that TLS negotiates and are used by QUIC to
generate packet and header protection keys (see <xref target="packet-protection"/> and
<xref target="header-protect"/>).</t>

<t>If 0-RTT is possible, it is ready after the client sends a TLS ClientHello
message or the server receives that message.  After providing a QUIC client with
the first handshake bytes, the TLS stack might signal the change to 0-RTT
keys. On the server, after receiving handshake bytes that contain a ClientHello
message, a TLS server might signal that 0-RTT keys are available.</t>

<t>Although TLS only uses one encryption level at a time, QUIC may use more than
one level. For instance, after sending its Finished message (using a CRYPTO
frame at the Handshake encryption level) an endpoint can send STREAM data (in
1-RTT encryption). If the Finished message is lost, the endpoint uses the
Handshake encryption level to retransmit the lost message.  Reordering or loss
of packets can mean that QUIC will need to handle packets at multiple encryption
levels.  During the handshake, this means potentially handling packets at higher
and lower encryption levels than the current encryption level used by TLS.</t>

<t>In particular, server implementations need to be able to read packets at the
Handshake encryption level at the same time as the 0-RTT encryption level.  A
client could interleave ACK frames that are protected with Handshake keys with
0-RTT data and the server needs to process those acknowledgments in order to
detect lost Handshake packets.</t>

</section>
<section anchor="tls-interface-summary" title="TLS Interface Summary">

<t><xref target="exchange-summary"/> summarizes the exchange between QUIC and TLS for both
client and server. Each arrow is tagged with the encryption level used for that
transmission.</t>

<figure title="Interaction Summary between QUIC and TLS" anchor="exchange-summary"><artwork><![CDATA[
Client                                                    Server

Get Handshake
                     Initial ------------->
Rekey tx to 0-RTT Keys
                     0-RTT --------------->
                                              Handshake Received
                                                   Get Handshake
                     <------------- Initial
                                          Rekey rx to 0-RTT keys
                                              Handshake Received
                                      Rekey rx to Handshake keys
                                                   Get Handshake
                     <----------- Handshake
                                          Rekey tx to 1-RTT keys
                     <--------------- 1-RTT
Handshake Received
Rekey rx to Handshake keys
Handshake Received
Get Handshake
Handshake Complete
                     Handshake ----------->
Rekey tx to 1-RTT keys
                     1-RTT --------------->
                                              Handshake Received
                                          Rekey rx to 1-RTT keys
                                                   Get Handshake
                                              Handshake Complete
                     <--------------- 1-RTT
Handshake Received
]]></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 first Initial packet from a client contain an entire
cryptographic handshake message, which for TLS is the ClientHello.  Though a
packet larger than 1200 bytes might be supported by the path, a client improves
the likelihood that a packet is accepted if it ensures that the first
ClientHello message is small enough to stay within this limit.</t>

<t>QUIC packet and framing add at least 36 bytes of overhead to the ClientHello
message.  That overhead increases if the client chooses a connection ID without
zero length.  Overheads also do not include the token or a connection ID longer
than 8 bytes, both of which might be required if a server sends a Retry packet.</t>

<t>A typical TLS ClientHello can easily fit into a 1200 byte packet.  However, in
addition to the overheads added by QUIC, there are several variables that could
cause this limit to be exceeded.  Large session tickets, multiple or large key
shares, and long lists of supported ciphers, signature algorithms, versions,
QUIC transport parameters, and other negotiable parameters and extensions could
cause this message to grow.</t>

<t>For servers, in addition to connection IDs and tokens, the size of TLS session
tickets can have an effect on a client’s ability to connect.  Minimizing the
size of these values increases the probability that they can be successfully
used by a client.</t>

<t>A client is not required to fit the ClientHello that it sends in response to a
HelloRetryRequest message into a single UDP datagram.</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="enable-0rtt" title="Enabling 0-RTT">

<t>In order to be usable for 0-RTT, TLS MUST provide a NewSessionTicket message
that contains the “early_data” extension with a max_early_data_size of
0xffffffff; the amount of data which the client can send in 0-RTT is controlled
by the “initial_max_data” transport parameter supplied by the server.  A client
MUST treat receipt of a NewSessionTicket that contains an “early_data” extension
with any other value as a connection error of type PROTOCOL_VIOLATION.</t>

<t>Early data within the TLS connection MUST NOT be used.  As it is for other TLS
application data, a server MUST treat receiving early data on the TLS connection
as a connection error of type PROTOCOL_VIOLATION.</t>

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

<t>A server rejects 0-RTT by rejecting 0-RTT at the TLS layer.  This also prevents
QUIC from sending 0-RTT data. A server will always reject 0-RTT if it sends a
TLS HelloRetryRequest.</t>

<t>When 0-RTT is rejected, all connection characteristics that the client assumed
might be incorrect.  This includes the choice of application protocol, transport
parameters, and any application configuration.  The client therefore MUST reset
the state of all streams, including application state bound to those streams.</t>

<t>A client MAY attempt to send 0-RTT again if it receives a Retry or Version
Negotiation packet.  These packets do not signify rejection of 0-RTT.</t>

</section>
<section anchor="helloretryrequest" title="HelloRetryRequest">

<t>In TLS over TCP, the HelloRetryRequest feature (see Section 4.1.4 of <xref target="TLS13"/>)
can be used to correct a client’s incorrect KeyShare extension as well as for a
stateless round-trip check. From the perspective of QUIC, this just looks like
additional messages carried in the Initial encryption level. Although it is in
principle possible to use this feature for address verification in QUIC, QUIC
implementations SHOULD instead use the Retry feature (see Section 8.1 of
<xref target="QUIC-TRANSPORT"/>).  HelloRetryRequest is still used to request key shares.</t>

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

<t>If TLS experiences an error, it generates an appropriate alert as defined in
Section 6 of <xref target="TLS13"/>.</t>

<t>A TLS alert is turned into a QUIC connection error by converting the one-byte
alert description into a QUIC error code.  The alert description is added to
0x100 to produce a QUIC error code from the range reserved for CRYPTO_ERROR.
The resulting value is sent in a QUIC CONNECTION_CLOSE frame.</t>

<t>The alert level of all TLS alerts is “fatal”; a TLS stack MUST NOT generate
alerts at the “warning” level.</t>

</section>
<section anchor="discarding-unused-keys" title="Discarding Unused Keys">

<t>After QUIC moves to a new encryption level, packet protection keys for previous
encryption levels can be discarded.  This occurs several times during the
handshake, as well as when keys are updated (see <xref target="key-update"/>).  Initial
packet protection keys are treated specially, see <xref target="discard-initial"/>.</t>

<t>Packet protection keys are not discarded immediately when new keys are
available.  If packets from a lower encryption level contain CRYPTO frames,
frames that retransmit that data MUST be sent at the same encryption level.
Similarly, an endpoint generates acknowledgements for packets at the same
encryption level as the packet being acknowledged.  Thus, it is possible that
keys for a lower encryption level are needed for a short time after keys for a
newer encryption level are available.</t>

<t>An endpoint cannot discard keys for a given encryption level unless it has both
received and acknowledged all CRYPTO frames for that encryption level and when
all CRYPTO frames for that encryption level have been acknowledged by its peer.
However, this does not guarantee that no further packets will need to be
received or sent at that encryption level because a peer might not have received
all the acknowledgements necessary to reach the same state.</t>

<t>After all CRYPTO frames for a given encryption level have been sent and all
expected CRYPTO frames received, and all the corresponding acknowledgments have
been received or sent, an endpoint starts a timer.  For 0-RTT keys, which do not
carry CRYPTO frames, this timer starts when the first packets protected with
1-RTT are sent or received.  To limit the effect of packet loss around a change
in keys, endpoints MUST retain packet protection keys for that encryption level
for at least three times the current Probe Timeout (PTO) interval as defined in
<xref target="QUIC-RECOVERY"/>.  Retaining keys for this interval allows packets containing
CRYPTO or ACK frames at that encryption level to be sent if packets are
determined to be lost or new packets require acknowledgment.</t>

<t>Though an endpoint might retain older keys, new data MUST be sent at the highest
currently-available encryption level.  Only ACK frames and retransmissions of
data in CRYPTO frames are sent at a previous encryption level.  These packets
MAY also include PADDING frames.</t>

<t>Once this timer expires, an endpoint MUST NOT either accept or generate new
packets using those packet protection keys.  An endpoint can discard packet
protection keys for that encryption level.</t>

<t>Key updates (see <xref target="key-update"/>) can be used to update 1-RTT keys before keys
from other encryption levels are discarded.  In that case, packets protected
with the newest packet protection keys and packets sent two updates prior will
appear to use the same keys.  After the handshake is complete, endpoints only
need to maintain the two latest sets of packet protection keys and MAY discard
older keys.  Updating keys multiple times rapidly can cause packets to be
effectively lost if packets are significantly delayed.  Because key updates can
only be performed once per round trip time, only packets that are delayed by
more than a round trip will be lost as a result of changing keys; such packets
will be marked as lost before this, as they leave a gap in the sequence of
packet numbers.</t>

</section>
<section anchor="discard-initial" title="Discarding Initial Keys">

<t>Packets protected with Initial secrets (<xref target="initial-secrets"/>) are not
authenticated, meaning that an attacker could spoof packets with the intent to
disrupt a connection.  To limit these attacks, Initial packet protection keys
can be discarded more aggressively than other keys.</t>

<t>The successful use of Handshake packets indicates that no more Initial packets
need to be exchanged, as these keys can only be produced after receiving all
CRYPTO frames from Initial packets.  Thus, a client MUST discard Initial keys
when it first sends a Handshake packet and a server MUST discard Initial keys
when it first successfully processes a Handshake packet.  Endpoints MUST NOT
send Initial packets after this point.</t>

<t>This results in abandoning loss recovery state for the Initial encryption level
and ignoring any outstanding Initial packets.</t>

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

<t>As with TLS over TCP, QUIC protects packets with keys derived from the TLS
handshake, using the AEAD algorithm negotiated by TLS.</t>

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

<t>QUIC derives packet protection keys in the same way that TLS derives record
protection keys.</t>

<t>Each encryption level has separate secret values for protection of packets sent
in each direction.  These traffic secrets are derived by TLS (see Section 7.1 of
<xref target="TLS13"/>) and are used by QUIC for all encryption levels except the Initial
encryption level.  The secrets for the Initial encryption level are computed
based on the client’s initial Destination Connection ID, as described in
<xref target="initial-secrets"/>.</t>

<t>The keys used for packet protection are computed from the TLS secrets using the
KDF provided by TLS.  In TLS 1.3, the HKDF-Expand-Label function described in
Section 7.1 of <xref target="TLS13"/>) is used, using the hash function from the negotiated
cipher suite.  Other versions of TLS MUST provide a similar function in order to
be used QUIC.</t>

<t>The current encryption level secret and the label “quic key” are input to the
KDF to produce the AEAD key; the label “quic iv” is used to derive the IV, see
<xref target="aead"/>.  The header protection key uses the “quic hp” label, see
<xref target="header-protect"/>).  Using these labels provides key separation between QUIC
and TLS, see <xref target="key-diversity"/>.</t>

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

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

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

<figure><artwork><![CDATA[
initial_salt = 0xef4fb0abb47470c41befcf8031334fae485e09a0
initial_secret = HKDF-Extract(initial_salt,
                              client_dst_connection_id)

client_initial_secret = HKDF-Expand-Label(initial_secret,
                                          "client in", "",
                                          Hash.length)
server_initial_secret = HKDF-Expand-Label(initial_secret,
                                          "server in", "",
                                          Hash.length)
]]></artwork></figure>

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

<t>The connection ID used with HKDF-Expand-Label is the Destination Connection ID
in the Initial packet sent by the client.  This will be a randomly-selected
value unless the client creates the Initial packet after receiving a Retry
packet, where the Destination Connection ID is selected by the server.</t>

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

<t>The HKDF-Expand-Label function defined in TLS 1.3 MUST be used for Initial
packets even where the TLS versions offered do not include TLS 1.3.</t>

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

<t><list style="hanging">
  <t hangText='Note:'>
  The Destination Connection ID is of arbitrary length, and it could be zero
length if the server sends a Retry packet with a zero-length Source Connection
ID field.  In this case, the Initial keys provide no assurance to the client
that the server received its packet; the client has to rely on the exchange
that included the Retry packet for that property.</t>
</list></t>

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

<t>The Authentication Encryption with Associated Data (AEAD) <xref target="AEAD"/> function
used for QUIC packet protection is the AEAD that is negotiated for use with the
TLS connection.  For example, if TLS is using the TLS_AES_128_GCM_SHA256, the
AEAD_AES_128_GCM function is used.</t>

<t>Packets are protected prior to applying header protection (<xref target="header-protect"/>).
The unprotected packet header is part of the associated data (A).  When removing
packet protection, an endpoint first removes the header protection.</t>

<t>All QUIC packets other than Version Negotiation and Retry packets are protected
with an AEAD algorithm <xref target="AEAD"/>. Prior to establishing a shared secret, packets
are protected with AEAD_AES_128_GCM and a key derived from the destination
connection ID in the client’s first Initial packet (see <xref target="initial-secrets"/>).
This provides protection against off-path attackers and robustness against QUIC
version unaware middleboxes, but not against on-path attackers.</t>

<t>QUIC can use any of the ciphersuites defined in <xref target="TLS13"/> with the exception of
TLS_AES_128_CCM_8_SHA256.  The AEAD for that ciphersuite, AEAD_AES_128_CCM_8
<xref target="CCM"/>, does not produce a large enough authentication tag for use
with the header protection designs provided (see <xref target="header-protect"/>).  All other
ciphersuites defined in <xref target="TLS13"/> have a 16-byte authentication tag and produce
an output 16 bytes larger than their input.</t>

<t>The key and IV for the packet are computed as described in <xref target="protection-keys"/>.
The nonce, N, is formed by combining the packet protection IV with the packet
number.  The 62 bits of the reconstructed QUIC packet number in network byte
order are left-padded with zeros to the size of the IV.  The exclusive OR of the
padded packet number and the IV forms the AEAD nonce.</t>

<t>The associated data, A, for the AEAD is the contents of the QUIC header,
starting from the flags byte in either the short or long header, up to and
including the unprotected packet number.</t>

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

<t>The output ciphertext, C, of the AEAD is transmitted in place of P.</t>

<t>Some AEAD functions have limits for how many packets can be encrypted under the
same key and IV (see for example <xref target="AEBounds"/>).  This might be lower than the
packet number limit.  An endpoint MUST initiate a key update (<xref target="key-update"/>)
prior to exceeding any limit set for the AEAD that is in use.</t>

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

<t>Parts of QUIC packet headers, in particular the Packet Number field, are
protected using a key that is derived separate to the packet protection key and
IV.  The key derived using the “quic hp” label is used to provide
confidentiality protection for those fields that are not exposed to on-path
elements.</t>

<t>This protection applies to the least-significant bits of the first byte, plus
the Packet Number field.  The four least-significant bits of the first byte are
protected for packets with long headers; the five least significant bits of the
first byte are protected for packets with short headers.  For both header forms,
this covers the reserved bits and the Packet Number Length field; the Key Phase
bit is also protected for packets with a short header.</t>

<t>The same header protection key is used for the duration of the connection, with
the value not changing after a key update (see <xref target="key-update"/>).  This allows
header protection to be used to protect the key phase.</t>

<t>This process does not apply to Retry or Version Negotiation packets, which do
not contain a protected payload or any of the fields that are protected by this
process.</t>

<section anchor="header-protection-application" title="Header Protection Application">

<t>Header protection is applied after packet protection is applied (see <xref target="aead"/>).
The ciphertext of the packet is sampled and used as input to an encryption
algorithm.  The algorithm used depends on the negotiated AEAD.</t>

<t>The output of this algorithm is a 5 byte mask which is applied to the protected
header fields using exclusive OR.  The least significant bits of the first byte
of the packet are masked by the least significant bits of the first mask byte,
and the packet number is masked with the remaining bytes.  Any unused bytes of
mask that might result from a shorter packet number encoding are unused.</t>

<t><xref target="pseudo-hp"/> shows a sample algorithm for applying header protection. Removing
header protection only differs in the order in which the packet number length
(pn_length) is determined.</t>

<figure title="Header Protection Pseudocode" anchor="pseudo-hp"><artwork><![CDATA[
mask = header_protection(hp_key, sample)

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

# pn_offset is the start of the Packet Number field.
packet[pn_offset:pn_offset+pn_length] ^= mask[1:1+pn_length]
]]></artwork></figure>

<t><xref target="fig-sample"/> shows the protected fields of long and short headers marked with
an E.  <xref target="fig-sample"/> also shows the sampled fields.</t>

<figure title="Header Protection and Ciphertext Sample" anchor="fig-sample"><artwork><![CDATA[
Long Header:
+-+-+-+-+-+-+-+-+
|1|1|T T|E E E E|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                    Version -> Length Fields                 ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

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

Common Fields:
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|E E E E E E E E E  Packet Number (8/16/24/32) E E E E E E E E...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   [Protected Payload (8/16/24)]             ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|             Sampled part of Protected Payload (128)         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                 Protected Payload Remainder (*)             ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>Before a TLS ciphersuite can be used with QUIC, a header protection algorithm
MUST be specified for the AEAD used with that ciphersuite.  This document
defines algorithms for AEAD_AES_128_GCM, AEAD_AES_128_CCM, AEAD_AES_256_GCM,
AEAD_AES_256_CCM (all AES AEADs are defined in <xref target="AEAD"/>), and
AEAD_CHACHA20_POLY1305 <xref target="CHACHA"/>.  Prior to TLS selecting a
ciphersuite, AES header protection is used (<xref target="hp-aes"/>), matching the
AEAD_AES_128_GCM packet protection.</t>

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

<t>The header protection algorithm uses both the header protection key and a sample
of the ciphertext from the packet Payload field.</t>

<t>The same number of bytes are always sampled, but an allowance needs to be made
for the endpoint removing protection, which will not know the length of the
Packet Number field.  In sampling the packet ciphertext, the Packet Number field
is assumed to be 4 bytes long (its maximum possible encoded length).</t>

<t>An endpoint MUST discard packets that are not long enough to contain a complete
sample.</t>

<t>To ensure that sufficient data is available for sampling, packets are padded so
that the combined lengths of the encoded packet number and protected payload is
at least 4 bytes longer than the sample required for header protection.  For the
AEAD functions defined in <xref target="TLS13"/>, which have 16-byte expansions and 16-byte
header protection samples, this results in needing at least 3 bytes of frames in
the unprotected payload if the packet number is encoded on a single byte, or 2
bytes of frames for a 2-byte packet number encoding.</t>

<t>The sampled ciphertext for a packet with a short header can be determined by the
following pseudocode:</t>

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

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

<t>For example, for a packet with a short header, an 8 byte connection ID, and
protected with AEAD_AES_128_GCM, the sample takes bytes 13 to 28 inclusive
(using zero-based indexing).</t>

<t>A packet with a long header is sampled in the same way, noting that multiple
QUIC packets might be included in the same UDP datagram and that each one is
handled separately.</t>

<figure><artwork><![CDATA[
sample_offset = 6 + len(destination_connection_id) +
                    len(source_connection_id) +
                    len(payload_length) + 4
if packet_type == Initial:
    sample_offset += len(token_length) +
                     len(token)

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

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

<t>This section defines the packet protection algorithm for AEAD_AES_128_GCM,
AEAD_AES_128_CCM, AEAD_AES_256_GCM, and AEAD_AES_256_CCM. AEAD_AES_128_GCM and
AEAD_AES_128_CCM use 128-bit AES <xref target="AES"/> in
electronic code-book (ECB) mode. AEAD_AES_256_GCM, and AEAD_AES_256_CCM use
256-bit AES in ECB mode.</t>

<t>This algorithm samples 16 bytes from the packet ciphertext. This value is used
as the input to AES-ECB.  In pseudocode:</t>

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

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

<t>When AEAD_CHACHA20_POLY1305 is in use, header protection uses the raw ChaCha20
function as defined in Section 2.4 of <xref target="CHACHA"/>.  This uses a 256-bit key and
16 bytes sampled from the packet protection output.</t>

<t>The first 4 bytes of the sampled ciphertext are interpreted as a 32-bit number
in little-endian order and are used as the block count.  The remaining 12 bytes
are interpreted as three concatenated 32-bit numbers in little-endian order and
used as the nonce.</t>

<t>The encryption mask is produced by invoking ChaCha20 to protect 5 zero bytes. In
pseudocode:</t>

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

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

<t>Once an endpoint successfully receives a packet with a given packet number, it
MUST discard all packets in the same packet number space with higher packet
numbers if they cannot be successfully unprotected with either the same key, or
- if there is a key update - the next packet protection key (see
<xref target="key-update"/>).  Similarly, a packet that appears to trigger a key update, but
cannot be unprotected successfully MUST be discarded.</t>

<t>Failure to unprotect a packet does not necessarily indicate the existence of a
protocol error in a peer or an attack.  The truncated packet number encoding
used in QUIC can cause packet numbers to be decoded incorrectly if they are
delayed significantly.</t>

</section>
<section anchor="using-early-data" title="Use of 0-RTT Keys">

<t>If 0-RTT keys are available (see <xref target="enable-0rtt"/>), the lack of replay protection
means that restrictions on their use are necessary to avoid replay attacks on
the protocol.</t>

<t>A client MUST only use 0-RTT keys to protect data that is idempotent.  A client
MAY wish to apply additional restrictions on what data it sends prior to the
completion of the TLS handshake.  A client otherwise treats 0-RTT keys as
equivalent to 1-RTT keys, except that it MUST NOT send ACKs with 0-RTT keys.</t>

<t>A client that receives an indication that its 0-RTT data has been accepted by a
server can send 0-RTT data until it receives all of the server’s handshake
messages.  A client SHOULD stop sending 0-RTT data if it receives an indication
that 0-RTT data has been rejected.</t>

<t>A server MUST NOT use 0-RTT keys to protect packets; it uses 1-RTT keys to
protect acknowledgements of 0-RTT packets.  A client MUST NOT attempt to
decrypt 0-RTT packets it receives and instead MUST discard them.</t>

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

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

<t>Due to reordering and loss, protected packets might be received by an endpoint
before the final TLS handshake messages are received.  A client will be unable
to decrypt 1-RTT packets from the server, whereas a server will be able to
decrypt 1-RTT packets from the client.</t>

<t>However, a server MUST NOT process data from incoming 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.11 of <xref target="TLS13"/>).  Verifying these values provides the server with
an assurance that the ClientHello has not been modified.  Packets protected with
1-RTT keys MAY be stored and later decrypted and used once the handshake is
complete.</t>

<t>A server could receive packets protected with 0-RTT keys prior to receiving a
TLS ClientHello.  The server MAY retain these packets for later decryption in
anticipation of receiving a ClientHello.</t>

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

<t>Once the 1-RTT keys are established and the short header is in use, it is
possible to update the keys. The KEY_PHASE bit in the short header is used to
indicate whether key updates have occurred. The KEY_PHASE bit is initially set
to 0 and then inverted with each key update.</t>

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

<t>This mechanism replaces the TLS KeyUpdate message.  Endpoints MUST NOT send a
TLS KeyUpdate message.  Endpoints MUST treat the receipt of a TLS KeyUpdate
message as a connection error of type 0x10a, equivalent to a fatal TLS alert of
unexpected_message (see <xref target="tls-errors"/>).</t>

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

<t>A receiving endpoint detects an update when the KEY_PHASE bit does not match
what it is expecting.  It creates a new secret (see Section 7.2 of <xref target="TLS13"/>)
and the corresponding read key and IV using the KDF function provided by TLS.
The header protection key is not updated.</t>

<t>If the packet can be decrypted and authenticated using the updated key and IV,
then the keys the endpoint uses for packet protection are also updated.  The
next packet sent by the endpoint will then use the new keys.</t>

<t>An endpoint does not always need to send packets 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 period of no more than three times the
Probe Timeout (PTO, see <xref target="QUIC-RECOVERY"/>).  After this period, old keys and
their corresponding secrets SHOULD be discarded.  Retaining keys allow endpoints
to process packets that were sent with old keys and delayed in the network.
Packets with higher packet numbers always use the updated keys and MUST NOT be
decrypted with old keys.</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>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>

<t>In deciding when to update keys, endpoints MUST NOT exceed the limits for use of
specific keys, as described in Section 5.5 of <xref target="TLS13"/>.</t>

</section>
<section anchor="security-of-initial-messages" title="Security of Initial Messages">

<t>Initial packets are not protected with a secret key, so they are subject to
potential tampering by an attacker.  QUIC provides protection against attackers
that cannot read packets, but does not attempt to provide additional protection
against attacks where the attacker can observe and inject packets.  Some forms
of tampering – such as modifying the TLS messages themselves – are detectable,
but some – such as modifying ACKs – are not.</t>

<t>For example, an attacker could inject a packet containing an ACK frame that
makes it appear that a packet had not been received or to create a false
impression of the state of the connection (e.g., by modifying the ACK Delay).
Note that such a packet could cause a legitimate packet to be dropped as a
duplicate.  Implementations SHOULD use caution in relying on any data which is
contained in Initial packets that is not otherwise authenticated.</t>

<t>It is also possible for the attacker to tamper with data that is carried in
Handshake packets, but because that tampering requires modifying TLS handshake
messages, that tampering will cause the TLS handshake to fail.</t>

</section>
<section anchor="quic-specific-additions-to-the-tls-handshake" title="QUIC-Specific Additions to the TLS Handshake">

<t>QUIC uses the TLS handshake for more than just negotiation of cryptographic
parameters.  The TLS handshake 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>QUIC requires that the cryptographic handshake provide authenticated protocol
negotiation.  TLS uses Application Layer Protocol Negotiation (ALPN)
<xref target="RFC7301"/> to select an application protocol.  Unless another mechanism is
used for agreeing on an application protocol, endpoints MUST use ALPN for this
purpose.  When using ALPN, endpoints MUST abort a connection if an application
protocol is not negotiated.</t>

<t>An application-layer protocol MAY restrict the QUIC versions that it can operate
over.  Servers MUST select an application protocol compatible with the QUIC
version that the client has selected.  If the server cannot select a compatible
combination of application protocol and QUIC version, it MUST abort the
connection. A client MUST abort a connection if the server picks an 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(0xffa5), (65535)
   } ExtensionType;
]]></artwork></figure>

<t>The <spanx style="verb">extension_data</spanx> field of the quic_transport_parameters extension contains a
value that is defined by the version of QUIC that is in use.  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>

<t>While the transport parameters are technically available prior to the completion
of the handshake, they cannot be fully trusted until the handshake completes,
and reliance on them should be minimized.  However, any tampering with the
parameters will cause the handshake to fail.</t>

<t>Endpoints MUST NOT send this extension in a TLS connection that does not use
QUIC (such as the use of TLS with TCP defined in <xref target="TLS13"/>).  A fatal
unsupported_extension alert MUST be sent if this extension is received when the
transport is not QUIC.</t>

</section>
<section anchor="remove-eoed" title="Removing the EndOfEarlyData Message">

<t>The TLS EndOfEarlyData message is not used with QUIC.  QUIC does not rely on
this message to mark the end of 0-RTT data or to signal the change to Handshake
keys.</t>

<t>Clients MUST NOT send the EndOfEarlyData message.  A server MUST treat receipt
of a CRYPTO frame in a 0-RTT packet as a connection error of type
PROTOCOL_VIOLATION.</t>

<t>As a result, EndOfEarlyData does not appear in the TLS handshake transcript.</t>

</section>
</section>
<section anchor="security-considerations" title="Security Considerations">

<t>There are likely to be some real clangers here eventually, but the current set
of issues is well captured in the relevant sections of the main text.</t>

<t>Never assume that because it isn’t in the security considerations section it
doesn’t affect security.  Most of this document does.</t>

<section anchor="reflection" title="Packet Reflection Attack Mitigation">

<t>A small ClientHello that results in a large block of handshake messages from a
server can be used in packet reflection attacks to amplify the traffic generated
by an attacker.</t>

<t>QUIC includes three defenses against this attack. First, the packet containing a
ClientHello MUST be padded to a minimum size. Second, if responding to an
unverified source address, the server is forbidden to send more than three UDP
datagrams in its first flight (see Section 8.1 of <xref target="QUIC-TRANSPORT"/>). Finally,
because acknowledgements of Handshake packets are authenticated, a blind
attacker cannot forge them.  Put together, these defenses limit the level of
amplification.</t>

</section>
<section anchor="useless" title="Peer Denial of Service">

<t>QUIC, TLS, and HTTP/2 all contain 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>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 anchor="header-protect-analysis" title="Header Protection Analysis">

<t>Header protection relies on the packet protection AEAD being a pseudorandom
function (PRF), which is not a property that AEAD algorithms
guarantee. Therefore, no strong assurances about the general security of this
mechanism can be shown in the general case. The AEAD algorithms described in
this document are assumed to be PRFs.</t>

<t>The header protection algorithms defined in this document take the form:</t>

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

<t>This construction is secure against chosen plaintext attacks (IND-CPA) <xref target="IMC"/>.</t>

<t>Use of the same key and ciphertext sample more than once risks compromising
header protection. Protecting two different headers with the same key and
ciphertext sample reveals the exclusive OR of the protected fields.  Assuming
that the AEAD acts as a PRF, if L bits are sampled, the odds of two ciphertext
samples being identical approach 2^(-L/2), that is, the birthday bound. For the
algorithms described in this document, that probability is one in 2^64.</t>

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

<t>To prevent an attacker from modifying packet headers, the header is transitively
authenticated using packet protection; the entire packet header is part of the
authenticated additional data.  Protected fields that are falsified or modified
can only be detected once the packet protection is removed.</t>

<t>An attacker could guess values for packet numbers and have an endpoint confirm
guesses through timing side channels.  Similarly, guesses for the packet number
length can be trialed and exposed.  If the recipient of a packet discards
packets with duplicate packet numbers without attempting to remove packet
protection they could reveal through timing side-channels that the packet number
matches a received packet.  For authentication to be free from side-channels,
the entire process of header protection removal, packet number recovery, and
packet protection removal MUST be applied together without timing and other
side-channels.</t>

<t>For the sending of packets, construction and protection of packet payloads and
packet numbers MUST be free from side-channels that would reveal the packet
number or its encoded size.</t>

</section>
<section anchor="key-diversity" title="Key Diversity">

<t>In using TLS, the central key schedule of TLS is used.  As a result of the TLS
handshake messages being integrated into the calculation of secrets, the
inclusion of the QUIC transport parameters extension ensures that handshake and
1-RTT keys are not the same as those that might be produced by a server running
TLS over TCP.  However, 0-RTT keys only include the ClientHello message and
might therefore use the same secrets.  To avoid the possibility of
cross-protocol key synchronization, additional measures are provided to improve
key separation.</t>

<t>The QUIC packet protection keys and IVs are derived using a different label than
the equivalent keys in TLS.</t>

<t>To preserve this separation, a new version of QUIC SHOULD define new labels for
key derivation for packet protection key and IV, plus the header
protection keys.</t>

<t>The initial secrets also use a key that is specific to the negotiated QUIC
version.  New QUIC versions SHOULD define a new salt value used in calculating
initial secrets.</t>

</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

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

<t><list style="symbols">
  <t>TLS ExtensionsType Registry <xref target="TLS-REGISTRIES"/> - IANA is to register
the quic_transport_parameters extension found in <xref target="quic_parameters"/>.  The
Recommended column is to be marked Yes.  The TLS 1.3 Column is to include CH
and EE.</t>
</list></t>

</section>


  </middle>

  <back>

    <references title='Normative References'>

<reference anchor="QUIC-TRANSPORT" >
  <front>
    <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Fastly</organization>
    </author>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
    </author>
    <date year="2019" month="January" day="23"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-18"/>
</reference>
<reference anchor="QUIC-RECOVERY" >
  <front>
    <title>QUIC Loss Detection and Congestion Control</title>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Fastly</organization>
    </author>
    <author initials="I." surname="Swett" fullname="Ian Swett" role="editor">
      <organization>Google</organization>
    </author>
    <date year="2019" month="January" day="23"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-recovery-18"/>
</reference>




<reference  anchor="TLS13" target='https://www.rfc-editor.org/info/rfc8446'>
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<date year='2018' month='August' />
<abstract><t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t><t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='8446'/>
<seriesInfo name='DOI' value='10.17487/RFC8446'/>
</reference>



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



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

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



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



<reference  anchor="CHACHA" target='https://www.rfc-editor.org/info/rfc8439'>
<front>
<title>ChaCha20 and Poly1305 for IETF Protocols</title>
<author initials='Y.' surname='Nir' fullname='Y. Nir'><organization /></author>
<author initials='A.' surname='Langley' fullname='A. Langley'><organization /></author>
<date year='2018' month='June' />
<abstract><t>This document defines the ChaCha20 stream cipher as well as the use of the Poly1305 authenticator, both as stand-alone algorithms and as a &quot;combined mode&quot;, or Authenticated Encryption with Associated Data (AEAD) algorithm.</t><t>RFC 7539, the predecessor of this document, was meant to serve as a stable reference and an implementation guide.  It was a product of the Crypto Forum Research Group (CFRG).  This document merges the errata filed against RFC 7539 and adds a little text to the Security Considerations section.</t></abstract>
</front>
<seriesInfo name='RFC' value='8439'/>
<seriesInfo name='DOI' value='10.17487/RFC8439'/>
</reference>

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



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



<reference  anchor="TLS-REGISTRIES" target='https://www.rfc-editor.org/info/rfc8447'>
<front>
<title>IANA Registry Updates for TLS and DTLS</title>
<author initials='J.' surname='Salowey' fullname='J. Salowey'><organization /></author>
<author initials='S.' surname='Turner' fullname='S. Turner'><organization /></author>
<date year='2018' month='August' />
<abstract><t>This document describes a number of changes to TLS and DTLS IANA registries that range from adding notes to the registry all the way to changing the registration policy.  These changes were mostly motivated by WG review of the TLS- and DTLS-related registries undertaken as part of the TLS 1.3 development process.</t><t>This document updates the following RFCs: 3749, 5077, 4680, 5246, 5705, 5878, 6520, and 7301.</t></abstract>
</front>
<seriesInfo name='RFC' value='8447'/>
<seriesInfo name='DOI' value='10.17487/RFC8447'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="AEBounds" target="http://www.isg.rhul.ac.uk/~kp/TLS-AEbounds.pdf">
  <front>
    <title>Limits on Authenticated Encryption Use in TLS</title>
    <author initials="A." surname="Luykx">
      <organization></organization>
    </author>
    <author initials="K." surname="Paterson">
      <organization></organization>
    </author>
    <date year="2016" month="March" day="08"/>
  </front>
</reference>
<reference anchor="IMC" >
  <front>
    <title>Introduction to Modern Cryptography, Second Edition</title>
    <author initials="J." surname="Katz">
      <organization></organization>
    </author>
    <author initials="Y." surname="Lindell">
      <organization></organization>
    </author>
    <date year="2014" month="November" day="06"/>
  </front>
  <seriesInfo name="ISBN" value="978-1466570269"/>
</reference>
<reference anchor="QUIC-HTTP" >
  <front>
    <title>Hypertext Transfer Protocol (HTTP) over QUIC</title>
    <author initials="M." surname="Bishop" fullname="Mike Bishop" role="editor">
      <organization>Microsoft</organization>
    </author>
    <date year="2019" month="January" day="23"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-18"/>
</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="CCM" target='https://www.rfc-editor.org/info/rfc6655'>
<front>
<title>AES-CCM Cipher Suites for Transport Layer Security (TLS)</title>
<author initials='D.' surname='McGrew' fullname='D. McGrew'><organization /></author>
<author initials='D.' surname='Bailey' fullname='D. Bailey'><organization /></author>
<date year='2012' month='July' />
<abstract><t>This memo describes the use of the Advanced Encryption Standard (AES) in the Counter with Cipher Block Chaining - Message Authentication Code (CBC-MAC) Mode (CCM) of operation within Transport Layer Security (TLS) and Datagram TLS (DTLS) to provide confidentiality and data origin authentication.  The AES-CCM algorithm is amenable to compact implementations, making it suitable for constrained environments.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6655'/>
<seriesInfo name='DOI' value='10.17487/RFC6655'/>
</reference>




    </references>


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

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

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

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

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

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

<figure><artwork><![CDATA[
initial_secret = HKDF-Extract(initial_salt, cid)
    = 4496d3903d3f97cc5e45ac5790ddc686
      683c7c0067012bb09d900cc21832d596
]]></artwork></figure>

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

<figure><artwork><![CDATA[
client_initial_secret
    = HKDF-Expand-Label(initial_secret, "client in", _, 32)
    = 8a3515a14ae3c31b9c2d6d5bc58538ca
      5cd2baa119087143e60887428dcb52f6

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

iv  = HKDF-Expand-Label(client_initial_secret, "quic iv", _, 12)
    = 19e94387805eb0b46c03a788

hp  = HKDF-Expand-Label(client_initial_secret, "quic hp", _, 16)
    = 0edd982a6ac527f2eddcbb7348dea5d7
]]></artwork></figure>

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

<figure><artwork><![CDATA[
server_initial_secret
    = HKDF-Expand-Label(initial_secret, "server in", _, 32)
    = 47b2eaea6c266e32c0697a9e2a898bdf
      5c4fb3e5ac34f0e549bf2c58581a3811

key = HKDF-Expand-Label(server_initial_secret, "quic key", _, 16)
    = 9a8be902a9bdd91d16064ca118045fb4

iv  = HKDF-Expand-Label(server_initial_secret, "quic iv", _, 12)
    = 0a82086d32205ba22241d8dc

hp  = HKDF-Expand-Label(server_initial_secret, "quic hp", _, 16)
    = 94b9452d2b3c7c7f6da7fdd8593537fd
]]></artwork></figure>

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

<t>The client sends an Initial packet.  The unprotected payload of this packet
contains the following CRYPTO frame, plus enough PADDING frames to make an 1163
byte payload:</t>

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

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

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

<t>Protecting the payload produces output that is sampled for header protection.
Because the header uses a 4 byte packet number encoding, the first 16 bytes of
the protected payload is sampled, then applied to the header:</t>

<figure><artwork><![CDATA[
sample = 0000f3a694c75775b4e546172ce9e047

mask = AES-ECB(hp, sample)[0..4]
     = 020dbc1958

header[0] ^= mask[0] & 0x0f
     = c1
header[17..20] ^= mask[1..4]
     = 0dbc195a
header = c1ff000012508394c8f03e51570800449f0dbc195a
]]></artwork></figure>

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

<figure><artwork><![CDATA[
c1ff000012508394c8f03e5157080044 9f0dbc195a0000f3a694c75775b4e546
172ce9e047cd0b5bee5181648c727adc 87f7eae54473ec6cba6bdad4f5982317
4b769f12358abd292d4f3286934484fb 8b239c38732e1f3bbbc6a003056487eb
8b5c88b9fd9279ffff3b0f4ecf95c462 4db6d65d4113329ee9b0bf8cdd7c8a8d
72806d55df25ecb66488bc119d7c9a29 abaf99bb33c56b08ad8c26995f838bb3
b7a3d5c1858b8ec06b839db2dcf918d5 ea9317f1acd6b663cc8925868e2f6a1b
da546695f3c3f33175944db4a11a346a fb07e78489e509b02add51b7b203eda5
c330b03641179a31fbba9b56ce00f3d5 b5e3d7d9c5429aebb9576f2f7eacbe27
bc1b8082aaf68fb69c921aa5d33ec0c8 510410865a178d86d7e54122d55ef2c2
bbc040be46d7fece73fe8a1b24495ec1 60df2da9b20a7ba2f26dfa2a44366dbc
63de5cd7d7c94c57172fe6d79c901f02 5c0010b02c89b395402c009f62dc053b
8067a1e0ed0a1e0cf5087d7f78cbd94a fe0c3dd55d2d4b1a5cfe2b68b86264e3
51d1dcd858783a240f893f008ceed743 d969b8f735a1677ead960b1fb1ecc5ac
83c273b49288d02d7286207e663c45e1 a7baf50640c91e762941cf380ce8d79f
3e86767fbbcd25b42ef70ec334835a3a 6d792e170a432ce0cb7bde9aaa1e7563
7c1c34ae5fef4338f53db8b13a4d2df5 94efbfa08784543815c9c0d487bddfa1
539bc252cf43ec3686e9802d651cfd2a 829a06a9f332a733a4a8aed80efe3478
093fbc69c8608146b3f16f1a5c4eac93 20da49f1afa5f538ddecbbe7888f4355
12d0dd74fd9b8c99e3145ba84410d8ca 9a36dd884109e76e5fb8222a52e1473d
a168519ce7a8a3c32e9149671b16724c 6c5c51bb5cd64fb591e567fb78b10f9f
6fee62c276f282a7df6bcf7c17747bc9 a81e6c9c3b032fdd0e1c3ac9eaa5077d
e3ded18b2ed4faf328f49875af2e36ad 5ce5f6cc99ef4b60e57b3b5b9c9fcbcd
4cfb3975e70ce4c2506bcd71fef0e535 92461504e3d42c885caab21b782e2629
4c6a9d61118cc40a26f378441ceb48f3 1a362bf8502a723a36c63502229a462c
c2a3796279a5e3a7f81a68c7f81312c3 81cc16a4ab03513a51ad5b54306ec1d7
8a5e47e2b15e5b7a1438e5b8b2882dbd ad13d6a4a8c3558cae043501b68eb3b0
40067152337c051c40b5af809aca2856 986fd1c86a4ade17d254b6262ac1bc07
7343b52bf89fa27d73e3c6f3118c9961 f0bebe68a5c323c2d84b8c29a2807df6
63635223242a2ce9828d4429ac270aab 5f1841e8e49cf433b1547989f419caa3
c758fff96ded40cf3427f0761b678daa 1a9e5554465d46b7a917493fc70f9ec5
e4e5d786ca501730898aaa1151dcd318 29641e29428d90e6065511c24d3109f7
cba32225d4accfc54fec42b733f95852 52ee36fa5ea0c656934385b468eee245
315146b8c047ed27c519b2c0a52d33ef e72c186ffe0a230f505676c5324baa6a
e006a73e13aa8c39ab173ad2b2778eea 0b34c46f2b3beae2c62a2c8db238bf58
fc7c27bdceb96c56d29deec87c12351b fd5962497418716a4b915d334ffb5b92
ca94ffe1e4f78967042638639a9de325 357f5f08f6435061e5a274703936c06f
c56af92c420797499ca431a7abaa4618 63bca656facfad564e6274d4a741033a
ca1e31bf63200df41cdf41c10b912bec
]]></artwork></figure>

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

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

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

<t>The header from the server includes a new connection ID and a 2-byte packet
number encoding for a packet number of 1:</t>

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

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

<figure><artwork><![CDATA[
sample = c4c2a2303d297e3c519bf6b22386e3d0
mask   = 75f7ec8b62
header = c4ff00001205f067a5502a4262b5004074f7ed
]]></artwork></figure>

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

<figure><artwork><![CDATA[
c4ff00001205f067a5502a4262b50040 74f7ed5f01c4c2a2303d297e3c519bf6
b22386e3d0bd6dfc6612167729803104 1bb9a79c9f0f9d4c5877270a660f5da3
6207d98b73839b2fdf2ef8e7df5a51b1 7b8c68d864fd3e708c6c1b71a98a3318
15599ef5014ea38c44bdfd387c03b527 5c35e009b6238f831420047c7271281c
cb54df7884
]]></artwork></figure>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>No significant changes.</t>

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

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

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

<t>No significant changes.</t>

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

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

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

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

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

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

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

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

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

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

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

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

</section>


  </back>

<!-- ##markdown-source:
H4sIAJS4R1wAA829aXfbSJYg+j1+BcY+57VURTIBcHd2ZpdSlsvu9KKRnNVT
p061G0tAQpsk2ARpWeXy/Pa5WyxYKDlzqt97yq62RAKx3Lhx92U4HKp9uV/p
Z8Evdbm5Cd6/vg72VXCts8NOB//zl1fnKknTnf70jP4Iqk96hw+pvMo2yRre
y3dJsR+Wel8M/+tQZsP9qh5GC5Une/gyDqPlMIyG8Vhl8MFNtbt/FtT7XJXb
3bNgvzvU+zgMl2Gskp1OngXvd8mm3la7vbqrdh9vdtVhyxMrVe+TTf4hWVUb
GPde12pbPgv+sq+yQVDDCztd1PDb/Zp/geWtk+0WtvRXpZLD/rbaPVNBMIT/
BUG5qZ8Fb0bB+9tqXVcb+ow38ybZ7ctN44tqdwOfV38rV6uEPtDrpFw9C9b7
P6yqO73Z76rt/Wij9/TlrkJY6rzcV7vmfNcw32G30TtvumudbPxPaa56M97l
/kw1PPUH+nSUVevuNGpT7dbJvvyknyn4FsE1fH919vb68t3V+2f0vJzxE/zu
WXAW/PL8cvhTUus8eHNY7cvtSn+G3wHA5uTtQTyh9zuniR/WeldqwJqi4kmC
4NVmr2Ez++FzRIoe3DCjIobgC+5k8Gco/wrE/nUUvLrXm5tkZz9nsP1rskk6
XxHsXiT1fnVvP2udRs8cLSx4EBN6saF7GnICVxfn7/50cfXn7gEEr6u6Dp7r
vc72ZbUhsJ9Xmxtd05/wK+DU6h8K+J3O8Obe//8G7q9GwfWd3u9bM7yC+9D8
nIb/Y1XdrPQReCMcfPw/u/ipOmzyugn41+W63NcBwPcM9g7XtkSClAcXm2x3
vyXA/1LrAI/89fWTPiDxws9GwevD/cfPzU9/HgWXMNzOoIo9ttkwHA9DBvo+
2d1oOJwnt/v99tl3393d3Y3K+ma0uz2sRkk2Onz87n9/3H4H8w/PLlLaw2ib
F09wU6/enDf38wqRJD8wBgHFflPlgAHBOW6mutkl29v7AV7mCpDrAiAFjz2w
Kzjyn5P935of/hm2Wm5yvVo19zQZRtEwnB1Dxeuf3j4LlvPFMJrMZtN5GM+W
9lK8fP/+srmPl/dbvdvrz3smOQWwl8tdBWS9WgUn+Pgp8xx8/R96JfAQvuk6
AIn4qaxvq22bQpQfdfsbJg9ltqvqqtgfQVg1HA6DJK2BGmZ7pd7fljXyq8Ma
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

-->

</rfc>

