<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.1.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-v2-08" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.3 -->
  <front>
    <title abbrev="QUICv2">QUIC Version 2</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-v2-08"/>
    <author initials="M." surname="Duke" fullname="Martin Duke">
      <organization>Google LLC</organization>
      <address>
        <email>martin.h.duke@gmail.com</email>
      </address>
    </author>
    <date year="2022" month="December" day="12"/>
    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    <abstract>
      <t>This document specifies QUIC version 2, which is identical to QUIC version 1
except for some trivial details. Its purpose is to combat various ossification
vectors and exercise the version negotiation framework. It also serves as a
template for the minimum changes in any future version of QUIC.</t>
      <t>Note that "version 2" is an informal name for this proposal that indicates it
is the second standards-track QUIC version. The protocol specified here uses a
version number other than 2 in the wire image, in order to minimize ossification
risk.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://quicwg.org/quic-v2/draft-ietf-quic-v2.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-quic-v2/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        QUIC Working Group mailing list (<eref target="mailto:quic@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/quic/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/quic/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/quicwg/quic-v2"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>QUIC version 1<xref target="QUIC"/> has numerous extension points, including the version
number that occupies the second through fifth bytes of every long header (see
<xref target="QUIC-INVARIANTS"/>). If experimental versions are rare, and QUIC
version 1 constitutes the vast majority of QUIC traffic, there is the potential
for middleboxes to ossify on the version bytes always being 0x00000001.</t>
      <t>In QUIC version 1, Initial packets are encrypted with the version-specific salt
as described in <xref section="5.2" sectionFormat="of" target="QUIC-TLS"/>. Protecting Initial packets in this
way allows observers to inspect their contents, which includes the TLS Client
Hello or Server Hello messages. Again, there is the potential for middleboxes to
ossify on the version 1 key derivation and packet formats.</t>
      <t>Finally, <xref target="QUIC-VN"/> provides two mechanisms
for endpoints to negotiate the QUIC version to use. The "incompatible" version
negotiation method can support switching from any QUIC version to any
other version with full generality, at the cost of an additional round-trip at
the start of the connection. "Compatible" version negotiation eliminates the
round-trip penalty but levies some restrictions on how much the two versions can
differ semantically.</t>
      <t>QUIC version 2 is meant to mitigate ossification concerns and exercise the
version negotiation mechanisms. The changes provide an example of the minimum
set of changes necessary to specify a new QUIC version. However, note that the
choice of the version number on the wire is randomly chosen instead of "2", and
the two bits that identify each long header packet type are different from
version 1; both of these properties are meant to combat ossification and are not
strictly required of a new QUIC version.</t>
      <t>Any endpoint that supports two versions needs to implement version negotiation
to protect against downgrade attacks.</t>
    </section>
    <section anchor="conventions">
      <name>Conventions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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>
    </section>
    <section anchor="differences-with-quic-version-1">
      <name>Differences with QUIC Version 1</name>
      <t>Except for a few differences, QUIC version 2 endpoints <bcp14>MUST</bcp14> implement the QUIC
version 1 specification as described in <xref target="QUIC"/>, <xref target="QUIC-TLS"/>, and
<xref target="QUIC-RECOVERY"/>. The remainder of this section lists the differences.</t>
      <section anchor="version-field">
        <name>Version Field</name>
        <t>The Version field of long headers is 0x6b3343cf. This was generated by taking
the first four bytes of the sha256sum of "QUICv2 version number".</t>
        <ul empty="true">
          <li>
            <t><strong>RFC Editor's Note:</strong>  Please remove the sentence below prior to publication
of a final version of this document.</t>
          </li>
        </ul>
        <t>This version number will not change in subsequent versions of this draft,
unless there is a behavior change that breaks compatibility.</t>
      </section>
      <section anchor="long-header-packet-types">
        <name>Long Header Packet Types</name>
        <t>All version 2 long header packet types are different. The Type field values are:</t>
        <ul spacing="normal">
          <li>Initial: 0b01</li>
          <li>0-RTT: 0b10</li>
          <li>Handshake: 0b11</li>
          <li>Retry: 0b00</li>
        </ul>
      </section>
      <section anchor="cryptography-changes">
        <name>Cryptography changes</name>
        <t>The values below were chosen randomly.</t>
        <section anchor="initial-salt">
          <name>Initial Salt</name>
          <t>The salt used to derive Initial keys in <xref section="5.2" sectionFormat="of" target="QUIC-TLS"/> changes to:</t>
          <artwork><![CDATA[
initial_salt = 0x0dede3def700a6db819381be6e269dcbf9bd2ed9
]]></artwork>
          <t>This is the first 20 bytes of the sha256sum of "QUICv2 salt".</t>
        </section>
        <section anchor="hkdf-labels">
          <name>HKDF Labels</name>
          <ul empty="true">
            <li>
              <t><strong>RFC Editor's Note:</strong>  Please ensure that the strings in quotes are not split
up in a line break in this section.</t>
            </li>
          </ul>
          <t>The labels used in <xref target="QUIC-TLS"/> to derive packet protection keys (Section
<xref section="5.1" sectionFormat="bare" target="QUIC-TLS"/>), header protection keys
(Section <xref section="5.4" sectionFormat="bare" target="QUIC-TLS"/>), Retry Integrity
Tag keys (Section <xref section="5.8" sectionFormat="bare" target="QUIC-TLS"/>), and key
updates (Section <xref section="6.1" sectionFormat="bare" target="QUIC-TLS"/>) change from
"quic key" to "quicv2 key", from "quic iv" to "quicv2 iv", from "quic hp" to
"quicv2 hp", and from "quic ku" to "quicv2 ku", to meet the guidance for new
versions in Section <xref section="9.6" sectionFormat="bare" target="QUIC-TLS"/> of that
document.</t>
        </section>
        <section anchor="retry-integrity-tag">
          <name>Retry Integrity Tag</name>
          <t>The key and nonce used for the Retry Integrity Tag (<xref section="5.8" sectionFormat="of" target="QUIC-TLS"/>)
change to:</t>
          <artwork><![CDATA[
secret =
  0xc4dd2484d681aefa4ff4d69c2c20299984a765a5d3c31982f38fc74162155e9f
key = 0x8fb4b01b56ac48e260fbcbcead7ccc92
nonce = 0xd86969bc2d7c6d9990efb04a
]]></artwork>
          <t>The secret is the sha256sum of "QUICv2 retry secret". The key and nonce are
derived from this secret with the labels "quicv2 key" and "quicv2 iv",
respectively.</t>
        </section>
      </section>
    </section>
    <section anchor="version-negotiation-considerations">
      <name>Version Negotiation Considerations</name>
      <t>QUIC version 2 is not intended to deprecate version 1. Endpoints that support
version 2 might continue support for version 1 to maximize compatibility with
other endpoints. In particular, HTTP clients often use Alt-Svc <xref target="RFC7838"/> to
discover QUIC support. As this mechanism does not currently distinguish between
QUIC versions, HTTP servers <bcp14>SHOULD</bcp14> support multiple versions to reduce the
probability of incompatibility and the cost associated with QUIC version
negotiation or TCP fallback. For example, an origin advertising support for "h3"
in Alt-Svc should support QUIC version 1 as it was the original QUIC version
used by HTTP/3, and therefore some clients will only support that version.</t>
      <t>Any QUIC endpoint that supports QUIC version 2 <bcp14>MUST</bcp14> send, process, and validate
the version_information transport parameter specified in <xref target="QUIC-VN"/> to prevent
version downgrade attacks.</t>
      <t>Note that version 2 meets the <xref target="QUIC-VN"/> definition of a compatible version
with version 1, and version 1 is compatible with version 2. Therefore, servers
can use compatible negotiation to switch a connection between the two versions.
Endpoints that support both versions <bcp14>SHOULD</bcp14> support compatible version
negotiation to avoid a round trip.</t>
      <section anchor="compatible-negotiation-requirements">
        <name>Compatible Negotiation Requirements</name>
        <t>Compatible version negotiation between versions 1 and 2 follow the same
requirements in either direction. This section uses the terms "original
version" and "negotiated version" from <xref target="QUIC-VN"/>.</t>
        <t>If the server sends a Retry packet, it <bcp14>MUST</bcp14> use the original version. The
client ignores Retry packets using other versions. The client <bcp14>MUST NOT</bcp14> use a
different version in the subsequent Initial packet that contains the Retry
token. The server <bcp14>MAY</bcp14> encode the QUIC version in its Retry token to validate
that the client did not switch versions, and drop the packet if it switched,
to enforce client compliance.</t>
        <t>QUIC version 2 uses the same transport parameters to authenticate the Retry as
QUIC version 1. After switching to a negotiated version after a Retry, the
server <bcp14>MUST</bcp14> include the relevant transport parameters to validate that the
server sent the Retry and the connection IDs used in the exchange, as described
in <xref section="7.3" sectionFormat="of" target="QUIC"/>.</t>
        <t>The server cannot send CRYPTO frames until it has processed the client's
transport parameters. The server <bcp14>MUST</bcp14> send all CRYPTO frames using
the negotiated version.</t>
        <t>The client learns the negotiated version by observing the first long header
Version field that differs from the original version. If the client receives a
CRYPTO frame from the server in the original version, that indicates that the
negotiated version is equal to the original version.</t>
        <t>Before the server is able to process transport parameters from the client, it
might need to respond to Initial packets from the client. For these packets, the
server uses the original version.</t>
        <t>Once the client has learned the negotiated version, it <bcp14>SHOULD</bcp14> send subsequent
Initial packets using that version. The server <bcp14>MUST NOT</bcp14> discard its original
version Initial receive keys until it successfully processes a Handshake
packet with the negotiated version.</t>
        <t>Both endpoints <bcp14>MUST</bcp14> send Handshake and 1-RTT packets using the negotiated
version. An endpoint <bcp14>MUST</bcp14> drop packets using any other version. Endpoints have
no need to generate the keying material that would allow them to decrypt or
authenticate such packets.</t>
        <t>The client <bcp14>MUST NOT</bcp14> send 0-RTT packets using the negotiated version, even after
processing a packet of that version from the server. Servers can accept 0-RTT
and then process 0-RTT packets from the original version.</t>
      </section>
    </section>
    <section anchor="tls-resumption-and-newtoken-tokens">
      <name>TLS Resumption and NEW_TOKEN Tokens</name>
      <t>TLS session tickets and NEW_TOKEN tokens are specific to the QUIC version of the
connection that provided them. Clients <bcp14>MUST NOT</bcp14> use a session ticket or token
from a QUIC version 1 connection to initiate a QUIC version 2 connection, or vice
versa.</t>
      <t>Servers <bcp14>MUST</bcp14> validate the originating version of any session ticket or token and
not accept one issued from a different version. A rejected ticket results in
falling back to a full TLS handshake, without 0-RTT. A rejected token results in
the client address remaining unverified, which limits the amount of data the
server can send.</t>
      <t>After compatible version negotiation, any resulting session ticket
maps to the negotiated version rather than original one.</t>
    </section>
    <section anchor="ossification-considerations">
      <name>Ossification Considerations</name>
      <t>QUIC version 2 provides protection against some forms of ossification. Devices
that assume that all long headers will encode version 1, or that the version 1
Initial key derivation formula will remain version-invariant, will not correctly
process version 2 packets.</t>
      <t>However, many middleboxes, such as firewalls, focus on the first packet in a
connection, which will often remain in the version 1 format due to the
considerations above.</t>
      <t>Clients interested in combating middlebox ossification can initiate a connection
using version 2 if they are either reasonably certain the server supports it, or
are willing to suffer a round-trip penalty if they are incorrect.  In
particular, a server that issues a session ticket for version 2 indicates an
intent to maintain version 2 support while the ticket remains valid, even if
support cannot be guaranteed.</t>
    </section>
    <section anchor="applicability">
      <name>Applicability</name>
      <t>This version of QUIC provides no change from QUIC version 1 relating to the
capabilities available to applications. Therefore, all Application Layer
Protocol Negotiation (ALPN) (<xref target="RFC7301"/>) codepoints specified to operate over
QUIC version 1 can also operate over this version of QUIC. In particular, both
the "h3" <xref target="H3"/> and "doq" <xref target="RFC9250"/> ALPNs can operate over
QUIC version 2.</t>
      <t>Unless otherwise stated, all QUIC extensions defined to work with version 1 also
work with version 2.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>QUIC version 2 introduces no changes to the security or privacy properties of
QUIC version 1.</t>
      <t>The mandatory version negotiation mechanism guards against downgrade attacks,
but downgrades have no security implications, as the version properties are
identical.</t>
      <t>Support for QUIC version 2 can help an observer to fingerprint both client and
server devices.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document requests that IANA add the following entry to the QUIC version
registry maintained at
&lt;<eref target="https://www.iana.org/assignments/quic/quic.xhtml#quic-versions"/>&gt;.</t>
      <dl spacing="compact">
        <dt>Value:</dt>
        <dd>
          <t>0x709a50c4</t>
        </dd>
        <dt>Status:</dt>
        <dd>
          <t>permanent</t>
        </dd>
        <dt>Specification:</dt>
        <dd>
          <t>This Document</t>
        </dd>
        <dt>Change Controller:</dt>
        <dd>
          <t>IETF</t>
        </dd>
        <dt>Contact:</dt>
        <dd>
          <t>QUIC WG</t>
        </dd>
      </dl>
    </section>
  </middle>
  <back>
    <displayreference target="H3" to="HTTP/3"/>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="QUIC">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="QUIC-TLS">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="QUIC-VN">
          <front>
            <title>Compatible Version Negotiation for QUIC</title>
            <author fullname="David Schinazi" initials="D." surname="Schinazi">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
              <organization>Mozilla</organization>
            </author>
            <date day="6" month="November" year="2022"/>
            <abstract>
              <t>   QUIC does not provide a complete version negotiation mechanism but
   instead only provides a way for the server to indicate that the
   version the client chose is unacceptable.  This document describes a
   version negotiation mechanism that allows a client and server to
   select a mutually supported version.  Optionally, if the client's
   chosen version and the negotiated version share a compatible first
   flight format, the negotiation can take place without incurring an
   extra round trip.  This document updates RFC 8999.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-version-negotiation-13"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <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">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <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="QUIC-RECOVERY">
          <front>
            <title>QUIC Loss Detection and Congestion Control</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
              <organization/>
            </author>
            <author fullname="I. Swett" initials="I." role="editor" surname="Swett">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes loss detection and congestion control mechanisms for QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9002"/>
          <seriesInfo name="DOI" value="10.17487/RFC9002"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="H3">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment.  This document describes a mapping of HTTP semantics over QUIC.  This document also identifies HTTP/2 features that are subsumed by QUIC and describes how HTTP/2 extensions can be ported to HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9114"/>
          <seriesInfo name="DOI" value="10.17487/RFC9114"/>
        </reference>
        <reference anchor="QUIC-INVARIANTS">
          <front>
            <title>Version-Independent Properties of QUIC</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the properties of the QUIC transport protocol that are common to all versions of the protocol.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8999"/>
          <seriesInfo name="DOI" value="10.17487/RFC8999"/>
        </reference>
        <reference anchor="RFC7838">
          <front>
            <title>HTTP Alternative Services</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="P. McManus" initials="P." surname="McManus">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." surname="Reschke">
              <organization/>
            </author>
            <date month="April" year="2016"/>
            <abstract>
              <t>This document specifies "Alternative Services" for HTTP, which allow an origin's resources to be authoritatively available at a separate network location, possibly accessed with a different protocol configuration.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7838"/>
          <seriesInfo name="DOI" value="10.17487/RFC7838"/>
        </reference>
        <reference anchor="RFC7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl">
              <organization/>
            </author>
            <author fullname="A. Popov" initials="A." surname="Popov">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="E. Stephan" initials="E." surname="Stephan">
              <organization/>
            </author>
            <date month="July" year="2014"/>
            <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="RFC9250">
          <front>
            <title>DNS over Dedicated QUIC Connections</title>
            <author fullname="C. Huitema" initials="C." surname="Huitema">
              <organization/>
            </author>
            <author fullname="S. Dickinson" initials="S." surname="Dickinson">
              <organization/>
            </author>
            <author fullname="A. Mankin" initials="A." surname="Mankin">
              <organization/>
            </author>
            <date month="May" year="2022"/>
            <abstract>
              <t>This document describes the use of QUIC to provide transport confidentiality for DNS. The encryption provided by QUIC has similar properties to those provided by TLS, while QUIC transport eliminates the head-of-line blocking issues inherent with TCP and provides more efficient packet-loss recovery than UDP. DNS over QUIC (DoQ) has privacy properties similar to DNS over TLS (DoT) specified in RFC 7858, and latency characteristics similar to classic DNS over UDP. This specification describes the use of DoQ as a general-purpose transport for DNS and includes the use of DoQ for stub to recursive, recursive to authoritative, and zone transfer scenarios.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9250"/>
          <seriesInfo name="DOI" value="10.17487/RFC9250"/>
        </reference>
      </references>
    </references>
    <section anchor="test-vectors">
      <name>Sample Packet Protection</name>
      <t>This section shows examples of packet protection so that implementations can be
verified incrementally. Samples of Initial packets from both client and server
plus a Retry packet are defined. These packets use an 8-byte client-chosen
Destination Connection ID of 0x8394c8f03e515708. Some intermediate values are
included. All values are shown in hexadecimal.</t>
      <section anchor="keys">
        <name>Keys</name>
        <t>The labels generated during the execution of the HKDF-Expand-Label function
(that is, HkdfLabel.label) and part of the value given to the HKDF-Expand
function in order to produce its output are:</t>
        <t>client in:  00200f746c73313320636c69656e7420696e00</t>
        <t>server in:  00200f746c7331332073657276657220696e00</t>
        <t>quicv2 key:  001010746c73313320717569637632206b657900</t>
        <t>quicv2 iv:  000c0f746c7331332071756963763220697600</t>
        <t>quicv2 hp:  00100f746c7331332071756963763220687000</t>
        <t>The initial secret is common:</t>
        <artwork><![CDATA[
initial_secret = HKDF-Extract(initial_salt, cid)
    = 2062e8b3cd8d52092614b8071d0aa1fb
      7c2e3ac193f78b280e72d8f5751f6aba
]]></artwork>
        <t>The secrets for protecting client packets are:</t>
        <artwork><![CDATA[
client_initial_secret
    = HKDF-Expand-Label(initial_secret, "client in", "", 32)
    = 14ec9d6eb9fd7af83bf5a668bc17a7e2
      83766aade7ecd0891f70f9ff7f4bf47b

key = HKDF-Expand-Label(client_initial_secret, "quicv2 key", "", 16)
    = 8b1a0bc121284290a29e0971b5cd045d

iv  = HKDF-Expand-Label(client_initial_secret, "quicv2 iv", "", 12)
    = 91f73e2351d8fa91660e909f

hp  = HKDF-Expand-Label(client_initial_secret, "quicv2 hp", "", 16)
    = 45b95e15235d6f45a6b19cbcb0294ba9
]]></artwork>
        <t>The secrets for protecting server packets are:</t>
        <artwork><![CDATA[
server_initial_secret
    = HKDF-Expand-Label(initial_secret, "server in", "", 32)
    = 0263db1782731bf4588e7e4d93b74639
      07cb8cd8200b5da55a8bd488eafc37c1

key = HKDF-Expand-Label(server_initial_secret, "quicv2 key", "", 16)
    = 82db637861d55e1d011f19ea71d5d2a7

iv  = HKDF-Expand-Label(server_initial_secret, "quicv2 iv", "", 12)
    = dd13c276499c0249d3310652

hp  = HKDF-Expand-Label(server_initial_secret, "quicv2 hp", "", 16)
    = edf6d05c83121201b436e16877593c3a
]]></artwork>
      </section>
      <section anchor="sample-client-initial">
        <name>Client Initial</name>
        <t>The client sends an Initial packet.  The unprotected payload of this packet
contains the following CRYPTO frame, plus enough PADDING frames to make a
1162-byte payload:</t>
        <artwork><![CDATA[
060040f1010000ed0303ebf8fa56f129 39b9584a3896472ec40bb863cfd3e868
04fe3a47f06a2b69484c000004130113 02010000c000000010000e00000b6578
616d706c652e636f6dff01000100000a 00080006001d00170018001000070005
04616c706e0005000501000000000033 00260024001d00209370b2c9caa47fba
baf4559fedba753de171fa71f50f1ce1 5d43e994ec74d748002b000302030400
0d0010000e0403050306030203080408 050806002d00020101001c0002400100
3900320408ffffffffffffffff050480 00ffff07048000ffff08011001048000
75300901100f088394c8f03e51570806 048000ffff
]]></artwork>
        <t>The unprotected header indicates a length of 1182 bytes: the 4-byte packet
number, 1162 bytes of frames, and the 16-byte authentication tag.  The header
includes the connection ID and a packet number of 2:</t>
        <artwork><![CDATA[
d36b3343cf088394c8f03e5157080000449e00000002
]]></artwork>
        <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 and then applied to the header as follows:</t>
        <artwork><![CDATA[
sample = ffe67b6abcdb4298b485dd04de806071

mask = AES-ECB(hp, sample)[0..4]
     = 94a0c95e80

header[0] ^= mask[0] & 0x0f
     = d7
header[18..21] ^= mask[1..4]
     = a0c95e82
header = d76b3343cf088394c8f03e5157080000449ea0c95e82
]]></artwork>
        <t>The resulting protected packet is:</t>
        <artwork><![CDATA[
d76b3343cf088394c8f03e5157080000 449ea0c95e82ffe67b6abcdb4298b485
dd04de806071bf03dceebfa162e75d6c 96058bdbfb127cdfcbf903388e99ad04
9f9a3dd4425ae4d0992cfff18ecf0fdb 5a842d09747052f17ac2053d21f57c5d
250f2c4f0e0202b70785b7946e992e58 a59ac52dea6774d4f03b55545243cf1a
12834e3f249a78d395e0d18f4d766004 f1a2674802a747eaa901c3f10cda5500
cb9122faa9f1df66c392079a1b40f0de 1c6054196a11cbea40afb6ef5253cd68
18f6625efce3b6def6ba7e4b37a40f77 32e093daa7d52190935b8da58976ff33
12ae50b187c1433c0f028edcc4c2838b 6a9bfc226ca4b4530e7a4ccee1bfa2a3
d396ae5a3fb512384b2fdd851f784a65 e03f2c4fbe11a53c7777c023462239dd
6f7521a3f6c7d5dd3ec9b3f233773d4b 46d23cc375eb198c63301c21801f6520
bcfb7966fc49b393f0061d974a2706df 8c4a9449f11d7f3d2dcbb90c6b877045
636e7c0c0fe4eb0f697545460c806910 d2c355f1d253bc9d2452aaa549e27a1f
ac7cf4ed77f322e8fa894b6a83810a34 b361901751a6f5eb65a0326e07de7c12
16ccce2d0193f958bb3850a833f7ae43 2b65bc5a53975c155aa4bcb4f7b2c4e5
4df16efaf6ddea94e2c50b4cd1dfe060 17e0e9d02900cffe1935e0491d77ffb4
fdf85290fdd893d577b1131a610ef6a5 c32b2ee0293617a37cbb08b847741c3b
8017c25ca9052ca1079d8b78aebd4787 6d330a30f6a8c6d61dd1ab5589329de7
14d19d61370f8149748c72f132f0fc99 f34d766c6938597040d8f9e2bb522ff9
9c63a344d6a2ae8aa8e51b7b90a4a806 105fcbca31506c446151adfeceb51b91
abfe43960977c87471cf9ad4074d30e1 0d6a7f03c63bd5d4317f68ff325ba3bd
80bf4dc8b52a0ba031758022eb025cdd 770b44d6d6cf0670f4e990b22347a7db
848265e3e5eb72dfe8299ad7481a4083 22cac55786e52f633b2fb6b614eaed18
d703dd84045a274ae8bfa73379661388 d6991fe39b0d93debb41700b41f90a15
c4d526250235ddcd6776fc77bc97e7a4 17ebcb31600d01e57f32162a8560cacc
7e27a096d37a1a86952ec71bd89a3e9a 30a2a26162984d7740f81193e8238e61
f6b5b984d4d3dfa033c1bb7e4f0037fe bf406d91c0dccf32acf423cfa1e70710
10d3f270121b493ce85054ef58bada42 310138fe081adb04e2bd901f2f13458b
3d6758158197107c14ebb193230cd115 7380aa79cae1374a7c1e5bbcb80ee23e
06ebfde206bfb0fcbc0edc4ebec30966 1bdd908d532eb0c6adc38b7ca7331dce
8dfce39ab71e7c32d318d136b6100671 a1ae6a6600e3899f31f0eed19e3417d1
34b90c9058f8632c798d4490da498730 7cba922d61c39805d072b589bd52fdf1
e86215c2d54e6670e07383a27bbffb5a ddf47d66aa85a0c6f9f32e59d85a44dd
5d3b22dc2be80919b490437ae4f36a0a e55edf1d0b5cb4e9a3ecabee93dfc6e3
8d209d0fa6536d27a5d6fbb17641cde2 7525d61093f1b28072d111b2b4ae5f89
d5974ee12e5cf7d5da4d6a31123041f3 3e61407e76cffcdcfd7e19ba58cf4b53
6f4c4938ae79324dc402894b44faf8af bab35282ab659d13c93f70412e85cb19
9a37ddec600545473cfb5a05e08d0b20 9973b2172b4d21fb69745a262ccde96b
a18b2faa745b6fe189cf772a9f84cbfc
]]></artwork>
      </section>
      <section anchor="server-initial">
        <name>Server Initial</name>
        <t>The server sends the following payload in response, including an ACK frame, a
CRYPTO frame, and no PADDING frames:</t>
        <artwork><![CDATA[
02000000000600405a020000560303ee fce7f7b37ba1d1632e96677825ddf739
88cfc79825df566dc5430b9a045a1200 130100002e00330024001d00209d3c94
0d89690b84d08a60993c144eca684d10 81287c834d5311bcf32bb9da1a002b00
020304
]]></artwork>
        <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>
        <artwork><![CDATA[
d16b3343cf0008f067a5502a4262b50040750001
]]></artwork>
        <t>As a result, after protection, the header protection sample is taken starting
from the third protected byte:</t>
        <artwork><![CDATA[
sample = 6f05d8a4398c47089698baeea26b91eb
mask   = 4dd92e91ea
header = dc6b3343cf0008f067a5502a4262b5004075d92f
]]></artwork>
        <t>The final protected packet is then:</t>
        <artwork><![CDATA[
dc6b3343cf0008f067a5502a4262b500 4075d92faaf16f05d8a4398c47089698
baeea26b91eb761d9b89237bbf872630 17915358230035f7fd3945d88965cf17
f9af6e16886c61bfc703106fbaf3cb4c fa52382dd16a393e42757507698075b2
c984c707f0a0812d8cd5a6881eaf21ce da98f4bd23f6fe1a3e2c43edd9ce7ca8
4bed8521e2e140
]]></artwork>
      </section>
      <section anchor="retry">
        <name>Retry</name>
        <t>This shows a Retry packet that might be sent in response to the Initial packet
in <xref target="sample-client-initial"/>. The integrity check includes the client-chosen
connection ID value of 0x8394c8f03e515708, but that value is not
included in the final Retry packet:</t>
        <artwork><![CDATA[
cf6b3343cf0008f067a5502a4262b574 6f6b656ec8646ce8bfe33952d9555436
65dcc7b6
]]></artwork>
      </section>
      <section anchor="chacha20-poly1305-short-header-packet">
        <name>ChaCha20-Poly1305 Short Header Packet</name>
        <t>This example shows some of the steps required to protect a packet with
a short header.  This example uses AEAD_CHACHA20_POLY1305.</t>
        <t>In this example, TLS produces an application write secret from which a server
uses HKDF-Expand-Label to produce four values: a key, an IV, a header
protection key, and the secret that will be used after keys are updated (this
last value is not used further in this example).</t>
        <artwork><![CDATA[
secret
    = 9ac312a7f877468ebe69422748ad00a1
      5443f18203a07d6060f688f30f21632b

key = HKDF-Expand-Label(secret, "quicv2 key", "", 32)
    = 3bfcddd72bcf02541d7fa0dd1f5f9eee
      a817e09a6963a0e6c7df0f9a1bab90f2

iv  = HKDF-Expand-Label(secret, "quicv2 iv", "", 12)
    = a6b5bc6ab7dafce30ffff5dd

hp  = HKDF-Expand-Label(secret, "quicv2 hp", "", 32)
    = d659760d2ba434a226fd37b35c69e2da
      8211d10c4f12538787d65645d5d1b8e2

ku  = HKDF-Expand-Label(secret, "quicv2 ku", "", 32)
    = c69374c49e3d2a9466fa689e49d476db
      5d0dfbc87d32ceeaa6343fd0ae4c7d88
]]></artwork>
        <t>The following shows the steps involved in protecting a minimal packet with an
empty Destination Connection ID. This packet contains a single PING frame (that
is, a payload of just 0x01) and has a packet number of 654360564. In this
example, using a packet number of length 3 (that is, 49140 is encoded) avoids
having to pad the payload of the packet; PADDING frames would be needed if the
packet number is encoded on fewer bytes.</t>
        <artwork><![CDATA[
pn                 = 654360564 (decimal)
nonce              = a6b5bc6ab7dafce328ff4a29
unprotected header = 4200bff4
payload plaintext  = 01
payload ciphertext = 0ae7b6b932bc27d786f4bc2bb20f2162ba
]]></artwork>
        <t>The resulting ciphertext is the minimum size possible. One byte is skipped to
produce the sample for header protection.</t>
        <artwork><![CDATA[
sample = e7b6b932bc27d786f4bc2bb20f2162ba
mask   = 97580e32bf
header = 5558b1c6
]]></artwork>
        <t>The protected packet is the smallest possible packet size of 21 bytes.</t>
        <artwork><![CDATA[
packet = 5558b1c60ae7b6b932bc27d786f4bc2bb20f2162ba
]]></artwork>
      </section>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The author would like to thank Christian Huitema, Lucas Pardue, Kyle Rose,
Anthony Rossi, Zahed Sarker, David Schinazi, Tatsuhiro Tsujikawa, and Martin
Thomson for their helpful suggestions.</t>
    </section>
    <section anchor="changelog">
      <name>Changelog</name>
      <ul empty="true">
        <li>
          <t><strong>RFC Editor's Note:</strong>  Please remove this section prior to
publication of a final version of this document.</t>
        </li>
      </ul>
      <section anchor="since-draft-ietf-quic-v2-06">
        <name>since draft-ietf-quic-v2-06</name>
        <ul spacing="normal">
          <li>Clients <bcp14>MUST NOT</bcp14> use TLS resumption tickets across versions</li>
          <li>Servers <bcp14>SHOULD</bcp14> support multiple versions</li>
          <li>Clients <bcp14>SHOULD</bcp14> check path support for QUIC independently by version</li>
          <li>Minor editorial changes</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-v2-05">
        <name>since draft-ietf-quic-v2-05</name>
        <ul spacing="normal">
          <li>Servers <bcp14>MUST</bcp14> use the negotiated version in Initials with CRYPTO frames.</li>
          <li>Clarified when clients "learn" the negotiated version as required in the VN
draft.</li>
          <li>Comments from SECDIR review.</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-v2-04">
        <name>since draft-ietf-quic-v2-04</name>
        <ul spacing="normal">
          <li>Clarified 0-RTT handling</li>
          <li>Editorial comments from Zahed Sarker.</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-v2-03">
        <name>since draft-ietf-quic-v2-03</name>
        <ul spacing="normal">
          <li>a v2 session ticket is an indication of v2 support</li>
          <li>a v1-only extension is theoretically possible</li>
          <li>editorial fixes</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-v2-02">
        <name>since draft-ietf-quic-v2-02</name>
        <ul spacing="normal">
          <li>Editorial comments from Lucas Pardue</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-v2-01">
        <name>since draft-ietf-quic-v2-01</name>
        <ul spacing="normal">
          <li>Ban use of NEW_TOKEN tokens across versions</li>
          <li>version-info transport parameter required for all v2 endpoints</li>
          <li>Explicitly list known ALPN compatibility</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-v2-00">
        <name>since draft-ietf-quic-v2-00</name>
        <ul spacing="normal">
          <li>Expanded requirements for compatible version negotiation</li>
          <li>Added test vectors</li>
          <li>Greased the packet type codepoints</li>
          <li>Random version number</li>
          <li>Clarified requirement to use QUIC-VN</li>
          <li>Banned use of resumption tokens across versions</li>
        </ul>
      </section>
      <section anchor="since-draft-duke-quic-v2-02">
        <name>since draft-duke-quic-v2-02</name>
        <ul spacing="normal">
          <li>Converted to adopted draft</li>
          <li>Deleted references to QUIC improvements</li>
          <li>Clarified status of QUIC extensions</li>
        </ul>
      </section>
      <section anchor="since-draft-duke-quic-v2-01">
        <name>since draft-duke-quic-v2-01</name>
        <ul spacing="normal">
          <li>Made the final version number TBD.</li>
          <li>Added ALPN considerations</li>
        </ul>
      </section>
      <section anchor="since-draft-duke-quic-v2-00">
        <name>since draft-duke-quic-v2-00</name>
        <ul spacing="normal">
          <li>Added provisional versions for interop</li>
          <li>Change the v1 Retry Tag secret</li>
          <li>Change labels to create full key separation</li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA5186XIcyZHm/3iKWLTZDtkGVOd9cIaaQZNskSY2ySWhlvXK
tG1xJZBCVWUpMwvH0KhnmWfZJ9vPIyKvQpHoHapJAZlxeHi4f36ER56dnbG+
7tfmGf9ff37zgv9i2q5utjxiQsrW3LjHNxHTjdqKDZrpVlT9WW366uwf+1qd
3URnQcGU6M1l094/412vGbrFrNvLTd3RaP39Dh3fvLr4iYnWiGf85KIV227X
tP0Ju23a68u22e/wmOY6YTdmuzfPGOfLx5y7cU7+gh719pL/kV7T842o13hO
5PwHEbZq2kt6Llp1hedXfb/rnv3wAzWjR/WNWQ3NfqAHP8i2ue3MDzTAD9Tx
su6v9tIPeXv5g18ovVpjoV0/G9U1sWP5Zj88ZNHqqt+sTxgT+/6qaWltZ/jL
eb3tnvGfV/zl/trYB47HP4u2r7fTUwz+jP+xaS7Xhr99+8I+M27VG9t0dbXS
aPwfl/RwpZoNY9um3Ygea6XZiIPP+MefXpRBEPjfzy7efhqehYzV22re43X8
zE7z3DUJw8T+qututxbY5tcXFx9+iBljZ2dnXMiub4XqGbu4qjsOWdlvzLbn
3c6ouqpN54TrZhCuU357Vasrjra1RsNaiTXvm2WrkJk7ZXY9B128azaG9219
U6OlNj2W2a34m77ju327azpDY2EELF2Knt+Itm72HW8gfxVG7zEg5Er1Tdtx
sdXc3JlW1ejWX5lxxi1EuK9tY1612AmSTZqFi3XX8M60N1iKwH+sN5sdiYIl
jsbY1Nt6s99wdSW2l2iF7RPbe17t+307zdBUdo0rxt41PU0OWk9GtpzQIsSW
+61YW2nwM+DNrm2wUuIUdau3mhZGU/WMFg8iOqMaLK7rsUTR6u6MduV6wdYV
v0BDDNU3qlmPO6T5lQGd+44WyEaG7DfStLzB2EQDSItoYTTVbY3m9UZcmlN6
1LSamjSOD/V/miXr27q7XjlZ2dRarw1j3/E3275t9F7ZFmy5958/0+9fvvAr
sBtkmJa209z1Zmsb7Jp623c0tVrvNaHBbCOZp9vyqVFqvyMRnDGov8Jwl1e8
qqv+ist74iK2xqD/PV83GO3KCFrQk84Y9vnzv1t9efPul/OPb87fXXx6DpUo
yrL88uUpxAMd73amrUnksTueCPARHGrxz6mVOBpiZGwIQd12AN597ym7EV0P
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

-->

</rfc>
