<?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.7.30 (Ruby 2.5.9) -->
<?rfc rfcedstyle="yes"?>
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc text-list-symbols="-o*+"?>
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="pre5378Trust200902" docName="draft-ietf-tls-rfc8446bis-14" category="std" consensus="true" submissionType="IETF" xml:lang="en" number="9846" obsoletes="8446" updates="5705, 6066, 7627, 8422" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <link href="https://datatracker.ietf.org/doc/draft-ietf-tls-rfc8446bis-14" rel="prev"/>
  <front>
    <title abbrev="TLS">The Transport Layer Security (TLS) Protocol Version 1.3</title>
    <seriesInfo name="RFC" value="9846"/>
    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>Independent</organization>
      <address>
        <email>ekr@rtfm.com</email>
      </address>
    </author>
    <date year="2026" month="January"/>
    <area>SEC</area>
    <workgroup>tls</workgroup>
    <abstract>
      <?line 463?>

<!-- [rfced] Please insert any keywords (beyond those that appear in
the title) for use on https://www.rfc-editor.org/search. -->

<!-- [rfced] The document header indicates it obsoletes and updates the following RFCs:

Obsoletes: 8446 
Updates: 5705, 6066, 7627, 8422 

In the body of the document, we see the text below.  Note that the mentions of updates seem consistent with the document header.  However, the text specifies that it obsoletes more than just RFC 8446, likely because RFC 8446 obsoleted those documents.  Please review and let us know how/if the header can be consistent with the body of the document.  

a) Abstract: Note that we removed 8422 from the obsoletes list because this doc seemingly updates it.

   This document updates RFCs 5705, 6066, 7627, and 8422 and obsoletes
   RFCs 5077, 5246, 6961, 8422, and 8446.


b) Introduction: 

   This document supersedes and obsoletes previous versions of TLS,
   including version 1.2 [RFC5246].  It also obsoletes the TLS ticket
   mechanism defined in [RFC5077] and replaces it with the mechanism
   defined in Section 2.2.  Because TLS 1.3 changes the way keys are
   derived, it updates [RFC5705] as described in Section 7.5.  It also
   changes how Online Certificate Status Protocol (OCSP) messages are
   carried and therefore updates [RFC6066] and obsoletes [RFC6961] as
   described in Section 4.4.2.1.

-->

<!--[rfced] The following RFCs have been obsoleted as follows. May they be
replaced with the obsoleting RFC?

   RFC 6347 has been obsoleted by RFC 9147
   RFC 6962 has been obsoleted by RFC 9162
   RFC 7507 has been obsoleted by RFC 8996
-->

<!-- [rfced] This reference appears to match the information for the following
Internet-Draft: https://datatracker.ietf.org/doc/draft-hickman-netscape-ssl/

May we update this reference to point to this I-D?

Current:
   [SSL2]     Hickman, K., "The SSL Protocol", 9 February 1995.

Perhaps:
   [SSL2]     Elgamal, T. and K. E. Hickman, "The SSL Protocol", Work in
              Progress, Internet-Draft, draft-hickman-netscape-ssl-00,
              19 April 1995, <https://datatracker.ietf.org/doc/html/
              draft-hickman-netscape-ssl-00>.
-->

<!-- [rfced] We updated [I-D.ietf-tls-esni] to [PRE-RFC9849] for now.  We will make the final updates in RFCXML. 
-->

<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, 6066, 7627, and 8422 and obsoletes
RFCs 5077, 5246, 6961, 8422, and 8446. This document also specifies
new requirements for TLS 1.2 implementations.</t>
    </abstract>
  </front>
  <middle>
    <?line 530?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>The primary goal of TLS is to provide a secure channel between two
communicating peers; the only requirement from the underlying
transport is a reliable, in-order data stream. Specifically, the
secure channel should provide the following properties:</t>
      <ul spacing="normal">
        <li>
          <t>Authentication: The server side of the channel is always
authenticated; the client side is optionally
authenticated. Authentication can happen via asymmetric cryptography
(e.g., RSA <xref target="RSA"/>, the Elliptic Curve Digital Signature
Algorithm (ECDSA) <xref target="DSS"/>, or the Edwards-Curve Digital Signature
Algorithm (EdDSA) <xref target="RFC8032"/>) or a symmetric pre-shared key
(PSK).</t>
        </li>
        <li>
          <t>Confidentiality: Data sent over the channel after establishment
is only visible to the
endpoints. TLS does not hide the length of the data it transmits,
though endpoints are able to pad TLS records to obscure lengths
and improve protection against traffic analysis techniques.</t>
        </li>
        <li>
          <t>Integrity: Data sent over the channel after establishment cannot be
modified by attackers without detection.</t>
        </li>
      </ul>
      <t>These properties should be true even in the face of an attacker who has complete
control of the network, as described in <xref target="RFC3552"/>.
See <xref target="security-analysis"/> for a more complete statement of the relevant security
properties.</t>
      <t>TLS consists of two primary components:</t>
      <ul spacing="normal">
        <li>
          <t>A handshake protocol (<xref target="handshake-protocol"/>) that authenticates the communicating parties,
negotiates cryptographic algorithms and parameters, and establishes
shared keying material. The handshake protocol is designed to
resist tampering; an active attacker should not be able to force
the peers to negotiate different parameters than they would
if the connection were not under attack.</t>
        </li>
        <li>
          <t>A record protocol (<xref target="record-protocol"/>) that uses the parameters established by the
handshake protocol to protect traffic between the communicating
peers. The record protocol divides traffic up into a series of
records, each of which is independently protected using the
traffic keys.</t>
        </li>
      </ul>
      <t>TLS is application protocol independent; higher-level protocols can
layer on top of TLS transparently. The TLS standard, however, does not
specify how protocols add security with TLS; how to
initiate TLS handshaking and how to interpret the authentication
certificates exchanged are left to the judgment of the designers and
implementors of protocols that run on top of TLS. Application
protocols using TLS <bcp14>MUST</bcp14> specify how TLS works with their
application protocol, including how and when handshaking
occurs, and how to do identity verification. <xref target="RFC9525"/>
provides useful guidance on integrating TLS with application
protocols.</t>
      <t>This document defines TLS version 1.3. While TLS 1.3 is not directly
compatible with previous versions, all versions of TLS incorporate a
versioning mechanism which allows clients and servers to interoperably
negotiate a common version if one is supported by both peers.</t>
      <t>This document supersedes and obsoletes previous versions of TLS,
including version 1.2 <xref target="RFC5246"/>.  It also obsoletes the TLS ticket
mechanism defined in <xref target="RFC5077"/> and replaces it with the mechanism
defined in <xref target="resumption-and-psk"/>. Because TLS 1.3 changes the way keys are derived, it
updates <xref target="RFC5705"/> as described in <xref target="exporters"/>.  It also changes
how Online Certificate Status Protocol (OCSP) messages are carried and therefore updates <xref target="RFC6066"/>
and obsoletes <xref target="RFC6961"/> as described in <xref target="ocsp-and-sct"/>.</t>
      <section anchor="conventions-and-terminology">
        <name>Conventions and Terminology</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>
        <?line -18?>

<t>The following terms are used:</t>
        <dl>
          <dt>client:</dt>
          <dd>
            <t>The endpoint initiating the TLS connection.</t>
          </dd>
          <dt>connection:</dt>
          <dd>
            <t>A transport-layer connection between two endpoints.</t>
          </dd>
          <dt>endpoint:</dt>
          <dd>
            <t>Either the client or server of the connection.</t>
          </dd>
          <dt>handshake:</dt>
          <dd>
            <t>An initial negotiation between client and server that establishes the parameters of their subsequent interactions within TLS.</t>
          </dd>
          <dt>peer:</dt>
          <dd>
            <t>An endpoint. When discussing a particular endpoint, "peer" refers to the endpoint that is not the primary subject of discussion.</t>
          </dd>
          <dt>receiver:</dt>
          <dd>
            <t>An endpoint that is receiving records.</t>
          </dd>
          <dt>sender:</dt>
          <dd>
            <t>An endpoint that is transmitting records.</t>
          </dd>
          <dt>server:</dt>
          <dd>
            <t>The endpoint that did not initiate the TLS connection.</t>
          </dd>
        </dl>
      </section>
      <section anchor="relationship-to-rfc-8446">
        <name>Relationship to RFC 8446</name>
        <t>TLS 1.3 was originally specified in <xref target="RFC8446"/>. This document is a
minor update to TLS 1.3 that retains the same version number and is
backward compatible. It tightens some requirements and contains
updated text in areas which were found to be unclear as well as other
editorial improvements.  In addition, it removes the use of the term
"master" as applied to secrets in favor of the term "main" or shorter
names where no term was necessary. This document makes the following
specific technical changes:</t>
        <!--[rfced] As "requiring" and "should" seem to contradict in this 
statement, may we remove "should" from the text below?

Original:
   *  Clarify behavior around "user_canceled", requiring that
      "close_notify" be sent and that "user_canceled" should be ignored.

Perhaps:
   *  Clarify behavior around "user_canceled", requiring that
      "close_notify" be sent and that "user_canceled" be ignored.
-->

<ul spacing="normal">
          <li>
            <t>Forbid negotiating TLS 1.0 and 1.1 as they are now deprecated by <xref target="RFC8996"/>.</t>
          </li>
          <li>
            <t>Removes ambiguity around which hash is used with PreSharedKeys and
HelloRetryRequest.</t>
          </li>
          <li>
            <t>Require that clients ignore NewSessionTicket if they do not
support resumption.</t>
          </li>
          <li>
            <t>Upgrade the requirement to initiate key update before exceeding
key usage limits to <bcp14>MUST</bcp14>.</t>
          </li>
          <li>
            <t>Limit the number of permitted KeyUpdate messages.</t>
          </li>
          <li>
            <t>Restore text defining the level of "close_notify" to "warning".</t>
          </li>
          <li>
            <t>Clarify behavior around "user_canceled", requiring that
"close_notify" be sent and that "user_canceled" should
be ignored.</t>
          </li>
          <li>
            <t>Add a "general_error" generic alert.</t>
          </li>
          <li>
            <t>Corrected the lower bound on CertificateRequest.extensions
to be 0 bytes. This was an error in the syntax as it
is possible to send no extensions, which results in
length 0.</t>
          </li>
        </ul>
        <t>In addition, there have been some improvements to the
security considerations, especially around privacy.</t>
      </section>
      <section anchor="major-differences-from-tls-12">
        <name>Major Differences from TLS 1.2</name>
        <t>The following is a list of the major functional differences between
TLS 1.2 and TLS 1.3. It is not intended to be exhaustive, and there
are many minor differences.</t>
        <ul spacing="normal">
          <li>
            <t>The list of supported symmetric encryption algorithms has been pruned of all algorithms that
are considered legacy. Those that remain are all Authenticated Encryption
with Associated Data (AEAD) algorithms. The cipher suite concept has been
changed to separate the authentication and key exchange mechanisms from
the record protection algorithm (including secret key length) and a hash
to be used with both the key derivation function and handshake message
authentication code (MAC).</t>
          </li>
          <li>
            <t>A zero round-trip time (0-RTT) mode was added, saving a round trip at connection setup for
some application data, at the cost of certain security properties.</t>
          </li>
          <li>
            <t>Static RSA and Diffie-Hellman cipher suites have been removed;
all public-key based key exchange mechanisms now provide forward secrecy.</t>
          </li>
          <li>
            <t>All handshake messages after the ServerHello are now encrypted. The
newly introduced EncryptedExtensions message allows various extensions
previously sent in the clear in the ServerHello to also enjoy
confidentiality protection.</t>
          </li>
          <li>
            <t>The key derivation function has been redesigned. The new design allows
easier analysis by cryptographers due to their improved key separation
properties. The HMAC-based Extract-and-Expand Key Derivation Function (HKDF)
is used as an underlying primitive.</t>
          </li>
          <li>
            <t>The handshake state machine has been significantly restructured to
be more consistent and to remove superfluous messages such as
ChangeCipherSpec (except when needed for middlebox compatibility).</t>
          </li>
          <li>
            <t>Elliptic curve algorithms are now in the base specification, and new signature
algorithms, such as EdDSA, are included. TLS 1.3 removed point format
negotiation in favor of a single point format for each curve.</t>
          </li>
          <li>
            <t>Other cryptographic improvements were made, including changing the RSA padding to use
the RSA Probabilistic Signature Scheme (RSASSA-PSS) and the removal
of compression, the Digital Signature Algorithm (DSA), and
custom Ephemeral Diffie-Hellman (DHE) groups.</t>
          </li>
          <li>
            <t>The TLS 1.2 version negotiation mechanism has been deprecated in favor
of a version list in an extension. This increases compatibility with
existing servers that incorrectly implemented version negotiation.</t>
          </li>
          <li>
            <t>Session resumption with and without server-side state as well as the
PSK-based cipher suites of earlier TLS versions have been replaced by a
single new PSK exchange.</t>
          </li>
          <li>
            <t>References have been updated to point to the updated versions of RFCs, as
appropriate (e.g., RFC 5280 rather than RFC 3280).</t>
          </li>
        </ul>
      </section>
      <section anchor="updates-affecting-tls-12">
        <name>Updates Affecting TLS 1.2</name>
        <t>This document defines several changes that optionally affect
implementations of TLS 1.2, including those which do not also
support TLS 1.3:</t>
        <ul spacing="normal">
          <li>
            <t>A version downgrade protection mechanism is described in <xref target="server-hello"/>.</t>
          </li>
          <li>
            <t>RSASSA-PSS signature schemes are defined in <xref target="signature-algorithms"/>.</t>
          </li>
          <li>
            <t>The "supported_versions" ClientHello extension can be used to negotiate
the version of TLS to use, in preference to the legacy_version field of
the ClientHello.</t>
          </li>
          <li>
            <t>The "signature_algorithms_cert" extension allows a client to indicate
which signature algorithms it can validate in X.509 certificates.</t>
          </li>
          <li>
            <t>The term "master" as applied to secrets has been removed, and the
"extended_master_secret" extension <xref target="RFC7627"/> has been renamed to
"extended_main_secret".</t>
          </li>
        </ul>
        <t>Additionally, this document clarifies some compliance requirements for earlier
versions of TLS; see <xref target="protocol-invariants"/>.</t>
      </section>
    </section>
    <section anchor="protocol-overview">
      <name>Protocol Overview</name>
      <t>The cryptographic parameters used by the secure channel are produced by the
TLS handshake protocol. This sub-protocol of TLS is used by the client
and server when first communicating with each other.
The handshake protocol allows peers to negotiate a protocol version,
select cryptographic algorithms, authenticate each other (with
client authentication being optional), and establish shared secret keying material.
Once the handshake is complete, the peers use the established keys
to protect the application-layer traffic.</t>
      <t>A failure of the handshake or other protocol error triggers the
termination of the connection, optionally preceded by an alert message
(<xref target="alert-protocol"/>).</t>
      <t>TLS supports three basic key exchange modes:</t>
      <ul spacing="normal">
        <li>
          <t>(EC)DHE (Diffie-Hellman over either finite fields or elliptic curves)</t>
        </li>
        <li>
          <t>PSK-only</t>
        </li>
        <li>
          <t>PSK with (EC)DHE</t>
        </li>
      </ul>
      <t><xref target="tls-full"/> below shows the basic full TLS handshake:</t>
      <!--[rfced] FYI - We have updated Figure 1 to fit the 72-character limit.
Please review and let us know if any further updates are needed.
-->

<figure anchor="tls-full">
        <name>Message Flow for Full TLS Handshake</name>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="544" width="584" viewBox="0 0 584 544" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 48,64 L 48,128" fill="none" stroke="black"/>
              <path d="M 48,288 L 48,320" fill="none" stroke="black"/>
              <path d="M 64,80 L 64,128" fill="none" stroke="black"/>
              <path d="M 512,144 L 512,176" fill="none" stroke="black"/>
              <path d="M 512,224 L 512,256" fill="none" stroke="black"/>
              <path d="M 256,128 L 320,128" fill="none" stroke="black"/>
              <path d="M 256,272 L 320,272" fill="none" stroke="black"/>
              <path d="M 256,320 L 320,320" fill="none" stroke="black"/>
              <path d="M 256,336 L 320,336" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="520,256 508,250.4 508,261.6" fill="black" transform="rotate(90,512,256)"/>
              <polygon class="arrowhead" points="520,224 508,218.4 508,229.6" fill="black" transform="rotate(270,512,224)"/>
              <polygon class="arrowhead" points="520,176 508,170.4 508,181.6" fill="black" transform="rotate(90,512,176)"/>
              <polygon class="arrowhead" points="520,144 508,138.4 508,149.6" fill="black" transform="rotate(270,512,144)"/>
              <polygon class="arrowhead" points="328,336 316,330.4 316,341.6" fill="black" transform="rotate(0,320,336)"/>
              <polygon class="arrowhead" points="328,320 316,314.4 316,325.6" fill="black" transform="rotate(0,320,320)"/>
              <polygon class="arrowhead" points="328,128 316,122.4 316,133.6" fill="black" transform="rotate(0,320,128)"/>
              <polygon class="arrowhead" points="264,336 252,330.4 252,341.6" fill="black" transform="rotate(180,256,336)"/>
              <polygon class="arrowhead" points="264,272 252,266.4 252,277.6" fill="black" transform="rotate(180,256,272)"/>
              <polygon class="arrowhead" points="56,320 44,314.4 44,325.6" fill="black" transform="rotate(90,48,320)"/>
              <polygon class="arrowhead" points="56,288 44,282.4 44,293.6" fill="black" transform="rotate(270,48,288)"/>
              <polygon class="arrowhead" points="56,128 44,122.4 44,133.6" fill="black" transform="rotate(90,48,128)"/>
              <polygon class="arrowhead" points="56,64 44,58.4 44,69.6" fill="black" transform="rotate(270,48,64)"/>
              <circle cx="120" cy="416" r="6" class="closeddot" fill="black"/>
              <g class="text">
                <text x="84" y="36">Client</text>
                <text x="460" y="36">Server</text>
                <text x="16" y="68">Key</text>
                <text x="104" y="68">ClientHello</text>
                <text x="20" y="84">Exch</text>
                <text x="116" y="84">key_share*</text>
                <text x="160" y="100">signature_algorithms*</text>
                <text x="168" y="116">psk_key_exchange_modes*</text>
                <text x="136" y="132">pre_shared_key*</text>
                <text x="448" y="148">ServerHello</text>
                <text x="536" y="148">Key</text>
                <text x="400" y="164">+</text>
                <text x="452" y="164">key_share*</text>
                <text x="540" y="164">Exch</text>
                <text x="360" y="180">+</text>
                <text x="432" y="180">pre_shared_key*</text>
                <text x="408" y="196">{EncryptedExtensions}</text>
                <text x="512" y="196">^</text>
                <text x="556" y="196">Server</text>
                <text x="408" y="212">{CertificateRequest*}</text>
                <text x="512" y="212">v</text>
                <text x="556" y="212">Params</text>
                <text x="436" y="228">{Certificate*}</text>
                <text x="412" y="244">{CertificateVerify*}</text>
                <text x="540" y="244">Auth</text>
                <text x="452" y="260">{Finished}</text>
                <text x="388" y="276">[Application</text>
                <text x="468" y="276">Data*]</text>
                <text x="116" y="292">{Certificate*}</text>
                <text x="20" y="308">Auth</text>
                <text x="140" y="308">{CertificateVerify*}</text>
                <text x="100" y="324">{Finished}</text>
                <text x="108" y="340">[Application</text>
                <text x="184" y="340">Data]</text>
                <text x="396" y="340">[Application</text>
                <text x="472" y="340">Data]</text>
                <text x="120" y="372">+</text>
                <text x="176" y="372">Indicates</text>
                <text x="260" y="372">noteworthy</text>
                <text x="348" y="372">extensions</text>
                <text x="412" y="372">sent</text>
                <text x="444" y="372">in</text>
                <text x="472" y="372">the</text>
                <text x="180" y="388">previously</text>
                <text x="248" y="388">noted</text>
                <text x="308" y="388">message.</text>
                <text x="176" y="420">Indicates</text>
                <text x="252" y="420">optional</text>
                <text x="300" y="420">or</text>
                <text x="392" y="420">situation-dependent</text>
                <text x="216" y="436">messages/extensions</text>
                <text x="316" y="436">that</text>
                <text x="352" y="436">are</text>
                <text x="384" y="436">not</text>
                <text x="428" y="436">always</text>
                <text x="480" y="436">sent.</text>
                <text x="124" y="468">{}</text>
                <text x="176" y="468">Indicates</text>
                <text x="252" y="468">messages</text>
                <text x="328" y="468">protected</text>
                <text x="392" y="468">using</text>
                <text x="436" y="468">keys</text>
                <text x="168" y="484">derived</text>
                <text x="220" y="484">from</text>
                <text x="248" y="484">a</text>
                <text x="396" y="484">[sender]_handshake_traffic_secret.</text>
                <text x="124" y="516">[]</text>
                <text x="176" y="516">Indicates</text>
                <text x="252" y="516">messages</text>
                <text x="328" y="516">protected</text>
                <text x="392" y="516">using</text>
                <text x="436" y="516">keys</text>
                <text x="168" y="532">derived</text>
                <text x="220" y="532">from</text>
                <text x="396" y="532">[sender]_application_traffic_secret_N.</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
       Client                                         Server

Key  ^ ClientHello
Exch | + key_share*
     | + signature_algorithms*
     | + psk_key_exchange_modes*
     v + pre_shared_key*       -------->
                                                  ServerHello  ^ Key
                                                 + key_share*  | Exch
                                            + pre_shared_key*  v
                                        {EncryptedExtensions}  ^  Server
                                        {CertificateRequest*}  v  Params
                                               {Certificate*}  ^
                                         {CertificateVerify*}  | Auth
                                                   {Finished}  v
                               <--------  [Application Data*]
     ^ {Certificate*}
Auth | {CertificateVerify*}
     v {Finished}              -------->
       [Application Data]      <------->   [Application Data]

              +  Indicates noteworthy extensions sent in the
                 previously noted message.

              *  Indicates optional or situation-dependent
                 messages/extensions that are not always sent.

              {} Indicates messages protected using keys
                 derived from a [sender]_handshake_traffic_secret.

              [] Indicates messages protected using keys
                 derived from [sender]_application_traffic_secret_N.
]]></artwork>
        </artset>
      </figure>
      <!--[rfced] The SVG in Figures 1 and 4 are outputting a solid circle while the figure displays *.  Please review.  One possible fix would be to move the legend outside of the figure.  Please review and let us know how this may be updated.

Original:
   *  Indicates optional or situation-dependent
      messages/extensions that are not always sent.
-->

<t>The handshake can be thought of as having three phases (indicated
in the diagram above):</t>
      <ul spacing="normal">
        <li>
          <t>Key Exchange: Establish shared keying material and select the
 cryptographic parameters. Everything after this phase is
 encrypted.</t>
        </li>
        <li>
          <t>Server Parameters: Establish other handshake parameters
 (whether the client is authenticated, application-layer protocol support, etc.).</t>
        </li>
        <li>
          <t>Authentication: Authenticate the server (and, optionally, the client)
 and provide key confirmation and handshake integrity.</t>
        </li>
      </ul>
      <t>In the Key Exchange phase, the client sends the ClientHello
(<xref target="client-hello"/>) message, which contains a random nonce
(ClientHello.random); its offered protocol versions; a list of
symmetric cipher/hash pairs; either a list of Diffie-Hellman key shares (in the
"key_share" (<xref target="key-share"/>) extension), a list of pre-shared key labels (in the
"pre_shared_key" (<xref target="pre-shared-key-extension"/>) extension), or both; and
potentially additional extensions.  Additional fields and/or messages
may also be present for middlebox compatibility.</t>
      <t>The server processes the ClientHello and determines the appropriate
cryptographic parameters for the connection. It then responds with its
own ServerHello (<xref target="server-hello"/>), which indicates the negotiated connection
parameters. The combination of the ClientHello
and the ServerHello determines the shared keys. If (EC)DHE
key establishment is in use, then the ServerHello
contains a "key_share" extension with the server's ephemeral
Diffie-Hellman share; the server's share <bcp14>MUST</bcp14> be in the same group as one of the
client's shares. If PSK key establishment is
in use, then the ServerHello contains a "pre_shared_key"
extension indicating which of the client's offered PSKs was selected.
Note that implementations can use (EC)DHE and PSK together, in which
case both extensions will be supplied.</t>
      <t>The server then sends two messages to establish the Server Parameters:</t>
      <dl>
        <dt>EncryptedExtensions:</dt>
        <dd>
          <t>responses to ClientHello extensions that are not required to
determine the cryptographic parameters, other than those
that are specific to individual certificates. [<xref target="encrypted-extensions"/>]</t>
        </dd>
        <dt>CertificateRequest:</dt>
        <dd>
          <t>if certificate-based client authentication is desired, the
desired parameters for that certificate. This message is
omitted if client authentication is not desired. [<xref target="certificate-request"/>]</t>
        </dd>
      </dl>
      <t>Finally, the client and server exchange Authentication messages. TLS
uses the same set of messages every time that certificate-based
authentication is needed.  (PSK-based authentication happens as a side
effect of key exchange.)
Specifically:</t>
      <dl>
        <dt>Certificate:</dt>
        <dd>
          <t>The certificate of the endpoint and any per-certificate extensions.
This message is omitted by the server if not authenticating with a
certificate and by the client if the server did not send
CertificateRequest (thus indicating that the client should not
authenticate with a certificate). Note that if raw
public keys <xref target="RFC7250"/> or the cached information extension
<xref target="RFC7924"/> are in use, then this message will not
contain a certificate but rather some other value corresponding to
the server's long-term key. [<xref target="certificate"/>]</t>
        </dd>
        <dt>CertificateVerify:</dt>
        <dd>
          <t>A signature over the entire handshake using the private key
corresponding to the public key in the Certificate message. This
message is omitted if the endpoint is not authenticating via a
certificate. [<xref target="certificate-verify"/>]</t>
        </dd>
        <dt>Finished:</dt>
        <dd>
          <t>A MAC (Message Authentication Code) over the entire handshake.
This message provides key confirmation for the shared secrets established in
the handshake
binds the endpoint's identity to the exchanged keys, and in PSK mode
also authenticates the handshake. [<xref target="finished"/>]</t>
        </dd>
      </dl>
      <t>Upon receiving the server's messages, the client responds with its Authentication
messages, namely Certificate and CertificateVerify (if requested), and Finished.</t>
      <t>At this point, the handshake is complete, and the client and server
derive the keying material required by the record layer to exchange
application-layer data protected through authenticated encryption.
Application Data <bcp14>MUST NOT</bcp14> be sent prior to sending the Finished message,
except as specified
in <xref target="zero-rtt-data"/>.
Note that while the server may send Application Data prior to receiving
the client's Authentication messages, any data sent at that point is,
of course, being sent to an unauthenticated peer.</t>
      <section anchor="incorrect-dhe-share">
        <name>Incorrect DHE Share</name>
        <t>If the client has not provided a sufficient "key_share" extension (e.g., it
includes only DHE or ECDHE groups unacceptable to or unsupported by the
server), the server corrects the mismatch with a HelloRetryRequest and
the client needs to restart the handshake with an appropriate
"key_share" extension, as shown in Figure 2.
If no common cryptographic parameters can be negotiated,
the server <bcp14>MUST</bcp14> abort the handshake with an appropriate alert.</t>
        <figure anchor="tls-restart">
          <name>Message Flow for a Full Handshake with Mismatched Parameters</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="368" width="480" viewBox="0 0 480 368" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 200,80 L 264,80" fill="none" stroke="black"/>
                <path d="M 200,112 L 264,112" fill="none" stroke="black"/>
                <path d="M 200,144 L 264,144" fill="none" stroke="black"/>
                <path d="M 200,272 L 264,272" fill="none" stroke="black"/>
                <path d="M 200,320 L 264,320" fill="none" stroke="black"/>
                <path d="M 200,336 L 264,336" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="272,336 260,330.4 260,341.6" fill="black" transform="rotate(0,264,336)"/>
                <polygon class="arrowhead" points="272,320 260,314.4 260,325.6" fill="black" transform="rotate(0,264,320)"/>
                <polygon class="arrowhead" points="272,144 260,138.4 260,149.6" fill="black" transform="rotate(0,264,144)"/>
                <polygon class="arrowhead" points="272,80 260,74.4 260,85.6" fill="black" transform="rotate(0,264,80)"/>
                <polygon class="arrowhead" points="208,336 196,330.4 196,341.6" fill="black" transform="rotate(180,200,336)"/>
                <polygon class="arrowhead" points="208,272 196,266.4 196,277.6" fill="black" transform="rotate(180,200,272)"/>
                <polygon class="arrowhead" points="208,112 196,106.4 196,117.6" fill="black" transform="rotate(180,200,112)"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="452" y="36">Server</text>
                  <text x="48" y="68">ClientHello</text>
                  <text x="8" y="84">+</text>
                  <text x="56" y="84">key_share</text>
                  <text x="408" y="100">HelloRetryRequest</text>
                  <text x="392" y="116">+</text>
                  <text x="440" y="116">key_share</text>
                  <text x="48" y="132">ClientHello</text>
                  <text x="8" y="148">+</text>
                  <text x="56" y="148">key_share</text>
                  <text x="432" y="164">ServerHello</text>
                  <text x="392" y="180">+</text>
                  <text x="440" y="180">key_share</text>
                  <text x="392" y="196">{EncryptedExtensions}</text>
                  <text x="392" y="212">{CertificateRequest*}</text>
                  <text x="420" y="228">{Certificate*}</text>
                  <text x="396" y="244">{CertificateVerify*}</text>
                  <text x="436" y="260">{Finished}</text>
                  <text x="372" y="276">[Application</text>
                  <text x="452" y="276">Data*]</text>
                  <text x="60" y="292">{Certificate*}</text>
                  <text x="84" y="308">{CertificateVerify*}</text>
                  <text x="44" y="324">{Finished}</text>
                  <text x="52" y="340">[Application</text>
                  <text x="128" y="340">Data]</text>
                  <text x="380" y="340">[Application</text>
                  <text x="456" y="340">Data]</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
      Client                                               Server

      ClientHello
      + key_share             -------->
                                                HelloRetryRequest
                              <--------               + key_share
      ClientHello
      + key_share             -------->
                                                      ServerHello
                                                      + key_share
                                            {EncryptedExtensions}
                                            {CertificateRequest*}
                                                   {Certificate*}
                                             {CertificateVerify*}
                                                       {Finished}
                              <--------       [Application Data*]
      {Certificate*}
      {CertificateVerify*}
      {Finished}              -------->
      [Application Data]      <------->        [Application Data]
]]></artwork>
          </artset>
        </figure>
        <t>Note: The handshake transcript incorporates the initial
ClientHello/HelloRetryRequest exchange; it is not reset with the new
ClientHello.</t>
        <t>TLS also allows several optimized variants of the basic handshake, as
described in the following sections.</t>
      </section>
      <section anchor="resumption-and-psk">
        <name>Resumption and Pre-Shared Key (PSK)</name>
        <t>Although TLS PSKs can be established externally,
PSKs can also be established in a previous connection and
then used to establish a new connection ("session resumption" or "resuming" with a PSK).
Once a handshake has completed, the server can
send the client a PSK identity that corresponds to a unique key derived from
the initial handshake (see <xref target="NSTMessage"/>). The client
can then use that PSK identity in future handshakes to negotiate the use
of the associated PSK. If the server accepts the PSK, then the security context of the
new connection is cryptographically tied to the original connection and the key derived
from the initial handshake is used to bootstrap the cryptographic state
instead of a full handshake.
In TLS 1.2 and below, this functionality was provided by "session IDs" and
"session tickets" <xref target="RFC5077"/>. Both mechanisms are obsoleted in TLS 1.3.</t>
        <t>PSKs can be used with (EC)DHE key exchange to provide forward
secrecy in combination with shared keys, or can be used alone, at the
cost of losing forward secrecy for the application data.</t>
        <t><xref target="tls-resumption-psk"/> shows a pair of handshakes in which the first handshake establishes
a PSK and the second handshake uses it:</t>
        <figure anchor="tls-resumption-psk">
          <name>Message Flow for Resumption and PSK</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="560" width="536" viewBox="0 0 536 560" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 64,384 L 64,416" fill="none" stroke="black"/>
                <path d="M 272,96 L 336,96" fill="none" stroke="black"/>
                <path d="M 272,224 L 336,224" fill="none" stroke="black"/>
                <path d="M 272,272 L 336,272" fill="none" stroke="black"/>
                <path d="M 272,288 L 336,288" fill="none" stroke="black"/>
                <path d="M 272,304 L 336,304" fill="none" stroke="black"/>
                <path d="M 272,416 L 336,416" fill="none" stroke="black"/>
                <path d="M 272,512 L 336,512" fill="none" stroke="black"/>
                <path d="M 272,528 L 336,528" fill="none" stroke="black"/>
                <path d="M 272,544 L 336,544" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="344,544 332,538.4 332,549.6" fill="black" transform="rotate(0,336,544)"/>
                <polygon class="arrowhead" points="344,528 332,522.4 332,533.6" fill="black" transform="rotate(0,336,528)"/>
                <polygon class="arrowhead" points="344,416 332,410.4 332,421.6" fill="black" transform="rotate(0,336,416)"/>
                <polygon class="arrowhead" points="344,304 332,298.4 332,309.6" fill="black" transform="rotate(0,336,304)"/>
                <polygon class="arrowhead" points="344,272 332,266.4 332,277.6" fill="black" transform="rotate(0,336,272)"/>
                <polygon class="arrowhead" points="344,96 332,90.4 332,101.6" fill="black" transform="rotate(0,336,96)"/>
                <polygon class="arrowhead" points="280,544 268,538.4 268,549.6" fill="black" transform="rotate(180,272,544)"/>
                <polygon class="arrowhead" points="280,512 268,506.4 268,517.6" fill="black" transform="rotate(180,272,512)"/>
                <polygon class="arrowhead" points="280,304 268,298.4 268,309.6" fill="black" transform="rotate(180,272,304)"/>
                <polygon class="arrowhead" points="280,288 268,282.4 268,293.6" fill="black" transform="rotate(180,272,288)"/>
                <polygon class="arrowhead" points="280,224 268,218.4 268,229.6" fill="black" transform="rotate(180,272,224)"/>
                <g class="text">
                  <text x="84" y="36">Client</text>
                  <text x="508" y="36">Server</text>
                  <text x="32" y="68">Initial</text>
                  <text x="108" y="68">Handshake:</text>
                  <text x="104" y="84">ClientHello</text>
                  <text x="64" y="100">+</text>
                  <text x="112" y="100">key_share</text>
                  <text x="488" y="116">ServerHello</text>
                  <text x="448" y="132">+</text>
                  <text x="496" y="132">key_share</text>
                  <text x="448" y="148">{EncryptedExtensions}</text>
                  <text x="448" y="164">{CertificateRequest*}</text>
                  <text x="476" y="180">{Certificate*}</text>
                  <text x="452" y="196">{CertificateVerify*}</text>
                  <text x="492" y="212">{Finished}</text>
                  <text x="428" y="228">[Application</text>
                  <text x="508" y="228">Data*]</text>
                  <text x="116" y="244">{Certificate*}</text>
                  <text x="140" y="260">{CertificateVerify*}</text>
                  <text x="100" y="276">{Finished}</text>
                  <text x="460" y="292">[NewSessionTicket]</text>
                  <text x="108" y="308">[Application</text>
                  <text x="184" y="308">Data]</text>
                  <text x="436" y="308">[Application</text>
                  <text x="512" y="308">Data]</text>
                  <text x="44" y="356">Subsequent</text>
                  <text x="132" y="356">Handshake:</text>
                  <text x="104" y="372">ClientHello</text>
                  <text x="116" y="388">key_share*</text>
                  <text x="164" y="404">psk_key_exchange_modes</text>
                  <text x="132" y="420">pre_shared_key</text>
                  <text x="488" y="436">ServerHello</text>
                  <text x="408" y="452">+</text>
                  <text x="476" y="452">pre_shared_key</text>
                  <text x="492" y="468">key_share*</text>
                  <text x="448" y="484">{EncryptedExtensions}</text>
                  <text x="492" y="500">{Finished}</text>
                  <text x="428" y="516">[Application</text>
                  <text x="508" y="516">Data*]</text>
                  <text x="100" y="532">{Finished}</text>
                  <text x="108" y="548">[Application</text>
                  <text x="184" y="548">Data]</text>
                  <text x="436" y="548">[Application</text>
                  <text x="512" y="548">Data]</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
       Client                                               Server

Initial Handshake:
       ClientHello
       + key_share               -------->
                                                       ServerHello
                                                       + key_share
                                             {EncryptedExtensions}
                                             {CertificateRequest*}
                                                    {Certificate*}
                                              {CertificateVerify*}
                                                        {Finished}
                                 <--------     [Application Data*]
       {Certificate*}
       {CertificateVerify*}
       {Finished}                -------->
                                 <--------      [NewSessionTicket]
       [Application Data]        <------->      [Application Data]


Subsequent Handshake:
       ClientHello
       + key_share*
       + psk_key_exchange_modes
       + pre_shared_key          -------->
                                                       ServerHello
                                                  + pre_shared_key
                                                      + key_share*
                                             {EncryptedExtensions}
                                                        {Finished}
                                 <--------     [Application Data*]
       {Finished}                -------->
       [Application Data]        <------->      [Application Data]
]]></artwork>
          </artset>
        </figure>
        <t>As the server is authenticating via a PSK, it does not send a
Certificate or a CertificateVerify message. When a client offers resumption
via a PSK, it <bcp14>SHOULD</bcp14> also supply a "key_share" extension to the server to
allow the server to decline resumption and fall back
to a full handshake, if needed. The server responds with a "pre_shared_key"
extension to negotiate the use of PSK key establishment and can (as shown here)
respond with a "key_share" extension to do (EC)DHE key establishment, thus
providing forward secrecy.</t>
        <t>When PSKs are provisioned externally, the PSK identity and the KDF hash
algorithm to
be used with the PSK <bcp14>MUST</bcp14> also be provisioned.</t>
        <t>Note: When using an externally provisioned pre-shared secret, a critical
consideration is using sufficient entropy during the key generation, as
discussed in <xref target="RFC4086"/>. Deriving a shared secret from a password or other
low-entropy sources is not secure. A low-entropy secret, or password, is
subject to dictionary attacks based on the PSK binder.  The specified PSK
authentication is not a strong password-based authenticated key exchange even
when used with Diffie-Hellman key establishment.  Specifically, it does not
prevent an attacker that can observe the handshake from performing
a brute-force attack on the password/pre-shared key.</t>
      </section>
      <section anchor="zero-rtt-data">
        <name>0-RTT Data</name>
        <t>When clients and servers share a PSK (either obtained externally or
via a previous handshake), TLS 1.3 allows clients to send data on the
first flight ("early data"). The client uses the PSK to authenticate
the server and to encrypt the early data.</t>
        <t>As shown in <xref target="tls-0-rtt"/>, the 0-RTT data is just added to the 1-RTT
handshake in the first flight. The rest of the handshake uses the same messages
as for a 1-RTT handshake with PSK resumption.</t>
        <figure anchor="tls-0-rtt">
          <name>Message Flow for a 0-RTT Handshake</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="576" width="488" viewBox="0 0 488 576" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,80 L 8,136" fill="none" stroke="black"/>
                <path d="M 200,144 L 264,144" fill="none" stroke="black"/>
                <path d="M 200,256 L 264,256" fill="none" stroke="black"/>
                <path d="M 200,288 L 264,288" fill="none" stroke="black"/>
                <path d="M 200,304 L 264,304" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="272,304 260,298.4 260,309.6" fill="black" transform="rotate(0,264,304)"/>
                <polygon class="arrowhead" points="272,288 260,282.4 260,293.6" fill="black" transform="rotate(0,264,288)"/>
                <polygon class="arrowhead" points="272,144 260,138.4 260,149.6" fill="black" transform="rotate(0,264,144)"/>
                <polygon class="arrowhead" points="208,304 196,298.4 196,309.6" fill="black" transform="rotate(180,200,304)"/>
                <polygon class="arrowhead" points="208,256 196,250.4 196,261.6" fill="black" transform="rotate(180,200,256)"/>
                <circle cx="56" cy="384" r="6" class="closeddot" fill="black"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="452" y="36">Server</text>
                  <text x="48" y="68">ClientHello</text>
                  <text x="60" y="84">early_data</text>
                  <text x="60" y="100">key_share*</text>
                  <text x="108" y="116">psk_key_exchange_modes</text>
                  <text x="76" y="132">pre_shared_key</text>
                  <text x="52" y="148">(Application</text>
                  <text x="132" y="148">Data*)</text>
                  <text x="432" y="164">ServerHello</text>
                  <text x="352" y="180">+</text>
                  <text x="420" y="180">pre_shared_key</text>
                  <text x="436" y="196">key_share*</text>
                  <text x="392" y="212">{EncryptedExtensions}</text>
                  <text x="376" y="228">+</text>
                  <text x="432" y="228">early_data*</text>
                  <text x="436" y="244">{Finished}</text>
                  <text x="372" y="260">[Application</text>
                  <text x="452" y="260">Data*]</text>
                  <text x="68" y="276">(EndOfEarlyData)</text>
                  <text x="44" y="292">{Finished}</text>
                  <text x="52" y="308">[Application</text>
                  <text x="128" y="308">Data]</text>
                  <text x="380" y="308">[Application</text>
                  <text x="456" y="308">Data]</text>
                  <text x="56" y="340">+</text>
                  <text x="112" y="340">Indicates</text>
                  <text x="196" y="340">noteworthy</text>
                  <text x="284" y="340">extensions</text>
                  <text x="348" y="340">sent</text>
                  <text x="380" y="340">in</text>
                  <text x="408" y="340">the</text>
                  <text x="116" y="356">previously</text>
                  <text x="184" y="356">noted</text>
                  <text x="244" y="356">message.</text>
                  <text x="112" y="388">Indicates</text>
                  <text x="188" y="388">optional</text>
                  <text x="236" y="388">or</text>
                  <text x="328" y="388">situation-dependent</text>
                  <text x="152" y="404">messages/extensions</text>
                  <text x="252" y="404">that</text>
                  <text x="288" y="404">are</text>
                  <text x="320" y="404">not</text>
                  <text x="364" y="404">always</text>
                  <text x="416" y="404">sent.</text>
                  <text x="60" y="436">()</text>
                  <text x="112" y="436">Indicates</text>
                  <text x="188" y="436">messages</text>
                  <text x="264" y="436">protected</text>
                  <text x="328" y="436">using</text>
                  <text x="372" y="436">keys</text>
                  <text x="104" y="452">derived</text>
                  <text x="156" y="452">from</text>
                  <text x="184" y="452">a</text>
                  <text x="308" y="452">client_early_traffic_secret.</text>
                  <text x="60" y="484">{}</text>
                  <text x="112" y="484">Indicates</text>
                  <text x="188" y="484">messages</text>
                  <text x="264" y="484">protected</text>
                  <text x="328" y="484">using</text>
                  <text x="372" y="484">keys</text>
                  <text x="104" y="500">derived</text>
                  <text x="156" y="500">from</text>
                  <text x="184" y="500">a</text>
                  <text x="332" y="500">[sender]_handshake_traffic_secret.</text>
                  <text x="60" y="532">[]</text>
                  <text x="112" y="532">Indicates</text>
                  <text x="188" y="532">messages</text>
                  <text x="264" y="532">protected</text>
                  <text x="328" y="532">using</text>
                  <text x="372" y="532">keys</text>
                  <text x="104" y="548">derived</text>
                  <text x="156" y="548">from</text>
                  <text x="332" y="548">[sender]_application_traffic_secret_N.</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
      Client                                               Server

      ClientHello
      + early_data
      + key_share*
      + psk_key_exchange_modes
      + pre_shared_key
      (Application Data*)     -------->
                                                      ServerHello
                                                 + pre_shared_key
                                                     + key_share*
                                            {EncryptedExtensions}
                                                    + early_data*
                                                       {Finished}
                              <--------       [Application Data*]
      (EndOfEarlyData)
      {Finished}              -------->
      [Application Data]      <------->        [Application Data]

            +  Indicates noteworthy extensions sent in the
               previously noted message.

            *  Indicates optional or situation-dependent
               messages/extensions that are not always sent.

            () Indicates messages protected using keys
               derived from a client_early_traffic_secret.

            {} Indicates messages protected using keys
               derived from a [sender]_handshake_traffic_secret.

            [] Indicates messages protected using keys
               derived from [sender]_application_traffic_secret_N.
]]></artwork>
          </artset>
        </figure>
        <t>IMPORTANT NOTE: The security properties for 0-RTT data are weaker than
those for other kinds of TLS data.  Specifically:</t>
        <ol spacing="normal" type="1"><li>
            <t>The protocol does not provide any forward secrecy guarantees for this data.
The server's behavior determines what forward secrecy guarantees, if any, apply
(see <xref target="single-use-tickets"/>). This behavior is not communicated to the client
as part of the protocol. Therefore, absent out-of-band knowledge of the
server's behavior, the client should assume that this data is not forward
secret.</t>
          </li>
          <li>
            <t>There are no guarantees of non-replay between connections.
Protection against replay for ordinary TLS 1.3 1-RTT data is
provided via the server's Random value, but 0-RTT data does not depend
on the ServerHello and therefore has weaker guarantees.  This is especially
relevant if the data is authenticated either with TLS client
authentication or inside the application protocol. The same warnings
apply to any use of the early_exporter_secret.</t>
          </li>
        </ol>
        <t>0-RTT data cannot be duplicated within a connection (i.e., the server will
not process the same data twice for the same connection), and an
attacker will not be able to make 0-RTT data appear to be 1-RTT data
(because it is protected with different keys). <xref target="replay-0rtt"/>
contains a description of potential attacks, and <xref target="anti-replay"/>
describes mechanisms which the server can use to limit the impact of
replay.</t>
      </section>
    </section>
    <section anchor="presentation-language">
      <name>Presentation Language</name>
      <t>This document deals with the formatting of data in an external representation.
The following very basic and somewhat casually defined presentation syntax will
be used.</t>
      <t>In the definitions below, optional components of this syntax are denoted by
enclosing them in "[[ ]]" (double brackets).</t>
      <section anchor="basic-block-size">
        <name>Basic Block Size</name>
        <t>The representation of all data items is explicitly specified. The basic data
block size is one byte (i.e., 8 bits). Multiple-byte data items are
concatenations of bytes, from left to right, from top to bottom. From the byte
stream, a multi-byte item (a numeric in the following example) is formed (using C
notation) by:</t>
        <artwork><![CDATA[
   value = (byte[0] << 8*(n-1)) | (byte[1] << 8*(n-2)) |
           ... | byte[n-1];
]]></artwork>
        <t>This byte ordering for multi-byte values is the commonplace network byte order
or big-endian format.</t>
      </section>
      <section anchor="miscellaneous">
        <name>Miscellaneous</name>
        <t>Comments begin with "/*" and end with "*/".</t>
        <t>Single-byte entities containing uninterpreted data are of type
opaque.</t>
        <t>A type alias T' for an existing type T is defined by:</t>
        <artwork><![CDATA[
   T T';
]]></artwork>
      </section>
      <section anchor="numbers">
        <name>Numbers</name>
        <t>The basic numeric data type is an unsigned byte (uint8). All larger numeric
data types are constructed from a fixed-length series of bytes concatenated as
described in <xref target="basic-block-size"/> and are also unsigned. The following numeric
types are predefined.</t>
        <artwork><![CDATA[
   uint8 uint16[2];
   uint8 uint24[3];
   uint8 uint32[4];
   uint8 uint64[8];
]]></artwork>
        <t>All values, here and elsewhere in the specification, are transmitted in network byte
(big-endian) order; the uint32 represented by the hex bytes 01 02 03 04 is
equivalent to the decimal value 16909060.</t>
      </section>
      <section anchor="vectors">
        <name>Vectors</name>
        <t>A vector (single-dimensioned array) is a stream of homogeneous data elements.
For presentation purposes, this specification refers to vectors as lists.
The size of the vector may be specified at documentation time or left
unspecified until runtime. In either case, the length declares the number of
bytes, not the number of elements, in the vector. The syntax for specifying a
new type, T', that is a fixed-length vector of type T is</t>
        <artwork><![CDATA[
   T T'[n];
]]></artwork>
        <t>Here, T' occupies n bytes in the data stream, where n is a multiple of the size
of T.  The length of the vector is not included in the encoded stream.</t>
        <t>In the following example, Datum is defined to be three consecutive bytes that
the protocol does not interpret, while Data is three consecutive Datum,
consuming a total of nine bytes.</t>
        <artwork><![CDATA[
   opaque Datum[3];      /* three uninterpreted bytes */
   Datum Data[9];        /* three consecutive 3-byte vectors */
]]></artwork>
        <t>Variable-length vectors are defined by specifying a subrange of legal lengths,
inclusively, using the notation &lt;floor..ceiling&gt;. When these are encoded, the
actual length precedes the vector's contents in the byte stream. The length
will be in the form of a number consuming as many bytes as required to hold the
vector's specified maximum (ceiling) length. A variable-length vector with an
actual length field of zero is referred to as an empty vector.</t>
        <artwork><![CDATA[
   T T'<floor..ceiling>;
]]></artwork>
        <t>In the following example, "mandatory" is a vector that must contain between 300
and 400 bytes of type opaque. It can never be empty. The actual length field
consumes two bytes, a uint16, which is sufficient to represent the value 400
(see <xref target="numbers"/>). Similarly, "longer" can represent up to 800 bytes of
data, or 400 uint16 elements, and it may be empty. Its encoding will include a
two-byte actual length field prepended to the vector. The length of an encoded
vector must be an exact multiple of the length of a single element (e.g.,
a 17-byte vector of uint16 would be illegal).</t>
        <artwork><![CDATA[
   opaque mandatory<300..400>;
         /* length field is two bytes, cannot be empty */
   uint16 longer<0..800>;
         /* zero to 400 16-bit unsigned integers */
]]></artwork>
      </section>
      <section anchor="enumerateds">
        <name>Enumerateds</name>
        <t>An additional sparse data type, called "enum" or
"enumerated", is available. Each definition is a different type. Only enumerateds of
the same type may be assigned or compared.  Every element of an
enumerated must be assigned a value, as demonstrated in the following
example. Since the elements of the enumerated are not ordered, they
can be assigned any unique value, in any order.</t>
        <artwork><![CDATA[
   enum { e1(v1), e2(v2), ... , en(vn) [[, (n)]] } Te;
]]></artwork>
        <t>Future extensions or additions to the protocol may define new values.
Implementations need to be able to parse and ignore unknown values unless the
definition of the field states otherwise.</t>
        <t>An enumerated occupies as much space in the byte stream as would its maximal
defined ordinal value. The following definition would cause one byte to be used
to carry fields of type Color.</t>
        <artwork><![CDATA[
   enum { red(3), blue(5), white(7) } Color;
]]></artwork>
        <t>One may optionally specify a value without its associated tag to force the
width definition without defining a superfluous element.</t>
        <t>In the following example, Taste will consume two bytes in the data stream but
can only assume the values 1, 2, or 4 in the current version of the protocol.</t>
        <artwork><![CDATA[
   enum { sweet(1), sour(2), bitter(4), (32000) } Taste;
]]></artwork>
        <t>The names of the elements of an enumeration are scoped within the defined type.
In the first example, a fully qualified reference to the second element of the
enumeration would be Color.blue. Such qualification is not required if the
target of the assignment is well specified.</t>
        <artwork><![CDATA[
   Color color = Color.blue;     /* overspecified, legal */
   Color color = blue;           /* correct, type implicit */
]]></artwork>
        <t>The names assigned to enumerateds do not need to be unique.  The numerical value
can describe a range over which the same name applies.  The value includes the
minimum and maximum inclusive values in that range, separated by two period
characters. This is principally useful for reserving regions of the space.</t>
        <artwork><![CDATA[
   enum { sad(0), meh(1..254), happy(255) } Mood;
]]></artwork>
      </section>
      <section anchor="constructed-types">
        <name>Constructed Types</name>
        <t>Structure types may be constructed from primitive types for convenience. Each
specification declares a new, unique type. The syntax used for definitions is much
like that of C.</t>
        <artwork><![CDATA[
   struct {
       T1 f1;
       T2 f2;
       ...
       Tn fn;
   } T;
]]></artwork>
        <t>Fixed- and variable-length list (vector) fields are allowed using the standard list
syntax. Structures V1 and V2 in the variants example (<xref target="variants"/>) demonstrate this.</t>
        <t>The fields within a structure may be qualified using the type's name, with a
syntax much like that available for enumerateds. For example, T.f2 refers to
the second field of the previous declaration.</t>
      </section>
      <section anchor="constants">
        <name>Constants</name>
        <t>Fields and variables may be assigned a fixed value using "=", as in:</t>
        <artwork><![CDATA[
   struct {
       T1 f1 = 8;  /* T.f1 must always be 8 */
       T2 f2;
   } T;
]]></artwork>
      </section>
      <section anchor="variants">
        <name>Variants</name>
        <t>Defined structures may have variants based on some knowledge that is
available within the environment. The selector must be an enumerated
type that defines the possible variants the structure defines. Each
arm of the select (below) specifies the type of that variant's field and an
optional field label. The mechanism by which the variant is selected
at runtime is not prescribed by the presentation language.</t>
        <artwork><![CDATA[
   struct {
       T1 f1;
       T2 f2;
       ....
       Tn fn;
       select (E) {
           case e1: Te1 [[fe1]];
           case e2: Te2 [[fe2]];
           ....
           case en: Ten [[fen]];
       };
   } Tv;
]]></artwork>
        <t>For example:</t>
        <artwork><![CDATA[
   enum { apple(0), orange(1) } VariantTag;

   struct {
       uint16 number;
       opaque string<0..10>; /* variable length */
   } V1;

   struct {
       uint32 number;
       opaque string[10];    /* fixed length */
   } V2;

   struct {
       VariantTag type;
       select (VariantRecord.type) {
           case apple:  V1;
           case orange: V2;
       };
   } VariantRecord;
]]></artwork>
      </section>
    </section>
    <section anchor="handshake-protocol">
      <name>Handshake Protocol</name>
      <t>The handshake protocol is used to negotiate the security parameters
of a connection. Handshake messages are supplied to the TLS record layer, where
they are encapsulated within one or more TLSPlaintext or TLSCiphertext structures which are
processed and transmitted as specified by the current active connection state.</t>
      <artwork><![CDATA[
   enum {
       client_hello(1),
       server_hello(2),
       new_session_ticket(4),
       end_of_early_data(5),
       encrypted_extensions(8),
       certificate(11),
       certificate_request(13),
       certificate_verify(15),
       finished(20),
       key_update(24),
       message_hash(254),
       (255)
   } HandshakeType;

   struct {
       HandshakeType msg_type;    /* handshake type */
       uint24 length;             /* remaining bytes in message */
       select (Handshake.msg_type) {
           case client_hello:          ClientHello;
           case server_hello:          ServerHello;
           case end_of_early_data:     EndOfEarlyData;
           case encrypted_extensions:  EncryptedExtensions;
           case certificate_request:   CertificateRequest;
           case certificate:           Certificate;
           case certificate_verify:    CertificateVerify;
           case finished:              Finished;
           case new_session_ticket:    NewSessionTicket;
           case key_update:            KeyUpdate;
       };
   } Handshake;
]]></artwork>
      <t>Protocol messages <bcp14>MUST</bcp14> be sent in the order defined in
<xref target="the-transcript-hash"/> and shown in the diagrams in <xref target="protocol-overview"/>.
A peer which receives a handshake message in an unexpected order
<bcp14>MUST</bcp14> abort the handshake with an "unexpected_message" alert.</t>
      <t>New handshake message types are assigned by IANA as described in
<xref target="iana-considerations"/>.</t>
      <section anchor="key-exchange-messages">
        <name>Key Exchange Messages</name>
        <t>The key exchange messages are used to determine the security capabilities
of the client and the server and to establish shared secrets, including
the traffic keys used to protect the rest of the handshake and the data.</t>
        <section anchor="cryptographic-negotiation">
          <name>Cryptographic Negotiation</name>
          <t>In TLS, the cryptographic negotiation proceeds by the client offering the
following four sets of options in its ClientHello:</t>
          <ul spacing="normal">
            <li>
              <t>A list of cipher suites which indicates the AEAD algorithm/HKDF hash
pairs which the client supports.</t>
            </li>
            <li>
              <t>A "supported_groups" (<xref target="supported-groups"/>) extension which indicates the (EC)DHE groups
which the client supports and a "key_share" (<xref target="key-share"/>) extension which contains
(EC)DHE shares for some or all of these groups.</t>
            </li>
            <li>
              <t>A "signature_algorithms" (<xref target="signature-algorithms"/>) extension which indicates the signature
algorithms which the client can accept. A "signature_algorithms_cert" extension (<xref target="signature-algorithms"/>) may also be
added to indicate certificate-specific signature algorithms.</t>
            </li>
            <li>
              <t>A "pre_shared_key" (<xref target="pre-shared-key-extension"/>) extension which
contains a list of symmetric key identities known to the client and a
"psk_key_exchange_modes" (<xref target="pre-shared-key-exchange-modes"/>)
extension which indicates the key exchange modes that may be used
with PSKs.</t>
            </li>
          </ul>
          <t>If the server does not select a PSK, then the first three of these
options are entirely orthogonal: the server independently selects a
cipher suite, an (EC)DHE group and key share for key establishment,
and a signature algorithm/certificate pair to authenticate itself to
the client. If there is no overlap between the received "supported_groups"
and the groups supported by the server, then the server <bcp14>MUST</bcp14> abort the
handshake with a "handshake_failure" or an "insufficient_security" alert.</t>
          <t>If the server selects a PSK, then it <bcp14>MUST</bcp14> also select a key
establishment mode from the list indicated by the client's
"psk_key_exchange_modes" extension (at present, PSK alone or with (EC)DHE). Note
that if the PSK can be used without (EC)DHE, then non-overlap in the
"supported_groups" parameters need not be fatal, as it is in the
non-PSK case discussed in the previous paragraph.</t>
          <t>If the server selects an (EC)DHE group and the client did not offer a
compatible "key_share" extension in the initial ClientHello, the server <bcp14>MUST</bcp14>
respond with a HelloRetryRequest (<xref target="hello-retry-request"/>) message.</t>
          <t>If the server successfully selects parameters and does not require a
HelloRetryRequest, it indicates the selected parameters in the ServerHello as
follows:</t>
          <ul spacing="normal">
            <li>
              <t>If PSK is being used, then the server will send a
"pre_shared_key" extension indicating the selected key.</t>
            </li>
            <li>
              <t>When (EC)DHE is in use, the server will also provide a "key_share"
extension. If PSK is not being used, then (EC)DHE and certificate-based
authentication are always used.</t>
            </li>
            <li>
              <t>When authenticating via a certificate, the server will send
the Certificate (<xref target="certificate"/>) and CertificateVerify
(<xref target="certificate-verify"/>) messages. In TLS 1.3
as defined by this document, either a PSK or a certificate
is always used, but not both. Future documents may define how
to use them together.</t>
            </li>
          </ul>
          <t>If the server is unable to negotiate a supported set of parameters
(i.e., there is no overlap between the client and server parameters),
it <bcp14>MUST</bcp14> abort the handshake with either
a "handshake_failure" or "insufficient_security" fatal alert
(see <xref target="alert-protocol"/>).</t>
        </section>
        <section anchor="client-hello">
          <name>Client Hello</name>
          <t>When a client first connects to a server, it is <bcp14>REQUIRED</bcp14> to send the
ClientHello as its first TLS message. The client will also send a
ClientHello when the server has responded to its ClientHello with a
HelloRetryRequest. In that case, the client <bcp14>MUST</bcp14> send the same
ClientHello without modification, except as follows:</t>
          <ul spacing="normal">
            <li>
              <t>If a "key_share" extension was supplied in the HelloRetryRequest,
replacing the list of shares with a list containing a single
KeyShareEntry from the indicated group.</t>
            </li>
            <li>
              <t>Removing the "early_data" extension (<xref target="early-data-indication"/>) if one was
present. Early data is not permitted after a HelloRetryRequest.</t>
            </li>
            <li>
              <t>Including a "cookie" extension if one was provided in the
HelloRetryRequest.</t>
            </li>
            <li>
              <t>Updating the "pre_shared_key" extension if present by
recomputing the "obfuscated_ticket_age" and binder values
and (optionally) removing
any PSKs which are incompatible with the server's indicated
cipher suite.</t>
            </li>
            <li>
              <t>Optionally adding, removing, or changing the length of the "padding"
extension <xref target="RFC7685"/>.</t>
            </li>
            <li>
              <t>Other modifications that may be allowed by an extension defined in the
future and present in the HelloRetryRequest.</t>
            </li>
          </ul>
          <t>Because TLS 1.3 forbids renegotiation, if a server has negotiated TLS
1.3 and receives a ClientHello at any other time, it <bcp14>MUST</bcp14> terminate
the connection with an "unexpected_message" alert.</t>
          <t>If a server established a TLS connection with a previous version of TLS
and receives a TLS 1.3 ClientHello in a renegotiation, it <bcp14>MUST</bcp14> retain the
previous protocol version. In particular, it <bcp14>MUST NOT</bcp14> negotiate TLS 1.3.</t>
          <t>Structure of this message:</t>
          <sourcecode><![CDATA[
   uint16 ProtocolVersion;
   opaque Random[32];

   uint8 CipherSuite[2];    /* Cryptographic suite selector */

   struct {
       ProtocolVersion legacy_version = 0x0303;    /* TLS v1.2 */
       Random random;
       opaque legacy_session_id<0..32>;
       CipherSuite cipher_suites<2..2^16-2>;
       opaque legacy_compression_methods<1..2^8-1>;
       Extension extensions<8..2^16-1>;
   } ClientHello;
]]></sourcecode>
          <dl>
            <dt>legacy_version:</dt>
            <dd>
              <t>In previous versions of TLS, this field was used for version negotiation
and represented the highest version number supported by the client.
Experience has shown that many servers do not properly implement
version negotiation, leading to "version intolerance" in which
the server rejects an otherwise acceptable ClientHello with a version
number higher than it supports.
In TLS 1.3, the client indicates its version preferences in the
"supported_versions" extension (<xref target="supported-versions"/>) and the legacy_version field <bcp14>MUST</bcp14>
be set to 0x0303, which is the version number for TLS 1.2.
TLS 1.3 ClientHellos are identified as having
a legacy_version of 0x0303 and a supported_versions extension
present with 0x0304 as the highest version indicated therein.
(See <xref target="backward-compatibility"/> for details about backward compatibility.)
A server which receives a legacy_version value not equal to 0x0303 <bcp14>MUST</bcp14> abort
the handshake with an "illegal_parameter" alert.</t>
            </dd>
            <dt>random:</dt>
            <dd>
              <t>32 bytes generated by a secure random number generator.
See <xref target="implementation-notes"/> for additional information.</t>
            </dd>
            <dt>legacy_session_id:</dt>
            <dd>
              <t>Versions of TLS before TLS 1.3 supported a "session resumption"
feature which has been merged with pre-shared keys in this version
(see <xref target="resumption-and-psk"/>). A client which has a cached session ID
set by a pre-TLS 1.3 server <bcp14>SHOULD</bcp14> set this field to that value. In
compatibility mode (see <xref target="middlebox"/>), this field <bcp14>MUST</bcp14> be non-empty,
so a client not offering a pre-TLS 1.3 session <bcp14>MUST</bcp14> generate a
new 32-byte value. This value need not be random but <bcp14>SHOULD</bcp14> be
unpredictable to avoid implementations fixating on a specific value
(also known as ossification).
Otherwise, it <bcp14>MUST</bcp14> be set as a zero-length list (i.e., a
zero-valued single byte length field).</t>
            </dd>
            <dt>cipher_suites:</dt>
            <dd>
              <t>A list of the symmetric cipher options supported by the
client, specifically the record protection algorithm (including
secret key length) and a hash to be used with HKDF, in descending
order of client preference. Values are defined in <xref target="cipher-suites"/>.
If the list contains cipher suites that
the server does not recognize, support, or wish to use, the server
<bcp14>MUST</bcp14> ignore those cipher suites and process the remaining ones as
usual. If the client is
attempting a PSK key establishment, it <bcp14>SHOULD</bcp14> advertise at least one
cipher suite indicating a Hash associated with the PSK.</t>
            </dd>
            <dt>legacy_compression_methods:</dt>
            <dd>
              <t>Versions of TLS before 1.3 supported compression with the list of
supported compression methods being sent in this field. For every TLS 1.3
ClientHello, this list <bcp14>MUST</bcp14> contain exactly one byte, set to
zero, which corresponds to the "null" compression method in
prior versions of TLS. If a TLS 1.3 ClientHello is
received with any other value in this field, the server <bcp14>MUST</bcp14>
abort the handshake with an "illegal_parameter" alert. Note that TLS 1.3
servers might receive TLS 1.2 or prior ClientHellos which contain
other compression methods and (if negotiating such a prior version)
<bcp14>MUST</bcp14> follow the procedures for
the appropriate prior version of TLS.</t>
            </dd>
            <dt>extensions:</dt>
            <dd>
              <t>Clients request extended functionality from servers by sending
data in the extensions field.  The actual "Extension" format is
defined in <xref target="extensions"/>.  In TLS 1.3, the use
of certain extensions is mandatory, as functionality has moved into
extensions to preserve ClientHello compatibility with previous versions of TLS.
Servers <bcp14>MUST</bcp14> ignore unrecognized extensions.</t>
            </dd>
          </dl>
          <t>All versions of TLS allow an extensions field to optionally follow the
compression_methods field. TLS 1.3 ClientHello
messages always contain extensions (minimally "supported_versions", otherwise,
they will be interpreted as TLS 1.2 ClientHello messages).
However, TLS 1.3 servers might receive ClientHello messages without an
extensions field from prior versions of TLS.
The presence of extensions can be detected by determining whether there
are bytes following the compression_methods field at the end of the
ClientHello. Note that this method of detecting optional data differs
from the normal TLS method of having a variable-length field, but it
is used for compatibility with TLS before extensions were defined.
TLS 1.3 servers will need to perform this check first and only
attempt to negotiate TLS 1.3 if the "supported_versions" extension
is present.
If negotiating a version of TLS prior to 1.3, a server <bcp14>MUST</bcp14> check that
the message either contains no data after legacy_compression_methods
or that it contains a valid extensions block with no data following.
If not, then it <bcp14>MUST</bcp14> abort the handshake with a "decode_error" alert.</t>
          <t>In the event that a client requests additional functionality using
extensions and this functionality is not supplied by the server, the
client <bcp14>MAY</bcp14> abort the handshake.</t>
          <t>After sending the ClientHello message, the client waits for a ServerHello
or HelloRetryRequest message. If early data
is in use, the client may transmit early Application Data
(<xref target="zero-rtt-data"/>) while waiting for the next handshake message.</t>
        </section>
        <section anchor="server-hello">
          <name>Server Hello</name>
          <t>The server will send this message in response to a ClientHello message
to proceed with the handshake if it is able to negotiate an acceptable
set of handshake parameters based on the ClientHello.</t>
          <t>Structure of this message:</t>
          <sourcecode><![CDATA[
   struct {
       ProtocolVersion legacy_version = 0x0303;    /* TLS v1.2 */
       Random random;
       opaque legacy_session_id_echo<0..32>;
       CipherSuite cipher_suite;
       uint8 legacy_compression_method = 0;
       Extension extensions<6..2^16-1>;
   } ServerHello;
]]></sourcecode>
          <dl>
            <dt>legacy_version:</dt>
            <dd>
              <t>In previous versions of TLS, this field was used for version negotiation
and represented the selected version number for the connection. Unfortunately,
some middleboxes fail when presented with new values.
In TLS 1.3, the TLS server indicates its version using the
"supported_versions" extension (<xref target="supported-versions"/>),
and the legacy_version field <bcp14>MUST</bcp14>
be set to 0x0303, which is the version number for TLS 1.2.
(See <xref target="backward-compatibility"/> for details about backward compatibility.)
A client which receives a TLS 1.3 Server Hello with a legacy_version
value not equal to 0x0303 <bcp14>MUST</bcp14> abort the handshake with an
"illegal_parameter" alert.</t>
            </dd>
            <dt>random:</dt>
            <dd>
              <t>32 bytes generated by a secure random number generator.
See <xref target="implementation-notes"/> for additional information.
The last 8 bytes <bcp14>MUST</bcp14> be overwritten as described
below if negotiating TLS 1.2 or TLS 1.1, but the
remaining bytes <bcp14>MUST</bcp14> be random.
This structure is generated by the server and <bcp14>MUST</bcp14> be
generated independently of the ClientHello.random.</t>
            </dd>
            <dt>legacy_session_id_echo:</dt>
            <dd>
              <t>The contents of the client's legacy_session_id field. Note that
this field is echoed even if the client's value corresponded to
a cached pre-TLS 1.3 session which the server has chosen not
to resume. A client which receives a legacy_session_id_echo field
that does not match what it sent in the ClientHello
<bcp14>MUST</bcp14> abort the handshake with an "illegal_parameter"
alert.</t>
            </dd>
            <dt>cipher_suite:</dt>
            <dd>
              <t>The single cipher suite selected by the server from the ClientHello.cipher_suites
list. A client which receives a cipher suite
that was not offered <bcp14>MUST</bcp14> abort the handshake with an "illegal_parameter"
alert.</t>
            </dd>
            <dt>legacy_compression_method:</dt>
            <dd>
              <t>A single byte which <bcp14>MUST</bcp14> have the value 0. If a TLS 1.3 ServerHello
is received with any other value in this field, the client <bcp14>MUST</bcp14>
abort the handshake with an "illegal_parameter" alert.</t>
            </dd>
            <dt>extensions:</dt>
            <dd>
              <t>A list of extensions.  The ServerHello <bcp14>MUST</bcp14> only include extensions
which are required to establish the cryptographic context and negotiate
the protocol version. All TLS 1.3 ServerHello messages <bcp14>MUST</bcp14> contain the
"supported_versions" extension.  Current ServerHello messages additionally contain
the "pre_shared_key" extension or the "key_share" extension, or both (when using
a PSK with (EC)DHE key establishment). Other extensions
(see <xref target="extensions"/>) are sent
separately in the EncryptedExtensions message.</t>
            </dd>
          </dl>
          <t>For reasons of backward compatibility with middleboxes
(see <xref target="middlebox"/>), the HelloRetryRequest
message uses the same structure as the ServerHello, but with
Random set to the special value of the SHA-256 of
"HelloRetryRequest":</t>
          <artwork><![CDATA[
  CF 21 AD 74 E5 9A 61 11 BE 1D 8C 02 1E 65 B8 91
  C2 A2 11 16 7A BB 8C 5E 07 9E 09 E2 C8 A8 33 9C
]]></artwork>
          <t>Upon receiving a message with type server_hello, implementations
<bcp14>MUST</bcp14> first examine the Random value and, if it matches
this value, process it as described in <xref target="hello-retry-request"/>.</t>
          <t>TLS 1.3 has a downgrade protection mechanism embedded in the server's
random value. TLS 1.3 servers which negotiate TLS 1.2 or below in
response to a ClientHello <bcp14>MUST</bcp14> set the last 8 bytes of their
Random value specially in their ServerHello.</t>
          <t>If negotiating TLS 1.2, TLS 1.3 servers <bcp14>MUST</bcp14> set the last 8 bytes of their
Random value to the bytes:</t>
          <artwork><![CDATA[
  44 4F 57 4E 47 52 44 01
]]></artwork>
          <t><xref target="RFC8996"/> and <xref target="backward-compatibility-security"/> forbid
the negotiation of TLS versions below 1.2. However, server
implementations which do not follow that guidance <bcp14>MUST</bcp14>
set the last 8 bytes of their ServerHello.random value to the
bytes:</t>
          <artwork><![CDATA[
  44 4F 57 4E 47 52 44 00
]]></artwork>
          <t>TLS 1.3 clients receiving a ServerHello indicating TLS 1.2 or below
<bcp14>MUST</bcp14> check that the last 8 bytes are not equal to either of these values.
TLS 1.2 clients <bcp14>SHOULD</bcp14> also check that the last 8 bytes are not
equal to the second value if the ServerHello indicates TLS 1.1 or
below.  If a match is found, the client <bcp14>MUST</bcp14> abort the handshake
with an "illegal_parameter" alert.  This mechanism provides limited
protection against downgrade attacks over and above what is provided
by the Finished exchange: because the ServerKeyExchange, a message
present in TLS 1.2 and below, includes a signature over both random
values, it is not possible for an active attacker to modify the
random values without detection as long as ephemeral ciphers are used.
It does not provide downgrade protection when static RSA is used.</t>
          <t>Note: This is a change from <xref target="RFC5246"/>, so in practice many TLS 1.2 clients
and servers will not behave as specified above.</t>
          <t>A legacy TLS client performing renegotiation with TLS 1.2 or prior
and which receives a TLS 1.3 ServerHello during renegotiation
<bcp14>MUST</bcp14> abort the handshake with a "protocol_version" alert.
Note that renegotiation is not possible when TLS 1.3 has been
negotiated.</t>
        </section>
        <section anchor="hello-retry-request">
          <name>Hello Retry Request</name>
          <t>The server will send this message in response to a ClientHello message
if it is able to find an acceptable set of parameters but the
ClientHello does not contain sufficient information to proceed with
the handshake. As discussed in <xref target="server-hello"/>, the HelloRetryRequest
has the same format as a ServerHello message, and the
legacy_version, legacy_session_id_echo, cipher_suite, and legacy_compression_method fields have the same meaning. However, for convenience we
discuss "HelloRetryRequest" throughout this document as if it were
a distinct message.</t>
          <t>The server's extensions <bcp14>MUST</bcp14> contain "supported_versions".
Additionally, it <bcp14>SHOULD</bcp14> contain the minimal set of extensions necessary for the
client to generate a correct ClientHello pair. A
HelloRetryRequest <bcp14>MUST NOT</bcp14> contain any extensions that were not first
offered by the client in its ClientHello, with the exception of
optionally the "cookie" (see <xref target="cookie"/>) extension.</t>
          <t>Upon receipt of a HelloRetryRequest, the client <bcp14>MUST</bcp14> check
the legacy_version, legacy_session_id_echo, cipher_suite,
and legacy_compression_method as specified in <xref target="server-hello"/> and then process the
extensions, starting with determining the version using
"supported_versions". Clients <bcp14>MUST</bcp14> abort the handshake with
an "illegal_parameter" alert if the HelloRetryRequest would not result in
any change in the ClientHello. If a client receives a second
HelloRetryRequest in the same connection (i.e., where
the ClientHello was itself in response to a HelloRetryRequest), it
<bcp14>MUST</bcp14> abort the handshake with an "unexpected_message" alert.</t>
          <t>Otherwise, the client <bcp14>MUST</bcp14> process all extensions in the
HelloRetryRequest and send a second updated ClientHello. The
HelloRetryRequest extensions defined in this specification are:</t>
          <ul spacing="normal">
            <li>
              <t>supported_versions (see <xref target="supported-versions"/>)</t>
            </li>
            <li>
              <t>cookie (see <xref target="cookie"/>)</t>
            </li>
            <li>
              <t>key_share (see <xref target="key-share"/>)</t>
            </li>
          </ul>
          <t>A client which receives a cipher suite that was not
offered <bcp14>MUST</bcp14> abort the handshake.  Servers <bcp14>MUST</bcp14> ensure that they
negotiate the same cipher suite when receiving a conformant updated
ClientHello (if the server selects the cipher suite as the first step
in the negotiation, then this will happen automatically). Upon
receiving the ServerHello, clients <bcp14>MUST</bcp14> check that the cipher suite
supplied in the ServerHello is the same as that in the
HelloRetryRequest and otherwise abort the handshake with an
"illegal_parameter" alert.</t>
          <t>In addition, in its updated ClientHello, the client <bcp14>SHOULD NOT</bcp14> offer
any pre-shared keys associated with a hash other than that of the
selected cipher suite. This allows the client to avoid having to
compute partial hash transcripts for multiple hashes in the second
ClientHello.</t>
          <t>The value of selected_version in the HelloRetryRequest "supported_versions"
extension <bcp14>MUST</bcp14> be retained in the ServerHello, and a client <bcp14>MUST</bcp14> abort the
handshake with an "illegal_parameter" alert if the value changes.</t>
        </section>
      </section>
      <section anchor="extensions">
        <name>Extensions</name>
        <t>A number of TLS messages contain tag-length-value encoded extensions structures.</t>
        <artwork><![CDATA[
   struct {
       ExtensionType extension_type;
       opaque extension_data<0..2^16-1>;
   } Extension;

   enum {
       server_name(0),                             /* RFC 6066 */
       max_fragment_length(1),                     /* RFC 6066 */
       status_request(5),                          /* RFC 6066 */
       supported_groups(10),                       /* RFC 8422, 7919 */
       signature_algorithms(13),                   /* RFC 8446 */
       use_srtp(14),                               /* RFC 5764 */
       heartbeat(15),                              /* RFC 6520 */
       application_layer_protocol_negotiation(16), /* RFC 7301 */
       signed_certificate_timestamp(18),           /* RFC 6962 */
       client_certificate_type(19),                /* RFC 7250 */
       server_certificate_type(20),                /* RFC 7250 */
       padding(21),                                /* RFC 7685 */
       pre_shared_key(41),                         /* RFC 8446 */
       early_data(42),                             /* RFC 8446 */
       supported_versions(43),                     /* RFC 8446 */
       cookie(44),                                 /* RFC 8446 */
       psk_key_exchange_modes(45),                 /* RFC 8446 */
       certificate_authorities(47),                /* RFC 8446 */
       oid_filters(48),                            /* RFC 8446 */
       post_handshake_auth(49),                    /* RFC 8446 */
       signature_algorithms_cert(50),              /* RFC 8446 */
       key_share(51),                              /* RFC 8446 */
       (65535)
   } ExtensionType;
]]></artwork>
        <t>Here:</t>
        <ul spacing="normal">
          <li>
            <t>"extension_type" identifies the particular extension type.</t>
          </li>
          <li>
            <t>"extension_data" contains information specific to the particular
extension type.</t>
          </li>
        </ul>
        <t>The contents of the "extension_data" field are typically defined by an
extension-specific structure defined in the TLS presentation language. Unless
otherwise specified, trailing data is forbidden. That is, senders <bcp14>MUST NOT</bcp14>
include data after the structure in the "extension_data" field. When
processing an extension, receivers <bcp14>MUST</bcp14> abort the handshake with a
"decode_error" alert if there is data left over after parsing the structure.
This does not apply if the receiver does not implement or is configured to
ignore an extension.</t>
        <t>The list of extension types is maintained by IANA as described in
<xref target="iana-considerations"/>.</t>
        <t>Extensions are generally structured in a request/response fashion,
though some extensions are just requests with no corresponding
response (i.e., indications). The client sends its extension requests
in the ClientHello message, and the server sends its extension
responses in the ServerHello, EncryptedExtensions, HelloRetryRequest,
and Certificate messages. The server sends extension requests in the
CertificateRequest message which a client <bcp14>MAY</bcp14> respond to with a
Certificate message. The server <bcp14>MAY</bcp14> also send unsolicited extensions
in the NewSessionTicket, though the client does not respond directly
to these.</t>
        <t>Implementations <bcp14>MUST NOT</bcp14> send extension responses
(i.e., in the ServerHello, EncryptedExtensions, HelloRetryRequest,
and Certificate messages)
if the remote endpoint did not send the corresponding extension requests,
with the exception of the "cookie" extension in the HelloRetryRequest.
Upon receiving such an extension, an endpoint <bcp14>MUST</bcp14> abort the handshake with an
"unsupported_extension" alert.</t>
        <t>The table below indicates the messages where a given extension may
appear, using the following notation: CH (ClientHello), SH
(ServerHello), EE (EncryptedExtensions), CT (Certificate), CR
(CertificateRequest), NST (NewSessionTicket), and HRR
(HelloRetryRequest). If an implementation receives an extension which
it recognizes and which is not specified for the message in which it
appears, it <bcp14>MUST</bcp14> abort the handshake with an "illegal_parameter" alert.</t>
        <!--[rfced] Table 1

a) FYI - We have updated the citation for "record_size_limit" from [RFC8849]
to [RFC8449], as [RFC8449] defines the extension and [RFC8849] does not
have any mention of it.

Original:
   record_size_limit [RFC8849] 

Current:
   record_size_limit [RFC8449]


b) We note that RFC 9345 uses "delegated_credential" rather than
"delegated_credentials" (no "s"). May we update the extension to reflect RFC 9345?

Current:
   delegated_credentials {{RFC9345}}
-->

<table anchor="extensions-list">
          <name>TLS Extensions</name>
          <thead>
            <tr>
              <th align="left">Extension</th>
              <th align="right">TLS 1.3</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">server_name <xref target="RFC6066"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">max_fragment_length <xref target="RFC6066"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">status_request <xref target="RFC6066"/></td>
              <td align="right">CH, CR, CT</td>
            </tr>
            <tr>
              <td align="left">supported_groups <xref target="RFC7919"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">signature_algorithms <xref target="RFC8446"/></td>
              <td align="right">CH, CR</td>
            </tr>
            <tr>
              <td align="left">use_srtp <xref target="RFC5764"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">heartbeat <xref target="RFC6520"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">application_layer_protocol_negotiation <xref target="RFC7301"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">signed_certificate_timestamp <xref target="RFC6962"/></td>
              <td align="right">CH, CR, CT</td>
            </tr>
            <tr>
              <td align="left">client_certificate_type <xref target="RFC7250"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">server_certificate_type <xref target="RFC7250"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">padding <xref target="RFC7685"/></td>
              <td align="right">CH</td>
            </tr>
            <tr>
              <td align="left">cached_info <xref target="RFC7924"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">compress_certificate <xref target="RFC8879"/></td>
              <td align="right">CH, CR</td>
            </tr>
            <tr>
              <td align="left">record_size_limit <xref target="RFC8449"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">delegated_credentials <xref target="RFC9345"/></td>
              <td align="right">CH, CR, CT</td>
            </tr>
            <tr>
              <td align="left">supported_ekt_ciphers <xref target="RFC8870"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">pre_shared_key <xref target="RFC8446"/></td>
              <td align="right">CH, SH</td>
            </tr>
            <tr>
              <td align="left">early_data <xref target="RFC8446"/></td>
              <td align="right">CH, EE, NST</td>
            </tr>
            <tr>
              <td align="left">psk_key_exchange_modes <xref target="RFC8446"/></td>
              <td align="right">CH</td>
            </tr>
            <tr>
              <td align="left">cookie <xref target="RFC8446"/></td>
              <td align="right">CH, HRR</td>
            </tr>
            <tr>
              <td align="left">supported_versions <xref target="RFC8446"/></td>
              <td align="right">CH, SH, HRR</td>
            </tr>
            <tr>
              <td align="left">certificate_authorities <xref target="RFC8446"/></td>
              <td align="right">CH, CR</td>
            </tr>
            <tr>
              <td align="left">oid_filters <xref target="RFC8446"/></td>
              <td align="right">CR</td>
            </tr>
            <tr>
              <td align="left">post_handshake_auth <xref target="RFC8446"/></td>
              <td align="right">CH</td>
            </tr>
            <tr>
              <td align="left">signature_algorithms_cert <xref target="RFC8446"/></td>
              <td align="right">CH, CR</td>
            </tr>
            <tr>
              <td align="left">key_share <xref target="RFC8446"/></td>
              <td align="right">CH, SH, HRR</td>
            </tr>
            <tr>
              <td align="left">transparency_info <xref target="RFC9162"/></td>
              <td align="right">CH, CR, CT</td>
            </tr>
            <tr>
              <td align="left">connection_id <xref target="RFC9146"/></td>
              <td align="right">CH, SH</td>
            </tr>
            <tr>
              <td align="left">external_id_hash <xref target="RFC8844"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">external_session_id <xref target="RFC8844"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">quic_transport_parameters <xref target="RFC9001"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">ticket_request <xref target="RFC9149"/></td>
              <td align="right">CH, EE</td>
            </tr>
          </tbody>
        </table>
        <t>Note: This table includes only extensions marked 
"Recommended" at the time of this writing.</t>
        <t>When multiple extensions of different types are present, the
extensions <bcp14>MAY</bcp14> appear in any order, with the exception of
"pre_shared_key" (<xref target="pre-shared-key-extension"/>) which <bcp14>MUST</bcp14> be
the last extension in the ClientHello (but can appear anywhere in
the ServerHello extensions block).
There <bcp14>MUST NOT</bcp14> be more than one extension of the same type in a given
extension block.</t>
        <t>In TLS 1.3, unlike TLS 1.2, extensions are negotiated for each
handshake even when in resumption-PSK mode. However, 0-RTT parameters are
those negotiated in the previous handshake; mismatches may require
rejecting 0-RTT (see <xref target="early-data-indication"/>).</t>
        <t>There are subtle (and not so subtle) interactions that may occur in this
protocol between new features and existing features which may result in a
significant reduction in overall security. The following considerations should
be taken into account when designing new extensions:</t>
        <ul spacing="normal">
          <li>
            <t>Some cases where a server does not agree to an extension are error
conditions (e.g., the handshake cannot continue), and some are
simply refusals to support particular features. In general, error
alerts should be used for the former and a field in the server
extension response for the latter.</t>
          </li>
          <li>
            <t>Extensions should, as far as possible, be designed to prevent any attack that
forces use (or non-use) of a particular feature by manipulation of handshake
messages. This principle should be followed regardless of whether the feature
is believed to cause a security problem.
Often the fact that the extension fields are included in the inputs to the
Finished message hashes will be sufficient, but extreme care is needed when
the extension changes the meaning of messages sent in the handshake phase.
Designers and implementors should be aware of the fact that until the
handshake has been authenticated, active attackers can modify messages and
insert, remove, or replace extensions.</t>
          </li>
        </ul>
        <section anchor="supported-versions">
          <name>Supported Versions</name>
          <artwork><![CDATA[
   struct {
       select (Handshake.msg_type) {
           case client_hello:
                ProtocolVersion versions<2..254>;

           case server_hello: /* and HelloRetryRequest */
                ProtocolVersion selected_version;
       };
   } SupportedVersions;
]]></artwork>
          <t>The "supported_versions" extension is used by the client to indicate
which versions of TLS it supports and by the server to indicate
which version it is using. The extension contains a list of
supported versions in preference order, with the most preferred
version first. Implementations of this specification <bcp14>MUST</bcp14> send this
extension in the ClientHello containing all versions of TLS which they are
prepared to negotiate (for this specification, that means minimally
0x0304, but if previous versions of TLS are allowed to be negotiated,
they <bcp14>MUST</bcp14> be present as well).</t>
          <t>If this extension is not present, servers which are compliant with
this specification and which also support TLS 1.2
<bcp14>MUST</bcp14> negotiate TLS 1.2 or prior as specified in
<xref target="RFC5246"/>, even if ClientHello.legacy_version is 0x0304 or later.
Servers <bcp14>MAY</bcp14> abort the handshake upon receiving a ClientHello with
legacy_version 0x0304 or later.</t>
          <t>If this extension is present in the ClientHello, servers <bcp14>MUST NOT</bcp14> use the
ClientHello.legacy_version value for version negotiation and <bcp14>MUST</bcp14> use only the
"supported_versions" extension to determine client
preferences. Servers <bcp14>MUST</bcp14> only select a version of TLS present in that
extension and <bcp14>MUST</bcp14> ignore any unknown versions that are present in that
extension. Note that this
mechanism makes it possible to negotiate a version prior to TLS 1.2 if
one side supports a sparse range. Implementations of TLS 1.3 which choose
to support prior versions of TLS <bcp14>SHOULD</bcp14> support TLS 1.2.
Servers <bcp14>MUST</bcp14> be prepared to receive ClientHellos that include this
extension but do not include 0x0304 in the list of versions.</t>
          <t>A server which negotiates a version of TLS prior to TLS 1.3 <bcp14>MUST</bcp14>
set ServerHello.version and <bcp14>MUST NOT</bcp14> send the "supported_versions"
extension. A server which negotiates TLS 1.3 <bcp14>MUST</bcp14> respond by sending a
"supported_versions" extension containing the selected version value
(0x0304). It <bcp14>MUST</bcp14> set the ServerHello.legacy_version field to 0x0303 (TLS
1.2).</t>
          <t>After checking ServerHello.random to determine if the server handshake message
is a ServerHello or HelloRetryRequest, clients <bcp14>MUST</bcp14> check for this extension
prior to processing the rest of the ServerHello. This will require clients to
parse the ServerHello to read the extension. 
If this extension is present, clients <bcp14>MUST</bcp14> ignore the
ServerHello.legacy_version value and <bcp14>MUST</bcp14> use only the
"supported_versions" extension to determine the selected version. If the
"supported_versions" extension in the ServerHello contains a version not offered by the
client or contains a version prior to TLS 1.3, the client <bcp14>MUST</bcp14> abort the handshake with an
"illegal_parameter" alert.</t>
        </section>
        <section anchor="cookie">
          <name>Cookie</name>
          <artwork><![CDATA[
   struct {
       opaque cookie<1..2^16-1>;
   } Cookie;
]]></artwork>
          <t>Cookies serve two primary purposes:</t>
          <ul spacing="normal">
            <li>
              <t>Allowing the server to force the client to demonstrate reachability
at their apparent network address (thus providing a measure of DoS
protection). This is primarily useful for non-connection-oriented
transports (see <xref target="RFC6347"/> for an example of this).</t>
            </li>
            <li>
              <t>Allowing the server to offload state to the client, thus allowing it to send
a HelloRetryRequest without storing any state. The server can do this by
storing the hash of the ClientHello in the HelloRetryRequest cookie
(protected with some suitable integrity protection algorithm).</t>
            </li>
          </ul>
          <t>When sending a HelloRetryRequest, the server <bcp14>MAY</bcp14> provide a "cookie" extension to the
client (this is an exception to the usual rule that the only extensions that
may be sent are those that appear in the ClientHello). When sending the
new ClientHello, the client <bcp14>MUST</bcp14> copy the contents of the extension received in
the HelloRetryRequest into a "cookie" extension in the new ClientHello.
Clients <bcp14>MUST NOT</bcp14> use cookies in their initial ClientHello in subsequent connections.</t>
          <t>When a server is operating statelessly, it may receive an unprotected record of
type change_cipher_spec between the first and second ClientHello (see
<xref target="record-protocol"/>). Since the server is not storing any state, this will appear
as if it were the first message to be received. Servers operating statelessly
<bcp14>MUST</bcp14> ignore these records.</t>
        </section>
        <section anchor="signature-algorithms">
          <name>Signature Algorithms</name>
          <t>TLS 1.3 provides two extensions for indicating which signature
algorithms may be used in digital signatures. The
"signature_algorithms_cert" extension applies to signatures in
certificates, and the "signature_algorithms" extension, which originally
appeared in TLS 1.2, applies to signatures in CertificateVerify
messages. The keys found in certificates <bcp14>MUST</bcp14> also be of
appropriate type for the signature algorithms they are used
with. This is a particular issue for RSA keys and PSS signatures,
as described below. If no "signature_algorithms_cert" extension is present,
then the "signature_algorithms" extension also applies to signatures
appearing in certificates. Clients which desire the server to authenticate
itself via a certificate <bcp14>MUST</bcp14> send the "signature_algorithms" extension. If a server
is authenticating via a certificate and the client has not sent a
"signature_algorithms" extension, then the server <bcp14>MUST</bcp14> abort the
handshake with a "missing_extension" alert (see <xref target="mti-extensions"/>).</t>
          <t>The "signature_algorithms_cert" extension was added to allow implementations
which supported different sets of algorithms for certificates and in TLS itself
to clearly signal their capabilities. TLS 1.2 implementations <bcp14>SHOULD</bcp14> also process
this extension. Implementations which have the same policy in both cases
<bcp14>MAY</bcp14> omit the "signature_algorithms_cert" extension.</t>
          <t>The "extension_data" field of these extensions contains a
SignatureSchemeList value:</t>
          <artwork><![CDATA[
   enum {
       /* RSASSA-PKCS1-v1_5 algorithms */
       rsa_pkcs1_sha256(0x0401),
       rsa_pkcs1_sha384(0x0501),
       rsa_pkcs1_sha512(0x0601),

       /* ECDSA algorithms */
       ecdsa_secp256r1_sha256(0x0403),
       ecdsa_secp384r1_sha384(0x0503),
       ecdsa_secp521r1_sha512(0x0603),

       /* RSASSA-PSS algorithms with public key OID rsaEncryption */
       rsa_pss_rsae_sha256(0x0804),
       rsa_pss_rsae_sha384(0x0805),
       rsa_pss_rsae_sha512(0x0806),

       /* EdDSA algorithms */
       ed25519(0x0807),
       ed448(0x0808),

       /* RSASSA-PSS algorithms with public key OID RSASSA-PSS */
       rsa_pss_pss_sha256(0x0809),
       rsa_pss_pss_sha384(0x080a),
       rsa_pss_pss_sha512(0x080b),

       /* Legacy algorithms */
       rsa_pkcs1_sha1(0x0201),
       ecdsa_sha1(0x0203),

       /* Reserved Code Points */
       private_use(0xFE00..0xFFFF),
       (0xFFFF)
   } SignatureScheme;

   struct {
       SignatureScheme supported_signature_algorithms<2..2^16-2>;
   } SignatureSchemeList;
]]></artwork>
          <t>Note: This enum is named "SignatureScheme" because there is already
a "SignatureAlgorithm" type in TLS 1.2, which this replaces.
We use the term "signature algorithm" throughout the text.</t>
          <t>Each SignatureScheme value lists a single signature algorithm that the
client is willing to verify. The values are indicated in descending order
of preference. Note that a signature algorithm takes as input an
arbitrary-length message, rather than a digest. Algorithms which
traditionally act on a digest should be defined in TLS to first
hash the input with a specified hash algorithm and then proceed as usual.
The code point groups listed above have the following meanings:</t>
          <dl>
            <dt>RSASSA-PKCS1-v1_5 algorithms:</dt>
            <dd>
              <t>Indicates a signature algorithm using RSASSA-PKCS1-v1_5 <xref target="RFC8017"/>
with the corresponding hash algorithm as defined in <xref target="SHS"/>. These values
refer solely to signatures which appear in certificates (see
<xref target="certificate-selection"/>) and are not defined for use in signed
TLS handshake messages, although they <bcp14>MAY</bcp14> appear in "signature_algorithms"
and "signature_algorithms_cert" for backward compatibility with TLS 1.2.</t>
            </dd>
            <dt>ECDSA algorithms:</dt>
            <dd>
              <t>Indicates a signature algorithm using ECDSA <xref target="DSS"/>, the corresponding curve as defined in NIST SP 800-186 <xref target="ECDP"/>, and the
corresponding hash algorithm as defined in <xref target="SHS"/>. The signature is
represented as a DER-encoded <xref target="X690"/> ECDSA-Sig-Value structure as defined in <xref target="RFC4492"/>.</t>
            </dd>
            <dt>RSASSA-PSS RSAE algorithms:</dt>
            <dd>
              <t>Indicates a signature algorithm using RSASSA-PSS with a mask
generation function of MGF1, as defined in <xref target="RFC8017"/>. The
digest used in MGF1 and the digest being signed are
both the corresponding hash algorithm as defined in <xref target="SHS"/>.
The length of the Salt <bcp14>MUST</bcp14> be equal to the length of the output of the
digest algorithm. If the public key is carried
in an X.509 certificate, it <bcp14>MUST</bcp14> use the rsaEncryption OID <xref target="RFC5280"/>.</t>
            </dd>
            <dt>EdDSA algorithms:</dt>
            <dd>
              <t>Indicates a signature algorithm using EdDSA as defined in
<xref target="RFC8032"/> or its successors. Note that these correspond to the
"PureEdDSA" algorithms and not the "prehash" variants.</t>
            </dd>
            <dt>RSASSA-PSS PSS algorithms:</dt>
            <dd>
              <t>Indicates a signature algorithm using RSASSA-PSS with a mask
generation function of MGF1, as defined in <xref target="RFC8017"/>. The
digest used in MGF1 and the digest being signed are
both the corresponding hash algorithm as defined in <xref target="SHS"/>.
The length of the Salt <bcp14>MUST</bcp14> be equal to the length of the digest
algorithm. If the public key is carried in an X.509 certificate,
it <bcp14>MUST</bcp14> use the RSASSA-PSS OID  <xref target="RFC5756"/>. When used in certificate signatures,
the algorithm parameters <bcp14>MUST</bcp14> be DER encoded. If the corresponding
public key's parameters are present, then the parameters in the signature
<bcp14>MUST</bcp14> be identical to those in the public key.</t>
            </dd>
            <dt>Legacy algorithms:</dt>
            <dd>
              <t>Indicates algorithms which are being deprecated because they use
algorithms with known weaknesses, specifically SHA-1 which is used
in this context with either (1) RSA using RSASSA-PKCS1-v1_5 or (2) ECDSA.  These values
refer solely to signatures which appear in certificates (see
<xref target="certificate-selection"/>) and are not defined for use in
signed TLS handshake messages, although they <bcp14>MAY</bcp14> appear in "signature_algorithms"
and "signature_algorithms_cert" for backward compatibility with TLS 1.2.
Endpoints <bcp14>SHOULD NOT</bcp14> negotiate these algorithms
but are permitted to do so solely for backward compatibility. Clients
offering these values <bcp14>MUST</bcp14> list
them as the lowest priority (listed after all other algorithms in
SignatureSchemeList). TLS 1.3 servers <bcp14>MUST NOT</bcp14> offer a SHA-1 signed
certificate unless no valid certificate chain can be produced
without it (see <xref target="certificate-selection"/>).</t>
            </dd>
          </dl>
          <t>The signatures on certificates that are self-signed or certificates that are
trust anchors are not validated, since they begin a certification path (see
<xref section="3.2" sectionFormat="comma" target="RFC5280"/>).  A certificate that begins a certification
path <bcp14>MAY</bcp14> use a signature algorithm that is not advertised as being supported
in the "signature_algorithms" and "signature_algorithms_cert" extensions.</t>
          <t>Note that TLS 1.2 defines this extension differently. TLS 1.3 implementations
willing to negotiate TLS 1.2 <bcp14>MUST</bcp14> behave in accordance with the requirements of
<xref target="RFC5246"/> when negotiating that version. In particular:</t>
          <ul spacing="normal">
            <li>
              <t>TLS 1.2 ClientHellos <bcp14>MAY</bcp14> omit this extension.</t>
            </li>
            <li>
              <t>In TLS 1.2, the extension contained hash/signature pairs. The pairs are
encoded in two octets, so SignatureScheme values have been allocated to
align with TLS 1.2's encoding. Some legacy pairs are left unallocated. These
algorithms are deprecated as of TLS 1.3. They <bcp14>MUST NOT</bcp14> be offered or
negotiated by any implementation. In particular, MD5 <xref target="SLOTH"/>, SHA-224, and
DSA <bcp14>MUST NOT</bcp14> be used.</t>
            </li>
            <li>
              <t>ECDSA signature schemes align with TLS 1.2's ECDSA hash/signature pairs.
However, the old semantics did not constrain the signing curve.  If TLS 1.2 is
negotiated, implementations <bcp14>MUST</bcp14> be prepared to accept a signature that uses
any curve that they advertised in the "supported_groups" extension.</t>
            </li>
            <li>
              <t>Implementations that advertise support for RSASSA-PSS (which is mandatory in
TLS 1.3) <bcp14>MUST</bcp14> be prepared to accept a signature using that scheme even when
TLS 1.2 is negotiated. In TLS 1.2, RSASSA-PSS is used with RSA cipher suites.</t>
            </li>
          </ul>
        </section>
        <section anchor="certificate-authorities">
          <name>Certificate Authorities</name>
          <t>The "certificate_authorities" extension is used to indicate the
certificate authorities (CAs) which an endpoint supports and which <bcp14>SHOULD</bcp14>
be used by the receiving endpoint to guide certificate selection.</t>
          <t>The body of the "certificate_authorities" extension consists of a
CertificateAuthoritiesExtension structure.</t>
          <artwork><![CDATA[
   opaque DistinguishedName<1..2^16-1>;

   struct {
       DistinguishedName authorities<3..2^16-1>;
   } CertificateAuthoritiesExtension;
]]></artwork>
          <dl>
            <dt>authorities:</dt>
            <dd>
              <t>A list of the distinguished names <xref target="X501"/> of acceptable
certificate authorities, represented in DER-encoded <xref target="X690"/> format.  These
distinguished names specify a desired distinguished name for a trust anchor
or subordinate CA; thus, this message can be used to
describe known trust anchors as well as a desired authorization space.</t>
            </dd>
          </dl>
          <t>The client <bcp14>MAY</bcp14> send the "certificate_authorities" extension in the ClientHello
message. The server <bcp14>MAY</bcp14> send it in the CertificateRequest message.</t>
          <t>The "trusted_ca_keys" extension <xref target="RFC6066"/>, which serves a similar
purpose, but is more complicated, is not used in TLS 1.3
(although it may appear in ClientHello messages from clients which are
offering prior versions of TLS).</t>
        </section>
        <section anchor="oid-filters">
          <name>OID Filters</name>
          <t>The "oid_filters" extension allows servers to provide a list of OID/value
pairs which it would like the client's certificate to match. This
extension, if provided by the server, <bcp14>MUST</bcp14> only be sent in the CertificateRequest message.</t>
          <artwork><![CDATA[
   struct {
       opaque certificate_extension_oid<1..2^8-1>;
       opaque certificate_extension_values<0..2^16-1>;
   } OIDFilter;

   struct {
       OIDFilter filters<0..2^16-1>;
   } OIDFilterExtension;
]]></artwork>
          <dl>
            <dt>filters:</dt>
            <dd>
              <t>A list of certificate extension OIDs <xref target="RFC5280"/> with their allowed value(s) and
represented in DER-encoded <xref target="X690"/> format. Some certificate extension OIDs
allow multiple values (e.g., Extended Key Usage).  If the server has included
a non-empty filters list, the client certificate included in
the response <bcp14>MUST</bcp14> contain all of the specified extension OIDs that the client
recognizes. For each extension OID recognized by the client, all of the
specified values <bcp14>MUST</bcp14> be present in the client certificate (but the
certificate <bcp14>MAY</bcp14> have other values as well). However, the client <bcp14>MUST</bcp14> ignore
and skip any unrecognized certificate extension OIDs. If the client ignored
some of the required certificate extension OIDs and supplied a certificate
that does not satisfy the request, the server <bcp14>MAY</bcp14> at its discretion either
continue the connection without client authentication or abort the handshake
with an "unsupported_certificate" alert. Any given OID <bcp14>MUST NOT</bcp14> appear
more than once in the filters list.</t>
            </dd>
          </dl>
          <t>PKIX RFCs define a variety of certificate extension OIDs and their corresponding
value types. Depending on the type, matching certificate extension values are
not necessarily bitwise-equal. It is expected that TLS implementations will rely
on their PKI libraries to perform certificate selection using certificate
extension OIDs.</t>
          <t>This document defines matching rules for two standard certificate extensions
defined in <xref target="RFC5280"/>:</t>
          <ul spacing="normal">
            <li>
              <t>The Key Usage extension in a certificate matches the request when all key
usage bits asserted in the request are also asserted in the Key Usage
certificate extension.</t>
            </li>
            <li>
              <t>The Extended Key Usage extension in a certificate matches the request when all
key purpose OIDs present in the request are also found in the Extended Key
Usage certificate extension. The special anyExtendedKeyUsage OID <bcp14>MUST NOT</bcp14> be
used in the request.</t>
            </li>
          </ul>
          <t>Separate specifications may define matching rules for other certificate
extensions.</t>
        </section>
        <section anchor="post_handshake_auth">
          <name>Post-Handshake Certificate-Based Client Authentication</name>
          <t>The "post_handshake_auth" extension is used to indicate that a client is willing
to perform post-handshake authentication (<xref target="post-handshake-authentication"/>). Servers
<bcp14>MUST NOT</bcp14> send a post-handshake CertificateRequest to clients which do not
offer this extension. Servers <bcp14>MUST NOT</bcp14> send this extension.</t>
          <artwork><![CDATA[
   struct {} PostHandshakeAuth;
]]></artwork>
          <t>The "extension_data" field of the "post_handshake_auth" extension is zero length.</t>
        </section>
        <section anchor="supported-groups">
          <name>Supported Groups</name>
          <t>When sent by the client, the "supported_groups" extension indicates
the named groups which the client supports for key exchange, ordered
from most preferred to least preferred.</t>
          <t>Note: In versions of TLS prior to TLS 1.3, this extension was named
"elliptic_curves" and only contained elliptic curve groups. See <xref target="RFC8422"/> and
<xref target="RFC7919"/>. This extension was also used to negotiate
ECDSA curves. Signature algorithms are now negotiated independently (see
<xref target="signature-algorithms"/>).</t>
          <t>The "extension_data" field of this extension contains a
"NamedGroupList" value:</t>
          <artwork><![CDATA[
   enum {

       /* Elliptic Curve Groups (ECDHE) */
       secp256r1(0x0017), secp384r1(0x0018), secp521r1(0x0019),
       x25519(0x001D), x448(0x001E),

       /* Finite Field Groups (DHE) */
       ffdhe2048(0x0100), ffdhe3072(0x0101), ffdhe4096(0x0102),
       ffdhe6144(0x0103), ffdhe8192(0x0104),

       /* Reserved Code Points */
       ffdhe_private_use(0x01FC..0x01FF),
       ecdhe_private_use(0xFE00..0xFEFF),
       (0xFFFF)
   } NamedGroup;

   struct {
       NamedGroup named_group_list<2..2^16-1>;
   } NamedGroupList;
]]></artwork>
          <dl>
            <dt>Elliptic Curve Groups (ECDHE):</dt>
            <dd>
              <t>Indicates support for the corresponding named curve, defined
in either NIST SP 800-186 <xref target="ECDP"/> or in <xref target="RFC7748"/>.
Values 0xFE00 through 0xFEFF are reserved for Private Use <xref target="RFC8126"/>.</t>
            </dd>
            <dt>Finite Field Groups (DHE):</dt>
            <dd>
              <t>Indicates support for the corresponding finite field
group, defined in <xref target="RFC7919"/>.
Values 0x01FC through 0x01FF are reserved for Private Use.</t>
            </dd>
          </dl>
          <t>Items in "named_group_list" are ordered according to the sender's
preferences (most preferred choice first). The "named_group_list"
<bcp14>MUST NOT</bcp14> contain any duplicate entries.  A recipient <bcp14>MAY</bcp14> abort a connection
with a fatal illegal_parameter alert if it detects a duplicate entry.</t>
          <t>As of TLS 1.3, servers are permitted to send the "supported_groups"
extension to the client. Clients <bcp14>MUST NOT</bcp14> act upon any information
found in "supported_groups" prior to successful completion of the
handshake but <bcp14>MAY</bcp14> use the information learned from a successfully
completed handshake to change what groups they use in their
"key_share" extension in subsequent connections.
If the server has a group it prefers to the
ones in the "key_share" extension but is still willing to accept the
ClientHello, it <bcp14>SHOULD</bcp14> send "supported_groups" to update the client's
view of its preferences; this extension <bcp14>SHOULD</bcp14> contain all groups
the server supports, regardless of whether they are currently
supported by the client.</t>
        </section>
        <section anchor="key-share">
          <name>Key Share</name>
          <t>The "key_share" extension contains the endpoint's cryptographic parameters.</t>
          <t>Clients <bcp14>MAY</bcp14> send an empty client_shares list to request
group selection from the server, at the cost of an additional round trip
(see <xref target="hello-retry-request"/>).</t>
          <artwork><![CDATA[
   struct {
       NamedGroup group;
       opaque key_exchange<1..2^16-1>;
   } KeyShareEntry;
]]></artwork>
          <dl>
            <dt>group:</dt>
            <dd>
              <t>The named group for the key being exchanged.</t>
            </dd>
            <dt>key_exchange:</dt>
            <dd>
              <t>Key exchange information.  The contents of this field are
determined by the specified group and its corresponding
definition.
Finite Field Diffie-Hellman <xref target="DH76"/> parameters are described in
<xref target="ffdhe-param"/>; Elliptic Curve Diffie-Hellman parameters are
described in <xref target="ecdhe-param"/>.</t>
            </dd>
          </dl>
          <t>In the ClientHello message, the "extension_data" field of this extension
contains a "KeyShareClientHello" value:</t>
          <artwork><![CDATA[
   struct {
       KeyShareEntry client_shares<0..2^16-1>;
   } KeyShareClientHello;
]]></artwork>
          <dl>
            <dt>client_shares:</dt>
            <dd>
              <t>A list of offered KeyShareEntry values in descending order of client preference.</t>
            </dd>
          </dl>
          <t>This list <bcp14>MAY</bcp14> be empty if the client is requesting a HelloRetryRequest.
Each KeyShareEntry value <bcp14>MUST</bcp14> correspond to a group offered in the
"supported_groups" extension and <bcp14>MUST</bcp14> appear in the same order.  However, the
values <bcp14>MAY</bcp14> be a non-contiguous subset of the "supported_groups" extension and
<bcp14>MAY</bcp14> omit the most preferred groups. Such a situation could arise if the most
preferred groups are new and unlikely to be supported in enough places to
make pregenerating key shares for them efficient.</t>
          <t>For this reason, the omission of a share for group A and inclusion of
one for group B does not mean that the client prefers B to A.
Selecting a group based on KeyShareEntry may result in the use of
a less preferred group than the client and server mutually support,
though saving the round trip of HelloRetryRequest. Servers
that wish to respect the client's group preferences <bcp14>SHOULD</bcp14> first
select a group based on "supported_groups" and then either send a
ServerHello or a HelloRetryRequest depending on the contents of
KeyshareClienthello.</t>
          <t>Clients can offer as many KeyShareEntry values as the number of supported
groups it is offering, each
representing a single set of key exchange parameters. For instance, a
client might offer shares for several elliptic curves or multiple
FFDHE groups.  The key_exchange values for each KeyShareEntry <bcp14>MUST</bcp14> be
generated independently.  Clients <bcp14>MUST NOT</bcp14> offer multiple
KeyShareEntry values for the same group.  Clients <bcp14>MUST NOT</bcp14> offer any
KeyShareEntry values for groups not listed in the client's
"supported_groups" extension.  Servers <bcp14>MAY</bcp14> check for violations of
these rules and abort the handshake with an "illegal_parameter" alert
if one is violated.</t>
          <t>In a HelloRetryRequest message, the "extension_data" field of this
extension contains a KeyShareHelloRetryRequest value:</t>
          <artwork><![CDATA[
   struct {
       NamedGroup selected_group;
   } KeyShareHelloRetryRequest;
]]></artwork>
          <dl>
            <dt>selected_group:</dt>
            <dd>
              <t>The mutually supported group the server intends to negotiate and
is requesting a retried ClientHello/KeyShare for.</t>
            </dd>
          </dl>
          <t>Upon receipt of this extension in a HelloRetryRequest, the client <bcp14>MUST</bcp14>
verify that (1) the selected_group field corresponds to a group which was provided
in the "supported_groups" extension in the original ClientHello and (2)
the selected_group field does not correspond to a group which was
provided in the "key_share" extension in the original ClientHello. If either of
these checks fails, then the client <bcp14>MUST</bcp14> abort the handshake with an
"illegal_parameter" alert.  Otherwise, when sending the new ClientHello, the
client <bcp14>MUST</bcp14> replace the original "key_share" extension with one
containing only a new KeyShareEntry for the group indicated in the
selected_group field of the triggering HelloRetryRequest.</t>
          <t>In a ServerHello message, the "extension_data" field of this
extension contains a KeyShareServerHello value:</t>
          <artwork><![CDATA[
   struct {
       KeyShareEntry server_share;
   } KeyShareServerHello;
]]></artwork>
          <dl>
            <dt>server_share:</dt>
            <dd>
              <t>A single KeyShareEntry value that is in the same group as one of the
client's shares.</t>
            </dd>
          </dl>
          <t>If using (EC)DHE key establishment, servers offer exactly one
KeyShareEntry in the ServerHello. This value <bcp14>MUST</bcp14> be in the same group
as the KeyShareEntry value offered
by the client that the server has selected for the negotiated key exchange.
Servers <bcp14>MUST NOT</bcp14> send a KeyShareEntry for any group not
indicated in the client's "supported_groups" extension and
<bcp14>MUST NOT</bcp14> send a KeyShareEntry when using the "psk_ke" PskKeyExchangeMode.
If using (EC)DHE key establishment and a HelloRetryRequest containing a
"key_share" extension was received by the client, the client <bcp14>MUST</bcp14> verify that the
selected NamedGroup in the ServerHello is the same as that in the HelloRetryRequest.
If this check fails, the client <bcp14>MUST</bcp14> abort the handshake with an "illegal_parameter"
alert.</t>
          <section anchor="ffdhe-param">
            <name>Diffie-Hellman Parameters</name>
            <t>Diffie-Hellman <xref target="DH76"/> parameters for both clients and servers are encoded in
the opaque key_exchange field of a KeyShareEntry in a KeyShare structure.
The opaque value contains the
Diffie-Hellman public value (Y = g<sup>X</sup> mod p) for the specified group
(see <xref target="RFC7919"/> for group definitions)
encoded as a big-endian integer and padded to the left with zeros to the size of p in
bytes.</t>
            <t>Note: For a given Diffie-Hellman group, the padding results in all public keys
having the same length.</t>
            <t>Peers <bcp14>MUST</bcp14> validate each other's public key Y by ensuring that 1 &lt; Y
&lt; p-1. This check ensures that the remote peer is properly behaved and
isn't forcing the local system into a small subgroup.</t>
          </section>
          <section anchor="ecdhe-param">
            <name>ECDHE Parameters</name>
            <t>ECDHE parameters for both clients and servers are encoded in the
opaque key_exchange field of a KeyShareEntry in a KeyShare structure.</t>
            <t>For secp256r1, secp384r1, and secp521r1, the contents are the serialized
value of the following struct:</t>
            <artwork><![CDATA[
   struct {
       uint8 legacy_form = 4;
       opaque X[coordinate_length];
       opaque Y[coordinate_length];
   } UncompressedPointRepresentation;
]]></artwork>
            <t>X and Y, respectively, are the binary representations of the x and y
values in network byte order.  There are no internal length markers,
so each number representation occupies as many octets as implied by
the curve parameters.  For P-256, this means that each of X and Y use
32 octets, padded on the left by zeros if necessary.  For P-384, they
take 48 octets each. For P-521, they take 66 octets each.</t>
            <t>For the curves secp256r1, secp384r1, and secp521r1,
peers <bcp14>MUST</bcp14> validate each other's public value Q by ensuring
that the point is a valid point on the elliptic curve.
The appropriate validation procedures are defined in Appendix D.1 of <xref target="ECDP"/>
and alternatively in Section 5.6.2.3 of <xref target="KEYAGREEMENT"/>.
This process consists of three
steps: (1) verify that Q is not the point at infinity (O), (2) verify
that for Q = (x, y) both integers x and y are in the correct interval, and (3)
ensure that (x, y) is a correct solution to the elliptic curve
equation.  For these curves, implementors do not need to verify
membership in the correct subgroup.</t>
            <t>For X25519 and X448, the content of the public value is the K_A
or K_B value described in <xref section="6" sectionFormat="of" target="RFC7748"/>.
This is 32 bytes for X25519 and 56 bytes for X448.</t>
            <t>Note: Versions of TLS prior to 1.3 permitted point format negotiation;
TLS 1.3 removes this feature in favor of a single point format
for each curve.</t>
          </section>
        </section>
        <section anchor="pre-shared-key-exchange-modes">
          <name>Pre-Shared Key Exchange Modes</name>
          <t>To use PSKs, clients <bcp14>MUST</bcp14> also send a "psk_key_exchange_modes"
extension. The semantics of this extension are that the client only
supports the use of PSKs with these modes, which restricts both the
use of PSKs offered in this ClientHello and those which the server
might supply via NewSessionTicket.</t>
          <t>A client <bcp14>MUST</bcp14> provide a "psk_key_exchange_modes" extension if it offers
a "pre_shared_key" extension. If clients offer "pre_shared_key" without
a "psk_key_exchange_modes" extension, servers <bcp14>MUST</bcp14> abort the handshake.
Servers <bcp14>MUST NOT</bcp14> select a key exchange mode that is not listed by the
client. This extension also restricts the modes for use with PSK resumption.
Servers <bcp14>SHOULD NOT</bcp14> send NewSessionTicket with tickets that are not
compatible with the advertised modes; however, if a server does so, the impact
will just be that the client's attempts at resumption fail.</t>
          <t>The server <bcp14>MUST NOT</bcp14> send a "psk_key_exchange_modes" extension.</t>
          <artwork><![CDATA[
   enum { psk_ke(0), psk_dhe_ke(1), (255) } PskKeyExchangeMode;

   struct {
       PskKeyExchangeMode ke_modes<1..255>;
   } PskKeyExchangeModes;
]]></artwork>
          <dl>
            <dt>psk_ke:</dt>
            <dd>
              <t>PSK-only key establishment. In this mode, the server <bcp14>MUST NOT</bcp14>
supply a "key_share" value.</t>
            </dd>
            <dt>psk_dhe_ke:</dt>
            <dd>
              <t>PSK with (EC)DHE key establishment. In this mode,
the client and server <bcp14>MUST</bcp14> supply "key_share" values as described
in <xref target="key-share"/>.</t>
            </dd>
          </dl>
          <t>Any future values that are allocated must ensure that the transmitted
protocol messages unambiguously identify which mode was selected by
the server; at present, this is indicated by the presence of the "key_share"
in the ServerHello.</t>
        </section>
        <section anchor="early-data-indication">
          <name>Early Data Indication</name>
          <t>When a PSK is used and early data is allowed for that PSK
(see for instance <xref target="ticket-establishment"/>), the client can send Application Data
in its first flight of messages. If the client opts to do so, it <bcp14>MUST</bcp14>
supply both the "pre_shared_key" and "early_data" extensions.</t>
          <t>The "extension_data" field of this extension contains an
"EarlyDataIndication" value.</t>
          <artwork><![CDATA[
   struct {} Empty;

   struct {
       select (Handshake.msg_type) {
           case new_session_ticket:   uint32 max_early_data_size;
           case client_hello:         Empty;
           case encrypted_extensions: Empty;
       };
   } EarlyDataIndication;
]]></artwork>
          <t>See <xref target="NSTMessage"/> for details regarding the use of the max_early_data_size field.</t>
          <t>The parameters for the 0-RTT data (version, symmetric cipher suite,
Application-Layer Protocol Negotiation (ALPN) <xref target="RFC7301"/> protocol,
etc.) are those associated with the PSK in use.
For externally provisioned PSKs, the associated values are those
provisioned along with the key.  For PSKs established via a NewSessionTicket
message, the associated values are those which were negotiated in the connection
which established the PSK. The PSK used to encrypt the early data
<bcp14>MUST</bcp14> be the first PSK listed in the client's "pre_shared_key" extension.</t>
          <t>For PSKs provisioned via NewSessionTicket, a server <bcp14>MUST</bcp14> validate that
the ticket age for the selected PSK identity (computed by subtracting
ticket_age_add from PskIdentity.obfuscated_ticket_age modulo 2<sup>32</sup>)
is within a small tolerance of the
time since the ticket was issued (see <xref target="anti-replay"/>).  If it is not,
the server <bcp14>SHOULD</bcp14> proceed with the handshake but reject 0-RTT, and
<bcp14>SHOULD NOT</bcp14> take any other action that assumes that this ClientHello is
fresh.</t>
          <t>0-RTT messages sent in the first flight have the same (encrypted) content types
as messages of the same type sent in other flights (handshake and
application_data) but are protected under
different keys.  After receiving the server's Finished message, if the
server has accepted early data, an EndOfEarlyData message
will be sent to indicate the key change. This message will be encrypted
with the 0-RTT traffic keys.</t>
          <t>A server which receives an "early_data" extension
<bcp14>MUST</bcp14> behave in one of three ways:</t>
          <ul spacing="normal">
            <li>
              <t>Ignore the extension and return a regular 1-RTT response.  The server then
skips past early data by attempting to deprotect received records using the handshake traffic
key, discarding records which fail deprotection (up to the configured max_early_data_size).
Once a record is deprotected
successfully, it is treated as the start of the client's second flight
and the server proceeds as with an ordinary 1-RTT handshake.</t>
            </li>
            <li>
              <t>Request that the client send another ClientHello by responding with a
HelloRetryRequest.  A client <bcp14>MUST NOT</bcp14> include the "early_data" extension in
its followup ClientHello.  The server then ignores early data by skipping
all records with an external content type of "application_data" (indicating
that they are encrypted), up to the configured max_early_data_size.</t>
            </li>
            <li>
              <t>Return its own "early_data" extension in EncryptedExtensions,
indicating that it intends to
process the early data. It is not possible for the server
to accept only a subset of the early data messages.
Even though the server sends a message accepting early data, the actual early
data itself may already be in flight by the time the server generates this message.</t>
            </li>
          </ul>
          <t>In order to accept early data, the server <bcp14>MUST</bcp14> have selected the first
key offered in the client's "pre_shared_key" extension. In addition,
it <bcp14>MUST</bcp14> verify that the following values are the same as those
associated with the selected PSK:</t>
          <ul spacing="normal">
            <li>
              <t>The selected TLS version number</t>
            </li>
            <li>
              <t>The selected cipher suite</t>
            </li>
            <li>
              <t>The selected ALPN <xref target="RFC7301"/> protocol, if any</t>
            </li>
          </ul>
          <t>These requirements are a superset of those needed to perform a 1-RTT
handshake using the PSK in question.</t>
          <t>Future extensions <bcp14>MUST</bcp14> define their interaction with 0-RTT.</t>
          <t>If any of these checks fail, the server <bcp14>MUST NOT</bcp14> respond
with the extension and must discard all the first-flight
data using one of the first two mechanisms listed above
(thus falling back to 1-RTT or 2-RTT). If the client attempts
a 0-RTT handshake but the server rejects it, the server will generally
not have the 0-RTT record protection keys and must instead
use trial decryption (either with the 1-RTT handshake keys or
by looking for a cleartext ClientHello in the case of a HelloRetryRequest) to
find the first non-0-RTT message.</t>
          <t>If the server chooses to accept the "early_data" extension,
then it <bcp14>MUST</bcp14> comply with the same error-handling requirements
specified for all records when processing early data records.
Specifically, if the server fails to decrypt a 0-RTT record following
an accepted "early_data" extension, it <bcp14>MUST</bcp14> terminate the connection
with a "bad_record_mac" alert as per <xref target="record-payload-protection"/>.</t>
          <t>If the server rejects the "early_data" extension, the client
application <bcp14>MAY</bcp14> opt to retransmit the Application Data previously
sent in early data once the handshake has
been completed.  Note that automatic retransmission of early data
could result in incorrect assumptions regarding the status of the connection. For instance, when the negotiated connection selects a
different ALPN protocol from what was used for the early data, an
application might need to construct different messages.  Similarly, if
early data assumes anything about the connection state, it might be
sent in error after the handshake completes.</t>
          <t>A TLS implementation <bcp14>SHOULD NOT</bcp14> automatically resend early data;
applications are in a better position to decide when retransmission
is appropriate. A TLS implementation <bcp14>MUST NOT</bcp14> automatically resend
early data unless the negotiated connection selects the same ALPN
protocol.</t>
        </section>
        <section anchor="pre-shared-key-extension">
          <name>Pre-Shared Key Extension</name>
          <t>The "pre_shared_key" extension is used to negotiate the identity of the
pre-shared key to be used with a given handshake in association
with PSK key establishment.</t>
          <t>The "extension_data" field of this extension contains a
"PreSharedKeyExtension" value:</t>
          <artwork><![CDATA[
   struct {
       opaque identity<1..2^16-1>;
       uint32 obfuscated_ticket_age;
   } PskIdentity;

   opaque PskBinderEntry<32..255>;

   struct {
       PskIdentity identities<7..2^16-1>;
       PskBinderEntry binders<33..2^16-1>;
   } OfferedPsks;

   struct {
       select (Handshake.msg_type) {
           case client_hello: OfferedPsks;
           case server_hello: uint16 selected_identity;
       };
   } PreSharedKeyExtension;
]]></artwork>
          <dl>
            <dt>identity:</dt>
            <dd>
              <t>A label for a key. For instance, a ticket (as defined
in <xref target="ticket-establishment"/>) or a label for a pre-shared key
established externally.</t>
            </dd>
            <dt>obfuscated_ticket_age:</dt>
            <dd>
              <t>An obfuscated version of the age of the key.
<xref target="ticket-age"/> describes how to form this value
for identities established via the NewSessionTicket message.
For identities established externally, an obfuscated_ticket_age of 0
<bcp14>SHOULD</bcp14> be used, and servers <bcp14>MUST</bcp14> ignore the value.</t>
            </dd>
            <dt>identities:</dt>
            <dd>
              <t>A list of the identities that the client is willing
to negotiate with the server. If sent alongside the "early_data"
extension (see <xref target="early-data-indication"/>), the first identity is the
one used for 0-RTT data.</t>
            </dd>
            <dt>binders:</dt>
            <dd>
              <t>A series of HMAC values, one for
each value in the identities list and in the same
order, computed as described below.</t>
            </dd>
            <dt>selected_identity:</dt>
            <dd>
              <t>The server's chosen identity expressed as a (0-based) index into
the identities in the client's "OfferedPsks.identities" list.</t>
            </dd>
          </dl>
          <t>Each PSK is associated with a single Hash algorithm. For PSKs established
via the ticket mechanism (<xref target="NSTMessage"/>), this is the KDF Hash algorithm
on the connection where the ticket was established.
For externally established PSKs, the Hash algorithm <bcp14>MUST</bcp14> be set when the
PSK is established or default to SHA-256 if no such algorithm
is defined. The server <bcp14>MUST</bcp14> ensure that it selects a compatible
PSK (if any) and cipher suite.</t>
          <t>In TLS versions prior to TLS 1.3, the Server Name Indication (SNI) value was
intended to be associated with the session (<xref section="3" sectionFormat="of" target="RFC6066"/>), with the
server being required to enforce that the SNI value associated with the session
matches the one specified in the resumption handshake.  However, in reality the
implementations were not consistent on which of two supplied SNI values they
would use, leading to the consistency requirement being de facto enforced by the
clients.  In TLS 1.3, the SNI value is always explicitly specified in the
resumption handshake, and there is no need for the server to associate an SNI value with the
ticket. Clients, however, <bcp14>SHOULD</bcp14> store the SNI with the PSK to fulfill
the requirements of <xref target="NSTMessage"/>.</t>
          <t>Implementor's note: When session resumption is the primary use case of PSKs,
the most straightforward way to implement the
PSK/cipher suite matching requirements is to negotiate the cipher
suite first and then exclude any incompatible PSKs. Any unknown PSKs
(e.g., ones not in the PSK database or encrypted with an
unknown key) <bcp14>SHOULD</bcp14> simply be ignored. If no acceptable PSKs are
found, the server <bcp14>SHOULD</bcp14> perform a non-PSK handshake if possible.
If backward compatibility is important, client-provided, externally
established PSKs <bcp14>SHOULD</bcp14> influence cipher suite selection.</t>
          <t>Prior to accepting PSK key establishment, the server <bcp14>MUST</bcp14> validate the
corresponding binder value (see <xref target="psk-binder"/> below). If this value is
not present or does not validate, the server <bcp14>MUST</bcp14> abort the handshake.
Servers <bcp14>SHOULD NOT</bcp14> attempt to validate multiple binders; rather, they
<bcp14>SHOULD</bcp14> select a single PSK and validate solely the binder that
corresponds to that PSK.
See <xref target="client-hello-recording"/> and <xref target="psk-identity-exposure"/> for the
security rationale for this requirement.
To accept PSK key establishment, the
server sends a "pre_shared_key" extension indicating the selected
identity.</t>
          <t>Clients <bcp14>MUST</bcp14> verify that the server's selected_identity is within the
range supplied by the client, that the server selected a cipher suite
indicating a Hash associated with the PSK, and that a server
"key_share" extension is present if required by the
ClientHello "psk_key_exchange_modes" extension. If these values are not
consistent, the client <bcp14>MUST</bcp14> abort the handshake with an
"illegal_parameter" alert.</t>
          <t>If the server supplies an "early_data" extension, the client <bcp14>MUST</bcp14>
verify that the server's selected_identity is 0. If any
other value is returned, the client <bcp14>MUST</bcp14> abort the handshake
with an "illegal_parameter" alert.</t>
          <t>The "pre_shared_key" extension <bcp14>MUST</bcp14> be the last extension in the
ClientHello (this facilitates implementation as described
below). Servers <bcp14>MUST</bcp14> check that it is the last extension and otherwise
fail the handshake with an "illegal_parameter" alert.</t>
          <section anchor="ticket-age">
            <name>Ticket Age</name>
            <t>The client's view of the age of a ticket is the time since the receipt
of the NewSessionTicket message. Clients <bcp14>MUST NOT</bcp14> attempt to use
tickets which have ages greater than the "ticket_lifetime" value which
was provided with the ticket. The "obfuscated_ticket_age" field of
each PskIdentity contains an obfuscated version of the ticket age
formed by taking the age in milliseconds and adding the "ticket_age_add"
value that was included with the ticket (see <xref target="NSTMessage"/>), modulo 2<sup>32</sup>.
This addition prevents passive observers from correlating connections
unless tickets or key shares are reused. Note that the "ticket_lifetime" field in
the NewSessionTicket message is in seconds but the "obfuscated_ticket_age"
is in milliseconds. Because ticket lifetimes are
restricted to a week, 32 bits is enough to represent any plausible
age, even in milliseconds.</t>
          </section>
          <section anchor="psk-binder">
            <name>PSK Binder</name>
            <t>The PSK binder value forms a binding between a PSK and the current
handshake, as well as a binding between the handshake in which the PSK was
generated (if via a NewSessionTicket message) and the current handshake.
Each entry in the binders list is computed as an HMAC
over a transcript hash (see <xref target="the-transcript-hash"/>) containing a partial ClientHello
up to and including the PreSharedKeyExtension.identities field. That
is, it includes all of the ClientHello but not the binders list
itself. The length fields for the message (including the overall
length, the length of the extensions block, and the length of the
"pre_shared_key" extension) are all set as if binders of the correct
lengths were present.</t>
            <t>The PskBinderEntry is computed in the same way as the Finished
message (<xref target="finished"/>) but with the BaseKey being the binder_key
derived via the key schedule from the corresponding PSK which
is being offered (see <xref target="key-schedule"/>).</t>
            <t>If the handshake includes a HelloRetryRequest, the initial ClientHello
and HelloRetryRequest are included in the transcript along with the
new ClientHello.  For instance, if the client sends ClientHello1, its
binder will be computed over:</t>
            <artwork><![CDATA[
   Transcript-Hash(Truncate(ClientHello1))
]]></artwork>
            <t>Where Truncate() removes the binders list from the ClientHello.
Note that this hash will be computed using the hash associated with
the PSK, as the client does not know which cipher suite the server
will select.</t>
            <t>If the server responds with a HelloRetryRequest and the client then sends
ClientHello2, its binder will be computed over:</t>
            <artwork><![CDATA[
   Transcript-Hash(ClientHello1,
                   HelloRetryRequest,
                   Truncate(ClientHello2))
]]></artwork>
            <t>The full ClientHello1/ClientHello2 is included in all other handshake hash computations.
Note that in the first flight, Truncate(ClientHello1) is hashed directly,
but in the second flight, ClientHello1 is hashed and then reinjected as a
"message_hash" message, as described in <xref target="the-transcript-hash"/>.
Note that the "message_hash" will be hashed with the negotiated function,
which may or may not match the hash associated with the PSK. This is
consistent with how the transcript is calculated for the rest
of the handshake.</t>
          </section>
          <section anchor="processing-order">
            <name>Processing Order</name>
            <t>Clients are permitted to "stream" 0-RTT data until they
receive the server's Finished, only then sending the EndOfEarlyData
message, followed by the rest of the handshake.
In order to avoid deadlocks, when accepting "early_data",
servers <bcp14>MUST</bcp14> process the client's ClientHello and then immediately
send their flight of messages, rather than waiting for the client's
EndOfEarlyData message before sending its ServerHello.</t>
          </section>
        </section>
      </section>
      <section anchor="server-parameters">
        <name>Server Parameters</name>
        <t>The next two messages from the server, EncryptedExtensions and
CertificateRequest, contain information from the server
that determines the rest of the handshake. These messages
are encrypted with keys derived from the server_handshake_traffic_secret.</t>
        <section anchor="encrypted-extensions">
          <name>Encrypted Extensions</name>
          <t>In all handshakes, the server <bcp14>MUST</bcp14> send the
EncryptedExtensions message immediately after the
ServerHello message. This is the first message that is encrypted
under keys derived from the server_handshake_traffic_secret.</t>
          <t>The EncryptedExtensions message contains extensions
that can be protected, i.e., any which are not needed to
establish the cryptographic context but which are not
associated with individual certificates. The client
<bcp14>MUST</bcp14> check EncryptedExtensions for the presence of any forbidden
extensions and if any are found <bcp14>MUST</bcp14> abort the handshake with an
"illegal_parameter" alert.</t>
          <t>Structure of this message:</t>
          <sourcecode><![CDATA[
   struct {
       Extension extensions<0..2^16-1>;
   } EncryptedExtensions;
]]></sourcecode>
          <dl>
            <dt>extensions:</dt>
            <dd>
              <t>A list of extensions. For more information, see the table in <xref target="extensions"/>.</t>
            </dd>
          </dl>
        </section>
        <section anchor="certificate-request">
          <name>Certificate Request</name>
          <t>A server which is authenticating with a certificate <bcp14>MAY</bcp14> optionally
request a certificate from the client. This message, if sent, <bcp14>MUST</bcp14>
follow EncryptedExtensions.</t>
          <t>Structure of this message:</t>
          <sourcecode><![CDATA[
   struct {
       opaque certificate_request_context<0..2^8-1>;
       Extension extensions<0..2^16-1>;
   } CertificateRequest;
]]></sourcecode>
          <dl>
            <dt>certificate_request_context:</dt>
            <dd>
              <t>An opaque string which identifies the certificate request and
which will be echoed in the client's Certificate message. The
certificate_request_context <bcp14>MUST</bcp14> be unique within the scope
of this connection (thus preventing replay of client
CertificateVerify messages). This field <bcp14>SHALL</bcp14> be zero length
unless used for the post-handshake authentication exchanges
described in <xref target="post-handshake-authentication"/>.
When requesting post-handshake authentication, the server <bcp14>SHOULD</bcp14>
make the context unpredictable to the client (e.g., by
randomly generating it) to prevent an attacker who
has temporary access to the client's private key from
pre-computing valid CertificateVerify messages.</t>
            </dd>
            <dt>extensions:</dt>
            <dd>
              <t>A list of extensions describing the parameters of the
certificate being requested. The "signature_algorithms"
extension <bcp14>MUST</bcp14> be specified, and other extensions may optionally be
included if defined for this message.
Clients <bcp14>MUST</bcp14> ignore unrecognized extensions.</t>
            </dd>
          </dl>
          <t>In prior versions of TLS, the CertificateRequest message
carried a list of signature algorithms and certificate authorities
which the server would accept. In TLS 1.3, the former is expressed
by sending the "signature_algorithms" and optionally "signature_algorithms_cert"
extensions. The latter is
expressed by sending the "certificate_authorities" extension
(see <xref target="certificate-authorities"/>).</t>
          <t>Servers which are authenticating with a resumption PSK <bcp14>MUST NOT</bcp14> send the
CertificateRequest message in the main handshake, though they
<bcp14>MAY</bcp14> send it in post-handshake authentication (see <xref target="post-handshake-authentication"/>)
provided that the client has sent the "post_handshake_auth"
extension (see <xref target="post_handshake_auth"/>). 
 In the absence of some other specification to the contrary,
servers which are authenticating with an external PSK
<bcp14>MUST NOT</bcp14> send the CertificateRequest message in the main handshake
or request post-handshake authentication.
<xref target="RFC8773"/> provides an extension to permit this
but has received less analysis than this specification.</t>
        </section>
      </section>
      <section anchor="authentication-messages">
        <name>Authentication Messages</name>
        <t>As discussed in <xref target="protocol-overview"/>, TLS generally uses a common
set of messages for authentication, key confirmation, and handshake
integrity: Certificate, CertificateVerify, and Finished.
(The PSK binders also perform key confirmation, in a
similar fashion.) These three
messages are always sent as the last messages in their handshake
flight. The Certificate and CertificateVerify messages are only
sent under certain circumstances, as defined below. The Finished
message is always sent as part of the Authentication Block.
 These messages are encrypted under keys derived from the
[sender]_handshake_traffic_secret,
except for post-handshake authentication.</t>
        <t>The computations for the Authentication messages all uniformly
take the following inputs:</t>
        <ul spacing="normal">
          <li>
            <t>The certificate and signing key to be used.</t>
          </li>
          <li>
            <t>A Handshake Context consisting of the list of messages to be
included in the transcript hash.</t>
          </li>
          <li>
            <t>A Base Key to be used to compute a MAC key.</t>
          </li>
        </ul>
        <t>Based on these inputs, the messages then contain:</t>
        <dl>
          <dt>Certificate:</dt>
          <dd>
            <t>The certificate to be used for authentication, and any
supporting certificates in the chain. Note that certificate-based
client authentication is not available in PSK handshake flows
(including 0-RTT).</t>
          </dd>
          <dt>CertificateVerify:</dt>
          <dd>
            <t>A signature over the value Transcript-Hash(Handshake Context, Certificate).</t>
          </dd>
          <dt>Finished:</dt>
          <dd>
            <t>A MAC over the value Transcript-Hash(Handshake Context, Certificate, CertificateVerify)
using a MAC key derived from the Base Key.</t>
          </dd>
        </dl>
        <!-- [rfced] Table 2 extends one character line beyond the width limit.  We will play with this in the RFCXML file, but please let us know if you see a good way to break the lines differently. 
-->

<t>The following table defines the Handshake Context and MAC Base Key
for each scenario:</t>
        <table anchor="hs-ctx-and-keys">
          <name>Authentication Inputs</name>
          <thead>
            <tr>
              <th align="left">Mode</th>
              <th align="left">Handshake Context</th>
              <th align="left">Base Key</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Server</td>
              <td align="left">ClientHello ... later of EncryptedExtensions/CertificateRequest</td>
              <td align="left">server_handshake_traffic_secret</td>
            </tr>
            <tr>
              <td align="left">Client</td>
              <td align="left">ClientHello ... later of server Finished/EndOfEarlyData</td>
              <td align="left">client_handshake_traffic_secret</td>
            </tr>
            <tr>
              <td align="left">Post-Handshake</td>
              <td align="left">ClientHello ... client Finished + CertificateRequest</td>
              <td align="left">[sender]_application_traffic_secret_N</td>
            </tr>
          </tbody>
        </table>
        <section anchor="the-transcript-hash">
          <name>The Transcript Hash</name>
          <t>Many of the cryptographic computations in TLS make use of a transcript
hash. This value is computed by hashing the concatenation of
each included handshake message, including the handshake
message header carrying the handshake message type and length fields,
but not including record layer headers. I.e.,</t>
          <artwork><![CDATA[
 Transcript-Hash(M1, M2, ... Mn) = Hash(M1 || M2 || ... || Mn)
]]></artwork>
          <t>As an exception to this general rule, when the server responds to a
ClientHello with a HelloRetryRequest, the value of ClientHello1 is
replaced with a special synthetic handshake message of handshake
type "message_hash" containing Hash(ClientHello1). I.e.,</t>
          <artwork><![CDATA[
 Transcript-Hash(ClientHello1, HelloRetryRequest, ... Mn) =
     Hash(message_hash ||        /* Handshake type */
          00 00 Hash.length  ||   /* Handshake message length (bytes) */
          Hash(ClientHello1) ||  /* Hash of ClientHello1 */
          HelloRetryRequest  || ... || Mn)
]]></artwork>
          <t>The reason for this construction is to allow the server to do a
stateless HelloRetryRequest by storing just the hash of ClientHello1
in the cookie, rather than requiring it to export the entire intermediate
hash state (see <xref target="cookie"/>).</t>
          <t>For concreteness, the transcript hash is always taken from the
following sequence of handshake messages, starting at the first
ClientHello and including only those messages that were sent:
ClientHello, HelloRetryRequest, ClientHello, ServerHello,
EncryptedExtensions, server CertificateRequest, server Certificate,
server CertificateVerify, server Finished, EndOfEarlyData, client
Certificate, client CertificateVerify, and client Finished.</t>
          <t>In general, implementations can implement the transcript by keeping a
running transcript hash value based on the negotiated hash. Note, however,
that subsequent post-handshake authentications do not include
each other, just the messages through the end of the main handshake.</t>
        </section>
        <section anchor="certificate">
          <name>Certificate</name>
          <t>This message conveys the endpoint's certificate chain to the peer.</t>
          <t>The server <bcp14>MUST</bcp14> send a Certificate message whenever the agreed-upon
key exchange method uses certificates for authentication (this
includes all key exchange methods defined in this document except PSK).</t>
          <t>The client <bcp14>MUST</bcp14> send a Certificate message if and only if the server has
requested certificate-based client authentication via a CertificateRequest message
(<xref target="certificate-request"/>). If the server requests certificate-based client authentication
but no suitable certificate is available, the client
<bcp14>MUST</bcp14> send a Certificate message containing no certificates (i.e., with
the "certificate_list" field having length 0).  A Finished message <bcp14>MUST</bcp14>
be sent regardless of whether the Certificate message is empty.</t>
          <t>Structure of this message:</t>
          <sourcecode><![CDATA[
       enum {
           X509(0),
           RawPublicKey(2),
           (255)
       } CertificateType;

       struct {
           select (certificate_type) {
               case RawPublicKey:
                 /* From RFC 7250 ASN.1_subjectPublicKeyInfo */
                 opaque ASN1_subjectPublicKeyInfo<1..2^24-1>;

               case X509:
                 opaque cert_data<1..2^24-1>;
           };
           Extension extensions<0..2^16-1>;
       } CertificateEntry;

       struct {
           opaque certificate_request_context<0..2^8-1>;
           CertificateEntry certificate_list<0..2^24-1>;
       } Certificate;
]]></sourcecode>
          <dl>
            <dt>certificate_request_context:</dt>
            <dd>
              <t>If this message is in response to a CertificateRequest, the
value of certificate_request_context in that message. Otherwise
(in the case of server authentication), this field <bcp14>SHALL</bcp14> be zero length.</t>
            </dd>
            <dt>certificate_list:</dt>
            <dd>
              <t>A list (chain) of CertificateEntry structures, each
containing a single certificate and list of extensions.</t>
            </dd>
            <dt>extensions:</dt>
            <dd>
              <t>A list of extension values for the CertificateEntry. The "Extension"
format is defined in <xref target="extensions"/>. Valid extensions for server certificates
at present include the OCSP Status extension <xref target="RFC6066"/> and the
SignedCertificateTimestamp extension <xref target="RFC6962"/>; future extensions may
be defined for this message as well. Extensions in the Certificate
message from the server <bcp14>MUST</bcp14> correspond to ones from the ClientHello message.
Extensions in the Certificate message from the client <bcp14>MUST</bcp14> correspond to
extensions in the CertificateRequest message from the server.
If an extension applies to the entire chain, it <bcp14>SHOULD</bcp14> be included
in the first CertificateEntry.</t>
            </dd>
          </dl>
          <t>If the corresponding certificate type extension
("server_certificate_type" or "client_certificate_type") was not negotiated
in EncryptedExtensions, or the X.509 certificate type was negotiated, then each
CertificateEntry contains a DER-encoded X.509 certificate. The sender's
certificate <bcp14>MUST</bcp14> come in the first CertificateEntry in the list.  Each
following certificate <bcp14>SHOULD</bcp14> directly certify the one immediately preceding it.
Because certificate validation requires that trust anchors be
distributed independently, a certificate that specifies a trust anchor
<bcp14>MAY</bcp14> be omitted from the chain, provided that supported peers are known
to possess any omitted certificates.</t>
          <t>Note: Prior to TLS 1.3, "certificate_list" ordering required each certificate
to certify the one immediately preceding it;
however, some implementations allowed some flexibility. Servers sometimes send
both a current and deprecated intermediate for transitional purposes, and others
are simply configured incorrectly, but these cases can nonetheless be validated
properly. For maximum compatibility, all implementations <bcp14>SHOULD</bcp14> be prepared to
handle potentially extraneous certificates and arbitrary orderings from any TLS
version, with the exception of the end-entity certificate which <bcp14>MUST</bcp14> be first.</t>
          <t>If the RawPublicKey certificate type was negotiated, then the
certificate_list <bcp14>MUST</bcp14> contain no more than one CertificateEntry, which
contains an ASN1_subjectPublicKeyInfo value as defined in <xref section="3" sectionFormat="comma" target="RFC7250"/>.</t>
          <t>The OpenPGP certificate type <xref target="RFC6091"/> <bcp14>MUST NOT</bcp14> be used with TLS 1.3.</t>
          <t>The server's certificate_list <bcp14>MUST</bcp14> always be non-empty. A client will
send an empty certificate_list if it does not have an appropriate
certificate to send in response to the server's authentication
request.</t>
          <section anchor="ocsp-and-sct">
            <name>OCSP Status and SCT Extensions</name>
            <t><xref target="RFC6066"/> and <xref target="RFC6961"/> provide extensions to negotiate the server
sending OCSP responses to the client. In TLS 1.2 and below, the
server replies with an empty extension to indicate negotiation of this
extension and the OCSP information is carried in a CertificateStatus
message. In TLS 1.3, the server's OCSP information is carried in
an extension in the CertificateEntry containing the associated
certificate. Specifically, the body of the "status_request" extension
from the server <bcp14>MUST</bcp14> be a CertificateStatus structure as defined
in <xref target="RFC6066"/>, which is interpreted as defined in <xref target="RFC6960"/>.</t>
            <t>Note: The status_request_v2 extension <xref target="RFC6961"/> is deprecated. TLS 1.3 servers
<bcp14>MUST NOT</bcp14> act upon its presence or information in it when processing ClientHello messages; in particular, they <bcp14>MUST NOT</bcp14> send the status_request_v2 extension in the
EncryptedExtensions, CertificateRequest, or Certificate messages.
TLS 1.3 servers <bcp14>MUST</bcp14> be able to process ClientHello messages that include it,
as it <bcp14>MAY</bcp14> be sent by clients that wish to use it in earlier protocol versions.</t>
            <t>A server <bcp14>MAY</bcp14> request that a client present an OCSP response with its
certificate by sending an empty "status_request" extension in its
CertificateRequest message. If the client opts to send an OCSP response, the
body of its "status_request" extension <bcp14>MUST</bcp14> be a CertificateStatus structure as
defined in <xref target="RFC6066"/>.</t>
            <t>Similarly, <xref target="RFC6962"/> provides a mechanism for a server to send a
Signed Certificate Timestamp (SCT) as an extension in the ServerHello
in TLS 1.2 and below.
In TLS 1.3, the server's SCT information is carried in an extension in the
CertificateEntry.</t>
          </section>
          <section anchor="certificate-selection">
            <name>Certificate Selection</name>
            <t>The following rules apply to the certificates sent by the client or server:</t>
            <ul spacing="normal">
              <li>
                <t>The certificate type <bcp14>MUST</bcp14> be X.509v3 <xref target="RFC5280"/>, unless explicitly negotiated
otherwise (e.g., <xref target="RFC7250"/>).</t>
              </li>
              <li>
                <t>The end-entity certificate <bcp14>MUST</bcp14> allow the key to be used for signing with
a signature scheme indicated in the peer's "signature_algorithms"
extension (see <xref target="signature-algorithms"/>). That is, the digitalSignature bit
<bcp14>MUST</bcp14> be set if the Key Usage extension is present, and the public key (with
associated restrictions) <bcp14>MUST</bcp14> be compatible with some supported signature
scheme.</t>
              </li>
              <li>
                <t>If the peer sent a "certificate_authorities" extension, at least one of the
certificates in the certificate chain <bcp14>SHOULD</bcp14> be issued by one of the listed
CAs.</t>
              </li>
            </ul>
            <t>The following rule additionally applies to certificates sent by the client:</t>
            <ul spacing="normal">
              <li>
                <t>If the CertificateRequest message contained a non-empty "oid_filters"
extension, the end-entity certificate <bcp14>MUST</bcp14> match the extension OIDs
that are recognized by the client, as described in <xref target="oid-filters"/>.</t>
              </li>
            </ul>
            <t>The following rule additionally applies to certificates sent by the server:</t>
            <ul spacing="normal">
              <li>
                <t>The "server_name" <xref target="RFC6066"/> extension is used to guide certificate
selection. As servers <bcp14>MAY</bcp14> require the presence of the "server_name" extension,
clients <bcp14>SHOULD</bcp14> send this extension when the server is identified by name.</t>
              </li>
            </ul>
            <t>All certificates provided by the sender <bcp14>MUST</bcp14> be signed by a
signature algorithm advertised by the peer, if it is able to provide such
a chain (see <xref target="signature-algorithms"/>).
Certificates that are self-signed
or certificates that are expected to be trust anchors are not validated as
part of the chain and therefore <bcp14>MAY</bcp14> be signed with any algorithm.</t>
            <t>If the sender is the server, and the server
cannot produce a certificate chain that is signed only via the
indicated supported algorithms, then it <bcp14>SHOULD</bcp14> continue the handshake by sending
a certificate chain of its choice that may include algorithms that are not known
to be supported by the client.
This fallback chain <bcp14>MUST NOT</bcp14> use the deprecated SHA-1 hash,
unless the client specifically advertises that it is willing to accept SHA-1.</t>
            <t>If the sender is the client, the client <bcp14>MAY</bcp14> use a fallback chain as above or
continue the handshake anonymously.</t>
            <t>If the receiver cannot construct an acceptable chain using the provided
certificates and decides to abort the handshake, then it <bcp14>MUST</bcp14> abort the
handshake with an appropriate certificate-related alert (by default,
"unsupported_certificate"; see <xref target="error-alerts"/> for more information).</t>
            <t>If the sender has multiple certificates, it chooses one of them based on the
above-mentioned criteria (in addition to other criteria, such as transport-layer endpoint, local configuration, and preferences).</t>
          </section>
          <section anchor="receiving-a-certificate-message">
            <name>Receiving a Certificate Message</name>
            <t>In general, detailed certificate validation procedures are out of scope for
TLS (see <xref target="RFC5280"/>). This section provides TLS-specific requirements.</t>
            <t>If the server supplies an empty Certificate message, the client <bcp14>MUST</bcp14> abort
the handshake with a "decode_error" alert.</t>
            <t>If the client does not send any certificates (i.e., it sends an empty
Certificate message),
the server <bcp14>MAY</bcp14> at its discretion either continue the handshake without client
authentication, or abort the handshake with a "certificate_required" alert. Also, if some
aspect of the certificate chain was unacceptable (e.g., it was not signed by a
known, trusted CA), the server <bcp14>MAY</bcp14> at its discretion either continue the
handshake (considering the client unauthenticated) or abort the handshake.</t>
            <t>Any endpoint receiving any certificate which it would need to validate
using any signature algorithm using an MD5 hash <bcp14>MUST</bcp14> abort the
handshake with a "bad_certificate" alert.  SHA-1 is deprecated and it
is <bcp14>RECOMMENDED</bcp14> that any endpoint receiving any certificate which it
would need to validate using any signature algorithm using a SHA-1
hash abort the handshake with a "bad_certificate" alert. For clarity,
this means that endpoints can accept these algorithms for
certificates that are self-signed or are trust anchors.</t>
            <t>All endpoints are <bcp14>RECOMMENDED</bcp14> to transition to SHA-256 or better as soon
as possible to maintain interoperability with implementations
currently in the process of phasing out SHA-1 support.</t>
            <t>Note that a certificate containing a key for one signature algorithm
<bcp14>MAY</bcp14> be signed using a different signature algorithm (for instance,
an RSA key signed with an ECDSA key).</t>
          </section>
        </section>
        <section anchor="certificate-verify">
          <name>Certificate Verify</name>
          <t>This message is used to provide explicit proof that an endpoint
possesses the private key corresponding to its certificate.
The CertificateVerify message also provides integrity for the handshake up
to this point. Servers <bcp14>MUST</bcp14> send this message when authenticating via a certificate.
Clients <bcp14>MUST</bcp14> send this message whenever authenticating via a certificate (i.e., when
the Certificate message is non-empty). When sent, this message <bcp14>MUST</bcp14> appear immediately
after the Certificate message and immediately prior to the Finished message.</t>
          <t>Structure of this message:</t>
          <sourcecode><![CDATA[
   struct {
       SignatureScheme algorithm;
       opaque signature<0..2^16-1>;
   } CertificateVerify;
]]></sourcecode>
          <t>The algorithm field specifies the signature algorithm used (see
<xref target="signature-algorithms"/> for the definition of this type). The
signature is a digital signature using that algorithm. The
content that is covered under the signature is the hash output as described in
<xref target="the-transcript-hash"/>, namely:</t>
          <artwork><![CDATA[
   Transcript-Hash(Handshake Context, Certificate)
]]></artwork>
          <t>The digital signature is then computed over the concatenation of:</t>
          <ul spacing="normal">
            <li>
              <t>A string that consists of octet 32 (0x20) repeated 64 times</t>
            </li>
            <li>
              <t>The context string (defined below)</t>
            </li>
            <li>
              <t>A single 0 byte which serves as the separator</t>
            </li>
            <li>
              <t>The content to be signed</t>
            </li>
          </ul>
          <t>This structure is intended to prevent an attack on previous versions
of TLS in which the ServerKeyExchange format meant that
attackers could obtain a signature of a message with a chosen 32-byte
prefix (ClientHello.random). The initial 64-byte pad clears that prefix
along with the server-controlled ServerHello.random.</t>
          <t>The context string for a server signature is
"TLS 1.3, server CertificateVerify".
The context string for a client signature is
"TLS 1.3, client CertificateVerify".
It is used to provide separation between signatures made in different
contexts, helping against potential cross-protocol attacks.</t>
          <t>For example, if the transcript hash was 32 bytes of
01 (this length would make sense for SHA-256), the content covered by
the digital signature for a server CertificateVerify would be:</t>
          <artwork><![CDATA[
   2020202020202020202020202020202020202020202020202020202020202020
   2020202020202020202020202020202020202020202020202020202020202020
   544c5320312e332c207365727665722043657274696669636174655665726966
   79
   00
   0101010101010101010101010101010101010101010101010101010101010101
]]></artwork>
          <t>On the sender side, the process for computing the signature field of the
CertificateVerify message takes as input:</t>
          <ul spacing="normal">
            <li>
              <t>The content covered by the digital signature</t>
            </li>
            <li>
              <t>The private signing key corresponding to the certificate sent in the
previous message</t>
            </li>
          </ul>
          <t>If the CertificateVerify message is sent by a server, the signature
algorithm <bcp14>MUST</bcp14> be one offered in the client's "signature_algorithms" extension
unless no valid certificate chain can be produced without unsupported
algorithms (see <xref target="signature-algorithms"/>).</t>
          <t>If sent by a client, the signature algorithm used in the signature
<bcp14>MUST</bcp14> be one of those present in the supported_signature_algorithms
field of the "signature_algorithms" extension in the CertificateRequest message.</t>
          <t>In addition, the signature algorithm <bcp14>MUST</bcp14> be compatible with the key
in the sender's end-entity certificate. RSA signatures <bcp14>MUST</bcp14> use an
RSASSA-PSS algorithm, regardless of whether RSASSA-PKCS1-v1_5 algorithms
appear in "signature_algorithms". The SHA-1 algorithm <bcp14>MUST NOT</bcp14> be used
in any signatures of CertificateVerify messages.
All SHA-1 signature algorithms in this specification are defined solely
for use in legacy certificates and are not valid for CertificateVerify
signatures.</t>
          <t>The receiver of a CertificateVerify message <bcp14>MUST</bcp14> verify the signature field.
The verification process takes as input:</t>
          <ul spacing="normal">
            <li>
              <t>The content covered by the digital signature</t>
            </li>
            <li>
              <t>The public key contained in the end-entity certificate found in the
associated Certificate message</t>
            </li>
            <li>
              <t>The digital signature received in the signature field of the
CertificateVerify message</t>
            </li>
          </ul>
          <t>If the verification fails, the receiver <bcp14>MUST</bcp14> terminate the handshake
with a "decrypt_error" alert.</t>
        </section>
        <section anchor="finished">
          <name>Finished</name>
          <t>The Finished message is the final message in the Authentication
Block. It is essential for providing authentication of the handshake
and of the computed keys.</t>
          <t>Recipients of Finished messages <bcp14>MUST</bcp14> verify that the contents are
correct and if incorrect <bcp14>MUST</bcp14> terminate the connection
with a "decrypt_error" alert.</t>
          <t>Once a side has sent its Finished message and has received and
validated the Finished message from its peer, it may begin to send and
receive Application Data over the connection. There are two
settings in which it is permitted to send data prior to
receiving the peer's Finished:</t>
          <ol spacing="normal" type="1"><li>
              <t>Clients sending 0-RTT data as described in <xref target="early-data-indication"/>.</t>
            </li>
            <li>
              <t>Servers <bcp14>MAY</bcp14> send data after sending their first flight, but
because the handshake is not yet complete, they have no assurance
of either the peer's identity or its liveness (i.e.,
the ClientHello might have been replayed).</t>
            </li>
          </ol>
          <t>The key used to compute the Finished message is computed from the
Base Key defined in <xref target="authentication-messages"/> using HKDF (see
<xref target="key-schedule"/>). Specifically:</t>
          <sourcecode><![CDATA[
finished_key =
    HKDF-Expand-Label(BaseKey, "finished", "", Hash.length)
]]></sourcecode>
          <t>Structure of this message:</t>
          <sourcecode><![CDATA[
   struct {
       opaque verify_data[Hash.length];
   } Finished;
]]></sourcecode>
          <t>The verify_data value is computed as follows:</t>
          <sourcecode><![CDATA[
   verify_data =
       HMAC(finished_key,
            Transcript-Hash(Handshake Context,
                            Certificate*, CertificateVerify*))
]]></sourcecode>
          <!--[rfced] We believe the intention of this line is to note that the asterisk
has a specific meaning when present.  Please note that we will update the XML to treat this as <dl>.  Currently, kramdown treats this as a bulleted list item:

   * Only included if present.


A definition list will yield the following: 

   *: Only included if present.
-->

<ul spacing="normal">
            <li>
              <t>Only included if present.</t>
            </li>
          </ul>
          <t>HMAC <xref target="RFC2104"/> uses the Hash algorithm for the handshake.
As noted above, the HMAC input can generally be implemented by a running
hash, i.e., just the handshake hash at this point.</t>
          <t>In previous versions of TLS, the verify_data was always 12 octets long. In
TLS 1.3, it is the size of the HMAC output for the Hash used for the handshake.</t>
          <t>Note: Alerts and any other non-handshake record types are not handshake messages
and are not included in the hash computations.</t>
          <t>Any records following a Finished message <bcp14>MUST</bcp14> be encrypted under the
appropriate application traffic key as described in <xref target="updating-traffic-keys"/>.
In particular, this includes any alerts sent by the
server in response to client Certificate and CertificateVerify messages.</t>
        </section>
      </section>
      <section anchor="end-of-early-data">
        <name>End of Early Data</name>
        <artwork><![CDATA[
   struct {} EndOfEarlyData;
]]></artwork>
        <t>If the server sent an "early_data" extension in EncryptedExtensions, the client <bcp14>MUST</bcp14> send an
EndOfEarlyData message after receiving the server Finished.  If the server does
not send an "early_data" extension in EncryptedExtensions, then the client <bcp14>MUST NOT</bcp14> send an
EndOfEarlyData message. This message indicates that all
0-RTT application_data messages, if any, have been transmitted and
that the following records are protected under handshake traffic keys.
Servers <bcp14>MUST NOT</bcp14> send this message, and clients receiving it
<bcp14>MUST</bcp14> terminate the connection with an "unexpected_message" alert.
This message is encrypted under keys derived from the client_early_traffic_secret.</t>
      </section>
      <section anchor="post-handshake-messages">
        <name>Post-Handshake Messages</name>
        <t>TLS also allows other messages to be sent after the main handshake.
These messages use a handshake content type and are encrypted under the
appropriate application traffic key.</t>
        <section anchor="NSTMessage">
          <name>New Session Ticket Message</name>
          <t>If the client's hello contained a suitable "psk_key_exchange_modes" extension
at any time after the server has received the client Finished message,
it <bcp14>MAY</bcp14> send a NewSessionTicket message. This message creates a unique
association between the ticket value and a secret PSK
derived from the resumption secret (see <xref target="cryptographic-computations"/>).</t>
          <t>The client <bcp14>MAY</bcp14> use this PSK for future handshakes by including the
ticket value in the "pre_shared_key" extension in its ClientHello
(<xref target="pre-shared-key-extension"/>).
 Clients which receive a NewSessionTicket message but do
not support resumption <bcp14>MUST</bcp14> silently ignore this message.
Resumption <bcp14>MAY</bcp14> be done while the
original connection is still open. Servers <bcp14>MAY</bcp14> send multiple tickets on a
single connection, either immediately after each other or
after specific events (see <xref target="client-tracking"/>).
For instance, the server might send a new ticket after post-handshake
authentication thus encapsulating the additional client
authentication state. Multiple tickets are useful for clients
for a variety of purposes, including:</t>
          <ul spacing="normal">
            <li>
              <t>Opening multiple parallel HTTP connections.</t>
            </li>
            <li>
              <t>Performing connection racing across interfaces and address families
via (for example) Happy Eyeballs <xref target="RFC8305"/> or related techniques.</t>
            </li>
          </ul>
          <t>Any ticket <bcp14>MUST</bcp14> only be resumed with a cipher suite that has the
same KDF hash algorithm as that used to establish the original connection.</t>
          <t>Clients <bcp14>MUST</bcp14> only resume if the new SNI value is valid for the server
certificate presented in the original session, and <bcp14>SHOULD</bcp14> only resume if
the SNI value matches the one used in the original session.  The latter
is a performance optimization: normally, there is no reason to expect
that different servers covered by a single certificate would be able to
accept each other's tickets; hence, attempting resumption in that case
would waste a single-use ticket.  If such an indication is provided
(externally or by any other means), clients <bcp14>MAY</bcp14> resume with a different
SNI value.</t>
          <t>On resumption, if reporting an SNI value to the calling application,
implementations <bcp14>MUST</bcp14> use the value sent in the resumption ClientHello rather
than the value sent in the previous session. Note that if a server
implementation declines all PSK identities with different SNI values, these two
values are always the same.</t>
          <t>Note: Although the resumption secret depends on the client's second
flight, a server which does not request certificate-based client authentication <bcp14>MAY</bcp14> compute
the remainder of the transcript independently and then send a
NewSessionTicket immediately upon sending its Finished rather than
waiting for the client Finished.  This might be appropriate in cases
where the client is expected to open multiple TLS connections in
parallel and would benefit from the reduced overhead of a resumption
handshake, for example.</t>
          <artwork><![CDATA[
   struct {
       uint32 ticket_lifetime;
       uint32 ticket_age_add;
       opaque ticket_nonce<0..255>;
       opaque ticket<1..2^16-1>;
       Extension extensions<0..2^16-1>;
   } NewSessionTicket;
]]></artwork>
          <dl>
            <dt>ticket_lifetime:</dt>
            <dd>
              <t>Indicates the lifetime in seconds as a 32-bit unsigned integer in
network byte order from the time of ticket issuance.
Servers <bcp14>MUST NOT</bcp14> use any value greater than 604800 seconds (7 days).
The value of zero indicates that the ticket should be discarded
immediately. Clients <bcp14>MUST NOT</bcp14> use tickets for longer than
7 days after issuance, regardless of the ticket_lifetime, and <bcp14>MAY</bcp14> delete tickets
earlier based on local policy. A server <bcp14>MAY</bcp14> treat a ticket as valid
for a shorter period of time than what is stated in the
ticket_lifetime.</t>
            </dd>
            <dt>ticket_age_add:</dt>
            <dd>
              <t>A securely generated, random 32-bit value that is used to obscure the age of
the ticket that the client includes in the "pre_shared_key" extension.
The client-side ticket age is added to this value modulo 2<sup>32</sup> to
obtain the value that is transmitted by the client.
The server <bcp14>MUST</bcp14> generate a fresh value for each ticket it sends.</t>
            </dd>
            <dt>ticket_nonce:</dt>
            <dd>
              <t>A per-ticket value that is unique across all tickets issued on this connection.</t>
            </dd>
            <dt>ticket:</dt>
            <dd>
              <t>The value of the ticket to be used as the PSK identity.
The ticket itself is an opaque label. It <bcp14>MAY</bcp14> be either a database
lookup key or a self-encrypted and self-authenticated value.</t>
            </dd>
            <dt>extensions:</dt>
            <dd>
              <t>A list of extension values for the ticket. The "Extension"
format is defined in <xref target="extensions"/>. Clients <bcp14>MUST</bcp14> ignore
unrecognized extensions.</t>
            </dd>
          </dl>
          <t>The sole extension currently defined for NewSessionTicket is
"early_data", indicating that the ticket may be used to send 0-RTT data
(<xref target="early-data-indication"/>). It contains the following value:</t>
          <dl>
            <dt>max_early_data_size:</dt>
            <dd>
              <t>The maximum amount of 0-RTT data that the client is allowed to send when using
this ticket, in bytes. Only Application Data payload (i.e., plaintext but
not padding or the inner content type byte) is counted. A server
receiving more than max_early_data_size bytes of 0-RTT data
<bcp14>SHOULD</bcp14> terminate the connection with an "unexpected_message" alert.
Note that servers that reject early data due to lack of cryptographic material
will be unable to differentiate padding from content, so clients <bcp14>SHOULD NOT</bcp14>
depend on being able to send large quantities of padding in early data records.</t>
            </dd>
          </dl>
          <t>The PSK associated with the ticket is computed as:</t>
          <sourcecode><![CDATA[
    HKDF-Expand-Label(resumption_secret,
                      "resumption", ticket_nonce, Hash.length)
]]></sourcecode>
          <t>Because the ticket_nonce value is distinct for each NewSessionTicket
message, a different PSK will be derived for each ticket.</t>
          <t>Note that in principle it is possible to continue issuing new tickets
which indefinitely extend the lifetime of the keying
material originally derived from an initial non-PSK handshake (which
was most likely tied to the peer's certificate). It is <bcp14>RECOMMENDED</bcp14>
that implementations place limits on the total lifetime of such keying
material; these limits should take into account the lifetime of the
peer's certificate, the likelihood of intervening revocation,
and the time since the peer's online CertificateVerify signature.</t>
        </section>
        <section anchor="post-handshake-authentication">
          <name>Post-Handshake Authentication</name>
          <t>When the client has sent the "post_handshake_auth" extension (see
<xref target="post_handshake_auth"/>), a server <bcp14>MAY</bcp14> request certificate-based client authentication at any time
after the handshake has completed by sending a CertificateRequest message. The
client <bcp14>MUST</bcp14> respond with the appropriate Authentication messages (see
<xref target="authentication-messages"/>). If the client chooses to authenticate, it <bcp14>MUST</bcp14>
send Certificate, CertificateVerify, and Finished. If it declines, it <bcp14>MUST</bcp14> send
a Certificate message containing no certificates followed by Finished.
All of the client's messages for a given response
<bcp14>MUST</bcp14> appear consecutively on the wire with no intervening messages of other type
or from other responses.</t>
          <t>A client that receives a CertificateRequest message without having sent
the "post_handshake_auth" extension <bcp14>MUST</bcp14> send an "unexpected_message" fatal
alert.</t>
          <t>Note: Because certificate-based client authentication could involve prompting the user, servers
<bcp14>MUST</bcp14> be prepared for some delay, including receiving an arbitrary number of
other messages between sending the CertificateRequest and receiving a
response. In addition, clients which receive multiple CertificateRequests in
close succession <bcp14>MAY</bcp14> respond to them in a different order than they were
received (the certificate_request_context value allows the server to
disambiguate the responses).</t>
        </section>
        <section anchor="key-update">
          <name>Key and Initialization Vector Update</name>
          <t>The KeyUpdate handshake message is used to indicate that the sender is
updating its sending cryptographic keys. This message can be sent by
either peer after it has sent a Finished message.
Implementations that receive a KeyUpdate message prior to receiving a Finished message
<bcp14>MUST</bcp14> terminate the connection with an "unexpected_message" alert.
After sending a KeyUpdate message, the sender <bcp14>SHALL</bcp14> send all its traffic using the
next generation of keys, computed as described in <xref target="updating-traffic-keys"/>.
Upon receiving a KeyUpdate, the receiver <bcp14>MUST</bcp14> update its receiving keys.</t>
          <artwork><![CDATA[
   enum {
       update_not_requested(0), update_requested(1), (255)
   } KeyUpdateRequest;

   struct {
       KeyUpdateRequest request_update;
   } KeyUpdate;
]]></artwork>
          <dl>
            <dt>request_update:</dt>
            <dd>
              <t>Indicates whether the recipient of the KeyUpdate should respond with its
own KeyUpdate. If an implementation receives any other value, it <bcp14>MUST</bcp14>
terminate the connection with an "illegal_parameter" alert.</t>
            </dd>
          </dl>
          <t>If the request_update field is set to "update_requested", then the receiver <bcp14>MUST</bcp14>
send a KeyUpdate of its own with request_update set to "update_not_requested" prior
to sending its next Application Data record. This mechanism allows either side to force an update to the
entire connection, but causes an implementation which
receives multiple KeyUpdates while it is silent to respond with
a single update. Until receiving a subsequent KeyUpdate from the peer, the
sender <bcp14>MUST NOT</bcp14> send another KeyUpdate with request_update set to
"update_requested".</t>
          <t>Note that implementations may receive an arbitrary
number of messages between sending a KeyUpdate with request_update set
to "update_requested" and receiving the
peer's KeyUpdate, including unrelated KeyUpdates, because those messages may
already be in flight.
However, because send and receive keys are derived from independent
traffic secrets, retaining the receive traffic secret does not threaten
the forward secrecy of data sent before the sender changed keys.</t>
          <t>If implementations independently send their own KeyUpdates with
request_update set to "update_requested", and they cross in flight, then each side
will also send a response, with the result that each side increments
by two generations.</t>
          <t>Both sender and receiver <bcp14>MUST</bcp14> encrypt their KeyUpdate
messages with the old keys. Additionally, both sides <bcp14>MUST</bcp14> enforce that
a KeyUpdate with the old key is received before accepting any messages
encrypted with the new key. Failure to do so may allow message truncation
attacks.</t>
          <t>With a 128-bit key as in AES-128, rekeying 2<sup>64</sup> times has a high
probability of key reuse within a given connection.  Note that even
if the key repeats, the IV is also independently generated, so the
chance of a joint key/IV collision is much lower.
To provide an extra margin of security, sending implementations <bcp14>MUST
NOT</bcp14> allow the epoch -- and hence the number of key updates --
to exceed 2<sup>48</sup>-1.  In order to allow this value to be changed later
-- for instance for ciphers with more than 128-bit keys --
receiving implementations <bcp14>MUST NOT</bcp14> enforce this
rule.  If a sending implementation receives a KeyUpdate with
request_update set to "update_requested", it <bcp14>MUST NOT</bcp14> send its own
KeyUpdate if that would cause it to exceed these limits and <bcp14>SHOULD</bcp14>
instead ignore the "update_requested" flag. This may result in
an eventual need to terminate the connection when the
limits described in <xref target="limits-on-key-usage"/> are reached.</t>
        </section>
      </section>
    </section>
    <section anchor="record-protocol">
      <name>Record Protocol</name>
      <t>The TLS record protocol takes messages to be transmitted, fragments
the data into manageable blocks, protects the records, and transmits
the result. Received data is verified, decrypted, reassembled, and
then delivered to higher-level clients.</t>
      <t>TLS records are typed, which allows multiple higher-level protocols to
be multiplexed over the same record layer. This document specifies
four content types: handshake, application_data, alert, and
change_cipher_spec.
The change_cipher_spec record is used only for compatibility purposes
(see <xref target="middlebox"/>).</t>
      <t>An implementation may receive an unencrypted record of type
change_cipher_spec consisting of the single byte value 0x01 at any
time after the first ClientHello message has been sent or received and before
the peer's Finished message has been received and <bcp14>MUST</bcp14> simply drop it without
further processing.  Note that this record may appear at a point at the
handshake where the implementation is expecting protected records,
and so it is necessary to detect this
condition prior to attempting to deprotect the record. An
implementation which receives any other change_cipher_spec value or
which receives a protected change_cipher_spec record <bcp14>MUST</bcp14> abort the
handshake with an "unexpected_message" alert. If an implementation detects
a change_cipher_spec record
received before the first ClientHello message or after the peer's Finished
message, it <bcp14>MUST</bcp14> be treated as an unexpected record type (though stateless
servers may not be able to distinguish these cases from allowed cases).</t>
      <t>Implementations <bcp14>MUST NOT</bcp14> send record types not defined in this
document unless negotiated by some extension.  If a TLS implementation
receives an unexpected record type, it <bcp14>MUST</bcp14> terminate the connection
with an "unexpected_message" alert.  New record content type values
are assigned by IANA in the TLS ContentType registry as described in
<xref target="iana-considerations"/>.</t>
      <section anchor="record-layer">
        <name>Record Layer</name>
        <t>The record layer fragments information blocks into TLSPlaintext
records carrying data in chunks of 2<sup>14</sup> bytes or less. Message
boundaries are handled differently depending on the underlying
ContentType. Any future content types <bcp14>MUST</bcp14> specify appropriate
rules.
Note that these rules are stricter than what was enforced in TLS 1.2.</t>
        <t>Handshake messages <bcp14>MAY</bcp14> be coalesced into a single TLSPlaintext
record or fragmented across several records, provided that:</t>
        <ul spacing="normal">
          <li>
            <t>Handshake messages <bcp14>MUST NOT</bcp14> be interleaved with other record
types. That is, if a handshake message is split over two or more
records, there <bcp14>MUST NOT</bcp14> be any other records between them.</t>
          </li>
          <li>
            <t>Handshake messages <bcp14>MUST NOT</bcp14> span key changes. Implementations <bcp14>MUST</bcp14> verify that
all messages immediately preceding a key change align with a record boundary;
if not, then they <bcp14>MUST</bcp14> terminate the connection with an "unexpected_message"
alert. Because the ClientHello, EndOfEarlyData, ServerHello, Finished, and
KeyUpdate messages can immediately precede a key change, implementations <bcp14>MUST</bcp14>
send these messages in alignment with a record boundary.</t>
          </li>
        </ul>
        <t>Implementations <bcp14>MUST NOT</bcp14> send zero-length fragments of Handshake
types, even if those fragments contain padding.</t>
        <t>Alert messages (<xref target="alert-protocol"/>) <bcp14>MUST NOT</bcp14> be fragmented across
records, and multiple alert messages <bcp14>MUST NOT</bcp14> be coalesced into a
single TLSPlaintext record. In other words, a record with an Alert
type <bcp14>MUST</bcp14> contain exactly one message.</t>
        <t>Application Data messages contain data that is opaque to
TLS. Application Data messages are always protected. Zero-length
fragments of Application Data (i.e., TLSInnerPlaintext records of
type application_data with zero-length
content) <bcp14>MAY</bcp14> be sent, as they are potentially
useful as a traffic analysis countermeasure.  Application Data fragments
<bcp14>MAY</bcp14> be split across multiple records or coalesced into a single record.</t>
        <artwork><![CDATA[
   enum {
       invalid(0),
       change_cipher_spec(20),
       alert(21),
       handshake(22),
       application_data(23),
       (255)
   } ContentType;

   struct {
       ContentType type;
       ProtocolVersion legacy_record_version;
       uint16 length;
       opaque fragment[TLSPlaintext.length];
   } TLSPlaintext;
]]></artwork>
        <dl>
          <dt>type:</dt>
          <dd>
            <t>The higher-level protocol used to process the enclosed fragment.</t>
          </dd>
          <dt>legacy_record_version:</dt>
          <dd>
            <t><bcp14>MUST</bcp14> be set to 0x0303 for all records generated by a
TLS 1.3 implementation other than an initial ClientHello (i.e., one
not generated after a HelloRetryRequest), where it
<bcp14>MAY</bcp14> also be 0x0301 for compatibility purposes.
This field is deprecated and <bcp14>MUST</bcp14> be ignored for all purposes.
Previous versions of TLS would use other values in this field
under some circumstances.</t>
          </dd>
          <dt>length:</dt>
          <dd>
            <t>The length (in bytes) of the following TLSPlaintext.fragment. The
length <bcp14>MUST NOT</bcp14> exceed 2<sup>14</sup> bytes. An endpoint that receives a record
that exceeds this length <bcp14>MUST</bcp14> terminate the connection with a
"record_overflow" alert.</t>
          </dd>
          <dt>fragment</dt>
          <dd>
            <t>The data being transmitted. This value is transparent and is treated as an
independent block to be dealt with by the higher-level protocol
specified by the type field.</t>
          </dd>
        </dl>
        <t>This document describes TLS 1.3, which uses the version 0x0304.
This version value is historical, deriving from the use of 0x0301
for TLS 1.0 and 0x0300 for SSL 3.0. To maximize backward
compatibility, a record containing an initial ClientHello <bcp14>SHOULD</bcp14> have version
0x0301 (reflecting TLS 1.0) and a record containing a second ClientHello or
a ServerHello <bcp14>MUST</bcp14> have version
0x0303 (reflecting TLS 1.2).
When negotiating prior versions of TLS, endpoints
follow the procedure and requirements provided in <xref target="backward-compatibility"/>.</t>
        <t>When record protection has not yet been engaged, TLSPlaintext
structures are written directly onto the wire. Once record protection
has started, TLSPlaintext records are protected and sent as
described in the following section. Note that Application Data
records <bcp14>MUST NOT</bcp14> be written to the wire unprotected (see
<xref target="protocol-overview"/> for details).</t>
      </section>
      <section anchor="record-payload-protection">
        <name>Record Payload Protection</name>
        <t>The record protection functions translate a TLSPlaintext structure into a
TLSCiphertext structure. The deprotection functions reverse the process. In TLS 1.3,
as opposed to previous versions of TLS, all ciphers are modeled as
"Authenticated Encryption with Associated Data" (AEAD) <xref target="RFC5116"/>.
AEAD functions provide a unified encryption and authentication
operation which turns plaintext into authenticated ciphertext and
back again. Each encrypted record consists of a plaintext header followed
by an encrypted body, which itself contains a type and optional padding.</t>
        <artwork><![CDATA[
   struct {
       opaque content[TLSPlaintext.length];
       ContentType type;
       uint8 zeros[length_of_padding];
   } TLSInnerPlaintext;

   struct {
       ContentType opaque_type = application_data; /* 23 */
       ProtocolVersion legacy_record_version = 0x0303; /* TLS v1.2 */
       uint16 length;
       opaque encrypted_record[TLSCiphertext.length];
   } TLSCiphertext;
]]></artwork>
        <dl>
          <dt>content:</dt>
          <dd>
            <t>The TLSPlaintext.fragment value, containing the byte encoding of a
handshake or an alert message, or the raw bytes of the application's
data to send.</t>
          </dd>
          <dt>type:</dt>
          <dd>
            <t>The TLSPlaintext.type value containing the content type of the record.</t>
          </dd>
          <dt>zeros:</dt>
          <dd>
            <t>An arbitrary-length run of zero-valued bytes may
appear in the cleartext after the type field.  This provides an
opportunity for senders to pad any TLS record by a chosen amount as
long as the total stays within record size limits.  See
<xref target="record-padding"/> for more details.</t>
          </dd>
          <dt>opaque_type:</dt>
          <dd>
            <t>The outer opaque_type field of a TLSCiphertext record is always set to the
value 23 (application_data) for outward compatibility with
middleboxes accustomed to parsing previous versions of TLS.  The
actual content type of the record is found in TLSInnerPlaintext.type after
decryption.</t>
          </dd>
          <dt>legacy_record_version:</dt>
          <dd>
            <t>The legacy_record_version field is always 0x0303.  TLS 1.3 TLSCiphertexts
are not generated until after TLS 1.3 has been negotiated, so there are
no historical compatibility concerns where other values might be received.
Note that the handshake protocol, including the ClientHello and ServerHello
messages, authenticates the protocol version, so this value is redundant.</t>
          </dd>
          <dt>length:</dt>
          <dd>
            <t>The length (in bytes) of the following TLSCiphertext.encrypted_record, which
is the sum of the lengths of the content and the padding, plus one
for the inner content type, plus any expansion added by the AEAD algorithm.
The length <bcp14>MUST NOT</bcp14> exceed 2<sup>14</sup> + 256 bytes.
An endpoint that receives a record that exceeds this length <bcp14>MUST</bcp14>
terminate the connection with a "record_overflow" alert.</t>
          </dd>
          <dt>encrypted_record:</dt>
          <dd>
            <t>The AEAD-encrypted form of the serialized TLSInnerPlaintext structure.</t>
          </dd>
        </dl>
        <t>AEAD algorithms take as input a single key, a nonce, a plaintext, and "additional
data" to be included in the authentication check, as described in <xref section="2.1" sectionFormat="of" target="RFC5116"/>. The key is either the client_write_key or the server_write_key,
the nonce is derived from the sequence number and the
client_write_iv or server_write_iv (see <xref target="nonce"/>), and the additional data input is the
record header. I.e.,</t>
        <artwork><![CDATA[
   additional_data = TLSCiphertext.opaque_type ||
                     TLSCiphertext.legacy_record_version ||
                     TLSCiphertext.length
]]></artwork>
        <t>The plaintext input to the AEAD algorithm is the encoded TLSInnerPlaintext structure.
Derivation of traffic keys is defined in <xref target="traffic-key-calculation"/>.</t>
        <t>The AEAD output consists of the ciphertext output from the AEAD
encryption operation. The length of the plaintext is greater than the
corresponding TLSPlaintext.length due to the inclusion of TLSInnerPlaintext.type and
any padding supplied by the sender. The length of the
AEAD output will generally be larger than the plaintext, but by an
amount that varies with the AEAD algorithm. Since the ciphers might
incorporate padding, the amount of overhead could vary with different
lengths of plaintext. Symbolically,</t>
        <artwork><![CDATA[
   AEADEncrypted =
       AEAD-Encrypt(write_key, nonce, additional_data, plaintext)
]]></artwork>
        <t>The encrypted_record field of TLSCiphertext is set to AEADEncrypted.</t>
        <t>To decrypt and verify, the cipher takes as input the key, nonce,
additional data, and the AEADEncrypted value. The output is either the plaintext
or an error indicating that the decryption failed. There is no separate
integrity check. Symbolically,</t>
        <artwork><![CDATA[
 plaintext of encrypted_record =
     AEAD-Decrypt(peer_write_key, nonce, additional_data, AEADEncrypted)
]]></artwork>
        <t>If the decryption fails, the receiver <bcp14>MUST</bcp14> terminate the connection
with a "bad_record_mac" alert.</t>
        <t>An AEAD algorithm used in TLS 1.3 <bcp14>MUST NOT</bcp14> produce an expansion greater than
255 octets. An endpoint that receives a record from its peer with
TLSCiphertext.length larger than 2<sup>14</sup> + 256 octets <bcp14>MUST</bcp14> terminate
the connection with a "record_overflow" alert.
This limit is derived from the maximum TLSInnerPlaintext length of
2<sup>14</sup> octets + 1 octet for ContentType + the maximum AEAD expansion of 255 octets.</t>
      </section>
      <section anchor="nonce">
        <name>Per-Record Nonce</name>
        <t>A 64-bit sequence number is maintained separately for reading and writing
records. The appropriate sequence number is incremented by one after
reading or writing each record.  Each sequence number is set to zero
at the beginning of a connection and whenever the key is changed; the
first record transmitted under a particular traffic key <bcp14>MUST</bcp14> use
sequence number 0.</t>
        <t>Because the size of sequence numbers is 64-bit, they should not
wrap. If a TLS implementation would need to
wrap a sequence number, it <bcp14>MUST</bcp14> either rekey (<xref target="key-update"/>) or
terminate the connection.</t>
        <t>Each AEAD algorithm will specify a range of possible lengths for the
per-record nonce, from N_MIN bytes to N_MAX bytes of input <xref target="RFC5116"/>.
The length of the TLS per-record nonce (iv_length) is set to the larger of
8 bytes and N_MIN for the AEAD algorithm (see <xref section="4" sectionFormat="comma" target="RFC5116"/>).
An AEAD algorithm where N_MAX is less than 8 bytes <bcp14>MUST NOT</bcp14> be used with TLS.
The per-record nonce for the AEAD construction is formed as follows:</t>
        <ol spacing="normal" type="1"><li>
            <t>The 64-bit record sequence number is encoded in network byte order
and padded to the left with zeros to iv_length.</t>
          </li>
          <li>
            <t>The padded sequence number is XORed with either the static client_write_iv
or server_write_iv (depending on the role).</t>
          </li>
        </ol>
        <t>The resulting quantity (of length iv_length) is used as the per-record nonce.</t>
        <t>Note: This is a different construction from that in TLS 1.2, which
specified a partially explicit nonce.</t>
      </section>
      <section anchor="record-padding">
        <name>Record Padding</name>
        <t>All encrypted TLS records can be padded to inflate the size of the
TLSCiphertext.  This allows the sender to hide the size of the
traffic from an observer.</t>
        <t>When generating a TLSCiphertext record, implementations <bcp14>MAY</bcp14> choose to pad.
An unpadded record is just a record with a padding length of zero.
Padding is a string of zero-valued bytes appended to the ContentType
field before encryption.  Implementations <bcp14>MUST</bcp14> set the padding octets
to all zeros before encrypting.</t>
        <t>Application Data records may contain a zero-length TLSInnerPlaintext.content if
the sender desires.  This permits generation of plausibly sized cover
traffic in contexts where the presence or absence of activity may be
sensitive.  Implementations <bcp14>MUST NOT</bcp14> send Handshake and Alert records
that have a zero-length TLSInnerPlaintext.content; if such a message
is received, the receiving implementation <bcp14>MUST</bcp14> terminate the connection
with an "unexpected_message" alert.</t>
        <t>The padding sent is automatically verified by the record protection
mechanism; upon successful decryption of a TLSCiphertext.encrypted_record,
the receiving implementation scans the field from the end toward the
beginning until it finds a non-zero octet. This non-zero octet is the
content type of the message.
This padding scheme was selected because it allows padding of any encrypted
TLS record by an arbitrary size (from zero up to TLS record size
limits) without introducing new content types.  The design also
enforces all-zero padding octets, which allows for quick detection of
padding errors.</t>
        <t>Implementations <bcp14>MUST</bcp14> limit their scanning to the cleartext returned
from the AEAD decryption.  If a receiving implementation does not find
a non-zero octet in the cleartext, it <bcp14>MUST</bcp14> terminate the
connection with an "unexpected_message" alert.</t>
        <t>The presence of padding does not change the overall record size limitations:
the full encoded TLSInnerPlaintext <bcp14>MUST NOT</bcp14> exceed 2<sup>14</sup> + 1 octets. If the
maximum fragment length is reduced -- as for example by the record_size_limit
extension from <xref target="RFC8449"/> -- then the reduced limit applies to the full plaintext,
including the content type and padding.</t>
        <t>Selecting a padding policy that suggests when and how much to pad is a
complex topic and is beyond the scope of this specification. If the
application-layer protocol on top of TLS has its own padding, it may be
preferable to pad Application Data TLS records within the application
layer.  Padding for encrypted Handshake or Alert records must
still be handled at the TLS layer, though.  Later documents may define
padding selection algorithms or define a padding policy request
mechanism through TLS extensions or some other means.</t>
      </section>
      <section anchor="limits-on-key-usage">
        <name>Limits on Key Usage</name>
        <t>There are cryptographic limits on the amount of plaintext which can be
safely encrypted under a given set of keys.  <xref target="AEAD-LIMITS"/> provides
an analysis of these limits under the assumption that the underlying
primitive (AES or ChaCha20) has no weaknesses. Implementations <bcp14>MUST</bcp14>
either close the connection or
do a key update as described in <xref target="key-update"/> prior to reaching these limits.
Note that it is not possible to perform a KeyUpdate for early data;
therefore, implementations <bcp14>MUST NOT</bcp14> exceed the limits
when sending early data. Receiving implementations <bcp14>SHOULD NOT</bcp14> enforce
these limits, as future analyses may result in updated values.</t>
        <t>For AES-GCM, up to 2<sup>24.5</sup> full-size records (about 24 million)
may be encrypted on a given connection while keeping a safety
margin of approximately 2<sup>-57</sup> for Authenticated Encryption (AE) security.
For ChaCha20/Poly1305, the record sequence number would wrap before the
safety limit is reached.</t>
      </section>
    </section>
    <section anchor="alert-protocol">
      <name>Alert Protocol</name>
      <t>TLS provides an Alert content type to indicate closure information
and errors.  Like other messages, alert messages are encrypted as
specified by the current connection state.</t>
      <t>Alert messages convey a description of the alert and a legacy field
that conveyed the severity level of the message in previous versions of
TLS. Alerts are divided into
two classes: closure alerts and error alerts.  In TLS 1.3, the
severity is implicit in the type of alert
being sent, and the "level" field can safely be ignored. The "close_notify" alert
is used to indicate orderly closure of one direction of the connection.
Upon receiving such an alert, the TLS implementation <bcp14>SHOULD</bcp14>
indicate end-of-data to the application.</t>
      <t>Error alerts indicate abortive closure of the
connection (see <xref target="error-alerts"/>). Upon receiving an error alert,
the TLS implementation <bcp14>SHOULD</bcp14> indicate an error to the application and
<bcp14>MUST NOT</bcp14> allow any further data to be sent or received on the
connection.  Servers and clients <bcp14>MUST</bcp14> forget the secret values and
keys established in failed connections, with the exception of
the PSKs associated with session tickets, which <bcp14>SHOULD</bcp14> be discarded if
possible.</t>
      <t>All the alerts listed in <xref target="error-alerts"/> <bcp14>MUST</bcp14> be sent with
AlertLevel=fatal and <bcp14>MUST</bcp14> be treated as error alerts when received
regardless of the AlertLevel in the
message. Unknown Alert types <bcp14>MUST</bcp14> be treated as error alerts.</t>
      <t>Note: TLS defines two generic alerts (see <xref target="alert-protocol"/>) to use
upon failure to parse a message. Peers which receive a message which
cannot be parsed according to the syntax (e.g., have a length
extending beyond the message boundary or contain an out-of-range
length) <bcp14>MUST</bcp14> terminate the connection with a "decode_error"
alert. Peers which receive a message which is syntactically correct
but semantically invalid (e.g., a DHE share of p - 1, or an invalid
enum) <bcp14>MUST</bcp14> terminate the connection with an "illegal_parameter" alert.</t>
      <artwork><![CDATA[
   enum { warning(1), fatal(2), (255) } AlertLevel;

   enum {
       close_notify(0),
       unexpected_message(10),
       bad_record_mac(20),
       record_overflow(22),
       handshake_failure(40),
       bad_certificate(42),
       unsupported_certificate(43),
       certificate_revoked(44),
       certificate_expired(45),
       certificate_unknown(46),
       illegal_parameter(47),
       unknown_ca(48),
       access_denied(49),
       decode_error(50),
       decrypt_error(51),
       protocol_version(70),
       insufficient_security(71),
       internal_error(80),
       inappropriate_fallback(86),
       user_canceled(90),
       missing_extension(109),
       unsupported_extension(110),
       unrecognized_name(112),
       bad_certificate_status_response(113),
       unknown_psk_identity(115),
       certificate_required(116),
       general_error(117),
       no_application_protocol(120),
       (255)
   } AlertDescription;

   struct {
       AlertLevel level;
       AlertDescription description;
   } Alert;
]]></artwork>
      <section anchor="closure-alerts">
        <name>Closure Alerts</name>
        <t>The client and the server must share knowledge that the connection is ending in
order to avoid a truncation attack.</t>
        <dl>
          <dt>close_notify:</dt>
          <dd>
            <t>This alert notifies the recipient that the sender will not send
any more messages on this connection. Any data received after a
closure alert has been received <bcp14>MUST</bcp14> be ignored. This alert <bcp14>MUST</bcp14> be
sent with AlertLevel=warning.</t>
          </dd>
          <dt>user_canceled:</dt>
          <dd>
            <t>This alert notifies the recipient that the sender is canceling the
handshake for some reason unrelated to a protocol failure. If a user
cancels an operation after the handshake is complete, just closing the
connection by sending a "close_notify" is more appropriate. This alert
<bcp14>MUST</bcp14> be followed by a "close_notify". This alert generally
has AlertLevel=warning. Receiving implementations <bcp14>SHOULD</bcp14>
continue to read data from the peer until a "close_notify" is received,
though they <bcp14>MAY</bcp14> log or otherwise record them.</t>
          </dd>
        </dl>
        <t>Either party <bcp14>MAY</bcp14> initiate a close of its write side of the connection by
sending a "close_notify" alert. If a transport-level close is received prior
to a "close_notify", the receiver cannot know that all the data that was sent
has been received.</t>
        <t>Each party <bcp14>MUST</bcp14> send a "close_notify" alert before closing its write side
of the connection, unless it has already sent some error alert. This
does not have any effect on its read side of the connection. Note that this is
a change from versions of TLS prior to TLS 1.3 in which implementations were
required to react to a "close_notify" by discarding pending writes and
sending an immediate "close_notify" alert of their own. That previous
requirement could cause truncation in the read side. Both parties need not
wait to receive a "close_notify" alert before closing their read side of the
connection, though doing so would introduce the possibility of truncation.</t>
        <t>Application protocols <bcp14>MAY</bcp14> choose to flush their send buffers and immediately
send a close_notify upon receiving a close_notify, but this allows an attacker
to influence the data that the peer receives by delaying the close_notify or
by delaying the transport-level delivery of the application's packets. These
issues can be addressed at the application layer, for instance by ignoring
packets received after transmitting the close_notify.</t>
        <t>If the application protocol using TLS provides that any data may be carried
over the underlying transport after the TLS connection is closed, the TLS
implementation <bcp14>MUST</bcp14> receive a "close_notify" alert before indicating
end-of-data to the application layer. No part of this
standard should be taken to dictate the manner in which a usage profile for TLS
manages its data transport, including when connections are opened or closed.</t>
        <t>Note: It is assumed that closing the write side of a connection reliably
delivers pending data before destroying the transport.</t>
      </section>
      <section anchor="error-alerts">
        <name>Error Alerts</name>
        <t>Error handling in TLS is very simple. When an
error is detected, the detecting party sends a message to its
peer. Upon transmission or receipt of a fatal alert message, both
parties <bcp14>MUST</bcp14> immediately close the connection.</t>
        <t>Whenever an implementation encounters a fatal error condition, it
<bcp14>SHOULD</bcp14> send an appropriate fatal alert and <bcp14>MUST</bcp14> close the connection
without sending or receiving any additional data. Throughout this
specification, when the phrases "terminate the connection" and "abort the
handshake" are used without a specific alert it means that the
implementation <bcp14>SHOULD</bcp14> send the alert indicated by the descriptions
below. The phrases "terminate the connection with an X alert" and
"abort the handshake with an X alert" mean that the implementation
<bcp14>MUST</bcp14> send alert X if it sends any alert. All
alerts defined below in this section, as well as all unknown alerts,
are universally considered fatal as of TLS 1.3 (see <xref target="alert-protocol"/>).
The implementation <bcp14>SHOULD</bcp14> provide a way to facilitate logging
the sending and receiving of alerts.</t>
        <t>The following error alerts are defined:</t>
        <dl>
          <dt>unexpected_message:</dt>
          <dd>
            <t>An inappropriate message (e.g., the wrong handshake message, premature
Application Data, etc.) was received. This alert should never be
observed in communication between proper implementations.</t>
          </dd>
          <dt>bad_record_mac:</dt>
          <dd>
            <t>This alert is returned if a record is received which cannot be
deprotected. Because AEAD algorithms combine decryption and
verification, and also to avoid side-channel attacks,
this alert is used for all deprotection failures.
This alert should never be observed in communication between
proper implementations, except when messages were corrupted
in the network.</t>
          </dd>
          <dt>record_overflow:</dt>
          <dd>
            <t>A TLSCiphertext record was received that had a length more than
2<sup>14</sup> + 256 bytes, or a record decrypted to a TLSPlaintext record
with more than 2<sup>14</sup> bytes (or some other negotiated limit).
This alert should never be observed in communication between
proper implementations, except when messages were corrupted
in the network.</t>
          </dd>
          <dt>handshake_failure:</dt>
          <dd>
            <t>Receipt of a "handshake_failure" alert message indicates that the
sender was unable to negotiate an acceptable set of security
parameters given the options available.</t>
          </dd>
          <dt>bad_certificate:</dt>
          <dd>
            <t>A certificate was corrupt, contained signatures that did not
verify correctly, etc.</t>
          </dd>
          <dt>unsupported_certificate:</dt>
          <dd>
            <t>A certificate was of an unsupported type.</t>
          </dd>
          <dt>certificate_revoked:</dt>
          <dd>
            <t>A certificate was revoked by its signer.</t>
          </dd>
          <dt>certificate_expired:</dt>
          <dd>
            <t>A certificate has expired or is not currently valid.</t>
          </dd>
          <dt>certificate_unknown:</dt>
          <dd>
            <t>Some other (unspecified) issue arose in processing the
certificate, rendering it unacceptable.</t>
          </dd>
          <dt>illegal_parameter:</dt>
          <dd>
            <t>A field in the handshake was incorrect or inconsistent with
other fields. This alert is used for errors which conform to
the formal protocol syntax but are otherwise incorrect.</t>
          </dd>
          <dt>unknown_ca:</dt>
          <dd>
            <t>A valid certificate chain or partial chain was received, but the
certificate was not accepted because the CA certificate could not
be located or could not be matched with a known trust anchor.</t>
          </dd>
          <dt>access_denied:</dt>
          <dd>
            <t>A valid certificate or PSK was received, but when access control was
applied, the sender decided not to proceed with negotiation.</t>
          </dd>
          <dt>decode_error:</dt>
          <dd>
            <t>A message could not be decoded because some field was out of the
specified range or the length of the message was incorrect.
This alert is used for errors where the message does not conform
to the formal protocol syntax.
This alert should never be observed in communication between
proper implementations, except when messages were corrupted
in the network.</t>
          </dd>
          <dt>decrypt_error:</dt>
          <dd>
            <t>A handshake (not record layer) cryptographic operation failed, including being unable
to correctly verify a signature or validate a Finished message
or a PSK binder.</t>
          </dd>
          <dt>protocol_version:</dt>
          <dd>
            <t>The protocol version the peer has attempted to negotiate is
recognized but not supported (see <xref target="backward-compatibility"/>).</t>
          </dd>
          <dt>insufficient_security:</dt>
          <dd>
            <t>Returned instead of "handshake_failure" when a negotiation has
failed specifically because the server requires parameters more
secure than those supported by the client.</t>
          </dd>
          <dt>internal_error:</dt>
          <dd>
            <t>An internal error unrelated to the peer or the correctness of the
protocol (such as a memory allocation failure) makes it impossible
to continue.</t>
          </dd>
          <dt>inappropriate_fallback:</dt>
          <dd>
            <t>Sent by a server in response to an invalid connection retry attempt
from a client (see <xref target="RFC7507"/>).</t>
          </dd>
          <dt>missing_extension:</dt>
          <dd>
            <t>Sent by endpoints that receive a handshake message not containing an
extension that is mandatory to send for the offered TLS version
or other negotiated parameters.</t>
          </dd>
          <dt>unsupported_extension:</dt>
          <dd>
            <t>Sent by endpoints receiving any handshake message containing an extension
in a ServerHello, HelloRetryRequest, EncryptedExtensions, or Certificate not first offered in the
corresponding ClientHello or CertificateRequest.</t>
          </dd>
        </dl>
        <!--[rfced] May we rephrase the definition of this error alert to improve
readability and provide clarity?

Original:
   unrecognized_name:  Sent by servers when no server exists identified
      by the name provided by the client via the "server_name" extension
      (see [RFC6066]).

Perhaps:
   unrecognized_name:  Sent by servers when no server that can be identified
      by the name provided by the client via the "server_name" extension
      (see [RFC6066]) exists.
-->

<dl>
          <dt>unrecognized_name:</dt>
          <dd>
            <t>Sent by servers when no server exists identified by the name
provided by the client via the "server_name" extension
(see <xref target="RFC6066"/>).</t>
          </dd>
          <dt>bad_certificate_status_response:</dt>
          <dd>
            <t>Sent by clients when an invalid or unacceptable OCSP response is
provided by the server via the "status_request" extension
(see <xref target="RFC6066"/>).</t>
          </dd>
          <dt>unknown_psk_identity:</dt>
          <dd>
            <t>Sent by servers when PSK key establishment is desired but no
 acceptable PSK identity is provided by the client. Sending this alert
 is <bcp14>OPTIONAL</bcp14>; servers <bcp14>MAY</bcp14> instead choose to send a "decrypt_error"
 alert to merely indicate an invalid PSK identity.</t>
          </dd>
          <dt>certificate_required:</dt>
          <dd>
            <t>Sent by servers when a client certificate is desired but none was provided by
the client.</t>
          </dd>
          <dt>general_error:</dt>
          <dd>
            <t>Sent to indicate an error condition in cases when either no
more specific error is available or the senders wishes to conceal
the specific error code. Implementations <bcp14>SHOULD</bcp14> use more specific
errors when available.</t>
          </dd>
          <dt>no_application_protocol:</dt>
          <dd>
            <t>Sent by servers when a client
"application_layer_protocol_negotiation" extension advertises only
protocols that the server does not support
(see <xref target="RFC7301"/>).</t>
          </dd>
        </dl>
        <t>New Alert values are assigned by IANA as described in <xref target="iana-considerations"/>.</t>
      </section>
    </section>
    <section anchor="cryptographic-computations">
      <name>Cryptographic Computations</name>
      <t>The TLS handshake establishes one or more input secrets which
are combined to create the actual working keying material, as detailed
below. The key derivation process incorporates both the input secrets
and the handshake transcript. Note that because the handshake
transcript includes the random values from the Hello messages,
any given handshake will have different traffic secrets, even
if the same input secrets are used, as is the case when
the same PSK is used for multiple connections.</t>
      <section anchor="key-schedule">
        <name>Key Schedule</name>
        <t>The key derivation process makes use of the HKDF-Extract and HKDF-Expand
functions as defined for HKDF <xref target="RFC5869"/>, as well as the functions
defined below:</t>
        <sourcecode><![CDATA[
    HKDF-Expand-Label(Secret, Label, Context, Length) =
         HKDF-Expand(Secret, HkdfLabel, Length)
]]></sourcecode>
        <t>Where HkdfLabel is specified as:</t>
        <sourcecode><![CDATA[
    struct {
        uint16 length = Length;
        opaque label<7..255> = "tls13 " + Label;
        opaque context<0..255> = Context;
    } HkdfLabel;

    Derive-Secret(Secret, Label, Messages) =
         HKDF-Expand-Label(Secret, Label,
                           Transcript-Hash(Messages), Hash.length)
]]></sourcecode>
        <t>The Hash function used by Transcript-Hash and HKDF is the cipher suite hash
algorithm.
Hash.length is its output length in bytes. Messages is the concatenation of the
indicated handshake messages, including the handshake message type
and length fields, but not including record layer headers. Note that
in some cases a zero-length Context (indicated by "") is passed to
HKDF-Expand-Label.  The labels specified in this document are all
ASCII strings and do not include a trailing NUL byte.</t>
        <t>Any extensions to TLS which use "HKDF-Expand-Label" use the
HkdfLabel definition associated with the version of TLS with which
they are being used. When used with this specification, that means
using HkdfLabel as defined above; when used with DTLS <xref target="RFC9147"/> that
means using the version defined in <xref section="5.9" sectionFormat="comma" target="RFC9147"/>.</t>
        <t>Note: With common hash functions, any label longer than 12 characters
requires an additional iteration of the hash function to compute.
The labels in this specification have all been chosen to fit within
this limit.</t>
        <t>Keys are derived from two input secrets using
the HKDF-Extract and Derive-Secret functions. The general pattern
for adding a new secret is to use HKDF-Extract with the Salt
being the current secret state and the Input Keying Material (IKM) being the new
secret to be added. In this version of TLS 1.3, the two
input secrets are:</t>
        <ul spacing="normal">
          <li>
            <t>PSK (a pre-shared key established externally or derived from
the resumption_secret value from a previous connection)</t>
          </li>
          <li>
            <t>(EC)DHE shared secret (<xref target="ecdhe-shared-secret-calculation"/>)</t>
          </li>
        </ul>
        <t>This produces the key schedule shown in the diagram below
(<xref target="key-schedule-diagram"/>). In this diagram, the following formatting conventions apply:</t>
        <ul spacing="normal">
          <li>
            <t>HKDF-Extract is drawn as taking the Salt argument from the top and
the IKM argument from the left, with its output to the bottom and
the name of the output on the right.</t>
          </li>
          <li>
            <t>Derive-Secret's Secret argument is indicated by the incoming
arrow. For instance, the Early Secret is the Secret for
generating the client_early_traffic_secret.</t>
          </li>
          <li>
            <t>"0" indicates a string of Hash.length bytes set to zero.</t>
          </li>
        </ul>
        <t>Note: The key derivation labels use the string "master" even though
the values are referred to as "main" secrets.  This mismatch is a
result of renaming the values while retaining compatibility.</t>
        <t>Note: This does not show all the leaf keys such as the separate
AEAD and IV keys but rather the first set of secrets derived
from the handshake.</t>
        <figure anchor="key-schedule-diagram">
          <name>Main TLS 1.3 Key Schedule</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="880" width="544" viewBox="0 0 544 880" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 128,48 L 128,64" fill="none" stroke="black"/>
                <path d="M 128,96 L 128,320" fill="none" stroke="black"/>
                <path d="M 128,352 L 128,368" fill="none" stroke="black"/>
                <path d="M 128,400 L 128,528" fill="none" stroke="black"/>
                <path d="M 128,560 L 128,576" fill="none" stroke="black"/>
                <path d="M 128,608 L 128,816" fill="none" stroke="black"/>
                <path d="M 64,80 L 80,80" fill="none" stroke="black"/>
                <path d="M 128,112 L 176,112" fill="none" stroke="black"/>
                <path d="M 128,208 L 176,208" fill="none" stroke="black"/>
                <path d="M 128,272 L 176,272" fill="none" stroke="black"/>
                <path d="M 72,384 L 88,384" fill="none" stroke="black"/>
                <path d="M 128,416 L 176,416" fill="none" stroke="black"/>
                <path d="M 128,480 L 176,480" fill="none" stroke="black"/>
                <path d="M 72,592 L 88,592" fill="none" stroke="black"/>
                <path d="M 128,624 L 176,624" fill="none" stroke="black"/>
                <path d="M 128,688 L 176,688" fill="none" stroke="black"/>
                <path d="M 128,752 L 176,752" fill="none" stroke="black"/>
                <path d="M 128,816 L 176,816" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="184,816 172,810.4 172,821.6" fill="black" transform="rotate(0,176,816)"/>
                <polygon class="arrowhead" points="184,752 172,746.4 172,757.6" fill="black" transform="rotate(0,176,752)"/>
                <polygon class="arrowhead" points="184,688 172,682.4 172,693.6" fill="black" transform="rotate(0,176,688)"/>
                <polygon class="arrowhead" points="184,624 172,618.4 172,629.6" fill="black" transform="rotate(0,176,624)"/>
                <polygon class="arrowhead" points="184,480 172,474.4 172,485.6" fill="black" transform="rotate(0,176,480)"/>
                <polygon class="arrowhead" points="184,416 172,410.4 172,421.6" fill="black" transform="rotate(0,176,416)"/>
                <polygon class="arrowhead" points="184,272 172,266.4 172,277.6" fill="black" transform="rotate(0,176,272)"/>
                <polygon class="arrowhead" points="184,208 172,202.4 172,213.6" fill="black" transform="rotate(0,176,208)"/>
                <polygon class="arrowhead" points="184,112 172,106.4 172,117.6" fill="black" transform="rotate(0,176,112)"/>
                <polygon class="arrowhead" points="136,576 124,570.4 124,581.6" fill="black" transform="rotate(90,128,576)"/>
                <polygon class="arrowhead" points="136,528 124,522.4 124,533.6" fill="black" transform="rotate(90,128,528)"/>
                <polygon class="arrowhead" points="136,368 124,362.4 124,373.6" fill="black" transform="rotate(90,128,368)"/>
                <polygon class="arrowhead" points="136,320 124,314.4 124,325.6" fill="black" transform="rotate(90,128,320)"/>
                <polygon class="arrowhead" points="136,64 124,58.4 124,69.6" fill="black" transform="rotate(90,128,64)"/>
                <polygon class="arrowhead" points="96,592 84,586.4 84,597.6" fill="black" transform="rotate(0,88,592)"/>
                <polygon class="arrowhead" points="96,384 84,378.4 84,389.6" fill="black" transform="rotate(0,88,384)"/>
                <polygon class="arrowhead" points="88,80 76,74.4 76,85.6" fill="black" transform="rotate(0,80,80)"/>
                <g class="text">
                  <text x="128" y="36">0</text>
                  <text x="40" y="84">PSK</text>
                  <text x="148" y="84">HKDF-Extract</text>
                  <text x="208" y="84">=</text>
                  <text x="240" y="84">Early</text>
                  <text x="292" y="84">Secret</text>
                  <text x="252" y="116">Derive-Secret(.,</text>
                  <text x="316" y="132">"ext</text>
                  <text x="368" y="132">binder"</text>
                  <text x="408" y="132">|</text>
                  <text x="316" y="148">"res</text>
                  <text x="372" y="148">binder",</text>
                  <text x="312" y="164">"")</text>
                  <text x="248" y="180">=</text>
                  <text x="300" y="180">binder_key</text>
                  <text x="252" y="212">Derive-Secret(.,</text>
                  <text x="332" y="212">"c</text>
                  <text x="352" y="212">e</text>
                  <text x="400" y="212">traffic",</text>
                  <text x="348" y="228">ClientHello)</text>
                  <text x="248" y="244">=</text>
                  <text x="368" y="244">client_early_traffic_secret</text>
                  <text x="252" y="276">Derive-Secret(.,</text>
                  <text x="332" y="276">"e</text>
                  <text x="360" y="276">exp</text>
                  <text x="412" y="276">master",</text>
                  <text x="348" y="292">ClientHello)</text>
                  <text x="248" y="308">=</text>
                  <text x="344" y="308">early_exporter_secret</text>
                  <text x="148" y="340">Derive-Secret(.,</text>
                  <text x="260" y="340">"derived",</text>
                  <text x="320" y="340">"")</text>
                  <text x="32" y="388">(EC)DHE</text>
                  <text x="148" y="388">HKDF-Extract</text>
                  <text x="208" y="388">=</text>
                  <text x="256" y="388">Handshake</text>
                  <text x="324" y="388">Secret</text>
                  <text x="252" y="420">Derive-Secret(.,</text>
                  <text x="332" y="420">"c</text>
                  <text x="356" y="420">hs</text>
                  <text x="408" y="420">traffic",</text>
                  <text x="404" y="436">ClientHello...ServerHello)</text>
                  <text x="248" y="452">=</text>
                  <text x="384" y="452">client_handshake_traffic_secret</text>
                  <text x="252" y="484">Derive-Secret(.,</text>
                  <text x="332" y="484">"s</text>
                  <text x="356" y="484">hs</text>
                  <text x="408" y="484">traffic",</text>
                  <text x="404" y="500">ClientHello...ServerHello)</text>
                  <text x="248" y="516">=</text>
                  <text x="384" y="516">server_handshake_traffic_secret</text>
                  <text x="148" y="548">Derive-Secret(.,</text>
                  <text x="260" y="548">"derived",</text>
                  <text x="320" y="548">"")</text>
                  <text x="56" y="596">0</text>
                  <text x="148" y="596">HKDF-Extract</text>
                  <text x="208" y="596">=</text>
                  <text x="236" y="596">Main</text>
                  <text x="284" y="596">Secret</text>
                  <text x="252" y="628">Derive-Secret(.,</text>
                  <text x="332" y="628">"c</text>
                  <text x="356" y="628">ap</text>
                  <text x="408" y="628">traffic",</text>
                  <text x="380" y="644">ClientHello...server</text>
                  <text x="504" y="644">Finished)</text>
                  <text x="248" y="660">=</text>
                  <text x="400" y="660">client_application_traffic_secret_0</text>
                  <text x="252" y="692">Derive-Secret(.,</text>
                  <text x="332" y="692">"s</text>
                  <text x="356" y="692">ap</text>
                  <text x="408" y="692">traffic",</text>
                  <text x="380" y="708">ClientHello...server</text>
                  <text x="504" y="708">Finished)</text>
                  <text x="248" y="724">=</text>
                  <text x="400" y="724">server_application_traffic_secret_0</text>
                  <text x="252" y="756">Derive-Secret(.,</text>
                  <text x="340" y="756">"exp</text>
                  <text x="396" y="756">master",</text>
                  <text x="380" y="772">ClientHello...server</text>
                  <text x="504" y="772">Finished)</text>
                  <text x="248" y="788">=</text>
                  <text x="320" y="788">exporter_secret</text>
                  <text x="252" y="820">Derive-Secret(.,</text>
                  <text x="340" y="820">"res</text>
                  <text x="396" y="820">master",</text>
                  <text x="380" y="836">ClientHello...client</text>
                  <text x="504" y="836">Finished)</text>
                  <text x="248" y="852">=</text>
                  <text x="328" y="852">resumption_secret</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                 0
                 |
                 v
     PSK -->  HKDF-Extract = Early Secret
                 |
                 +-----> Derive-Secret(.,
                 |                     "ext binder" |
                 |                     "res binder",
                 |                     "")
                 |              = binder_key
                 |
                 +-----> Derive-Secret(., "c e traffic",
                 |                     ClientHello)
                 |              = client_early_traffic_secret
                 |
                 +-----> Derive-Secret(., "e exp master",
                 |                     ClientHello)
                 |              = early_exporter_secret
                 v
            Derive-Secret(., "derived", "")
                 |
                 v
  (EC)DHE --> HKDF-Extract = Handshake Secret
                 |
                 +-----> Derive-Secret(., "c hs traffic",
                 |                     ClientHello...ServerHello)
                 |              = client_handshake_traffic_secret
                 |
                 +-----> Derive-Secret(., "s hs traffic",
                 |                     ClientHello...ServerHello)
                 |              = server_handshake_traffic_secret
                 v
            Derive-Secret(., "derived", "")
                 |
                 v
        0 --> HKDF-Extract = Main Secret
                 |
                 +-----> Derive-Secret(., "c ap traffic",
                 |                     ClientHello...server Finished)
                 |              = client_application_traffic_secret_0
                 |
                 +-----> Derive-Secret(., "s ap traffic",
                 |                     ClientHello...server Finished)
                 |              = server_application_traffic_secret_0
                 |
                 +-----> Derive-Secret(., "exp master",
                 |                     ClientHello...server Finished)
                 |              = exporter_secret
                 |
                 +-----> Derive-Secret(., "res master",
                                       ClientHello...client Finished)
                                = resumption_secret
]]></artwork>
          </artset>
        </figure>
        <t>The general pattern here is that the secrets shown down the left side
of the diagram are just raw entropy without context, whereas the
secrets down the right side include Handshake Context and therefore
can be used to derive working keys without additional context.
Note that the different
calls to Derive-Secret may take different Messages arguments,
even with the same secret. In a 0-RTT exchange, Derive-Secret is
called with four distinct transcripts; in a 1-RTT-only exchange,
it is called with three distinct transcripts.</t>
        <t>If a given secret is not available, then the 0-value consisting of
a string of Hash.length bytes set to zeros is used.  Note that this does not mean skipping
rounds, so if PSK is not in use, Early Secret will still be
HKDF-Extract(0, 0). For the computation of the binder_key, the label is
"ext binder" for external PSKs (those provisioned outside of TLS)
and "res binder" for resumption PSKs (those provisioned as the resumption
secret of a previous handshake). The different labels prevent
the substitution of one type of PSK for the other.</t>
        <t>There are multiple potential Early Secret values, depending on
which PSK the server ultimately selects. The client will need to compute
one for each potential PSK; if no PSK is selected, it will then need to
compute the Early Secret corresponding to the zero PSK.</t>
        <t>Once all the values which are to be derived from a given secret have
been computed, that secret <bcp14>SHOULD</bcp14> be erased.</t>
      </section>
      <section anchor="updating-traffic-keys">
        <name>Updating Traffic Secrets</name>
        <t>Once the handshake is complete, it is possible for either side to
update its sending traffic keys using the KeyUpdate handshake message
defined in <xref target="key-update"/>.  The next generation of traffic keys is computed by
generating client_/server_application_traffic_secret_N+1 from
client_/server_application_traffic_secret_N as described in
this section and then re-deriving the traffic keys as described in
<xref target="traffic-key-calculation"/>.</t>
        <t>The next-generation application_traffic_secret is computed as:</t>
        <sourcecode><![CDATA[
    application_traffic_secret_N+1 =
        HKDF-Expand-Label(application_traffic_secret_N,
                          "traffic upd", "", Hash.length)
]]></sourcecode>
        <t>Once client_/server_application_traffic_secret_N+1 and its associated
traffic keys have been computed, implementations <bcp14>SHOULD</bcp14> delete
client_/server_application_traffic_secret_N and its associated traffic keys.</t>
      </section>
      <section anchor="traffic-key-calculation">
        <name>Traffic Key Calculation</name>
        <t>The traffic keying material is generated from the following input values:</t>
        <ul spacing="normal">
          <li>
            <t>A secret value</t>
          </li>
          <li>
            <t>A purpose value indicating the specific value being generated</t>
          </li>
          <li>
            <t>The length of the key being generated</t>
          </li>
        </ul>
        <t>The traffic keying material is generated from an input traffic secret value using:</t>
        <sourcecode><![CDATA[
[sender]_write_key = HKDF-Expand-Label(Secret, "key", "", key_length)
[sender]_write_iv  = HKDF-Expand-Label(Secret, "iv", "", iv_length)
]]></sourcecode>
        <t>[sender] denotes the sending side. The value of Secret for each category
of data is shown in the table below.</t>
        <table anchor="traffic-key-table">
          <name>Secrets for Traffic Keys</name>
          <thead>
            <tr>
              <th align="left">Data Type</th>
              <th align="left">Secret</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0-RTT Application and EndOfEarlyData</td>
              <td align="left">client_early_traffic_secret</td>
            </tr>
            <tr>
              <td align="left">Initial Handshake</td>
              <td align="left">[sender]_handshake_traffic_secret</td>
            </tr>
            <tr>
              <td align="left">Post-Handshake and Application Data</td>
              <td align="left">[sender]_application_traffic_secret_N</td>
            </tr>
          </tbody>
        </table>
        <t>Alerts are sent with the then-current sending key (or as
plaintext if no such key has been established.) 
All the traffic keying material is recomputed whenever the
underlying Secret changes (e.g., when changing from the handshake to
Application Data keys or upon a key update).</t>
      </section>
      <section anchor="ecdhe-shared-secret-calculation">
        <name>(EC)DHE Shared Secret Calculation</name>
        <section anchor="finite-field-diffie-hellman">
          <name>Finite Field Diffie-Hellman</name>
          <t>For finite field groups, a conventional Diffie-Hellman
<xref target="KEYAGREEMENT"/> computation is performed.
The negotiated key (Z) is converted to a byte string by encoding in big-endian form and
left-padded with zeros up to the size of the prime. This byte string is used as the
shared secret in the key schedule as specified above.</t>
          <t>Note that this construction differs from previous versions of TLS which remove
leading zeros.</t>
        </section>
        <section anchor="elliptic-curve-diffie-hellman">
          <name>Elliptic Curve Diffie-Hellman</name>
          <t>For secp256r1, secp384r1, and secp521r1, ECDH calculations (including key
generation and shared secret calculation) are performed according to
Sections 5.6.1.2 and 5.7.1.2 of <xref target="KEYAGREEMENT"/> using the Elliptic Curve
Cryptography Cofactor Diffie-Hellman Primitive. The shared secret Z is
the x-coordinate of the ECDH shared secret elliptic curve point represented
as an octet string. Note that the octet string Z as output by the
Field-Element-to-Byte String Conversion specified in Appendix C.2 of
<xref target="KEYAGREEMENT"/> has constant length for any given field; leading zeros
found in this octet string <bcp14>MUST NOT</bcp14> be truncated. See <xref target="ecdhe-param"/> for
requirements on public-key validation.</t>
          <t>For X25519 and X448, the ECDH calculations are as follows:</t>
          <ul spacing="normal">
            <li>
              <t>The public key to put into the KeyShareEntry.key_exchange structure is the
result of applying the ECDH scalar multiplication function to the secret key
of appropriate length (into scalar input) and the standard public basepoint
(into u-coordinate point input).</t>
            </li>
            <li>
              <t>The ECDH shared secret is the result of applying the ECDH scalar multiplication
function to the secret key (into scalar input) and the peer's public key
(into u-coordinate point input). The output is used raw, with no processing.</t>
            </li>
          </ul>
          <t>For these curves, implementations <bcp14>SHOULD</bcp14> use the approach specified
in <xref target="RFC7748"/> to calculate the Diffie-Hellman shared secret.
Implementations <bcp14>MUST</bcp14> check whether the computed Diffie-Hellman
shared secret is the all-zero value and abort if so, as described in
<xref section="6" sectionFormat="of" target="RFC7748"/>. If implementors use an alternative
implementation of these elliptic curves, they <bcp14>SHOULD</bcp14> perform the
additional checks specified in <xref section="7" sectionFormat="of" target="RFC7748"/>.</t>
        </section>
      </section>
      <section anchor="exporters">
        <name>Exporters</name>
        <t><xref target="RFC5705"/> defines keying material exporters for TLS in terms of the TLS
pseudorandom function (PRF). This document replaces the PRF with HKDF, thus
requiring a new construction. The exporter interface remains the same.</t>
        <t>The exporter value is computed as:</t>
        <artwork><![CDATA[
TLS-Exporter(label, context_value, key_length) =
    HKDF-Expand-Label(Derive-Secret(Secret, label, ""),
                      "exporter", Hash(context_value), key_length)
]]></artwork>
        <t>Where Secret is either the early_exporter_secret or the
exporter_secret.  Implementations <bcp14>MUST</bcp14> use the exporter_secret unless
explicitly specified by the application. The early_exporter_secret is
defined for use in settings where an exporter is needed for 0-RTT data.
A separate interface for the early exporter is <bcp14>RECOMMENDED</bcp14>; this avoids
the exporter user accidentally using an early exporter when a regular
one is desired or vice versa.</t>
        <t>If no context is provided, the context_value is zero length. Consequently,
providing no context computes the same value as providing an empty context.
This is a change from previous versions of TLS where an empty context produced a
different output than an absent context. As of this document's publication, no
allocated exporter label is used both with and without a context. Future
specifications <bcp14>MUST NOT</bcp14> define a use of exporters that permit both an empty
context and no context with the same label. New uses of exporters <bcp14>SHOULD</bcp14> provide
a context in all exporter computations, though the value could be empty.</t>
        <t>Requirements for the format of exporter labels are defined in <xref section="4" sectionFormat="of" target="RFC5705"/>.</t>
      </section>
    </section>
    <section anchor="anti-replay">
      <name>0-RTT and Anti-Replay</name>
      <t>As noted in <xref target="zero-rtt-data"/> and <xref target="replay-0rtt"/>, TLS does not provide inherent replay
protections for 0-RTT data. There are two potential threats to be
concerned with:</t>
      <ul spacing="normal">
        <li>
          <t>Network attackers who mount a replay attack by simply duplicating a
flight of 0-RTT data.</t>
        </li>
        <li>
          <t>Network attackers who take advantage of client retry behavior
to arrange for the server to receive multiple copies of an application
message. This threat already exists
to some extent because clients that value robustness respond to network errors by
attempting to retry requests. However, 0-RTT adds an additional
dimension for any server system which does not maintain globally
consistent server state. Specifically, if a server system has
multiple zones where tickets from zone A will not be accepted in
zone B, then an attacker can duplicate a ClientHello and early
data intended for A to both A and B. At A, the data will
be accepted in 0-RTT, but at B the server will reject 0-RTT
data and instead force a full handshake. If the attacker blocks
the ServerHello from A, then the client will complete the
handshake with B and probably retry the request, leading to duplication on
the server system as a whole.</t>
        </li>
      </ul>
      <t>The first class of attack can be prevented by sharing state to guarantee that
the 0-RTT data is accepted at most once.  Servers <bcp14>SHOULD</bcp14> provide that level of
replay safety by implementing one of the methods described in this section or
by equivalent means. It is understood, however, that due to operational
concerns not all deployments will maintain state at that level.  Therefore, in
normal operation, clients will not know which, if any, of these mechanisms
servers actually implement and hence <bcp14>MUST</bcp14> only send early data which they deem
safe to be replayed.</t>
      <t>In addition to the direct effects of replays, there is a class of attacks where
even operations normally considered idempotent could be exploited by a large
number of replays (timing attacks, resource limit exhaustion and others, as
described in <xref target="replay-0rtt"/>).  Those can be mitigated by ensuring that every
0-RTT payload can be replayed only a limited number of times.  The server <bcp14>MUST</bcp14>
ensure that any instance of it (be it a machine, a thread, or any other entity
within the relevant serving infrastructure) would accept 0-RTT for the same
0-RTT handshake at most once; this limits the number of replays to the number of
server instances in the deployment.  Such a guarantee can be accomplished by
locally recording data from recently received ClientHellos and rejecting
repeats, or by any other method that provides the same or a stronger guarantee.
The "at most once per server instance" guarantee is a minimum requirement;
servers <bcp14>SHOULD</bcp14> limit 0-RTT replays further when feasible.</t>
      <t>The second class of attack cannot be prevented at the TLS layer and
<bcp14>MUST</bcp14> be dealt with by any application. Note that any application whose
clients implement any kind of retry behavior already needs to
implement some sort of anti-replay defense.</t>
      <section anchor="single-use-tickets">
        <name>Single-Use Tickets</name>
        <t>The simplest form of anti-replay defense is for the server to only
allow each session ticket to be used once. For instance, the server
can maintain a database of all outstanding valid tickets, deleting each
ticket from the database as it is used. If an unknown ticket is
provided, the server would then fall back to a full handshake.</t>
        <t>If the tickets are not self-contained but rather are database keys,
and the corresponding PSKs are deleted upon use, then connections established
using PSKs enjoy not only anti-replay protection, but also forward secrecy once
all copies of the PSK from the database entry have been deleted.
This mechanism also improves security for PSK usage when PSK is used without
(EC)DHE.</t>
        <t>Because this mechanism requires sharing the session database between
server nodes in environments with multiple distributed servers,
it may be hard to achieve high rates of successful PSK 0-RTT
connections when compared to self-encrypted tickets. Unlike
session databases, session tickets can successfully do PSK-based
session establishment even without consistent storage, though when
0-RTT is allowed they still require consistent storage for anti-replay
of 0-RTT data, as detailed in the following
section.</t>
      </section>
      <section anchor="client-hello-recording">
        <name>Client Hello Recording</name>
        <t>An alternative form of anti-replay is to record a unique value derived
from the ClientHello (generally either the random value or the PSK
binder) and reject duplicates. Recording all ClientHellos causes state
to grow without bound, but a server can instead record ClientHellos within
a given time window and use the "obfuscated_ticket_age" to ensure that
tickets aren't reused outside that window.</t>
        <t>To implement this, when a ClientHello is received, the server
first verifies the PSK binder as described in
<xref target="pre-shared-key-extension"/>. It then computes the
expected_arrival_time as described in the next section and rejects
0-RTT if it is outside the recording window, falling back to the
1-RTT handshake.</t>
        <t>If the expected_arrival_time is in the window, then the server
checks to see if it has recorded a matching ClientHello. If one
is found, it either aborts the handshake with an "illegal_parameter" alert
or accepts the PSK but rejects 0-RTT. If no matching ClientHello
is found, then it accepts 0-RTT and then stores the ClientHello for
as long as the expected_arrival_time is inside the window.
Servers <bcp14>MAY</bcp14> also implement data stores with false positives, such as
Bloom filters, in which case they <bcp14>MUST</bcp14> respond to apparent replay by
rejecting 0-RTT but <bcp14>MUST NOT</bcp14> abort the handshake.</t>
        <t>The server <bcp14>MUST</bcp14> derive the storage key only from validated sections
of the ClientHello. If the ClientHello contains multiple
PSK identities, then an attacker can create multiple ClientHellos
with different binder values for the less-preferred identity on the
assumption that the server will not verify it (as recommended
by <xref target="pre-shared-key-extension"/>). I.e., if the
client sends PSKs A and B but the server prefers A, then the
attacker can change the binder for B without affecting the binder
for A. If the binder for B is part of the storage key,
then this ClientHello will not appear as a duplicate,
which will cause the ClientHello to be accepted, and may
cause side effects such as replay cache pollution, although any
0-RTT data will not be decryptable because it will use different
keys. If the validated binder or the ClientHello.random
is used as the storage key, then this attack is not possible.</t>
        <t>Because this mechanism does not require storing all outstanding
tickets, it may be easier to implement in distributed systems with
high rates of resumption and 0-RTT, at the cost of potentially
weaker anti-replay defense because of the difficulty of reliably
storing and retrieving the received ClientHello messages.
In many such systems, it is impractical to have globally
consistent storage of all the received ClientHellos.
In this case, the best anti-replay protection is provided by
having a single storage zone be
authoritative for a given ticket and refusing 0-RTT for that
ticket in any other zone. This approach prevents simple
replay by the attacker because only one zone will accept
0-RTT data. A weaker design is to implement separate storage for
each zone but allow 0-RTT in any zone. This approach limits
the number of replays to once per zone. Application message
duplication of course remains possible with either design.</t>
        <t>When implementations are freshly started, they <bcp14>SHOULD</bcp14>
reject 0-RTT as long as any portion of their recording window overlaps
the startup time. Otherwise, they run the risk of accepting
replays which were originally sent during that period.</t>
        <t>Note: If the client's clock is running much faster than the server's,
then a ClientHello may be received that is outside the window in the
future, in which case it might be accepted for 1-RTT, causing a client retry,
and then acceptable later for 0-RTT. This is another variant of
the second form of attack described in <xref target="anti-replay"/>.</t>
      </section>
      <section anchor="freshness-checks">
        <name>Freshness Checks</name>
        <t>Because the ClientHello indicates the time at which the client sent
it, it is possible to efficiently determine whether a ClientHello was
likely sent reasonably recently and only accept 0-RTT for such a
ClientHello, otherwise falling back to a 1-RTT handshake.
This is necessary for the ClientHello storage mechanism
described in <xref target="client-hello-recording"/> because otherwise the server
needs to store an unlimited number of ClientHellos, and is a useful optimization for
self-contained single-use tickets because it allows efficient rejection of ClientHellos
which cannot be used for 0-RTT.</t>
        <t>To implement this mechanism, a server needs to store the time
that the server generated the session ticket, offset by an estimate of
the round-trip time between client and server. I.e.,</t>
        <artwork><![CDATA[
    adjusted_creation_time = creation_time + estimated_RTT
]]></artwork>
        <t>This value can be encoded in the ticket, thus avoiding the need to
keep state for each outstanding ticket. The server can determine the
client's view of the age of the ticket by subtracting the ticket's
"ticket_age_add" value from the "obfuscated_ticket_age" parameter in
the client's "pre_shared_key" extension. The server can determine the
expected_arrival_time of the ClientHello as:</t>
        <artwork><![CDATA[
  expected_arrival_time = adjusted_creation_time + clients_ticket_age
]]></artwork>
        <t>When a new ClientHello is received, the expected_arrival_time is then
compared against the current server wall clock time and if they differ
by more than a certain amount, 0-RTT is rejected, though the 1-RTT
handshake can be allowed to complete.</t>
        <t>There are several potential sources of error that might cause
mismatches between the expected_arrival_time and the measured
time. Variations in client and server clock
rates are likely to be minimal, though potentially the absolute
times may be off by large values.
Network propagation delays are the most likely causes of
a mismatch in legitimate values for elapsed time.  Both the
NewSessionTicket and ClientHello messages might be retransmitted and
therefore delayed, which might be hidden by TCP. For clients
on the Internet, this implies windows
on the order of ten seconds to account for errors in clocks and
variations in measurements; other deployment scenarios
may have different needs. Clock skew distributions are not
symmetric, so the optimal tradeoff may involve an asymmetric range
of permissible mismatch values.</t>
        <t>Note that freshness checking alone is not sufficient to prevent
replays because it does not detect them during the error window,
which -- depending on bandwidth and system capacity -- could include
billions of replays in real-world settings.  In addition, this
freshness checking is only done at the time the ClientHello is
received, and not when subsequent early Application Data records are
received. After early data is accepted, records may continue to be
streamed to the server over a longer time period.</t>
      </section>
    </section>
    <section anchor="compliance-requirements">
      <name>Compliance Requirements</name>
      <section anchor="mandatory-to-implement-cipher-suites">
        <name>Mandatory-to-Implement Cipher Suites</name>
        <!--[rfced] In Section 9.1, may we format these two items into an
unordered list?

Original:
   In the absence of an application profile standard specifying
   otherwise:

   A TLS-compliant application MUST implement the TLS_AES_128_GCM_SHA256
   [GCM] cipher suite and SHOULD implement the TLS_AES_256_GCM_SHA384
   [GCM] and TLS_CHACHA20_POLY1305_SHA256 [RFC8439] cipher suites (see
   Appendix B.4).

   A TLS-compliant application MUST support digital signatures with
   rsa_pkcs1_sha256 (for certificates), rsa_pss_rsae_sha256 (for
   CertificateVerify and certificates), and ecdsa_secp256r1_sha256.  A
   TLS-compliant application MUST support key exchange with secp256r1
   (NIST P-256) and SHOULD support key exchange with X25519 [RFC7748].

Perhaps:
   In the absence of an application profile standard specifying
   otherwise:

   *  A TLS-compliant application MUST implement the TLS_AES_128_GCM_SHA256
      [GCM] cipher suite and SHOULD implement the TLS_AES_256_GCM_SHA384
      [GCM] and TLS_CHACHA20_POLY1305_SHA256 [RFC8439] cipher suites (see
      Appendix B.4).

   *  A TLS-compliant application MUST support digital signatures with
      rsa_pkcs1_sha256 (for certificates), rsa_pss_rsae_sha256 (for
      CertificateVerify and certificates), and ecdsa_secp256r1_sha256.  A
      TLS-compliant application MUST support key exchange with secp256r1
      (NIST P-256) and SHOULD support key exchange with X25519 [RFC7748].
-->

<t>In the absence of an application profile standard specifying otherwise:</t>
        <t>A TLS-compliant application <bcp14>MUST</bcp14> implement the TLS_AES_128_GCM_SHA256 <xref target="GCM"/>
cipher suite and <bcp14>SHOULD</bcp14> implement the TLS_AES_256_GCM_SHA384 <xref target="GCM"/> and
TLS_CHACHA20_POLY1305_SHA256 <xref target="RFC8439"/> cipher suites (see
<xref target="cipher-suites"/>).</t>
        <t>A TLS-compliant application <bcp14>MUST</bcp14> support digital signatures with
rsa_pkcs1_sha256 (for certificates), rsa_pss_rsae_sha256 (for
CertificateVerify and certificates), and ecdsa_secp256r1_sha256. A
TLS-compliant application <bcp14>MUST</bcp14> support key exchange with secp256r1
(NIST P-256) and <bcp14>SHOULD</bcp14> support key exchange with X25519 <xref target="RFC7748"/>.</t>
      </section>
      <section anchor="mti-extensions">
        <name>Mandatory-to-Implement Extensions</name>
        <t>In the absence of an application profile standard specifying otherwise, a
TLS-compliant application <bcp14>MUST</bcp14> implement the following TLS extensions:</t>
        <ul spacing="normal">
          <li>
            <t>Supported Versions     ("supported_versions"; <xref target="supported-versions"/>)</t>
          </li>
          <li>
            <t>Cookie                 ("cookie"; <xref target="cookie"/>)</t>
          </li>
          <li>
            <t>Signature Algorithms   ("signature_algorithms"; <xref target="signature-algorithms"/>)</t>
          </li>
          <li>
            <t>Signature Algorithms Certificate  ("signature_algorithms_cert"; <xref target="signature-algorithms"/>)</t>
          </li>
          <li>
            <t>Negotiated Groups      ("supported_groups"; <xref target="supported-groups"/>)</t>
          </li>
          <li>
            <t>Key Share              ("key_share"; <xref target="key-share"/>)</t>
          </li>
          <li>
            <t>Server Name Indication ("server_name"; <xref section="3" sectionFormat="of" target="RFC6066"/>)</t>
          </li>
        </ul>
        <t>All implementations <bcp14>MUST</bcp14> send and use these extensions when offering
applicable features:</t>
        <ul spacing="normal">
          <li>
            <t>"supported_versions"   is <bcp14>REQUIRED</bcp14> for all ClientHello, ServerHello, and HelloRetryRequest messages.</t>
          </li>
          <li>
            <t>"signature_algorithms" is <bcp14>REQUIRED</bcp14> for certificate authentication.</t>
          </li>
          <li>
            <t>"supported_groups"     is <bcp14>REQUIRED</bcp14> for ClientHello messages using
                        DHE or ECDHE key exchange.</t>
          </li>
          <li>
            <t>"key_share"            is <bcp14>REQUIRED</bcp14> for DHE or ECDHE key exchange.</t>
          </li>
          <li>
            <t>"pre_shared_key"       is <bcp14>REQUIRED</bcp14> for PSK key agreement.</t>
          </li>
          <li>
            <t>"psk_key_exchange_modes" is <bcp14>REQUIRED</bcp14> for PSK key agreement.</t>
          </li>
        </ul>
        <t>A client is considered to be attempting to negotiate using this
specification if the ClientHello contains a "supported_versions"
extension with 0x0304 contained in its body.
Such a ClientHello message <bcp14>MUST</bcp14> meet the following requirements:</t>
        <ul spacing="normal">
          <li>
            <t>If not containing a "pre_shared_key" extension, it <bcp14>MUST</bcp14> contain both
a "signature_algorithms" extension and a "supported_groups" extension.</t>
          </li>
          <li>
            <t>If containing a "supported_groups" extension, it <bcp14>MUST</bcp14> also contain a
"key_share" extension, and vice versa. An empty KeyShare.client_shares
list is permitted.</t>
          </li>
        </ul>
        <t>Servers receiving a ClientHello which does not conform to these
requirements <bcp14>MUST</bcp14> abort the handshake with a "missing_extension"
alert.</t>
        <t>Additionally, all implementations <bcp14>MUST</bcp14> support the use of the "server_name"
extension with applications capable of using it.
Servers <bcp14>MAY</bcp14> require clients to send a valid "server_name" extension.
Servers requiring this extension <bcp14>SHOULD</bcp14> respond to a ClientHello
lacking a "server_name" extension by terminating the connection with a
"missing_extension" alert.</t>
      </section>
      <section anchor="protocol-invariants">
        <name>Protocol Invariants</name>
        <t>This section describes invariants that TLS endpoints and middleboxes <bcp14>MUST</bcp14>
follow. It also applies to earlier versions of TLS.</t>
        <t>TLS is designed to be securely and compatibly extensible. Newer clients or
servers, when communicating with newer peers, should negotiate the
most preferred common parameters. The TLS handshake provides downgrade
protection: Middleboxes passing traffic between a newer client and
newer server without terminating TLS should be unable to influence the
handshake (see <xref target="security-handshake"/>). At the same time, deployments
update at different rates, so a newer client or server <bcp14>MAY</bcp14> continue to
support older parameters, which would allow it to interoperate with
older endpoints.</t>
        <t>For this to work, implementations <bcp14>MUST</bcp14> correctly handle extensible fields:</t>
        <ul spacing="normal">
          <li>
            <t>A client sending a ClientHello <bcp14>MUST</bcp14> support all parameters advertised in it.
Otherwise, the server may fail to interoperate by selecting one of those
parameters.</t>
          </li>
          <li>
            <t>A server receiving a ClientHello <bcp14>MUST</bcp14> correctly ignore all unrecognized
cipher suites, extensions, and other parameters. Otherwise, it may fail to
interoperate with newer clients. In TLS 1.3, a client receiving a
CertificateRequest or NewSessionTicket <bcp14>MUST</bcp14> also ignore all unrecognized
extensions.</t>
          </li>
          <li>
            <t>A middlebox which terminates a TLS connection <bcp14>MUST</bcp14> behave as a compliant
TLS server (to the original client), including having a certificate
which the client is willing to accept, and also as a compliant TLS client (to the
original server), including verifying the original server's certificate.
In particular, it <bcp14>MUST</bcp14> generate its own ClientHello
containing only parameters it understands, and it <bcp14>MUST</bcp14> generate a fresh
ServerHello random value, rather than forwarding the endpoint's value.  </t>
            <t>
Note that TLS's protocol requirements and security analysis only apply to the
two connections separately. Safely deploying a TLS terminator requires
additional security considerations which are beyond the scope of this document.</t>
          </li>
          <li>
            <t>A middlebox which forwards ClientHello parameters it does not understand <bcp14>MUST
NOT</bcp14> process any messages beyond that ClientHello. It <bcp14>MUST</bcp14> forward all
subsequent traffic unmodified. Otherwise, it may fail to interoperate with
newer clients and servers.  </t>
            <t>
Forwarded ClientHellos may contain advertisements for features not supported
by the middlebox, so the response may include future TLS additions the
middlebox does not recognize. These additions <bcp14>MAY</bcp14> change any message beyond
the ClientHello arbitrarily. In particular, the values sent in the ServerHello
might change, the ServerHello format might change, and the TLSCiphertext format
might change.</t>
          </li>
        </ul>
        <t>The design of TLS 1.3 was constrained by widely deployed non-compliant TLS
middleboxes (see <xref target="middlebox"/>); however, it does not relax the invariants.
Those middleboxes continue to be non-compliant.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Security issues are discussed throughout this memo, especially in 
<xref target="implementation-notes"/>, <xref target="backward-compatibility"/>, and <xref target="security-analysis"/>.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document uses several registries that were originally created in
<xref target="RFC4346"/> and updated in <xref target="RFC8446"/> and <xref target="RFC8447"/>. The changes
between <xref target="RFC8446"/>, <xref target="RFC8447"/>, and this document are described in <xref target="bis-changes"/>.
IANA has replaced references to these RFCs with references to this document. The registries and their allocation policies are below:</t>
      <ul spacing="normal">
        <li>
          <t>TLS Cipher Suites registry: Values with the first byte in the range
0-254 (decimal) are assigned via Specification Required <xref target="RFC8126"/>.
Values with the first byte 255 (decimal) are reserved for Private
Use <xref target="RFC8126"/>.  </t>
          <t>
IANA has added the cipher suites listed in <xref target="cipher-suites"/> to
the registry. The "Value" and "Description" columns are taken from the table.
The "DTLS-OK" and "Recommended" columns are both marked as "Y" for each new
cipher suite.</t>
        </li>
        <li>
          <t>TLS ContentType registry: Future values are allocated via
Standards Action <xref target="RFC8126"/>.</t>
        </li>
        <li>
          <t>TLS Alerts registry: Future values are allocated via Standards
Action <xref target="RFC8126"/>. IANA has populated this registry
with the values from <xref target="alert-messages-appendix"/>. The
"DTLS-OK" column is marked as "Y" for all such values.
Values marked as "_RESERVED" have comments
 describing their previous usage.</t>
        </li>
        <li>
          <t>TLS HandshakeType registry: Future values are allocated via
Standards Action <xref target="RFC8126"/>. IANA has updated this registry
to rename item 4 from "NewSessionTicket" to "new_session_ticket"
and populated this registry with the values from <xref target="handshake-protocol-appendix"/>.
The "DTLS-OK" column is marked as "Y" for all such values.
Values marked "_RESERVED" have comments describing their previous or
temporary usage.</t>
        </li>
      </ul>
      <t>This document also uses the TLS ExtensionType Values registry originally created in
<xref target="RFC4366"/>. IANA has updated it to reference this document.  Changes to the
registry follow:</t>
      <ul spacing="normal">
        <li>
          <t>IANA has updated the registration policy as follows:  </t>
          <t>
Values with the first byte in the range 0-254 (decimal) are assigned
via Specification Required <xref target="RFC8126"/>.  Values with the first byte
255 (decimal) are reserved for Private Use <xref target="RFC8126"/>.</t>
        </li>
        <li>
          <t>IANA has updated this registry to include the
"key_share", "pre_shared_key", "psk_key_exchange_modes",
"early_data", "cookie", "supported_versions",
"certificate_authorities", "oid_filters", "post_handshake_auth", and "signature_algorithms_cert"  extensions with the values defined in this document and the "Recommended" value of "Y".</t>
        </li>
        <li>
          <t>IANA has updated this registry to include a "TLS
1.3" column which lists the messages in which the extension may
appear. This column has been
initially populated from the table in <xref target="extensions"/>,
with any extension not listed there marked as "-" to indicate that
it is not used by TLS 1.3.</t>
        </li>
      </ul>
      <t>This document updates two entries in the TLS Certificate Types registry
originally created in <xref target="RFC6091"/> and updated in <xref target="RFC8447"/>.  IANA has
updated the entry for value 1 to have the name "OpenPGP_RESERVED",
"Recommended" value "N", and comment "Used in TLS versions prior
to 1.3."  IANA has updated the entry for value 0 to have the name
"X509", "Recommended" value "Y", and comment "Was X.509 before TLS 1.3".</t>
      <t>This document updates an entry in the TLS Certificate Status Types
registry originally created in <xref target="RFC6961"/>.  IANA has updated the entry
for value 2 to have the name "ocsp_multi_RESERVED" and comment "Used
in TLS versions prior to 1.3".</t>
      <!--[rfced] FYI, we have updated the parenthetical text as follows to 
better describe the TLS Supported Groups registry. Please review and
let us know of any objections.

Original:
   This document updates two entries in the TLS Supported Groups
   registry (created under a different name by [RFC4492]; now maintained
   by [RFC8422]) and updated by [RFC7919] and [RFC8447]. 

Current:
   This document updates two entries in the TLS Supported Groups
   registry (created under a different name by [RFC4492]; now maintained
   by [RFC8422] and updated by [RFC7919] and [RFC8447]).  
-->

<t>This document updates two entries in the TLS Supported Groups
registry (created under a different name by <xref target="RFC4492"/>; now maintained
by <xref target="RFC8422"/> and updated by <xref target="RFC7919"/> and <xref target="RFC8447"/>).  The entries
for values 29 and 30 (x25519 and x448) have been updated to also
refer to this document.</t>
      <t>In addition, this document defines two new registries that are maintained
by IANA:</t>
      <ul spacing="normal">
        <li>
          <t>TLS SignatureScheme registry: Values with the first byte in the range
0-253 (decimal) are assigned via Specification Required <xref target="RFC8126"/>.
Values with the first byte 254 or 255 (decimal) are reserved for Private
Use <xref target="RFC8126"/>. Values with the first byte in the range 0-6 or with the
second byte in the range 0-3 that are not currently allocated are reserved for
backward compatibility.
This registry has a "Recommended" column.
The registry has been initially populated with the values described in
<xref target="signature-algorithms"/>. The following values are marked as
"Recommended": ecdsa_secp256r1_sha256, ecdsa_secp384r1_sha384,
rsa_pss_rsae_sha256, rsa_pss_rsae_sha384, rsa_pss_rsae_sha512,
rsa_pss_pss_sha256, rsa_pss_pss_sha384, rsa_pss_pss_sha512, and ed25519.
The
"Recommended" column is assigned a value of "N" unless explicitly
 requested, and adding a value with a "Recommended" value of "Y"
 requires Standards Action <xref target="RFC8126"/>.  IESG Approval is <bcp14>REQUIRED</bcp14>
 for a Y-&gt;N transition.</t>
        </li>
        <li>
          <t>TLS PskKeyExchangeMode registry: Values in the
range 0-253 (decimal) are assigned via Specification Required
<xref target="RFC8126"/>.  The values 254 and 255 (decimal) are
reserved for Private Use <xref target="RFC8126"/>.  This registry has a
"Recommended" column.  The registry has been initially
populated with psk_ke (0) and psk_dhe_ke (1).  Both are marked as
"Recommended".  The
"Recommended" column is assigned a value of "N" unless explicitly
requested, and adding a value with a "Recommended" value of "Y"
requires Standards Action <xref target="RFC8126"/>.  IESG Approval is <bcp14>REQUIRED</bcp14>
for a Y-&gt;N transition.</t>
        </li>
      </ul>
      <section anchor="bis-changes">
        <name>Changes for this RFC</name>
        <t>IANA has updated all references to <xref target="RFC8446"/> in the IANA
registries with references to this document.</t>
        <t>IANA has renamed the "extended_master_secret" value
in the TLS ExtensionType Values registry to "extended_main_secret".</t>
        <t>IANA has created  a value for the "general_error"
alert in the TLS Alerts registry with the value given in <xref target="alert-protocol"/>.</t>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2104.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5869.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6066.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6655.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8439.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7627.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7748.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7919.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8032.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8017.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8126.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5116.xml"/>
        <reference anchor="X690" target="https://www.itu.int/rec/T-REC-X.690-202102-I/en">
          <front>
            <title>Information technology - ASN.1 encoding Rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)</title>
            <author>
              <organization>ITU-T</organization>
            </author>
            <date year="2021" month="February"/>
          </front>
          <seriesInfo name="ITU-T" value="Recommendation X.690"/>
        </reference>
        <reference anchor="GCM" target="https://doi.org/10.6028/NIST.SP.800-38D">
          <front>
            <title>Recommendation for Block Cipher Modes of Operation: Galois/Counter Mode (GCM) and GMAC</title>
            <author initials="M." surname="Dworkin">
              <organization/>
            </author>
            <date year="2007" month="November"/>
          </front>
          <seriesInfo name="NIST" value="SP 800-38D"/>
          <seriesInfo name="DOI" value="10.6028/NIST.SP.800-38D"/>
        </reference>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8996.xml"/>
        <reference anchor="SHS">
          <front>
            <title>Secure hash standard</title>
            <author>
              <organization/>
            </author>
            <date year="2015"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.fips.180-4"/>
          <refcontent>National Institute of Standards and Technology (U.S.)</refcontent>
        </reference>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5280.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5756.xml"/>
        <reference anchor="KEYAGREEMENT">
          <front>
            <title>Recommendation for pair-wise key-establishment schemes using discrete logarithm cryptography</title>
            <author fullname="Elaine Barker" initials="E." surname="Barker">
              <organization/>
            </author>
            <author fullname="Lily Chen" initials="L." surname="Chen">
              <organization/>
            </author>
            <author fullname="Allen Roginsky" initials="A." surname="Roginsky">
              <organization/>
            </author>
            <author fullname="Apostol Vassilev" initials="A." surname="Vassilev">
              <organization/>
            </author>
            <author fullname="Richard Davis" initials="R." surname="Davis">
              <organization/>
            </author>
            <date month="April" year="2018"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-56ar3"/>
          <refcontent>National Institute of Standards and Technology</refcontent>
        </reference>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7301.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6962.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6961.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6960.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7507.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5705.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6979.xml"/>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.4086.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.4346.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.4366.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.4492.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5077.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5246.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5764.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5929.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6091.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6176.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6520.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7465.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7250.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7568.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7624.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7685.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8305.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8844.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8449.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8870.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8937.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9001.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9112.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9162.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9146.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9149.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9257.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9258.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9345.xml"/>
        <reference anchor="DH76">
          <front>
            <title>New directions in cryptography</title>
            <author fullname="W. Diffie" initials="W." surname="Diffie">
              <organization/>
            </author>
            <author fullname="M. Hellman" initials="M." surname="Hellman">
              <organization/>
            </author>
            <date month="November" year="1976"/>
          </front>
          <seriesInfo name="IEEE Transactions on Information Theory" value="vol. 22, no. 6, pp. 644-654"/>
          <seriesInfo name="DOI" value="10.1109/tit.1976.1055638"/>
          <refcontent>Institute of Electrical and Electronics Engineers (IEEE)</refcontent>
        </reference>
        <reference anchor="SSL2">
          <front>
            <title>The SSL Protocol</title>
            <author initials="K." surname="Hickman" fullname="Kipp Hickman">
              <organization>Netscape Communications Corp.</organization>
            </author>
            <date year="1995" month="February" day="09"/>
          </front>
        </reference>
        <reference anchor="TIMING" target="https://www.usenix.org/conference/12th-usenix-security-symposium/remote-timing-attacks-are-practical">
          <front>
            <title>Remote Timing Attacks Are Practical</title>
            <author initials="D." surname="Boneh">
              <organization/>
            </author>
            <author initials="D." surname="Brumley">
              <organization/>
            </author>
            <date year="2003"/>
          </front>
          <refcontent>12th USENIX Security Symposium (USENIX Security 03)</refcontent>
        </reference>
        <reference anchor="X501" target="https://www.itu.int/rec/T-REC-X.501-201910-I/en">
          <front>
            <title>Information Technology - Open Systems Interconnection - The Directory: Models</title>
            <author>
              <organization>ITU-T</organization>
            </author>
            <date year="2019" month="October"/>
          </front>
          <seriesInfo name="ITU-T" value="Recommendation X.501"/>
          <seriesInfo name="ISO/IEC" value="9594-2:2020"/>
        </reference>
        <reference anchor="PSK-FINISHED" target="https://mailarchive.ietf.org/arch/msg/tls/TugB5ddJu3nYg7chcyeIyUqWSbA/">
          <front>
            <title>Revision 10: possible attack if client authentication is allowed during PSK</title>
            <author initials="C." surname="Cremers">
              <organization/>
            </author>
            <author initials="M." surname="Horvat">
              <organization/>
            </author>
            <author initials="T." surname="van der Merwe">
              <organization/>
            </author>
            <author initials="S." surname="Scott">
              <organization/>
            </author>
            <date year="2015" month="October" day="31"/>
          </front>
          <refcontent>message to the TLS mailing list</refcontent>
        </reference>
        <reference anchor="CHHSV17" target="https://mailarchive.ietf.org/arch/msg/tls/crdSCgiW-94z2joulYJtuA52E9E/">
          <front>
            <title>Awkward Handshake: Possible mismatch of client/server view on client authentication in post-handshake mode in Revision 18</title>
            <author initials="C." surname="Cremers">
              <organization/>
            </author>
            <author initials="M." surname="Horvat">
              <organization/>
            </author>
            <author initials="J." surname="Hoyland">
              <organization/>
            </author>
            <author initials="T." surname="van der Merwe">
              <organization/>
            </author>
            <author initials="S." surname="Scott">
              <organization/>
            </author>
            <date year="2017" month="February" day="10"/>
          </front>
          <refcontent>message to the TLS mailing list</refcontent>
        </reference>
        <reference anchor="AEAD-LIMITS" target="https://eprint.iacr.org/2024/051">
          <front>
            <title>Limits on Authenticated Encryption Use in TLS</title>
            <author initials="A." surname="Luykx">
              <organization/>
            </author>
            <author initials="K." surname="Paterson">
              <organization/>
            </author>
            <date year="2017" month="August"/>
          </front>
        </reference>
        <reference anchor="HGFS15" target="https://www.usenix.org/conference/woot15/workshop-program/presentation/hlauschek">
          <front>
            <title>Prying Open Pandora's Box: KCI Attacks against TLS</title>
            <author initials="C." surname="Hlauschek">
              <organization/>
            </author>
            <author initials="M." surname="Gruber">
              <organization/>
            </author>
            <author initials="F." surname="Fankhauser">
              <organization/>
            </author>
            <author initials="C." surname="Schanes">
              <organization/>
            </author>
            <date year="2015"/>
          </front>
          <refcontent>Proceedings of USENIX Workshop on Offensive Technologies</refcontent>
        </reference>
        <reference anchor="FGSW16" target="http://ieeexplore.ieee.org/document/7546517/">
          <front>
            <title>Key Confirmation in Key Exchange: A Formal Treatment and Implications for TLS 1.3</title>
            <author initials="M." surname="Fischlin">
              <organization/>
            </author>
            <author initials="F." surname="Guenther">
              <organization/>
            </author>
            <author initials="B." surname="Schmidt">
              <organization/>
            </author>
            <author initials="B." surname="Warinschi">
              <organization/>
            </author>
            <date year="2016"/>
          </front>
          <seriesInfo name="DOI" value="10.1109/SP.2016.34"/>
          <refcontent>Proceedings of IEEE Symposium on Security and Privacy (Oakland) 2016</refcontent>
        </reference>
        <reference anchor="FW15" target="https://www.redhat.com/en/blog/factoring-rsa-keys-tls-perfect-forward-secrecy">
          <front>
            <title>Factoring RSA Keys With TLS Perfect Forward Secrecy</title>
            <author initials="F." surname="Weimer">
              <organization>Red Hat Product Security</organization>
            </author>
            <date year="2015" month="September" day="02"/>
          </front>
          <refcontent>Red Hat Blog</refcontent>
        </reference>
        <reference anchor="BDFKPPRSZZ16" target="https://eprint.iacr.org/2016/1178">
          <front>
            <title>Implementing and Proving the TLS 1.3 Record Layer</title>
            <author initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author initials="A." surname="Delignat-Lavaud">
              <organization/>
            </author>
            <author initials="C." surname="Fournet">
              <organization/>
            </author>
            <author initials="M." surname="Kohlweiss">
              <organization/>
            </author>
            <author initials="J." surname="Pan">
              <organization/>
            </author>
            <author initials="J." surname="Protzenko">
              <organization/>
            </author>
            <author initials="A." surname="Rastogi">
              <organization/>
            </author>
            <author initials="N." surname="Swamy">
              <organization/>
            </author>
            <author initials="S." surname="Zanella-Beguelin">
              <organization/>
            </author>
            <author initials="J." surname="Zinzindohoue">
              <organization/>
            </author>
            <date year="2016" month="December"/>
          </front>
          <refcontent>Proceedings of IEEE Symposium on Security and Privacy (San Jose) 2017</refcontent>
        </reference>
        <reference anchor="Blei98" target="https://link.springer.com/chapter/10.1007/bfb0055716">
          <front>
            <title>Chosen Ciphertext Attacks against Protocols Based on RSA Encryption Standard PKCS #1</title>
            <author initials="D." surname="Bleichenbacher">
              <organization/>
            </author>
            <date year="1998"/>
          </front>
          <refcontent>Proceedings of CRYPTO '98</refcontent>
        </reference>
        <reference anchor="BMMRT15" target="https://eprint.iacr.org/2015/394">
          <front>
            <title>Augmented Secure Channels and the Goal of the TLS 1.3 Record Layer</title>
            <author initials="C." surname="Badertscher">
              <organization/>
            </author>
            <author initials="C." surname="Matt">
              <organization/>
            </author>
            <author initials="U." surname="Maurer">
              <organization/>
            </author>
            <author initials="P." surname="Rogaway">
              <organization/>
            </author>
            <author initials="B." surname="Tackmann">
              <organization/>
            </author>
            <date year="2015" month="September"/>
          </front>
          <refcontent>ProvSec 2015</refcontent>
        </reference>
        <reference anchor="BT16" target="https://eprint.iacr.org/2016/564">
          <front>
            <title>The Multi-User Security of Authenticated Encryption: AES-GCM in TLS 1.3</title>
            <author initials="M." surname="Bellare">
              <organization/>
            </author>
            <author initials="B." surname="Tackmann">
              <organization/>
            </author>
            <date year="2016" month="July"/>
          </front>
          <refcontent>Proceedings of CRYPTO 2016</refcontent>
        </reference>
        <reference anchor="Kraw16" target="https://eprint.iacr.org/2016/711">
          <front>
            <title>A Unilateral-to-Mutual Authentication Compiler for Key Exchange (with Applications to Client Authentication in TLS 1.3</title>
            <author initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2016" month="October"/>
          </front>
          <refcontent>Proceedings of ACM CCS 2016</refcontent>
        </reference>
        <reference anchor="KW16" target="https://eprint.iacr.org/2015/978">
          <front>
            <title>The OPTLS Protocol and TLS 1.3</title>
            <author initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author initials="H." surname="Wee">
              <organization/>
            </author>
            <date year="2016" month="March"/>
          </front>
          <refcontent>Proceedings of Euro S&amp;P 2016</refcontent>
        </reference>
        <reference anchor="DFGS15" target="https://eprint.iacr.org/2015/914">
          <front>
            <title>A Cryptographic Analysis of the TLS 1.3 draft-10 Full and Pre-shared Key Handshake Protocol</title>
            <author initials="B." surname="Dowling">
              <organization/>
            </author>
            <author initials="M." surname="Fischlin">
              <organization/>
            </author>
            <author initials="F." surname="Guenther">
              <organization/>
            </author>
            <author initials="D." surname="Stebila">
              <organization/>
            </author>
            <date year="2015" month="October"/>
          </front>
          <refcontent>Proceedings of ACM CCS 2015</refcontent>
        </reference>
        <reference anchor="DFGS16" target="https://eprint.iacr.org/2016/081">
          <front>
            <title>A Cryptographic Analysis of the TLS 1.3 draft-10 Full and Pre-shared Key Handshake Protocol</title>
            <author initials="B." surname="Dowling">
              <organization/>
            </author>
            <author initials="M." surname="Fischlin">
              <organization/>
            </author>
            <author initials="F." surname="Guenther">
              <organization/>
            </author>
            <author initials="D." surname="Stebila">
              <organization/>
            </author>
            <date year="2016" month="February"/>
          </front>
          <refcontent>TRON 2016</refcontent>
        </reference>
        <reference anchor="FG17" target="https://eprint.iacr.org/2017/082">
          <front>
            <title>Replay Attacks on Zero Round-Trip Time: The Case of the TLS 1.3 Handshake Candidates</title>
            <author initials="M." surname="Fischlin">
              <organization/>
            </author>
            <author initials="F." surname="Guenther">
              <organization/>
            </author>
            <date year="2017" month="April"/>
          </front>
          <refcontent>Proceedings of Euro S&amp;P 2017</refcontent>
        </reference>
        <reference anchor="Kraw10" target="https://eprint.iacr.org/2010/264">
          <front>
            <title>Cryptographic Extraction and Key Derivation: The HKDF Scheme</title>
            <author initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2010"/>
          </front>
          <refcontent>Proceedings of CRYPTO 2010</refcontent>
        </reference>
        <reference anchor="Mac17" target="https://github.com/tlswg/tls13-spec/issues/1001">
          <front>
            <title>Security Review of TLS1.3 0-RTT</title>
            <author initials="C." surname="MacCarthaigh">
              <organization/>
            </author>
            <date year="2017" month="May"/>
          </front>
        </reference>
        <reference anchor="Res17a" target="https://mailarchive.ietf.org/arch/msg/tls/RBp0X-OWNuWXugFJRV7c_hIU0dI/">
          <front>
            <title>Preliminary data on Firefox TLS 1.3 Middlebox experiment</title>
            <author initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date year="2017" month="December" day="05"/>
          </front>
          <refcontent>message to the TLS mailing list</refcontent>
        </reference>
        <reference anchor="Res17b" target="https://mailarchive.ietf.org/arch/msg/tls/6pGGT-wm5vSkacMFPEPvFMEnj-M/">
          <front>
            <title>More compatibility measurement results</title>
            <author initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date year="2017" month="December" day="22"/>
          </front>
          <refcontent>message to the TLS mailing list</refcontent>
        </reference>
        <reference anchor="Ben17a" target="https://datatracker.ietf.org/meeting/100/materials/slides-100-tls-sessa-tls13/">
          <front>
            <title>Presentation before the TLS WG at IETF 100</title>
            <author initials="D." surname="Benjamin">
              <organization/>
            </author>
            <date year="2017" month="November"/>
          </front>
          <refcontent>IETF 100 Proceedings</refcontent>
        </reference>
        <reference anchor="Ben17b" target="https://mailarchive.ietf.org/arch/msg/tls/i9blmvG2BEPf1s1OJkenHknRw9c/">
          <front>
            <title>Additional TLS 1.3 results from Chrome</title>
            <author initials="D." surname="Benjamin">
              <organization/>
            </author>
            <date year="2017" month="December" day="18"/>
          </front>
          <refcontent>message to the TLS mailing list</refcontent>
        </reference>
        <reference anchor="PS18" target="https://eprint.iacr.org/2018/634">
          <front>
            <title>Partially specified channels: The TLS 1.3 record layer without elision</title>
            <author initials="C." surname="Patton">
              <organization/>
            </author>
            <author initials="T." surname="Shrimpton">
              <organization/>
            </author>
            <date year="2018"/>
          </front>
        </reference>
        <reference anchor="FETCH" target="https://fetch.spec.whatwg.org/">
          <front>
            <title>Fetch</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date/>
          </front>
          <annotation>Commit snapshot: https://fetch.spec.whatwg.org/commit-snapshots/4775fcb48042c8411df497c0b7cf167b4240004f/</annotation>
          <refcontent>WHATWG Living Standard</refcontent>
        </reference>
        <reference anchor="DSA-1571-1" target="https://www.debian.org/security/2008/dsa-1571">
          <front>
            <title>[SECURITY] [DSA 1571-1] New openssl packages fix predictable random number generator</title>
            <author initials="F." surname="Weimer">
              <organization/>
            </author>
            <date year="2008" month="May"/>
          </front>
          <refcontent>message to the debian-security-announce mailing list</refcontent>
        </reference>
        <reference anchor="MM24" target="https://arxiv.org/pdf/2411.09770">
          <front>
            <title>Misbinding Raw Public Keys to Identities in TLS</title>
            <author initials="M." surname="Moustafa">
              <organization/>
            </author>
            <author initials="M." surname="Sethi">
              <organization/>
            </author>
            <author initials="T." surname="Aura">
              <organization/>
            </author>
            <date year="2025" month="September" day="29"/>
          </front>
          <refcontent>arxiv:2411.09770</refcontent>
        </reference>
        <reference anchor="Selfie" target="https://eprint.iacr.org/2019/347">
          <front>
            <title>Selfie: reflections on TLS 1.3 with PSK</title>
            <author initials="N." surname="Drucker">
              <organization/>
            </author>
            <author initials="S." surname="Gueron">
              <organization/>
            </author>
            <date year="2019"/>
          </front>
        </reference>
        <reference anchor="PRE-RFC9849" target="https://www.rfc-editor.org/info/rfc9849">
          <front>
            <title>TLS Encrypted Client Hello</title>
            <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
              <organization/>
            </author>
            <author initials="K." surname="Oku" fullname="Kazuho Oku">
              <organization/>
            </author>
            <author initials="N." surname="Sullivan" fullname="Nick Sullivan">
              <organization/>
            </author>
            <author initials="C. A." surname="Wood" fullname="Christopher A. Wood">
              <organization/>
            </author>
            <date year="2025" month="December"/>
          </front>
          <seriesInfo name="RFC" value="PRE-RFC9849"/>
          <seriesInfo name="DOI" value="10.17487/preRFC9849"/>
        </reference>
        <reference anchor="RSA">
          <front>
            <title>A method for obtaining digital signatures and public-key cryptosystems</title>
            <author fullname="R. L. Rivest" initials="R." surname="Rivest">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <author fullname="A. Shamir" initials="A." surname="Shamir">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <author fullname="L. Adleman" initials="L." surname="Adleman">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <date month="February" year="1978"/>
          </front>
          <seriesInfo name="Communications of the ACM" value="vol. 21, no. 2, pp. 120-126"/>
          <seriesInfo name="DOI" value="10.1145/359340.359342"/>
          <refcontent>Association for Computing Machinery (ACM)</refcontent>
        </reference>
        <reference anchor="DSS">
          <front>
            <title>Digital Signature Standard (DSS)</title>
            <author>
              <organization/>
            </author>
            <date month="February" year="2023"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.fips.186-5"/>
          <refcontent>National Institute of Standards and Technology (U.S.)</refcontent>
        </reference>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3552.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9525.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8446.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7924.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6347.xml"/>
        <reference anchor="ECDP">
          <front>
            <title>Recommendations for Discrete Logarithm-based Cryptography:: Elliptic Curve Domain Parameters</title>
            <author fullname="Lily Chen" initials="L." surname="Chen">
              <organization/>
            </author>
            <author fullname="Dustin Moody" initials="D." surname="Moody">
              <organization/>
            </author>
            <author fullname="Andrew Regenscheid" initials="A." surname="Regenscheid">
              <organization/>
            </author>
            <author fullname="Angela Robinson" initials="A." surname="Robinson">
              <organization/>
            </author>
            <author fullname="Karen Randall" initials="K." surname="Randall">
              <organization/>
            </author>
            <date month="February" year="2023"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-186"/>
          <refcontent>National Institute of Standards and Technology</refcontent>
        </reference>
        <reference anchor="SLOTH">
          <front>
            <title>Transcript Collision Attacks: Breaking Authentication in TLS, IKE, and SSH</title>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="Gaetan Leurent" initials="G." surname="Leurent">
              <organization/>
            </author>
            <date year="2016"/>
          </front>
          <seriesInfo name="Proceedings 2016 Network and Distributed System Security" value="Symposium"/>
          <seriesInfo name="DOI" value="10.14722/ndss.2016.23418"/>
          <refcontent>Internet Society</refcontent>
        </reference>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8422.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9147.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8447.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8448.xml"/>
        <reference anchor="CHECKOWAY">
          <front>
            <title>A Systematic Analysis of the Juniper Dual EC Incident</title>
            <author fullname="Stephen Checkoway" initials="S." surname="Checkoway">
              <organization>University of Illinois at Chicago, Chicago, IL, USA</organization>
            </author>
            <author fullname="Jacob Maskiewicz" initials="J." surname="Maskiewicz">
              <organization>UC San Diego, La Jolla, CA, USA</organization>
            </author>
            <author fullname="Christina Garman" initials="C." surname="Garman">
              <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
            </author>
            <author fullname="Joshua Fried" initials="J." surname="Fried">
              <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
            </author>
            <author fullname="Shaanan Cohney" initials="S." surname="Cohney">
              <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
            </author>
            <author fullname="Matthew Green" initials="M." surname="Green">
              <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
            </author>
            <author fullname="Nadia Heninger" initials="N." surname="Heninger">
              <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
            </author>
            <author fullname="Ralf-Philipp Weinmann" initials="R." surname="Weinmann">
              <organization>Comsecuris, Duisburg, Germany</organization>
            </author>
            <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
              <organization>UC San Diego, La Jolla, CA, USA</organization>
            </author>
            <author fullname="Hovav Shacham" initials="H." surname="Shacham">
              <organization>UC San Diego, La Jolla, CA, USA</organization>
            </author>
            <date month="October" year="2016"/>
          </front>
          <seriesInfo name="Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications Security" value="pp. 468-479"/>
          <seriesInfo name="DOI" value="10.1145/2976749.2978395"/>
          <refcontent>ACM</refcontent>
        </reference>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8879.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6101.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2246.xml"/>
        <reference anchor="CK01">
          <front>
            <title>Analysis of Key-Exchange Protocols and Their Use for Building Secure Channels</title>
            <author fullname="Ran Canetti" initials="R." surname="Canetti">
              <organization/>
            </author>
            <author fullname="Hugo Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2001"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 453-474"/>
          <seriesInfo name="DOI" value="10.1007/3-540-44987-6_28"/>
          <seriesInfo name="ISBN" value="[&quot;9783540420705&quot;, &quot;9783540449874&quot;]"/>
          <refcontent>Springer Berlin Heidelberg</refcontent>
        </reference>
        <reference anchor="BBFGKZ16">
          <front>
            <title>Downgrade Resilience in Key-Exchange Protocols</title>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="Christina Brzuska" initials="C." surname="Brzuska">
              <organization/>
            </author>
            <author fullname="Cedric Fournet" initials="C." surname="Fournet">
              <organization/>
            </author>
            <author fullname="Matthew Green" initials="M." surname="Green">
              <organization/>
            </author>
            <author fullname="Markulf Kohlweiss" initials="M." surname="Kohlweiss">
              <organization/>
            </author>
            <author fullname="Santiago Zanella-Beguelin" initials="S." surname="Zanella-Beguelin">
              <organization/>
            </author>
            <date month="May" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE Symposium on Security and Privacy" value="(SP)"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.37"/>
          <refcontent>IEEE</refcontent>
        </reference>
        <reference anchor="DOW92">
          <front>
            <title>Authentication and authenticated key exchanges</title>
            <author fullname="Whitfield Diffie" initials="W." surname="Diffie">
              <organization/>
            </author>
            <author fullname="Paul C. Van Oorschot" initials="P." surname="Van Oorschot">
              <organization/>
            </author>
            <author fullname="Michael J. Wiener" initials="M." surname="Wiener">
              <organization/>
            </author>
            <date month="June" year="1992"/>
          </front>
          <seriesInfo name="Designs, Codes and Cryptography" value="vol. 2, no. 2, pp. 107-125"/>
          <seriesInfo name="DOI" value="10.1007/bf00124891"/>
          <refcontent>Springer Science and Business Media LLC</refcontent>
        </reference>
        <reference anchor="SIGMA">
          <front>
            <title>SIGMA: The ‘SIGn-and-MAc’ Approach to Authenticated Diffie-Hellman and Its Use in the IKE Protocols</title>
            <author fullname="Hugo Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2003"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 400-425"/>
          <seriesInfo name="DOI" value="10.1007/978-3-540-45146-4_24"/>
          <seriesInfo name="ISBN" value="[&quot;9783540406747&quot;, &quot;9783540451464&quot;]"/>
          <refcontent>Springer Berlin Heidelberg</refcontent>
        </reference>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8773.xml"/>
        <reference anchor="CCG16">
          <front>
            <title>On Post-compromise Security</title>
            <author fullname="Katriel Cohn-Gordon" initials="K." surname="Cohn-Gordon">
              <organization/>
            </author>
            <author fullname="Cas Cremers" initials="C." surname="Cremers">
              <organization/>
            </author>
            <author fullname="Luke Garratt" initials="L." surname="Garratt">
              <organization/>
            </author>
            <date month="June" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE 29th Computer Security Foundations Symposium (CSF)" value="pp. 164-178"/>
          <seriesInfo name="DOI" value="10.1109/csf.2016.19"/>
          <refcontent>IEEE</refcontent>
        </reference>
        <reference anchor="CHSV16">
          <front>
            <title>Automated Analysis and Verification of TLS 1.3: 0-RTT, Resumption and Delayed Authentication</title>
            <author fullname="Cas Cremers" initials="C." surname="Cremers">
              <organization/>
            </author>
            <author fullname="Marko Horvat" initials="M." surname="Horvat">
              <organization/>
            </author>
            <author fullname="Sam Scott" initials="S." surname="Scott">
              <organization/>
            </author>
            <author fullname="Thyla van der Merwe" initials="T." surname="van der Merwe">
              <organization/>
            </author>
            <date month="May" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE Symposium on Security and Privacy (SP)" value="pp. 470-485"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.35"/>
          <refcontent>IEEE</refcontent>
        </reference>
        <reference anchor="LXZFH16">
          <front>
            <title>Multiple Handshakes Security of TLS 1.3 Candidates</title>
            <author fullname="Xinyu Li" initials="X." surname="Li">
              <organization/>
            </author>
            <author fullname="Jing Xu" initials="J." surname="Xu">
              <organization/>
            </author>
            <author fullname="Zhenfeng Zhang" initials="Z." surname="Zhang">
              <organization/>
            </author>
            <author fullname="Dengguo Feng" initials="D." surname="Feng">
              <organization/>
            </author>
            <author fullname="Honggang Hu" initials="H." surname="Hu">
              <organization/>
            </author>
            <date month="May" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE Symposium on Security and Privacy (SP)" value="pp. 486-505"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.36"/>
          <refcontent>IEEE</refcontent>
        </reference>
        <reference anchor="BBK17">
          <front>
            <title>Verified Models and Reference Implementations for the TLS 1.3 Standard Candidate</title>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="Bruno Blanchet" initials="B." surname="Blanchet">
              <organization/>
            </author>
            <author fullname="Nadim Kobeissi" initials="N." surname="Kobeissi">
              <organization/>
            </author>
            <date month="May" year="2017"/>
          </front>
          <seriesInfo name="2017 IEEE Symposium on Security and Privacy (SP)" value="pp. 483-502"/>
          <seriesInfo name="DOI" value="10.1109/sp.2017.26"/>
          <refcontent>IEEE</refcontent>
        </reference>
        <reference anchor="REKEY">
          <front>
            <title>Increasing the Lifetime of a Key: A Comparative Analysis of the Security of Re-keying Techniques</title>
            <author fullname="Michel Abdalla" initials="M." surname="Abdalla">
              <organization/>
            </author>
            <author fullname="Mihir Bellare" initials="M." surname="Bellare">
              <organization/>
            </author>
            <date year="2000"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 546-559"/>
          <seriesInfo name="DOI" value="10.1007/3-540-44448-3_42"/>
          <seriesInfo name="ISBN" value="[&quot;9783540414049&quot;, &quot;9783540444480&quot;]"/>
          <refcontent>Springer Berlin Heidelberg</refcontent>
        </reference>
        <reference anchor="CLINIC">
          <front>
            <title>I Know Why You Went to the Clinic: Risks and Realization of HTTPS Traffic Analysis</title>
            <author fullname="Brad Miller" initials="B." surname="Miller">
              <organization/>
            </author>
            <author fullname="Ling Huang" initials="L." surname="Huang">
              <organization/>
            </author>
            <author fullname="A. D. Joseph" initials="A." surname="Joseph">
              <organization/>
            </author>
            <author fullname="J. D. Tygar" initials="J." surname="Tygar">
              <organization/>
            </author>
            <date year="2014"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 143-163"/>
          <seriesInfo name="DOI" value="10.1007/978-3-319-08506-7_8"/>
          <seriesInfo name="ISBN" value="[&quot;9783319085050&quot;, &quot;9783319085067&quot;]"/>
          <refcontent>Springer International Publishing</refcontent>
        </reference>
        <reference anchor="HCJC16">
          <front>
            <title>HTTPS traffic analysis and client identification using passive SSL/TLS fingerprinting</title>
            <author fullname="Martin Husák" initials="M." surname="Husák">
              <organization/>
            </author>
            <author fullname="Milan Čermák" initials="M." surname="Čermák">
              <organization/>
            </author>
            <author fullname="Tomáš Jirsík" initials="T." surname="Jirsík">
              <organization/>
            </author>
            <author fullname="Pavel Čeleda" initials="P." surname="Čeleda">
              <organization/>
            </author>
            <date month="February" year="2016"/>
          </front>
          <seriesInfo name="EURASIP Journal on Information Security" value="vol. 2016, no. 1"/>
          <seriesInfo name="DOI" value="10.1186/s13635-016-0030-7"/>
          <refcontent>Springer Science and Business Media LLC</refcontent>
        </reference>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5763.xml"/>
        <reference anchor="JSS15">
          <front>
            <title>On the Security of TLS 1.3 and QUIC Against Weaknesses in PKCS#1 v1.5 Encryption</title>
            <author fullname="Tibor Jager" initials="T." surname="Jager">
              <organization>Horst Görtz Institute, Ruhr University Bochum, Bochum, Germany</organization>
            </author>
            <author fullname="Jörg Schwenk" initials="J." surname="Schwenk">
              <organization>Horst Görtz Institute, Ruhr University Bochum, Bochum, Germany</organization>
            </author>
            <author fullname="Juraj Somorovsky" initials="J." surname="Somorovsky">
              <organization>Horst Görtz Institute, Ruhr University Bochum, Bochum, Germany</organization>
            </author>
            <date month="October" year="2015"/>
          </front>
          <seriesInfo name="Proceedings of the 22nd ACM SIGSAC Conference on Computer and Communications Security" value="pp. 1185-1196"/>
          <seriesInfo name="DOI" value="10.1145/2810103.2813657"/>
          <refcontent>ACM</refcontent>
        </reference>
      </references>
    </references>
    <?line 5264?>

<section anchor="state-machine">
      <name>State Machine</name>
      <t>This appendix provides a summary of the legal state transitions for the
client and server handshakes.  State names (in all capitals, e.g.,
START) have no formal meaning but are provided for ease of
comprehension.  Actions which are taken only in certain circumstances are
indicated in []. The notation "K_{send,recv} = foo" means "set the send/recv
key to the given key".</t>
      <section anchor="client">
        <name>Client</name>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="528" width="552" viewBox="0 0 552 528" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 64,96 L 64,400" fill="none" stroke="black"/>
              <path d="M 152,192 L 152,368" fill="none" stroke="black"/>
              <path d="M 216,376 L 216,480" fill="none" stroke="black"/>
              <path d="M 232,48 L 232,80" fill="none" stroke="black"/>
              <path d="M 232,104 L 232,144" fill="none" stroke="black"/>
              <path d="M 232,168 L 232,192" fill="none" stroke="black"/>
              <path d="M 264,256 L 264,320" fill="none" stroke="black"/>
              <path d="M 296,192 L 296,224" fill="none" stroke="black"/>
              <path d="M 304,32 L 304,96" fill="none" stroke="black"/>
              <path d="M 312,344 L 312,368" fill="none" stroke="black"/>
              <path d="M 328,248 L 328,272" fill="none" stroke="black"/>
              <path d="M 328,296 L 328,320" fill="none" stroke="black"/>
              <path d="M 264,32 L 304,32" fill="none" stroke="black"/>
              <path d="M 64,96 L 80,96" fill="none" stroke="black"/>
              <path d="M 272,96 L 304,96" fill="none" stroke="black"/>
              <path d="M 152,192 L 296,192" fill="none" stroke="black"/>
              <path d="M 152,368 L 168,368" fill="none" stroke="black"/>
              <path d="M 296,368 L 312,368" fill="none" stroke="black"/>
              <path d="M 64,400 L 80,400" fill="none" stroke="black"/>
              <path d="M 96,464 L 112,464" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="336,320 324,314.4 324,325.6" fill="black" transform="rotate(90,328,320)"/>
              <polygon class="arrowhead" points="336,272 324,266.4 324,277.6" fill="black" transform="rotate(90,328,272)"/>
              <polygon class="arrowhead" points="304,368 292,362.4 292,373.6" fill="black" transform="rotate(180,296,368)"/>
              <polygon class="arrowhead" points="304,224 292,218.4 292,229.6" fill="black" transform="rotate(90,296,224)"/>
              <polygon class="arrowhead" points="272,320 260,314.4 260,325.6" fill="black" transform="rotate(90,264,320)"/>
              <polygon class="arrowhead" points="272,32 260,26.4 260,37.6" fill="black" transform="rotate(180,264,32)"/>
              <polygon class="arrowhead" points="240,144 228,138.4 228,149.6" fill="black" transform="rotate(90,232,144)"/>
              <polygon class="arrowhead" points="240,80 228,74.4 228,85.6" fill="black" transform="rotate(90,232,80)"/>
              <polygon class="arrowhead" points="224,480 212,474.4 212,485.6" fill="black" transform="rotate(90,216,480)"/>
              <polygon class="arrowhead" points="176,368 164,362.4 164,373.6" fill="black" transform="rotate(0,168,368)"/>
              <polygon class="arrowhead" points="120,464 108,458.4 108,469.6" fill="black" transform="rotate(0,112,464)"/>
              <polygon class="arrowhead" points="88,400 76,394.4 76,405.6" fill="black" transform="rotate(0,80,400)"/>
              <polygon class="arrowhead" points="88,96 76,90.4 76,101.6" fill="black" transform="rotate(0,80,96)"/>
              <g class="text">
                <text x="232" y="36">START</text>
                <text x="108" y="52">Send</text>
                <text x="176" y="52">ClientHello</text>
                <text x="332" y="52">Recv</text>
                <text x="424" y="52">HelloRetryRequest</text>
                <text x="80" y="68">[K_send</text>
                <text x="120" y="68">=</text>
                <text x="152" y="68">early</text>
                <text x="200" y="68">data]</text>
                <text x="232" y="100">WAIT_SH</text>
                <text x="260" y="116">Recv</text>
                <text x="328" y="116">ServerHello</text>
                <text x="268" y="132">K_recv</text>
                <text x="304" y="132">=</text>
                <text x="352" y="132">handshake</text>
                <text x="40" y="148">Can</text>
                <text x="36" y="164">send</text>
                <text x="232" y="164">WAIT_EE</text>
                <text x="32" y="180">early</text>
                <text x="260" y="180">Recv</text>
                <text x="360" y="180">EncryptedExtensions</text>
                <text x="36" y="196">data</text>
                <text x="120" y="212">Using</text>
                <text x="328" y="212">Using</text>
                <text x="400" y="212">certificate</text>
                <text x="128" y="228">PSK</text>
                <text x="300" y="244">WAIT_CERT_CR</text>
                <text x="236" y="260">Recv</text>
                <text x="356" y="260">Recv</text>
                <text x="452" y="260">CertificateRequest</text>
                <text x="208" y="276">Certificate</text>
                <text x="336" y="292">WAIT_CERT</text>
                <text x="356" y="308">Recv</text>
                <text x="424" y="308">Certificate</text>
                <text x="296" y="340">WAIT_CV</text>
                <text x="340" y="356">Recv</text>
                <text x="432" y="356">CertificateVerify</text>
                <text x="232" y="372">WAIT_FINISHED</text>
                <text x="244" y="388">Recv</text>
                <text x="300" y="388">Finished</text>
                <text x="248" y="404">[Send</text>
                <text x="336" y="404">EndOfEarlyData]</text>
                <text x="252" y="420">K_send</text>
                <text x="288" y="420">=</text>
                <text x="336" y="420">handshake</text>
                <text x="248" y="436">[Send</text>
                <text x="320" y="436">Certificate</text>
                <text x="380" y="436">[+</text>
                <text x="472" y="436">CertificateVerify]]</text>
                <text x="16" y="452">Can</text>
                <text x="52" y="452">send</text>
                <text x="244" y="452">Send</text>
                <text x="300" y="452">Finished</text>
                <text x="16" y="468">app</text>
                <text x="52" y="468">data</text>
                <text x="252" y="468">K_send</text>
                <text x="288" y="468">=</text>
                <text x="324" y="468">K_recv</text>
                <text x="360" y="468">=</text>
                <text x="416" y="468">application</text>
                <text x="24" y="484">after</text>
                <text x="68" y="484">here</text>
                <text x="216" y="500">CONNECTED</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
                           START <----+
            Send ClientHello |        | Recv HelloRetryRequest
       [K_send = early data] |        |
                             v        |
        +->               WAIT_SH ----+
        |                    | Recv ServerHello
        |                    | K_recv = handshake
    Can |                    V
   send |                 WAIT_EE
  early |                    | Recv EncryptedExtensions
   data |          +---------+-------+
        |    Using |                 | Using certificate
        |      PSK |                 v
        |          |            WAIT_CERT_CR
        |          |        Recv |       | Recv CertificateRequest
        |          | Certificate |       v
        |          |             |    WAIT_CERT
        |          |             |       | Recv Certificate
        |          |             v       v
        |          |              WAIT_CV
        |          |                   | Recv CertificateVerify
        |          +-> WAIT_FINISHED <-+
        |                  | Recv Finished
        +->                | [Send EndOfEarlyData]
                           | K_send = handshake
                           | [Send Certificate [+ CertificateVerify]]
 Can send                  | Send Finished
 app data   -->            | K_send = K_recv = application
 after here                v
                       CONNECTED
]]></artwork>
        </artset>
        <t>Note that with the transitions as shown above, clients may send alerts
that derive from post-ServerHello messages in the clear or with the
early data keys. If clients need to send such alerts, they <bcp14>SHOULD</bcp14>
first rekey to the handshake keys if possible.</t>
      </section>
      <section anchor="server">
        <name>Server</name>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="672" width="576" viewBox="0 0 576 672" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 184,256 L 184,400" fill="none" stroke="black"/>
              <path d="M 184,432 L 184,592" fill="none" stroke="black"/>
              <path d="M 224,320 L 224,368" fill="none" stroke="black"/>
              <path d="M 256,48 L 256,64" fill="none" stroke="black"/>
              <path d="M 256,96 L 256,112" fill="none" stroke="black"/>
              <path d="M 256,144 L 256,256" fill="none" stroke="black"/>
              <path d="M 256,408 L 256,432" fill="none" stroke="black"/>
              <path d="M 256,600 L 256,640" fill="none" stroke="black"/>
              <path d="M 296,512 L 296,576" fill="none" stroke="black"/>
              <path d="M 328,256 L 328,304" fill="none" stroke="black"/>
              <path d="M 328,328 L 328,368" fill="none" stroke="black"/>
              <path d="M 328,432 L 328,480" fill="none" stroke="black"/>
              <path d="M 336,32 L 336,80" fill="none" stroke="black"/>
              <path d="M 360,512 L 360,528" fill="none" stroke="black"/>
              <path d="M 360,552 L 360,592" fill="none" stroke="black"/>
              <path d="M 392,320 L 392,400" fill="none" stroke="black"/>
              <path d="M 288,32 L 336,32" fill="none" stroke="black"/>
              <path d="M 304,80 L 336,80" fill="none" stroke="black"/>
              <path d="M 72,240 L 88,240" fill="none" stroke="black"/>
              <path d="M 184,256 L 328,256" fill="none" stroke="black"/>
              <path d="M 224,320 L 280,320" fill="none" stroke="black"/>
              <path d="M 376,320 L 392,320" fill="none" stroke="black"/>
              <path d="M 224,368 L 328,368" fill="none" stroke="black"/>
              <path d="M 184,400 L 200,400" fill="none" stroke="black"/>
              <path d="M 320,400 L 392,400" fill="none" stroke="black"/>
              <path d="M 184,432 L 328,432" fill="none" stroke="black"/>
              <path d="M 184,592 L 200,592" fill="none" stroke="black"/>
              <path d="M 328,592 L 360,592" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="368,528 356,522.4 356,533.6" fill="black" transform="rotate(90,360,528)"/>
              <polygon class="arrowhead" points="336,592 324,586.4 324,597.6" fill="black" transform="rotate(180,328,592)"/>
              <polygon class="arrowhead" points="336,480 324,474.4 324,485.6" fill="black" transform="rotate(90,328,480)"/>
              <polygon class="arrowhead" points="328,400 316,394.4 316,405.6" fill="black" transform="rotate(180,320,400)"/>
              <polygon class="arrowhead" points="304,576 292,570.4 292,581.6" fill="black" transform="rotate(90,296,576)"/>
              <polygon class="arrowhead" points="296,32 284,26.4 284,37.6" fill="black" transform="rotate(180,288,32)"/>
              <polygon class="arrowhead" points="288,320 276,314.4 276,325.6" fill="black" transform="rotate(0,280,320)"/>
              <polygon class="arrowhead" points="264,640 252,634.4 252,645.6" fill="black" transform="rotate(90,256,640)"/>
              <polygon class="arrowhead" points="264,112 252,106.4 252,117.6" fill="black" transform="rotate(90,256,112)"/>
              <polygon class="arrowhead" points="264,64 252,58.4 252,69.6" fill="black" transform="rotate(90,256,64)"/>
              <polygon class="arrowhead" points="208,592 196,586.4 196,597.6" fill="black" transform="rotate(0,200,592)"/>
              <polygon class="arrowhead" points="208,400 196,394.4 196,405.6" fill="black" transform="rotate(0,200,400)"/>
              <polygon class="arrowhead" points="96,240 84,234.4 84,245.6" fill="black" transform="rotate(0,88,240)"/>
              <g class="text">
                <text x="256" y="36">START</text>
                <text x="132" y="52">Recv</text>
                <text x="200" y="52">ClientHello</text>
                <text x="364" y="52">Send</text>
                <text x="456" y="52">HelloRetryRequest</text>
                <text x="260" y="84">RECVD_CH</text>
                <text x="292" y="100">Select</text>
                <text x="364" y="100">parameters</text>
                <text x="268" y="132">NEGOTIATED</text>
                <text x="284" y="148">Send</text>
                <text x="352" y="148">ServerHello</text>
                <text x="292" y="164">K_send</text>
                <text x="328" y="164">=</text>
                <text x="376" y="164">handshake</text>
                <text x="284" y="180">Send</text>
                <text x="384" y="180">EncryptedExtensions</text>
                <text x="288" y="196">[Send</text>
                <text x="392" y="196">CertificateRequest]</text>
                <text x="16" y="212">Can</text>
                <text x="52" y="212">send</text>
                <text x="288" y="212">[Send</text>
                <text x="360" y="212">Certificate</text>
                <text x="416" y="212">+</text>
                <text x="500" y="212">CertificateVerify]</text>
                <text x="16" y="228">app</text>
                <text x="52" y="228">data</text>
                <text x="284" y="228">Send</text>
                <text x="340" y="228">Finished</text>
                <text x="24" y="244">after</text>
                <text x="292" y="244">K_send</text>
                <text x="328" y="244">=</text>
                <text x="384" y="244">application</text>
                <text x="20" y="260">here</text>
                <text x="116" y="276">No</text>
                <text x="152" y="276">0-RTT</text>
                <text x="360" y="276">0-RTT</text>
                <text x="44" y="308">K_recv</text>
                <text x="80" y="308">=</text>
                <text x="128" y="308">handshake</text>
                <text x="364" y="308">K_recv</text>
                <text x="400" y="308">=</text>
                <text x="432" y="308">early</text>
                <text x="476" y="308">data</text>
                <text x="24" y="324">[Skip</text>
                <text x="80" y="324">decrypt</text>
                <text x="144" y="324">errors]</text>
                <text x="328" y="324">WAIT_EOED</text>
                <text x="300" y="340">Recv</text>
                <text x="420" y="340">Recv</text>
                <text x="500" y="340">EndOfEarlyData</text>
                <text x="256" y="356">early</text>
                <text x="300" y="356">data</text>
                <text x="428" y="356">K_recv</text>
                <text x="464" y="356">=</text>
                <text x="512" y="356">handshake</text>
                <text x="260" y="404">WAIT_FLIGHT2</text>
                <text x="124" y="452">No</text>
                <text x="156" y="452">auth</text>
                <text x="380" y="452">Cert-based</text>
                <text x="452" y="452">client</text>
                <text x="500" y="452">auth</text>
                <text x="328" y="500">WAIT_CERT</text>
                <text x="268" y="516">Recv</text>
                <text x="388" y="516">Recv</text>
                <text x="456" y="516">Certificate</text>
                <text x="264" y="532">empty</text>
                <text x="240" y="548">Certificate</text>
                <text x="360" y="548">WAIT_CV</text>
                <text x="388" y="564">Recv</text>
                <text x="440" y="580">CertificateVerify</text>
                <text x="264" y="596">WAIT_FINISHED</text>
                <text x="284" y="612">Recv</text>
                <text x="340" y="612">Finished</text>
                <text x="292" y="628">K_recv</text>
                <text x="328" y="628">=</text>
                <text x="384" y="628">application</text>
                <text x="256" y="660">CONNECTED</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
                             START <-----+
              Recv ClientHello |         | Send HelloRetryRequest
                               v         |
                            RECVD_CH ----+
                               | Select parameters
                               v
                            NEGOTIATED
                               | Send ServerHello
                               | K_send = handshake
                               | Send EncryptedExtensions
                               | [Send CertificateRequest]
Can send                       | [Send Certificate + CertificateVerify]
app data                       | Send Finished
after   -->                    | K_send = application
here                  +--------+--------+
             No 0-RTT |                 | 0-RTT
                      |                 |
  K_recv = handshake  |                 | K_recv = early data
[Skip decrypt errors] |    +------> WAIT_EOED --+
                      |    |       Recv |       | Recv EndOfEarlyData
                      |    | early data |       | K_recv = handshake
                      |    +------------+       |
                      |                         |
                      +-> WAIT_FLIGHT2 <--------+
                               |
                      +--------+--------+
              No auth |                 | Cert-based client auth
                      |                 |
                      |                 v
                      |             WAIT_CERT
                      |        Recv |       | Recv Certificate
                      |       empty |       v
                      | Certificate |    WAIT_CV
                      |             |       | Recv
                      |             v       | CertificateVerify
                      +-> WAIT_FINISHED <---+
                               | Recv Finished
                               | K_recv = application
                               v
                           CONNECTED
]]></artwork>
        </artset>
      </section>
    </section>
    <section anchor="protocol-data-structures-and-constant-values">
      <name>Protocol Data Structures and Constant Values</name>
      <t>This appendix provides the normative protocol types and the definitions
for constants.  Values listed as
"_RESERVED" were used in previous versions of TLS and are listed here
for completeness. TLS 1.3 implementations <bcp14>MUST NOT</bcp14> send them but
might receive them from older TLS implementations.</t>
      <section anchor="record-layer-1">
        <name>Record Layer</name>
        <artwork><![CDATA[
   enum {
       invalid(0),
       change_cipher_spec(20),
       alert(21),
       handshake(22),
       application_data(23),
       (255)
   } ContentType;

   struct {
       ContentType type;
       ProtocolVersion legacy_record_version;
       uint16 length;
       opaque fragment[TLSPlaintext.length];
   } TLSPlaintext;

   struct {
       opaque content[TLSPlaintext.length];
       ContentType type;
       uint8 zeros[length_of_padding];
   } TLSInnerPlaintext;

   struct {
       ContentType opaque_type = application_data; /* 23 */
       ProtocolVersion legacy_record_version = 0x0303; /* TLS v1.2 */
       uint16 length;
       opaque encrypted_record[TLSCiphertext.length];
   } TLSCiphertext;
]]></artwork>
      </section>
      <section anchor="alert-messages-appendix">
        <name>Alert Messages</name>
        <artwork><![CDATA[
   enum { warning(1), fatal(2), (255) } AlertLevel;

   enum {
       close_notify(0),
       unexpected_message(10),
       bad_record_mac(20),
       decryption_failed_RESERVED(21),
       record_overflow(22),
       decompression_failure_RESERVED(30),
       handshake_failure(40),
       no_certificate_RESERVED(41),
       bad_certificate(42),
       unsupported_certificate(43),
       certificate_revoked(44),
       certificate_expired(45),
       certificate_unknown(46),
       illegal_parameter(47),
       unknown_ca(48),
       access_denied(49),
       decode_error(50),
       decrypt_error(51),
       export_restriction_RESERVED(60),
       protocol_version(70),
       insufficient_security(71),
       internal_error(80),
       inappropriate_fallback(86),
       user_canceled(90),
       no_renegotiation_RESERVED(100),
       missing_extension(109),
       unsupported_extension(110),
       certificate_unobtainable_RESERVED(111),
       unrecognized_name(112),
       bad_certificate_status_response(113),
       bad_certificate_hash_value_RESERVED(114),
       unknown_psk_identity(115),
       certificate_required(116),
       general_error(117),
       no_application_protocol(120),
       (255)
   } AlertDescription;

   struct {
       AlertLevel level;
       AlertDescription description;
   } Alert;
]]></artwork>
      </section>
      <section anchor="handshake-protocol-appendix">
        <name>Handshake Protocol</name>
        <artwork><![CDATA[
   enum {
       hello_request_RESERVED(0),
       client_hello(1),
       server_hello(2),
       hello_verify_request_RESERVED(3),
       new_session_ticket(4),
       end_of_early_data(5),
       hello_retry_request_RESERVED(6),
       encrypted_extensions(8),
       certificate(11),
       server_key_exchange_RESERVED(12),
       certificate_request(13),
       server_hello_done_RESERVED(14),
       certificate_verify(15),
       client_key_exchange_RESERVED(16),
       finished(20),
       certificate_url_RESERVED(21),
       certificate_status_RESERVED(22),
       supplemental_data_RESERVED(23),
       key_update(24),
       message_hash(254),
       (255)
   } HandshakeType;

   struct {
       HandshakeType msg_type;    /* handshake type */
       uint24 length;             /* remaining bytes in message */
       select (Handshake.msg_type) {
           case client_hello:          ClientHello;
           case server_hello:          ServerHello;
           case end_of_early_data:     EndOfEarlyData;
           case encrypted_extensions:  EncryptedExtensions;
           case certificate_request:   CertificateRequest;
           case certificate:           Certificate;
           case certificate_verify:    CertificateVerify;
           case finished:              Finished;
           case new_session_ticket:    NewSessionTicket;
           case key_update:            KeyUpdate;
       };
   } Handshake;
]]></artwork>
        <section anchor="key-exchange-messages-1">
          <name>Key Exchange Messages</name>
          <artwork><![CDATA[
   uint16 ProtocolVersion;
   opaque Random[32];

   uint8 CipherSuite[2];    /* Cryptographic suite selector */

   struct {
       ProtocolVersion legacy_version = 0x0303;    /* TLS v1.2 */
       Random random;
       opaque legacy_session_id<0..32>;
       CipherSuite cipher_suites<2..2^16-2>;
       opaque legacy_compression_methods<1..2^8-1>;
       Extension extensions<8..2^16-1>;
   } ClientHello;

   struct {
       ProtocolVersion legacy_version = 0x0303;    /* TLS v1.2 */
       Random random;
       opaque legacy_session_id_echo<0..32>;
       CipherSuite cipher_suite;
       uint8 legacy_compression_method = 0;
       Extension extensions<6..2^16-1>;
   } ServerHello;

   struct {
       ExtensionType extension_type;
       opaque extension_data<0..2^16-1>;
   } Extension;

   enum {
       server_name(0),                             /* RFC 6066 */
       max_fragment_length(1),                     /* RFC 6066 */
       status_request(5),                          /* RFC 6066 */
       supported_groups(10),                       /* RFC 8422, 7919 */
       signature_algorithms(13),                   /* RFC 8446 */
       use_srtp(14),                               /* RFC 5764 */
       heartbeat(15),                              /* RFC 6520 */
       application_layer_protocol_negotiation(16), /* RFC 7301 */
       signed_certificate_timestamp(18),           /* RFC 6962 */
       client_certificate_type(19),                /* RFC 7250 */
       server_certificate_type(20),                /* RFC 7250 */
       padding(21),                                /* RFC 7685 */
       pre_shared_key(41),                         /* RFC 8446 */
       early_data(42),                             /* RFC 8446 */
       supported_versions(43),                     /* RFC 8446 */
       cookie(44),                                 /* RFC 8446 */
       psk_key_exchange_modes(45),                 /* RFC 8446 */
       certificate_authorities(47),                /* RFC 8446 */
       oid_filters(48),                            /* RFC 8446 */
       post_handshake_auth(49),                    /* RFC 8446 */
       signature_algorithms_cert(50),              /* RFC 8446 */
       key_share(51),                              /* RFC 8446 */
       (65535)
   } ExtensionType;

   struct {
       NamedGroup group;
       opaque key_exchange<1..2^16-1>;
   } KeyShareEntry;

   struct {
       KeyShareEntry client_shares<0..2^16-1>;
   } KeyShareClientHello;

   struct {
       NamedGroup selected_group;
   } KeyShareHelloRetryRequest;

   struct {
       KeyShareEntry server_share;
   } KeyShareServerHello;

   struct {
       uint8 legacy_form = 4;
       opaque X[coordinate_length];
       opaque Y[coordinate_length];
   } UncompressedPointRepresentation;

   enum { psk_ke(0), psk_dhe_ke(1), (255) } PskKeyExchangeMode;

   struct {
       PskKeyExchangeMode ke_modes<1..255>;
   } PskKeyExchangeModes;

   struct {} Empty;

   struct {
       select (Handshake.msg_type) {
           case new_session_ticket:   uint32 max_early_data_size;
           case client_hello:         Empty;
           case encrypted_extensions: Empty;
       };
   } EarlyDataIndication;

   struct {
       opaque identity<1..2^16-1>;
       uint32 obfuscated_ticket_age;
   } PskIdentity;

   opaque PskBinderEntry<32..255>;

   struct {
       PskIdentity identities<7..2^16-1>;
       PskBinderEntry binders<33..2^16-1>;
   } OfferedPsks;

   struct {
       select (Handshake.msg_type) {
           case client_hello: OfferedPsks;
           case server_hello: uint16 selected_identity;
       };
   } PreSharedKeyExtension;
]]></artwork>
          <section anchor="version-extension">
            <name>Version Extension</name>
            <artwork><![CDATA[
   struct {
       select (Handshake.msg_type) {
           case client_hello:
                ProtocolVersion versions<2..254>;

           case server_hello: /* and HelloRetryRequest */
                ProtocolVersion selected_version;
       };
   } SupportedVersions;
]]></artwork>
          </section>
          <section anchor="cookie-extension">
            <name>Cookie Extension</name>
            <artwork><![CDATA[
   struct {
       opaque cookie<1..2^16-1>;
   } Cookie;
]]></artwork>
          </section>
          <section anchor="signature-algorithm-extension">
            <name>Signature Algorithm Extension</name>
            <artwork><![CDATA[
   enum {
       /* RSASSA-PKCS1-v1_5 algorithms */
       rsa_pkcs1_sha256(0x0401),
       rsa_pkcs1_sha384(0x0501),
       rsa_pkcs1_sha512(0x0601),

       /* ECDSA algorithms */
       ecdsa_secp256r1_sha256(0x0403),
       ecdsa_secp384r1_sha384(0x0503),
       ecdsa_secp521r1_sha512(0x0603),

       /* RSASSA-PSS algorithms with public key OID rsaEncryption */
       rsa_pss_rsae_sha256(0x0804),
       rsa_pss_rsae_sha384(0x0805),
       rsa_pss_rsae_sha512(0x0806),

       /* EdDSA algorithms */
       ed25519(0x0807),
       ed448(0x0808),

       /* RSASSA-PSS algorithms with public key OID RSASSA-PSS */
       rsa_pss_pss_sha256(0x0809),
       rsa_pss_pss_sha384(0x080a),
       rsa_pss_pss_sha512(0x080b),

       /* Legacy algorithms */
       rsa_pkcs1_sha1(0x0201),
       ecdsa_sha1(0x0203),

       /* Reserved Code Points */
       obsolete_RESERVED(0x0000..0x0200),
       dsa_sha1_RESERVED(0x0202),
       obsolete_RESERVED(0x0204..0x0400),
       dsa_sha256_RESERVED(0x0402),
       obsolete_RESERVED(0x0404..0x0500),
       dsa_sha384_RESERVED(0x0502),
       obsolete_RESERVED(0x0504..0x0600),
       dsa_sha512_RESERVED(0x0602),
       obsolete_RESERVED(0x0604..0x06FF),
       private_use(0xFE00..0xFFFF),
       (0xFFFF)
   } SignatureScheme;

   struct {
       SignatureScheme supported_signature_algorithms<2..2^16-2>;
   } SignatureSchemeList;
]]></artwork>
          </section>
          <section anchor="supported-groups-extension">
            <name>Supported Groups Extension</name>
            <artwork><![CDATA[
   enum {
       unallocated_RESERVED(0x0000),

       /* Elliptic Curve Groups (ECDHE) */
       obsolete_RESERVED(0x0001..0x0016),
       secp256r1(0x0017), secp384r1(0x0018), secp521r1(0x0019),
       obsolete_RESERVED(0x001A..0x001C),
       x25519(0x001D), x448(0x001E),

       /* Finite Field Groups (DHE) */
       ffdhe2048(0x0100), ffdhe3072(0x0101), ffdhe4096(0x0102),
       ffdhe6144(0x0103), ffdhe8192(0x0104),

       /* Reserved Code Points */
       ffdhe_private_use(0x01FC..0x01FF),
       ecdhe_private_use(0xFE00..0xFEFF),
       obsolete_RESERVED(0xFF01..0xFF02),
       (0xFFFF)
   } NamedGroup;

   struct {
       NamedGroup named_group_list<2..2^16-1>;
   } NamedGroupList;
]]></artwork>
            <t>Values within "obsolete_RESERVED" ranges are used in previous versions
of TLS and <bcp14>MUST NOT</bcp14> be offered or negotiated by TLS 1.3 implementations.
The obsolete curves have various known/theoretical weaknesses or have
had very little usage, in some cases only due to unintentional
server configuration issues. They are no longer considered appropriate
for general use and should be assumed to be potentially unsafe. The set
of curves specified here is sufficient for interoperability with all
currently deployed and properly configured TLS implementations.</t>
          </section>
        </section>
        <section anchor="server-parameters-messages">
          <name>Server Parameters Messages</name>
          <artwork><![CDATA[
   opaque DistinguishedName<1..2^16-1>;

   struct {
       DistinguishedName authorities<3..2^16-1>;
   } CertificateAuthoritiesExtension;

   struct {
       opaque certificate_extension_oid<1..2^8-1>;
       opaque certificate_extension_values<0..2^16-1>;
   } OIDFilter;

   struct {
       OIDFilter filters<0..2^16-1>;
   } OIDFilterExtension;

   struct {} PostHandshakeAuth;

   struct {
       Extension extensions<0..2^16-1>;
   } EncryptedExtensions;

   struct {
       opaque certificate_request_context<0..2^8-1>;
       Extension extensions<0..2^16-1>;
   } CertificateRequest;
]]></artwork>
        </section>
        <section anchor="authentication-messages-1">
          <name>Authentication Messages</name>
          <artwork><![CDATA[
   enum {
       X509(0),
       OpenPGP_RESERVED(1),
       RawPublicKey(2),
       (255)
   } CertificateType;

   struct {
       select (certificate_type) {
           case RawPublicKey:
             /* From RFC 7250 ASN.1_subjectPublicKeyInfo */
             opaque ASN1_subjectPublicKeyInfo<1..2^24-1>;

           case X509:
             opaque cert_data<1..2^24-1>;
       };
       Extension extensions<0..2^16-1>;
   } CertificateEntry;

   struct {
       opaque certificate_request_context<0..2^8-1>;
       CertificateEntry certificate_list<0..2^24-1>;
   } Certificate;

   struct {
       SignatureScheme algorithm;
       opaque signature<0..2^16-1>;
   } CertificateVerify;

   struct {
       opaque verify_data[Hash.length];
   } Finished;
]]></artwork>
        </section>
        <section anchor="ticket-establishment">
          <name>Ticket Establishment</name>
          <artwork><![CDATA[
   struct {
       uint32 ticket_lifetime;
       uint32 ticket_age_add;
       opaque ticket_nonce<0..255>;
       opaque ticket<1..2^16-1>;
       Extension extensions<0..2^16-1>;
   } NewSessionTicket;
]]></artwork>
        </section>
        <section anchor="updating-keys">
          <name>Updating Keys</name>
          <artwork><![CDATA[
   struct {} EndOfEarlyData;

   enum {
       update_not_requested(0), update_requested(1), (255)
   } KeyUpdateRequest;

   struct {
       KeyUpdateRequest request_update;
   } KeyUpdate;
]]></artwork>
        </section>
      </section>
      <section anchor="cipher-suites">
        <name>Cipher Suites</name>
        <t>A cipher suite defines the pair of the AEAD algorithm and hash
algorithm to be used with HKDF.
Cipher suite names follow the naming convention:</t>
        <artwork><![CDATA[
   CipherSuite TLS_AEAD_HASH = VALUE;
]]></artwork>
        <table anchor="cs-components">
          <name>Cipher Suite Name Structure</name>
          <thead>
            <tr>
              <th align="left">Component</th>
              <th align="left">Contents</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">TLS</td>
              <td align="left">The string "TLS"</td>
            </tr>
            <tr>
              <td align="left">AEAD</td>
              <td align="left">The AEAD algorithm used for record protection</td>
            </tr>
            <tr>
              <td align="left">HASH</td>
              <td align="left">The hash algorithm used with HKDF and Transcript-Hash</td>
            </tr>
            <tr>
              <td align="left">VALUE</td>
              <td align="left">The two byte ID assigned for this cipher suite</td>
            </tr>
          </tbody>
        </table>
        <t>This specification defines the following cipher suites for use with TLS 1.3.</t>
        <table anchor="cs-list">
          <name>Cipher Suite List</name>
          <thead>
            <tr>
              <th align="left">Description</th>
              <th align="left">Value</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">TLS_AES_128_GCM_SHA256</td>
              <td align="left">{0x13,0x01}</td>
            </tr>
            <tr>
              <td align="left">TLS_AES_256_GCM_SHA384</td>
              <td align="left">{0x13,0x02}</td>
            </tr>
            <tr>
              <td align="left">TLS_CHACHA20_POLY1305_SHA256</td>
              <td align="left">{0x13,0x03}</td>
            </tr>
            <tr>
              <td align="left">TLS_AES_128_CCM_SHA256</td>
              <td align="left">{0x13,0x04}</td>
            </tr>
            <tr>
              <td align="left">TLS_AES_128_CCM_8_SHA256</td>
              <td align="left">{0x13,0x05}</td>
            </tr>
          </tbody>
        </table>
        <t>The corresponding AEAD algorithms AEAD_AES_128_GCM, AEAD_AES_256_GCM, and
AEAD_AES_128_CCM are defined in <xref target="RFC5116"/>. AEAD_CHACHA20_POLY1305 is defined
in <xref target="RFC8439"/>. AEAD_AES_128_CCM_8 is defined in <xref target="RFC6655"/>. The corresponding
hash algorithms are defined in <xref target="SHS"/>.</t>
        <t>Although TLS 1.3 uses the same cipher suite space as previous versions
of TLS, TLS 1.3 cipher suites are defined differently, only specifying
the symmetric ciphers, and cannot be used for TLS 1.2. Similarly,
cipher suites for TLS 1.2 and lower cannot be used with TLS 1.3.</t>
        <t>New cipher suite values are assigned by IANA as described in
<xref target="iana-considerations"/>.</t>
      </section>
    </section>
    <section anchor="implementation-notes">
      <name>Implementation Notes</name>
      <t>The TLS protocol cannot prevent many common security mistakes. This appendix
provides several recommendations to assist implementors.
<xref target="RFC8448"/> provides test vectors for TLS 1.3 handshakes.</t>
      <section anchor="random-number-generation-and-seeding">
        <name>Random Number Generation and Seeding</name>
        <t>TLS requires a cryptographically secure pseudorandom number generator (CSPRNG).
A performant and appropriately secure CSPRNG is provided by most operating
systems or can be sourced from a cryptographic library. 
It is <bcp14>RECOMMENDED</bcp14> to use an existing CSPRNG implementation in
preference to crafting a new one. Many adequate cryptographic libraries
are already available under favorable license terms.  Should those prove
unsatisfactory, <xref target="RFC4086"/> provides guidance on the generation of random values.</t>
        <t>TLS uses random values (1) in public protocol fields such as the
public Random values in the ClientHello and ServerHello and (2) to
generate keying material. With a properly functioning CSPRNG, this
does not present a security problem, as it is not feasible to determine
the CSPRNG state from its output. However, with a broken CSPRNG, it
may be possible for an attacker to use the public output to determine
the CSPRNG internal state and thereby predict the keying material, as
documented in <xref target="CHECKOWAY"/> and
<xref target="DSA-1571-1"/>.</t>
        <t>Implementations can provide extra security against
this form of attack by using separate CSPRNGs to generate public and
private values.</t>
        <t><xref target="RFC8937"/> describes a way for security protocol implementations
to augment their (pseudo)random number generators using a long-term private key
and a deterministic signature function. This improves randomness from broken or
otherwise subverted random number generators.</t>
      </section>
      <section anchor="certificates-and-authentication">
        <name>Certificates and Authentication</name>
        <t>Implementations are responsible for verifying the integrity of certificates and
should generally support certificate revocation messages. Absent a specific
indication from an application profile, certificates should
always be verified to ensure proper signing by a trusted certificate authority
(CA). The selection and addition of trust anchors should be done very carefully.
Users should be able to view information about the certificate and trust anchor.
Applications <bcp14>SHOULD</bcp14> also enforce minimum and maximum key sizes. For example,
certification paths containing keys or signatures weaker than 2048-bit RSA or
224-bit ECDSA are not appropriate for secure applications.</t>
        <t>Note that it is common practice in some protocols to use the same
certificate in both client and server modes. This setting has not been
extensively analyzed, and it is the responsibility of the higher-level
protocol to ensure there is no ambiguity in this case about the
higher-level semantics.</t>
      </section>
      <section anchor="implementation-pitfalls">
        <name>Implementation Pitfalls</name>
        <t>Implementation experience has shown that certain parts of earlier TLS
specifications are not easy to understand and have been a source of
interoperability and security problems. Many of these areas have been clarified
in this document but this appendix contains a short list of the most important
things that require special attention from implementors.</t>
        <t>TLS protocol issues:</t>
        <ul spacing="normal">
          <li>
            <t>Do you correctly handle handshake messages that are fragmented to
multiple TLS records (see <xref target="record-layer"/>)? Do you correctly handle
corner cases like a ClientHello that is split into several small fragments? Do
you fragment handshake messages that exceed the maximum fragment
size? In particular, the Certificate and CertificateRequest
handshake messages can be large enough to require fragmentation.
Certificate compression as defined in <xref target="RFC8879"/> can be used
to reduce the risk of fragmentation.</t>
          </li>
          <li>
            <t>Do you ignore the TLS record layer version number in all unencrypted TLS
records (see <xref target="backward-compatibility"/>)?</t>
          </li>
          <li>
            <t>Have you ensured that all support for SSL, RC4, EXPORT ciphers, and
MD5 (via the "signature_algorithms" extension) is completely removed from
all possible configurations that support TLS 1.3 or later, and that
attempts to use these obsolete capabilities fail correctly
(see <xref target="backward-compatibility"/>)?</t>
          </li>
          <li>
            <t>Do you handle TLS extensions in ClientHellos correctly, including
unknown extensions?</t>
          </li>
          <li>
            <t>When the server has requested a client certificate but no
suitable certificate is available, do you correctly send an empty
Certificate message, instead of omitting the whole message (see
<xref target="certificate"/>)?</t>
          </li>
          <li>
            <t>When processing the plaintext fragment produced by AEAD-Decrypt and
scanning from the end for the ContentType, do you avoid scanning
past the start of the cleartext in the event that the peer has sent
a malformed plaintext of all zeros?</t>
          </li>
          <li>
            <t>Do you properly ignore unrecognized cipher suites
(<xref target="client-hello"/>), hello extensions (<xref target="extensions"/>), named groups
(<xref target="supported-groups"/>), key shares (<xref target="key-share"/>),
supported versions (<xref target="supported-versions"/>),
and signature algorithms (<xref target="signature-algorithms"/>) in the
ClientHello?</t>
          </li>
          <li>
            <t>As a server, do you send a HelloRetryRequest to clients which
support a compatible (EC)DHE group but do not predict it in the
"key_share" extension? As a client, do you correctly handle a
HelloRetryRequest from the server?</t>
          </li>
        </ul>
        <t>Cryptographic details:</t>
        <ul spacing="normal">
          <li>
            <t>What countermeasures do you use to prevent timing attacks <xref target="TIMING"/>?</t>
          </li>
          <li>
            <t>When using Diffie-Hellman key exchange, do you correctly preserve
leading zero bytes in the negotiated key (see <xref target="finite-field-diffie-hellman"/>)?</t>
          </li>
          <li>
            <t>Does your TLS client check that the Diffie-Hellman parameters sent
by the server are acceptable (see <xref target="ffdhe-param"/>)?</t>
          </li>
          <li>
            <t>Do you use a strong and, most importantly, properly seeded random number
generator (see <xref target="random-number-generation-and-seeding"/>) when generating Diffie-Hellman
private values, the ECDSA "k" parameter, and other security-critical values?
It is <bcp14>RECOMMENDED</bcp14> that implementations implement "deterministic ECDSA"
as specified in <xref target="RFC6979"/>. Note that purely deterministic Elliptic Curve Cryptography (ECC) signatures such as
deterministic ECDSA and EdDSA may be vulnerable to certain side-channel and fault
injection attacks in easily accessible Internet of Things (IoT) devices.</t>
          </li>
          <li>
            <t>Do you zero-pad Diffie-Hellman public key values and shared
secrets to the group size (see <xref target="ffdhe-param"/> and <xref target="finite-field-diffie-hellman"/>)?</t>
          </li>
          <li>
            <t>Do you verify signatures after making them, to protect against RSA-CRT
key leaks <xref target="FW15"/>?</t>
          </li>
        </ul>
      </section>
      <section anchor="client-tracking">
        <name>Client and Server Tracking Prevention</name>
        <t>Clients <bcp14>SHOULD NOT</bcp14> reuse a ticket for multiple connections. Reuse
of a ticket allows passive observers to correlate different connections.
Servers that issue tickets <bcp14>SHOULD</bcp14> offer at least as many tickets
as the number of connections that a client might use; for example, a web browser
using HTTP/1.1 <xref target="RFC9112"/> might open six connections to a server. Servers <bcp14>SHOULD</bcp14>
issue new tickets with every connection. This ensures that clients are
always able to use a new ticket when creating a new connection.</t>
        <t>Offering a ticket to a server additionally allows the server to correlate
different connections. This is possible independent of ticket reuse. Client
applications <bcp14>SHOULD NOT</bcp14> offer tickets across connections that are meant to be
uncorrelated. For example, <xref target="FETCH"/> defines network partition keys to separate
cache lookups in web browsers.</t>
        <t>Clients and servers <bcp14>SHOULD NOT</bcp14> reuse a key share for multiple connections. Reuse
of a key share allows passive observers to correlate different connections. Reuse
of a client key share to the same server additionally allows the server to correlate different connections.</t>
        <t>It is <bcp14>RECOMMENDED</bcp14> that the labels for external identities be selected so that they
do not provide additional information about the identity of the
user. For instance, if the label includes an email address, then
this trivially identifies the user to a passive attacker,
unlike the client's Certificate, which is encrypted. There are a number of potential
ways to avoid this risk, including (1) using random identity labels,
(2) pre-encrypting the identity under a key known to the server, or (3)
using the Encrypted Client Hello extension <xref target="PRE-RFC9849"/>.</t>
        <t>If an external PSK identity is used for multiple connections, then it
will generally be possible for an external observer to track
clients and/or servers across connections. Use of the
Encrypted Client Hello extension <xref target="PRE-RFC9849"/> can
mitigate this risk, as can mechanisms external to TLS that
rotate or encrypt the PSK identity.</t>
      </section>
      <section anchor="unauthenticated-operation">
        <name>Unauthenticated Operation</name>
        <t>Previous versions of TLS offered explicitly unauthenticated cipher suites based
on anonymous Diffie-Hellman. These modes have been deprecated in TLS 1.3.
However, it is still possible to negotiate parameters that do not provide
verifiable server authentication by several methods, including:</t>
        <ul spacing="normal">
          <li>
            <t>Raw public keys <xref target="RFC7250"/>.</t>
          </li>
          <li>
            <t>Using a public key contained in a certificate but without
validation of the certificate chain or any of its contents.</t>
          </li>
        </ul>
        <t>Either technique used alone is vulnerable to man-in-the-middle attacks
and therefore unsafe for general use. However, it is also possible to
bind such connections to an external authentication mechanism via
out-of-band validation of the server's public key, trust on first
use, or a mechanism such as channel bindings (though the
channel bindings described in <xref target="RFC5929"/> are not defined for
TLS 1.3). If no such mechanism is used, then the connection has no protection
against an active man-in-the-middle attack; applications <bcp14>MUST NOT</bcp14> use TLS
in such a way absent explicit configuration or a specific application
profile.</t>
      </section>
    </section>
    <section anchor="update-tls12">
      <name>Updates to TLS 1.2</name>
      <t>To align with the names used this document, the following terms from
<xref target="RFC5246"/> are renamed:</t>
      <ul spacing="normal">
        <li>
          <t>The master secret, computed in <xref section="8.1" sectionFormat="of" target="RFC5246"/>, is renamed to
the main secret. It is referred to as main_secret in formulas and
structures, instead of master_secret. However, the label parameter to the PRF
function is left unchanged for compatibility.</t>
        </li>
        <li>
          <t>The premaster secret is renamed to the preliminary secret. It is referred to
as preliminary_secret in formulas and structures, instead of
pre_master_secret.</t>
        </li>
        <li>
          <t>The PreMasterSecret and EncryptedPreMasterSecret structures, defined in
<xref section="7.4.7.1" sectionFormat="of" target="RFC5246"/>, are renamed to PreliminarySecret and
EncryptedPreliminarySecret, respectively.</t>
        </li>
      </ul>
      <t>Correspondingly, the extension defined in <xref target="RFC7627"/> is renamed to the
"Extended Main Secret" extension. The extension code point is renamed to
"extended_main_secret". The label parameter to the PRF function in <xref section="4" sectionFormat="of" target="RFC7627"/> is left unchanged for compatibility.</t>
    </section>
    <section anchor="backward-compatibility">
      <name>Backward Compatibility</name>
      <t>The TLS protocol provides a built-in mechanism for version negotiation between
endpoints potentially supporting different versions of TLS.</t>
      <t>TLS 1.x and SSL 3.0 use compatible ClientHello messages. Servers can also handle
clients trying to use future versions of TLS as long as the ClientHello format
remains compatible and there is at least one protocol version supported by
both the client and the server.</t>
      <t>Prior versions of TLS used the record layer version number
(TLSPlaintext.legacy_record_version and
TLSCiphertext.legacy_record_version) for various purposes.
As of TLS 1.3, this field is deprecated. The value of
TLSPlaintext.legacy_record_version <bcp14>MUST</bcp14> be ignored by all implementations.
The value of TLSCiphertext.legacy_record_version is included in the
additional data for deprotection but <bcp14>MAY</bcp14> otherwise be ignored
or <bcp14>MAY</bcp14> be validated to match the fixed constant value.
Version negotiation is performed using only the handshake versions
(ClientHello.legacy_version and ServerHello.legacy_version, as well as the
ClientHello, HelloRetryRequest, and ServerHello "supported_versions" extensions).
To maximize interoperability with older endpoints, implementations
that negotiate the use of TLS 1.0-1.2 <bcp14>SHOULD</bcp14> set the record layer
version number to the negotiated version for the ServerHello and all
records thereafter.</t>
      <t>For maximum compatibility with previously non-standard behavior and misconfigured
deployments, all implementations <bcp14>SHOULD</bcp14> support validation of certification paths
based on the expectations in this document, even when handling prior TLS versions'
handshakes (see <xref target="certificate-selection"/>).</t>
      <t>TLS 1.2 and prior supported an "Extended Main Secret" <xref target="RFC7627"/> extension
which digested large parts of the handshake transcript into the secret and
derived keys. Note this extension was renamed in <xref target="update-tls12"/>. Because TLS
1.3 always hashes in the transcript up to the server Finished, implementations
which support both TLS 1.3 and earlier versions <bcp14>SHOULD</bcp14> indicate the use of the
Extended Main Secret extension in their APIs whenever TLS 1.3 is used.</t>
      <section anchor="negotiating-with-an-older-server">
        <name>Negotiating with an Older Server</name>
        <t>A TLS 1.3 client who wishes to negotiate with servers that do not
support TLS 1.3 will send a
normal TLS 1.3 ClientHello containing 0x0303 (TLS 1.2) in
ClientHello.legacy_version but with the correct version(s) in the
"supported_versions" extension. If the server does not support TLS 1.3, it
will respond with a ServerHello containing an older version number. If the
client agrees to use this version, the negotiation will proceed as appropriate
for the negotiated protocol. A client using a ticket for resumption <bcp14>SHOULD</bcp14> initiate the
connection using the version that was previously negotiated.</t>
        <t>Note that 0-RTT data is not compatible with older servers and <bcp14>SHOULD NOT</bcp14>
be sent absent knowledge that the server supports TLS 1.3.
See <xref target="zero-rtt-backwards-compatibility"/>.</t>
        <t>If the version chosen by the server is not supported by the client (or is not
acceptable), the client <bcp14>MUST</bcp14> abort the handshake with a "protocol_version" alert.</t>
        <t>Some legacy server implementations are known to not implement the TLS
specification properly and might abort connections upon encountering
TLS extensions or versions which they are not aware of. Interoperability
with buggy servers is a complex topic beyond the scope of this document.
Multiple connection attempts may be required to negotiate
a backward-compatible connection; however, this practice is vulnerable
to downgrade attacks and is <bcp14>NOT RECOMMENDED</bcp14>.</t>
      </section>
      <section anchor="negotiating-with-an-older-client">
        <name>Negotiating with an Older Client</name>
        <t>A TLS server can also receive a ClientHello indicating a version number smaller
than its highest supported version. If the "supported_versions" extension
is present, the server <bcp14>MUST</bcp14> negotiate using that extension as described in
<xref target="supported-versions"/>. If the "supported_versions" extension is not
present, the server <bcp14>MUST</bcp14> negotiate the minimum of ClientHello.legacy_version
and TLS 1.2. For example, if the server supports TLS 1.0, 1.1, and 1.2,
and legacy_version is TLS 1.0, the server will proceed with a TLS 1.0 ServerHello.
If the "supported_versions" extension is absent and the server only supports
versions greater than ClientHello.legacy_version, the server <bcp14>MUST</bcp14> abort the handshake
with a "protocol_version" alert.</t>
        <t>Note that earlier versions of TLS did not clearly specify the record layer
version number value in all cases (TLSPlaintext.legacy_record_version). Servers
will receive various TLS 1.x versions in this field, but its value
<bcp14>MUST</bcp14> always be ignored.</t>
      </section>
      <section anchor="zero-rtt-backwards-compatibility">
        <name>0-RTT Backward Compatibility</name>
        <t>0-RTT data is not compatible with older servers. An older server will respond
to the ClientHello with an older ServerHello, but it will not correctly skip
the 0-RTT data and will fail to complete the handshake. This can cause issues when
a client attempts to use 0-RTT, particularly against multi-server deployments. For
example, a deployment could deploy TLS 1.3 gradually with some servers
implementing TLS 1.3 and some implementing TLS 1.2, or a TLS 1.3 deployment
could be downgraded to TLS 1.2.</t>
        <t>A client that attempts to send 0-RTT data <bcp14>MUST</bcp14> fail a connection if it receives
a ServerHello with TLS 1.2 or older.  It can then retry
the connection with 0-RTT disabled.  To avoid a downgrade attack, the
client <bcp14>SHOULD NOT</bcp14> disable TLS 1.3, only 0-RTT.</t>
        <t>To avoid this error condition, multi-server deployments <bcp14>SHOULD</bcp14> ensure a uniform
and stable deployment of TLS 1.3 without 0-RTT prior to enabling 0-RTT.</t>
      </section>
      <section anchor="middlebox">
        <name>Middlebox Compatibility Mode</name>
        <t>Field measurements
<xref target="Ben17a"/> <xref target="Ben17b"/> <xref target="Res17a"/> <xref target="Res17b"/> have found that a significant number of middleboxes
misbehave when a TLS client/server pair negotiates TLS 1.3. Implementations
can increase the chance of making connections through those middleboxes
by making the TLS 1.3 handshake look more like a TLS 1.2 handshake:</t>
        <ul spacing="normal">
          <li>
            <t>The client always provides a non-empty session ID in the ClientHello,
as described in the legacy_session_id section of <xref target="client-hello"/>.</t>
          </li>
          <li>
            <t>If not offering early data, the client sends a dummy
change_cipher_spec record (see the third paragraph of <xref target="record-protocol"/>)
immediately before its second flight. This
may either be before its second ClientHello or before its encrypted
handshake flight. If offering early data, the record is placed
immediately after the first ClientHello.</t>
          </li>
          <li>
            <t>The server sends a dummy change_cipher_spec record immediately
after its first handshake message. This may either be after a
ServerHello or a HelloRetryRequest.</t>
          </li>
        </ul>
        <t>When put together, these changes make the TLS 1.3 handshake resemble
TLS 1.2 session resumption, which improves the chance of successfully
connecting through middleboxes. This "compatibility mode" is partially
negotiated: the client can opt to provide a session ID or not,
and the server has to echo it. Either side can send change_cipher_spec
at any time during the handshake, as they must be ignored by the peer,
but if the client sends a non-empty session ID, the server <bcp14>MUST</bcp14> send
the change_cipher_spec as described in this appendix.</t>
      </section>
      <section anchor="backward-compatibility-security">
        <name>Security Restrictions Related to Backward Compatibility</name>
        <t>Implementations negotiating the use of older versions of TLS <bcp14>SHOULD</bcp14> prefer
forward secret and AEAD cipher suites, when available.</t>
        <t>The security of RC4 cipher suites is considered insufficient for the reasons
cited in <xref target="RFC7465"/>. Implementations <bcp14>MUST NOT</bcp14> offer or negotiate RC4 cipher suites
for any version of TLS for any reason.</t>
        <t>Old versions of TLS permitted the use of very low strength ciphers.
Ciphers with a strength less than 112 bits <bcp14>MUST NOT</bcp14> be offered or
negotiated for any version of TLS for any reason.</t>
        <t>The security of SSL 2.0 <xref target="SSL2"/>, SSL 3.0 <xref target="RFC6101"/>, TLS 1.0
<xref target="RFC2246"/>, and TLS 1.1 <xref target="RFC4346"/> are considered insufficient for
the reasons enumerated in <xref target="RFC6176"/>, <xref target="RFC7568"/>, and <xref target="RFC8996"/>
and they <bcp14>MUST NOT</bcp14> be negotiated for any reason.</t>
        <t>Implementations <bcp14>MUST NOT</bcp14> send an SSL version 2.0 compatible CLIENT-HELLO.
Implementations <bcp14>MUST NOT</bcp14> negotiate TLS 1.3 or later using an SSL version 2.0 compatible
CLIENT-HELLO. Implementations are <bcp14>NOT RECOMMENDED</bcp14> to accept an SSL version 2.0 compatible
CLIENT-HELLO to negotiate older versions of TLS.</t>
        <t>Implementations <bcp14>MUST NOT</bcp14> send a ClientHello.legacy_version or ServerHello.legacy_version
set to 0x0300 or less. Any endpoint receiving a Hello message with
ClientHello.legacy_version or ServerHello.legacy_version set to 0x0300 <bcp14>MUST</bcp14>
abort the handshake with a "protocol_version" alert.</t>
        <t>Implementations <bcp14>MUST NOT</bcp14> send any records with a version less than 0x0300.
Implementations <bcp14>SHOULD NOT</bcp14> accept any records with a version less than 0x0300
(but may inadvertently do so if the record version number is ignored completely).</t>
        <t>Implementations <bcp14>MUST NOT</bcp14> use the Truncated HMAC extension, defined in
<xref section="7" sectionFormat="of" target="RFC6066"/>, as it is not applicable to AEAD algorithms and has
been shown to be insecure in some scenarios.</t>
      </section>
    </section>
    <section anchor="security-analysis">
      <name>Overview of Security Properties</name>
      <t>A complete security analysis of TLS is outside the scope of this document.
In this appendix, we provide an informal description of the desired properties
as well as references to more detailed work in the research literature
which provides more formal definitions.</t>
      <t>We cover properties of the handshake separately from those of the record layer.</t>
      <section anchor="security-handshake">
        <name>Handshake</name>
        <t>The TLS handshake is an Authenticated Key Exchange (AKE) protocol which
is intended to provide both one-way authenticated (server-only) and
mutually authenticated (client and server) functionality. At the completion
of the handshake, each side outputs its view of the following values:</t>
        <ul spacing="normal">
          <li>
            <t>A set of "session keys" (the various secrets derived from the main secret)
from which a set of working keys can be derived. Note that when early data
is in use, secrets are also derived from the early secret. These enjoy
somewhat weaker properties than those derived from the main secret,
as detailed below.</t>
          </li>
          <li>
            <t>A set of cryptographic parameters (algorithms, etc.).</t>
          </li>
          <li>
            <t>The identities of the communicating parties.</t>
          </li>
        </ul>
        <t>We assume the attacker to be an active network attacker, which means it
has complete control over the network used to communicate between the parties <xref target="RFC3552"/>.
Even under these conditions, the handshake should provide the properties listed below.
Note that these properties are not necessarily independent, but reflect
the protocol consumers' needs.</t>
        <dl>
          <dt>Establishing the same session keys:</dt>
          <dd>
            <t>The handshake needs to output the same set of session keys on both sides of
the handshake, provided that it completes successfully on each endpoint
(see <xref target="CK01"/>, Definition 1, part 1).</t>
          </dd>
          <dt>Secrecy of the session keys:</dt>
          <dd>
            <t>The shared session keys should be known only to the communicating
parties and not to the attacker (see <xref target="CK01"/>; Definition 1, part 2).
Note that in a unilaterally authenticated connection, the attacker can establish
its own session keys with the server, but those session keys are distinct from
those established by the client.</t>
          </dd>
          <dt>Peer Authentication:</dt>
          <dd>
            <t>The client's view of the peer identity should reflect the server's
identity. If the client is authenticated, the server's view of the
peer identity should match the client's identity.</t>
          </dd>
          <dt>Uniqueness of the session keys:</dt>
          <dd>
            <t>Any two distinct handshakes should produce distinct, unrelated session
keys. Individual session keys produced by a handshake should also be distinct
and independent.</t>
          </dd>
          <dt>Downgrade Protection:</dt>
          <dd>
            <t>The cryptographic parameters should be the same on both sides and
should be the same as if the peers had been communicating in the
absence of an attack (see <xref target="BBFGKZ16"/>; Definitions 8 and 9).</t>
          </dd>
          <dt>Forward secret with respect to long-term keys:</dt>
          <dd>
            <t>If the long-term keying material (in this case the signature keys in
certificate-based authentication modes or the external/resumption
PSK in PSK with (EC)DHE modes) is compromised after the handshake is
complete, this does not compromise the security of the session key
(see <xref target="DOW92"/>), as long as the session key
itself (and all material that could be used to recreate the session
key) has been erased. In particular, private keys corresponding to key
shares, shared secrets, and keys derived in the TLS key schedule
other than <tt>binder_key</tt>, <tt>resumption_secret</tt>, and PSKs derived from
the <tt>resumption_secret</tt> also need to be erased.  The forward secrecy
property is not satisfied when PSK is used in the "psk_ke"
PskKeyExchangeMode.  Failing to erase keys or secrets intended to be
ephemeral or connection-specific in effect creates additional
long-term keys that must be protected. Compromise of those long-term
keys (even after the handshake is complete) can result in loss of
protection for the connection's traffic.</t>
          </dd>
          <dt>Key Compromise Impersonation (KCI) resistance:</dt>
          <dd>
            <t>In a mutually authenticated connection with certificates, compromising the long-term
secret of one actor should not break that actor's authentication of their peer in
the given connection (see <xref target="HGFS15"/>). For example, if a client's signature key is
compromised, it should not be possible to impersonate arbitrary servers to that client
in subsequent handshakes.</t>
          </dd>
          <dt>Protection of endpoint identities:</dt>
          <dd>
            <t>The server's identity (certificate) should be protected against passive
attackers. The client's identity (certificate) should be protected against
both passive and active attackers. This property does not hold for cipher
suites without confidentiality; while this specification does not define any such cipher suites,
other documents may do so.</t>
          </dd>
        </dl>
        <t>Informally, the signature-based modes of TLS 1.3 provide for the
establishment of a unique, secret, shared key established by an
(EC)DHE key exchange and authenticated by the server's signature over
the handshake transcript, as well as tied to the server's identity by
a MAC. If the client is authenticated by a certificate, it also signs
over the handshake transcript and provides a MAC tied to both
identities. <xref target="SIGMA"/> describes the design and analysis of this type of key
exchange protocol. If fresh (EC)DHE keys are used for each connection,
then the output keys are forward secret.</t>
        <t>The external PSK and resumption PSK bootstrap from a long-term shared
secret into a unique per-connection set of short-term session keys. This
secret may have been established in a previous handshake. If
PSK with (EC)DHE key establishment is used, these session keys will also be forward
secret. The resumption PSK has been designed so that the
resumption secret computed by connection N and needed to form
connection N+1 is separate from the traffic keys used by connection N,
thus providing forward secrecy between the connections.
In addition, if multiple tickets are established on the same
connection, they are associated with different keys, so compromise of
the PSK associated with one ticket does not lead to the compromise of
connections established with PSKs associated with other tickets.
This property is most interesting if tickets are stored in a database
(and so can be deleted) rather than if they are self-encrypted.</t>
        <t>Forward secrecy limits the effect of key leakage in one direction
(compromise of a key at time T2 does not compromise some key at time
T1 where T1 &lt; T2). Protection in the other direction (compromise at
time T1 does not compromise keys at time T2) can be achieved by
rerunning (EC)DHE. If a long-term authentication key has been
compromised, a full handshake with (EC)DHE gives protection against
passive attackers. If the resumption_secret has been
compromised, a resumption handshake with (EC)DHE gives protection
against passive attackers and a full handshake with (EC)DHE gives
protection against active attackers. If a traffic secret has been
compromised, any handshake with (EC)DHE gives protection against
active attackers. Using the terms in <xref target="RFC7624"/>, forward secrecy
without rerunning (EC)DHE does not stop an attacker from doing static
key exfiltration. After key exfiltration of
application_traffic_secret_N, an attacker can, e.g., passively
eavesdrop on all future data sent on the connection including data
encrypted with application_traffic_secret_N+1,
application_traffic_secret_N+2, etc. Frequently rerunning (EC)DHE
forces an attacker to do dynamic key exfiltration (or content
exfiltration).</t>
        <t>The PSK binder value forms a binding between a PSK
and the current handshake, as well as between the session where the
PSK was established and the current session. This binding
transitively includes the original handshake transcript, because that
transcript is digested into the values which produce the resumption
secret. This requires that both the KDF used to produce the
resumption secret and the MAC used to compute the binder be collision
resistant. See <xref target="key-derivation-and-hkdf"/> for more on this.
Note: The binder does not cover the binder values from other
PSKs, though they are included in the Finished MAC.</t>
        <t>Note: This specification does not currently permit the server to send a certificate_request
message in non-certificate-based handshakes (e.g., PSK).
If this restriction were to be relaxed in future, the
client's signature would not cover the server's certificate directly.
However, if the PSK was established through a NewSessionTicket, the client's
signature would transitively cover the server's certificate through
the PSK binder. <xref target="PSK-FINISHED"/>
describes a concrete attack on constructions that do not bind to
the server's certificate (see also <xref target="Kraw16"/>). It is unsafe to use certificate-based client
authentication when the client might potentially share the same
PSK/key-id pair with two different endpoints.  In the absence
of some other specification to the contrary, implementations <bcp14>MUST
NOT</bcp14> combine external PSKs with certificate-based authentication of
either the client or server. <xref target="RFC8773"/> provides an extension
to permit this, but has not received the level of analysis as this
specification.</t>
        <t>If an exporter is used, then it produces values which are unique
and secret (because they are generated from a unique session key).
Exporters computed with different labels and contexts are computationally
independent, so it is not feasible to compute one from another or
the session secret from the exported value.
Note: Exporters can
produce arbitrary-length values; if exporters are to be
used as channel bindings, the exported value <bcp14>MUST</bcp14> be large
enough to provide collision resistance. The exporters provided in
TLS 1.3 are derived from the same Handshake Contexts as the
early traffic keys and the application traffic keys, respectively,
and thus have similar security properties. Note that they do
not include the client's certificate; future applications
which wish to bind to the client's certificate may need
to define a new exporter that includes the full handshake
transcript.</t>
        <t>For all handshake modes, the Finished MAC (and, where present, the
signature) prevents downgrade attacks. In addition, the use of
certain bytes in the random nonces as described in <xref target="server-hello"/>
allows the detection of downgrade to previous TLS versions.
See <xref target="BBFGKZ16"/> for more details on TLS 1.3 and downgrade.</t>
        <t>As soon as the client and the server have exchanged enough information
to establish shared keys, the remainder of the handshake is encrypted,
thus providing protection against passive attackers, even if the
computed shared key is not authenticated. Because the server
authenticates before the client, the client can ensure that if it
authenticates to the server, it only
reveals its identity to an authenticated server. Note that implementations
must use the provided record-padding mechanism during the handshake
to avoid leaking information about the identities due to length.
The client's proposed PSK identities are not encrypted, nor is the
one that the server selects.</t>
        <section anchor="key-derivation-and-hkdf">
          <name>Key Derivation and HKDF</name>
          <t>Key derivation in TLS 1.3 uses  HKDF as defined in <xref target="RFC5869"/> and
its two components, HKDF-Extract and HKDF-Expand. The full rationale for the HKDF
construction can be found in <xref target="Kraw10"/> and the rationale for the way it is used
in TLS 1.3 in <xref target="KW16"/>.  Throughout this document, each
application of HKDF-Extract is followed by one or more invocations of
HKDF-Expand. This ordering should always be followed (including in future
revisions of this document); in particular, one <bcp14>SHOULD NOT</bcp14> use an output of
HKDF-Extract as an input to another application of HKDF-Extract without an
HKDF-Expand in between. Multiple applications of HKDF-Expand to some of
the same inputs are allowed as
long as these are differentiated via the key and/or the labels.</t>
          <t>Note that HKDF-Expand implements a pseudorandom function (PRF) with both inputs and
outputs of variable length. In some of the uses of HKDF in this document
(e.g., for generating exporters and the resumption_secret), it is necessary
that the application of HKDF-Expand be collision resistant; namely, it should
be infeasible to find two different inputs to HKDF-Expand that output the same
value. This requires the underlying hash function to be collision resistant
and the output length from HKDF-Expand to be of size at least 256 bits (or as
much as needed for the hash function to prevent finding collisions).</t>
        </section>
        <section anchor="certificate-based-client-authentication">
          <name>Certificate-Based Client Authentication</name>
          <t>A client that has sent certificate-based authentication data to a server, either during
the handshake or in post-handshake authentication, cannot be sure whether
the server afterwards considers the client to be authenticated or not.
If the client needs to determine if the server considers the
connection to be unilaterally or mutually authenticated, this has to
be provisioned by the application layer. See <xref target="CHHSV17"/> for details.
In addition, the analysis of post-handshake authentication from
<xref target="Kraw16"/> shows that the client identified by the certificate sent in
the post-handshake phase possesses the traffic key. This party is therefore
the client that participated in the original handshake or
one to whom the original client delegated the traffic key (assuming
that the traffic key has not been compromised).</t>
        </section>
        <section anchor="rtt">
          <name>0-RTT</name>
          <t>The 0-RTT mode of operation generally provides security
properties similar to those of 1-RTT data, with the two exceptions that the 0-RTT
encryption keys do not provide full forward secrecy and that the
server is not able to guarantee uniqueness of the handshake
(non-replayability) without keeping potentially undue amounts of
state. See <xref target="anti-replay"/> for mechanisms to limit
the exposure to replay.</t>
        </section>
        <section anchor="exporter-independence">
          <name>Exporter Independence</name>
          <t>The exporter_secret and early_exporter_secret are
derived to be independent of the traffic keys and therefore do
not represent a threat to the security of traffic encrypted with
those keys. However, because these secrets can be used to
compute any exporter value, they <bcp14>SHOULD</bcp14> be erased as soon as
possible. If the total set of exporter labels is known, then
implementations <bcp14>SHOULD</bcp14> pre-compute the inner Derive-Secret
stage of the exporter computation for all those labels,
then erase the [early_]exporter_secret, followed by
each inner values as soon as it is known that it will not be
needed again.</t>
        </section>
        <section anchor="post-compromise-security">
          <name>Post-Compromise Security</name>
          <t>TLS does not provide security for handshakes which take place after the peer's
long-term secret (signature key or external PSK) is compromised. It therefore
does not provide post-compromise security <xref target="CCG16"/>, sometimes also referred to
as backwards or future secrecy. This is in contrast to KCI resistance, which
describes the security guarantees that a party has after its own long-term
secret has been compromised.</t>
        </section>
        <section anchor="external-references">
          <name>External References</name>
          <t>The reader should refer to the following references for analysis of the
TLS handshake: <xref target="DFGS15"/>, <xref target="CHSV16"/>, <xref target="DFGS16"/>, <xref target="KW16"/>, <xref target="Kraw16"/>, <xref target="FGSW16"/>,
<xref target="LXZFH16"/>, <xref target="FG17"/>, and <xref target="BBK17"/>.</t>
        </section>
      </section>
      <section anchor="security-record-layer">
        <name>Record Layer</name>
        <t>The record layer depends on the handshake producing strong traffic secrets
which can be used to derive bidirectional encryption keys and nonces.
Assuming that is true, and the keys are used for no more data than
indicated in <xref target="limits-on-key-usage"/>, then the record layer should provide the following
guarantees:</t>
        <!--[rfced] We note that some author comments are present in the markdown file.
Please confirm that no updates related to these comments are outstanding. Note
that the comments will be deleted prior to publication.

   {::comment}Cite IND-CPA?{:/comment}
   
   {::comment}Cite INT-CTXT?{:/comment}
-->

<dl>
          <dt>Confidentiality:</dt>
          <dd>
            <t>An attacker should not be able to determine the plaintext contents
of a given record.
</t>
          </dd>
          <dt>Integrity:</dt>
          <dd>
            <t>An attacker should not be able to craft a new record which is
different from an existing record which will be accepted by the receiver.
</t>
          </dd>
          <dt>Order protection/non-replayability:</dt>
          <dd>
            <t>An attacker should not be able to cause the receiver to accept a
record which it has already accepted or cause the receiver to accept
record N+1 without having first processed record N.</t>
          </dd>
          <dt>Length concealment:</dt>
          <dd>
            <t>Given a record with a given external length, the attacker should not be able
to determine the amount of the record that is content versus padding.</t>
          </dd>
          <dt>Forward secrecy after key change:</dt>
          <dd>
            <t>If the traffic key update mechanism described in <xref target="key-update"/> has been
used and the previous generation key is deleted, an attacker who compromises
the endpoint should not be able to decrypt traffic encrypted with the old key.</t>
          </dd>
        </dl>
        <t>Informally, TLS 1.3 provides these properties by AEAD-protecting the
plaintext with a strong key. AEAD encryption <xref target="RFC5116"/> provides confidentiality
and integrity for the data. Non-replayability is provided by using
a separate nonce for each record, with the nonce being derived from
the record sequence number (<xref target="nonce"/>), with the sequence
number being maintained independently at both sides; thus, records which
are delivered out of order result in AEAD deprotection failures.
In order to prevent mass cryptanalysis when the same plaintext is
repeatedly encrypted by different users under the same key
(as is commonly the case for HTTP), the nonce is formed by mixing
the sequence number with a secret per-connection initialization
vector derived along with the traffic keys.
See <xref target="BT16"/> for analysis of this construction.</t>
        <t>The rekeying technique in TLS 1.3 (see <xref target="updating-traffic-keys"/>) follows the
construction of the serial generator as discussed in <xref target="REKEY"/>, which shows that rekeying can
allow keys to be used for a larger number of encryptions than without
rekeying. This relies on the security of the HKDF-Expand-Label function as a
pseudorandom function (PRF).  In addition, as long as this function is truly
one way, it is not possible to compute traffic keys from prior to a key change
(forward secrecy).</t>
        <t>TLS does not provide security for data which is communicated on a connection
after a traffic secret of that connection is compromised. That is, TLS does not
provide post-compromise security/future secrecy/backward secrecy with respect
to the traffic secret. Indeed, an attacker who learns a traffic secret can
compute all future traffic secrets on that connection.  Systems which want such
guarantees need to do a fresh handshake and establish a new connection with an
(EC)DHE exchange.</t>
        <section anchor="external-references-1">
          <name>External References</name>
          <t>The reader should refer to the following references for analysis of the TLS record layer:
<xref target="BMMRT15"/>, <xref target="BT16"/>, <xref target="BDFKPPRSZZ16"/>, <xref target="BBK17"/>, and <xref target="PS18"/>.</t>
        </section>
      </section>
      <section anchor="traffic-analysis">
        <name>Traffic Analysis</name>
        <t>TLS is susceptible to a variety of traffic analysis attacks based on
observing the length and timing of encrypted packets
<xref target="CLINIC"/>
          <xref target="HCJC16"/>.
This is particularly easy when there is a small
set of possible messages to be distinguished, such as for a video
server hosting a fixed corpus of content, but still provides usable
information even in more complicated scenarios.</t>
        <t>TLS does not provide any specific defenses against this form of attack
but does include a padding mechanism for use by applications: The
plaintext protected by the AEAD function consists of content plus
variable-length padding, which allows the application to produce
arbitrary-length encrypted records as well as padding-only cover traffic to
conceal the difference between periods of transmission and periods
of silence. Because the
padding is encrypted alongside the actual content, an attacker cannot
directly determine the length of the padding, but may be able to
measure it indirectly by the use of timing channels exposed during
record processing (i.e., seeing how long it takes to process a
record or trickling in records to see which ones elicit a response
from the server). In general, it is not known how to remove all of
these channels because even a constant-time padding removal function will
likely feed the content into data-dependent functions.
At minimum, a fully constant-time server or client would require close
cooperation with the application-layer protocol implementation, including
making that higher-level protocol constant time.</t>
        <t>Note: Robust
traffic analysis defenses will likely lead to inferior performance
due to delays in transmitting packets and increased traffic volume.</t>
      </section>
      <section anchor="side-channel-attacks">
        <name>Side Channel Attacks</name>
        <t>In general, TLS does not have specific defenses against side-channel
attacks (i.e., those which attack the communications via secondary
channels such as timing), leaving those to the implementation of the relevant
cryptographic primitives. However, certain features of TLS are
designed to make it easier to write side-channel resistant code:</t>
        <ul spacing="normal">
          <li>
            <t>Unlike previous versions of TLS which used a composite
MAC-then-encrypt structure, TLS 1.3 only uses AEAD algorithms,
allowing implementations to use self-contained constant-time
implementations of those primitives.</t>
          </li>
          <li>
            <t>TLS uses a uniform "bad_record_mac" alert for all decryption
errors, which is intended to prevent an attacker from gaining
piecewise insight into portions of the message.  Additional resistance
is provided by terminating the connection on such errors; a new
connection will have different cryptographic material, preventing
attacks against the cryptographic primitives that require multiple
trials.</t>
          </li>
        </ul>
        <t>Information leakage through side channels can occur at layers above
TLS, in application protocols and the applications that use
them. Resistance to side-channel attacks depends on applications and
application protocols separately ensuring that confidential
information is not inadvertently leaked.</t>
      </section>
      <section anchor="replay-0rtt">
        <name>Replay Attacks on 0-RTT</name>
        <t>Replayable 0-RTT data presents a number of security threats to
TLS-using applications, unless those applications are specifically
engineered to be safe under replay
(minimally, this means idempotent, but in many cases may
also require other stronger conditions, such as constant-time
response). Potential attacks include:</t>
        <ul spacing="normal">
          <li>
            <t>Duplication of actions which cause side effects (e.g., purchasing an
item or transferring money) to be duplicated, thus harming the site or
the user.</t>
          </li>
          <li>
            <t>Attackers can store and replay 0-RTT messages to
reorder them with respect to other messages (e.g., moving
a delete to after a create).</t>
          </li>
          <li>
            <t>Amplifying existing information leaks caused by side effects like
caching. An attacker could learn information about the content of a
0-RTT message by replaying it to some cache node that has not cached
some resource of interest, and then using a separate connection to check
whether that resource has been added to the cache. This could be repeated
with different cache nodes as often as the 0-RTT message is replayable.</t>
          </li>
        </ul>
        <t>If data can be replayed a large number of times, additional attacks
become possible, such as making repeated measurements of the
speed of cryptographic operations. In addition, they may
be able to overload rate-limiting systems. For a further description of
these attacks, see <xref target="Mac17"/>.</t>
        <t>Ultimately, servers have the responsibility to protect themselves
against attacks employing 0-RTT data replication. The mechanisms
described in <xref target="anti-replay"/> are intended to
prevent replay at the TLS layer but do not provide complete protection
against receiving multiple copies of client data.
TLS 1.3 falls back to the 1-RTT
handshake when the server does not have any information about the
client, e.g., because it is in a different cluster which does not
share state or because the ticket has been deleted as described in
<xref target="single-use-tickets"/>. If the application-layer protocol retransmits
data in this setting, then it is possible for an attacker to induce
message duplication by sending the ClientHello to both the original cluster
(which processes the data immediately) and another cluster which will
fall back to 1-RTT and process the data upon application-layer
replay. The scale of this attack is limited by the client's
willingness to retry transactions and therefore only allows a limited amount
of duplication, with each copy appearing as a new connection at
the server.</t>
        <t>If implemented correctly, the mechanisms described in 
<xref target="single-use-tickets"/> and <xref target="client-hello-recording"/> prevent a
replayed ClientHello and its associated 0-RTT data from being accepted
multiple times by any cluster with consistent state; for servers
which limit the use of 0-RTT to one cluster for a single ticket, then a given
ClientHello and its associated 0-RTT data will only be accepted once.
However, if state is not completely consistent,
then an attacker might be able to have multiple copies of the data be
accepted during the replication window.
Because clients do not know the exact details of server behavior, they
<bcp14>MUST NOT</bcp14> send messages in early data which are not safe to have
replayed and which they would not be willing to retry across multiple
1-RTT connections.</t>
        <t>Application protocols <bcp14>MUST NOT</bcp14> use 0-RTT data without a profile that
defines its use. That profile needs to identify which messages or
interactions are safe to use with 0-RTT and how to handle the
situation when the server rejects 0-RTT and falls back to 1-RTT.</t>
        <t>In addition, to avoid accidental misuse, TLS implementations <bcp14>MUST NOT</bcp14>
enable 0-RTT (either sending or accepting) unless specifically
requested by the application and <bcp14>MUST NOT</bcp14> automatically resend 0-RTT
data if it is rejected by the server unless instructed by the
application. Server-side applications may wish to implement special
processing for 0-RTT data for some kinds of application traffic (e.g.,
abort the connection, request that data be resent at the application
layer, or delay processing until the handshake completes). In order to
allow applications to implement this kind of processing, TLS
implementations <bcp14>MUST</bcp14> provide a way for the application to determine if
the handshake has completed.</t>
        <section anchor="replay-and-exporters">
          <name>Replay and Exporters</name>
          <t>Replays of the ClientHello produce the same early exporter, thus
requiring additional care by applications which use these exporters.
In particular, if these exporters are used as an authentication
channel binding (e.g., by signing the output of the exporter)
an attacker who compromises the PSK can transplant authenticators
between connections without compromising the authentication key.</t>
          <t>In addition, the early exporter <bcp14>SHOULD NOT</bcp14> be used to generate
server-to-client encryption keys because that would entail
the reuse of those keys. This parallels the use of the early
application traffic keys only in the client-to-server direction.</t>
        </section>
      </section>
      <section anchor="psk-identity-exposure">
        <name>PSK Identity Exposure</name>
        <t>Because implementations respond to an invalid PSK binder by aborting
the handshake, it may be possible for an attacker to verify whether
a given PSK identity is valid. Specifically, if a server accepts
both external-PSK and certificate-based handshakes, a valid PSK identity
will result in a failed handshake, whereas an invalid identity will
just be skipped and result in a successful certificate handshake.
Servers which solely support PSK handshakes may be able to resist
this form of attack by treating the cases where there is no
valid PSK identity and where there is an identity but it has an
invalid binder identically.</t>
      </section>
      <section anchor="sharing-psks-across-protocol-versions">
        <name>Sharing PSKs Across Protocol Versions</name>
        <t>TLS 1.3 takes a conservative approach to PSKs by binding them to a
specific KDF.  By contrast, TLS 1.2 allows PSKs to be used with any
hash function and the TLS 1.2 PRF.  Thus, any PSK which is used with
both TLS 1.2 and TLS 1.3 must be used with only one hash in TLS 1.3,
which is less than optimal if users want to provision a single PSK.
The constructions in TLS 1.2 and TLS 1.3 are different, although they
are both based on HMAC.  While there is no known way in which the
same PSK might produce related output in both versions, only limited
analysis has been done.  Implementations can ensure safety from
cross-protocol related output by not reusing PSKs between TLS 1.3 and
TLS 1.2.</t>
      </section>
      <section anchor="external-psks-and-rerouting">
        <name>External PSKs and Rerouting</name>
        <t>External PSKs in TLS are designed to be known to exactly one client
and one server. However, as noted in <xref target="RFC9257"/>, there are use cases
where PSKs are shared between more than two entities. In such
scenarios, in addition to the expected security weakness where a
compromised group member can impersonate any other member, a malicious
non-member can reroute handshakes between honest group members to
connect them in unintended ways <xref target="Selfie"/>. <xref target="RFC9257"/> provides
recommendations for external PSK usage, including the use of external
PSK importers as defined in <xref target="RFC9258"/>, that prevent such malicious
rerouting of messages.</t>
      </section>
      <section anchor="misbinding-when-using-self-signed-certificates-or-raw-public-keys">
        <name>Misbinding When Using Self-Signed Certificates or Raw Public Keys</name>
        <t>When TLS 1.3 is used with self-signed certificates without useful
identities (as in DTLS-SRTP <xref target="RFC5763"/>) or raw public keys
<xref target="RFC7250"/> for peer authentication, it may be vulnerable to
misbinding attacks <xref target="MM24"/>. This risk can be mitigated by using
the "external_id_hash" extension <xref target="RFC8844"/> or, if only
the server is being authenticated, by the server verifying
that the "server_name" extension matches its expected identity.</t>
      </section>
      <section anchor="attacks-on-static-rsa">
        <name>Attacks on Static RSA</name>
        <t>Although TLS 1.3 does not use RSA key transport and so is not
directly susceptible to Bleichenbacher-type attacks <xref target="Blei98"/> if TLS 1.3
servers also support static RSA in the context of previous
versions of TLS, then it may be possible to impersonate the server
for TLS 1.3 connections <xref target="JSS15"/>. TLS
1.3 implementations can prevent this attack by disabling support
for static RSA across all versions of TLS. In principle, implementations
might also be able to separate certificates with different keyUsage
bits for static RSA decryption and RSA signature, but this technique
relies on clients refusing to accept signatures using keys
in certificates that do not have the digitalSignature bit set,
and many clients do not enforce this restriction.</t>
      </section>
    </section>
    <section numbered="false" anchor="contributors">
      <name>Contributors</name>
      <artwork><![CDATA[
      Martin Abadi
      University of California, Santa Cruz
      abadi@cs.ucsc.edu

      Christopher Allen
      (co-editor of TLS 1.0)
      Alacrity Ventures
      ChristopherA@AlacrityManagement.com

      Nimrod Aviram
      Tel Aviv University
      nimrod.aviram@gmail.com

      Richard Barnes
      Cisco
      rlb@ipv.sx

      Steven M. Bellovin
      Columbia University
      smb@cs.columbia.edu

      David Benjamin
      Google
      davidben@google.com

      Benjamin Beurdouche
      INRIA & Microsoft Research
      benjamin.beurdouche@ens.fr

      Karthikeyan Bhargavan
      (editor of {{RFC7627}})
      INRIA
      karthikeyan.bhargavan@inria.fr

      Simon Blake-Wilson
      (co-author of {{RFC4492}})
      BCI
      sblakewilson@bcisse.com

      Nelson Bolyard
      (co-author of {{RFC4492}})
      Sun Microsystems, Inc.
      nelson@bolyard.com

      Ran Canetti
      IBM
      canetti@watson.ibm.com

      Matt Caswell
      OpenSSL
      matt@openssl.org

      Stephen Checkoway
      University of Illinois at Chicago
      sfc@uic.edu

      Pete Chown
      Skygate Technology Ltd
      pc@skygate.co.uk

      Katriel Cohn-Gordon
      University of Oxford
      me@katriel.co.uk

      Cas Cremers
      University of Oxford
      cas.cremers@cs.ox.ac.uk

      Antoine Delignat-Lavaud
      (co-author of {{RFC7627}})
      INRIA
      antdl@microsoft.com

      Tim Dierks
      (co-author of TLS 1.0, co-editor of TLS 1.1 and 1.2)
      Independent
      tim@dierks.org

      Roelof DuToit
      Symantec Corporation
      roelof_dutoit@symantec.com

      Taher Elgamal
      Securify
      taher@securify.com

      Pasi Eronen
      Nokia
      pasi.eronen@nokia.com

      Cedric Fournet
      Microsoft
      fournet@microsoft.com

      Anil Gangolli
      anil@busybuddha.org

      David M. Garrett
      dave@nulldereference.com

      Illya Gerasymchuk
      Independent
      illya@iluxonchik.me

      Alessandro Ghedini
      Cloudflare Inc.
      alessandro@cloudflare.com

      Daniel Kahn Gillmor
      ACLU
      dkg@fifthhorseman.net

      Matthew Green
      Johns Hopkins University
      mgreen@cs.jhu.edu

      Jens Guballa
      ETAS
      jens.guballa@etas.com

      Felix Guenther
      TU Darmstadt
      mail@felixguenther.info

      Vipul Gupta
      (co-author of {{RFC4492}})
      Sun Microsystems Laboratories
      vipul.gupta@sun.com

      Chris Hawk
      (co-author of {{RFC4492}})
      Corriente Networks LLC
      chris@corriente.net

      Kipp Hickman

      Alfred Hoenes

      David Hopwood
      Independent Consultant
      david.hopwood@blueyonder.co.uk

      Marko Horvat
      MPI-SWS
      mhorvat@mpi-sws.org

      Jonathan Hoyland
      Royal Holloway, University of London
      jonathan.hoyland@gmail.com

      Subodh Iyengar
      Facebook
      subodh@fb.com

      Benjamin Kaduk
      Akamai Technologies
      kaduk@mit.edu

      Hubert Kario
      Red Hat Inc.
      hkario@redhat.com

      Phil Karlton
      (co-author of SSL 3.0)

      Leon Klingele
      Independent
      mail@leonklingele.de

      Paul Kocher
      (co-author of SSL 3.0)
      Cryptography Research
      paul@cryptography.com

      Hugo Krawczyk
      IBM
      hugokraw@us.ibm.com

      Adam Langley
      (co-author of {{RFC7627}})
      Google
      agl@google.com

      Olivier Levillain
      ANSSI
      olivier.levillain@ssi.gouv.fr

      Xiaoyin Liu
      University of North Carolina at Chapel Hill
      xiaoyin.l@outlook.com

      Ilari Liusvaara
      Independent
      ilariliusvaara@welho.com

      Atul Luykx
      K.U. Leuven
      atul.luykx@kuleuven.be

      Colm MacCarthaigh
      Amazon Web Services
      colm@allcosts.net

      Carl Mehner
      USAA
      carl.mehner@usaa.com

      Jan Mikkelsen
      Transactionware
      janm@transactionware.com

      Bodo Moeller
      (co-author of {{RFC4492}})
      Google
      bodo@acm.org

      Kyle Nekritz
      Facebook
      knekritz@fb.com

      Erik Nygren
      Akamai Technologies
      erik+ietf@nygren.org

      Magnus Nystrom
      Microsoft
      mnystrom@microsoft.com

      Kazuho Oku
      DeNA Co., Ltd.
      kazuhooku@gmail.com

      Kenny Paterson
      Royal Holloway, University of London
      kenny.paterson@rhul.ac.uk

      Christopher Patton
      University of Florida
      cjpatton@ufl.edu

      Alfredo Pironti
      (co-author of {{RFC7627}})
      INRIA
      alfredo.pironti@inria.fr

      Andrei Popov
      Microsoft
      andrei.popov@microsoft.com

      John Preuß Mattsson
      Ericsson
      john.mattsson@ericsson.com

      Marsh Ray
      (co-author of {{RFC7627}})
      Microsoft
      maray@microsoft.com

      Robert Relyea
      Netscape Communications
      relyea@netscape.com

      Kyle Rose
      Akamai Technologies
      krose@krose.org

      Jim Roskind
      Amazon
      jroskind@amazon.com

      Michael Sabin

      Joe Salowey
      Tableau Software
      joe@salowey.net

      Rich Salz
      Akamai
      rsalz@akamai.com

      David Schinazi
      Apple Inc.
      dschinazi@apple.com

      Sam Scott
      Royal Holloway, University of London
      me@samjs.co.uk

      Mohit Sethi
      Aalto University
      mohit@iki.fi

      Thomas Shrimpton
      University of Florida
      teshrim@ufl.edu

      Dan Simon
      Microsoft, Inc.
      dansimon@microsoft.com

      Brian Smith
      Independent
      brian@briansmith.org

      Ben Smyth
      Ampersand
      www.bensmyth.com

      Brian Sniffen
      Akamai Technologies
      ietf@bts.evenmere.org

      Nick Sullivan
      Cloudflare Inc.
      nick@cloudflare.com

      Bjoern Tackmann
      University of California, San Diego
      btackmann@eng.ucsd.edu

      Tim Taubert
      Mozilla
      ttaubert@mozilla.com

      Martin Thomson
      Mozilla
      mt@mozilla.com

      Hannes Tschofenig
      Arm Limited
      Hannes.Tschofenig@arm.com

      Sean Turner
      sn3rd
      sean@sn3rd.com

      Steven Valdez
      Google
      svaldez@google.com

      Filippo Valsorda
      Cloudflare Inc.
      filippo@cloudflare.com

      Thyla van der Merwe
      Royal Holloway, University of London
      tjvdmerwe@gmail.com

      Victor Vasiliev
      Google
      vasilvv@google.com

      Loganaden Velvindron
      cyberstorm.mu
      logan@cyberstorm.mu

      Hoeteck Wee
      Ecole Normale Superieure, Paris
      hoeteck@alum.mit.edu

      Tom Weinstein

      David Wong
      NCC Group
      david.wong@nccgroup.trust

      Christopher A. Wood
      Apple Inc.
      cawood@apple.com

      Tim Wright
      Vodafone
      timothy.wright@vodafone.com

      Peter Wu
      Independent
      peter@lekensteyn.nl

      Kazu Yamamoto
      Internet Initiative Japan Inc.
      kazu@iij.ad.jp
]]></artwork>
      <!--[rfced] FYI - We have updated some artwork to sourcecode. Please review
and let us know if further updates are necessary.
-->

<!-- [rfced] Please review whether any of the notes in this document
should be in the <aside> element. It is defined as "a container for 
content that is semantically less important or tangential to the 
content that surrounds it" (https://authors.ietf.org/en/rfcxml-vocabulary#aside).
-->

<!-- [rfced] FYI - We have added expansions for the following abbreviations
per Section 3.6 of RFC 7322 ("RFC Style Guide"). Please review each
expansion in the document carefully to ensure correctness.

 Elliptic Curve Cryptography (ECC)
 Internet of Things (IoT)
-->

<!-- [rfced] Please review the "Inclusive Language" portion of the online
Style Guide <https://www.rfc-editor.org/styleguide/part2/#inclusive_language>
and let us know if any changes are needed.  Updates of this nature typically
result in more precise language, which is helpful for readers.

For example, please consider whether the following should be updated: 
 dummy
 man-in-the-middle

In addition, please consider whether "traditionally" should be updated for clarity.  
While the NIST website 
<https://web.archive.org/web/20250203031433/https://nvlpubs.nist.gov/nistpubs/ir/2021/NIST.IR.8366.pdf> 
indicates that this term is potentially biased, it is also ambiguous.  
"Tradition" is a subjective term, as it is not the same for everyone.
-->

<!-- [rfced] FYI - we will convert the list of Contributors contained within <artwork> to be listed with the <contact> element once the file is converted to RFCXML.  

In addition, we will update the following reference entries that were a challenge to update in markdown. 

[BBFGKZ16]
[BBK17]
[CCG16]
[CHECKOWAY]
[CHSV16]
[JSS15]
[LXZFH16]
[SLOTH]
[CK01]
[CLINIC] 
[DH76]
[DOW92]
[HCJC16]
[RSA]
[SIGMA]
[FETCH]
[SHS]
[DSS]
[ECDP]
[KEYAGREEMENT]
-->

</section>
  </back>
  <!-- ##markdown-source:
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
KqiqMDQFQvzDh8C1mF1dhufXW1u7AoB/qcH1NzZgBmawFtdUQGGsqzrYW2Qe
Zd5sV7MQ2P9TzZtSQwzNAAcyubVEYXDIfYEO8CyIf6fDRUm7pqspPZA/DlmW
YnSrp8nYWXhTrrW6zzZNa2BQmi3in7wP7/mnwrhPMXJpSmsnaxp1ibzhGVzw
Za10DRfX57rxmtUqnKhKqqcjJli0FMZFZecuyazM5oZjlPJmBBIMyX8gVto2
e2ejfC31uESrUkZNQYw0h17Ok4YJuGm8r0FACksZloOcxUtaVIvEpt3gYV+H
z2dlNO8BRXzzTdAsxJ6FmDcD65QjtiFaOLFfH3lgAoW50NrzEFz0RBYO99JL
nCzRyfTXbnMtO2QLrTbo8vJoPkoTJ9JJWDOomY3C1hRU+OwLzUYqrOirzUZ1
i4q3Nyttn2mOjqSkDVJZGFv4yz/uEh9Qv9T15HyCS9XIKrFNTJFSOFlNzELN
YAK0OrTAsZYfZa0Cj2GfsMdjSR1tHdCT49lKGcc+E+4jssSafu5YWBe7kHbu
XWsooiVoEm62GNX24c2+RMwEUBfnjTZCbXIaL/umbT0TOjVaWEu2n5flrYnn
lOqYxKWtrNzKuHnBSiSK1riSWgJxrDmn1gzHcxZxpaqDYUaFc0YiFYvsQm9z
RXm5OMISxi+OeqPdPbRPbzRWsOHS5o9PzWhojp6b/R1zsmsOj8ze0AyH5tmJ
GT43B8dYIXZ4YvZ2zbMDczi0b43M0QgfG+6Z/SPz7Bk+uXtiBvvmEP7/0JyM
zPGBOTow29vm8DiKflyQfxEvPKv2FgSsy2BKq84J7dZdWZxO5+sW2ewzXbsf
71JXNCHuu11GlXOrdZ0DI63q2XJmTWy39MfGW8e+yWl+n8ENnibam+QrQCQg
90xVNVMbbCYSlPP11a0uRD3qFhSSU0SOyaL1CqJEWTIpDOQkxoS0iAIouf4D
ssq00IjGYVYtUlPT4velEwu20iMO/3Z2zM6p2d03OydmZ9/sjvCbwRDb+L45
PT44PNyTBM51wnbPBuiyHHmVUvfuIGtPzEdOqWKgoiRvnDlTXGF1DyofjQTA
OPstcNybZTrFWBbmRg9CIQBv0YRI9BiIDLBgtz2BiXMD+AulqbhyjtVxKapZ
y5rLtkUAnRJhm6DZNDur3tmh7Wp0v8dHTBC5CfiqUK0d4f3Xdfqn1EUR3bFw
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
Ek/Lmup80ui1awMdOz+fvW6OD7mlo0Pi1cefbh3eO+Y/Hemfbh9+cZf/dJx3
DL/ePbp9m3+9pS/cP/pC2rj9q+CiaOQ0B40eHn3ziECj8X+/6UFUe08bxPTJ
9RDTtAl2G5fpOT5jLDFOSV80KGlmZua7Kza+c+Pk4XLvHe7jJVgW4VSNNDbM
UW6JaffRWwTeEvyK8nfeu32fURV/Yb2Sp01BpBXPntSclzWj7jznmY4qgvL/
HR3fBfBm6977lLGdcyM4voRSoWZGPTCKSCLfedohrvO0UXZ2PsVDn64bBHWr
vXJh99CCSHCJoknMje0gqkjwu84TRVT7hYyfvl5S3VcAR4WCvv+ddHn7so2z
jfjBoiRar5AJUp2Q6dtemieQjaXaGVhSdLg6rykNrZfsnOoTtFo5F07I7FuE
6DjxUarE09GL0A9xGcht6oyBLF+3KHMI82y6ZvoRRLhSzYtgaurAZW03ogCy
KCkZ3sPGcae7NCIy6TUwvAZ8N9XWoCwcYCzonq5di9E6kjYRk9S2SHniuoko
tiyagSJXLAs07BldZuGT3ZYH2vfU1Nw6aD2wr4yYa7lIRQaGPySO1W5Npp6L
GUvIaJ0TrfgipljXgUmPLzuianVThrdt846JuDsH7+4elhdwUSKVbC5uObhR
qz412k6KxtmBU+bBjmuUcrIyRU8UQ7KwXtDciLowOFemGyAiLSEh8sAS2nD5
alVfRr3PwaZi27aP1XlOgSj40YRyCx9htwJTP3BBXl7QZEdj13mnrfrEluyI
rFPtPUrBxpmIIuEyCOoDBFzjFaU1j+UbrBzd8Ep7xReg+1GctZ5Ud5jmIE4t
ZvYJyY14zaEpEvkvc7XZBP4bIEG4BgI3TGqv/xC9/Z3Tov1B5ThPkfBNJWO0
kA1iL0JekXzh5gjkviATb931EHS4aFqO9VW5NvW4PY8NjOmcXNR0Dz3+9h6B
JQqcXVYqhRBeUGfGeOrjx4el+li0WrBzVllzRKo5dY3FWbM7bEfFkvUn6MfB
0W3s6cq6VpOSvGNfZTsiPwjDHvmBD8WNlL2YBxgVIZF/SRxkAzkncNpJmfSU
emKzB4MGbdM5JiQpjnCb+1w7Pb1beBcmnGoz0Cd1intksAp1HYoUbNlpkhqZ
S86igBxOjHOSwyuCer15VLWydazbVxuiUcMVZBHb6z6dZ4QWao5Zjyg2UnXt
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
/tZTIJEOpHq8B/Wy8pIAQz+uoMKoQt/jN9/rCHl8sedTczbxcp2zm0Rg1bk9
qFfCiDGi65J/LEe3pywWBhs1rkJpCru5MWQ4zbfLNu6kpp7RrdkJqiX5s7xt
OwpZ3M+jYM1m6ic7kwp4EQ0AWiVG/2iJq3463Eh8SGzfvKvbtaLT/EfCMLo/
bqzz5aqxmSLJUuYMatwisbnw+V4Q6o2hgr7kY1qV0RBWGOkP/co4I6Mn9wzx
RYNMp2BU092OBePKpNa1kGGjeVsD06f3f/ElVwVH8PmnUUisGiU3TyNLMJSO
GeHiabWXu777UNcyDM2N2Spp8RNcKKNedeVEU9COZaE2oknfKQUDGSW/etwv
cYq2d9qMXFc8DH2QQq2WbRAvsEkzGcH6scKgxjcBEZA8zLyLMzp4QOTj3oOW
59/vQZDJkImGPKG4XfkqKWku4DznPRkanR4kn2xLHY9/P2tnUed3xbDYVuDf
mfFyY/TRv9KD9kK5igwjJNMd7/j/+Z//CQOgllTXOPWsJAH/ODTWh2jxw4Pq
VfvVXrfcrKYNUS7tfQxujDk4waXMQotEpT93gonIQCLEiGMwo7q9pHnYxAiK
Y+UrWotk6OUGke/B1eSynI9e0cjlJTuq53RliIaVPZT0e8+C4FOnOAMbnki+
KIbm7dct00BpVunlqWxwXrSspuvN1rYvXncs7Y4OKGKHe0r+DZpsXgROaG9F
CPtZXSVtlopIchaopoNNXy8HUhT8svtCyXk9v7J75mTdLNr/lmCoanTT5SWg
IMrnl0ALDGAXpxVHDimTMfHVh2wb/oUd0HqRHMgmYZ/Ti29Pvv+eeuDqolHx
PfZsZejU3WXn1F/f9esPXFOOjlBLf2Wt1Ih4d35rIHhIJTprLYIsc7tZxCma
tVM+t1ktGS17e0YYsKgTzpYX8Z5yXPAt4O06x6iksV7X0zc4wgSSoTRE8t0u
VxQUrqesEy3zTSEFpmCS00lFElEzZntAslGiHrZ9rSY3kVs63aonugTxxGbq
tmeCUTTdWvEke1Yq7TSVSsvRVIZqUVjAKLnjfXegu5vg4mKOyU46N84si705
9FrmIReIWVbu1jMcKCPrYrgSN2+T7fWqw7RerbiirU5qN1hsbjHbVms+lHw+
UpCbNelJD3ABp/hK6qwyFIsSMryWP7wQPNNpUgefQmXbPV/akn1uNWDTYOxV
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
MCS/VN5Gbqlh2J+i59+xWvRM1KJq/+l3zw6q1ET8eJDXOVEPNEaoYbH2dWoS
4oB97nFuQk+RQCVH0hT2CWjdjAGdn+UGWPxvOork0JtfMQFAmnLR4Sl1mhPe
T326n3rFLIc16R4H8cP7Tx4dWLrTTCdl/8OHZjp7rZ0Z859zctoDKeoj9I8s
janXnagx5DF/ZwDOWVtHXfeCtYggZHT66Fh+RQamzqL8bSQuesVLcPIxAFHI
4l2IfhPNhSuuiul3AbWzqgkpAkpoXUHaE3HyX7GkNP2RyCYYDIDN8N2zgWeI
Ck3yIt09JW7VqASvwZqlbcBpImdTHlX2MuKRRRnM7BT8rqvkONin25TZavY0
qd4XdK6IL35Fevo3Dv/Ic4ZKktqaXJd61JaE3HdMXslKPUWG/6moxLKXJrGb
e4d7LtrsGbf89c2xeMfW6BjVekqtyCPzi3OLexd1hyy5hmPPBNaC/HDGF7g+
BMYcl3aPqCz39FgpFdZF2yHexlwlwi0Q+xvPf31h0pwb5Wz/VaNO0SxgkLPC
JduROFEUqj5vauauqNRhzuam8MgyDCWKmad/4adIm4i/KBceO0pTLB7iQY55
4vIxZWXC6m1V193bV32d77D/pwFe7Lf8JxI+cMFlJ+erbP/cqL0/jOmfPxZa
7WRAJ/1lUD/dI32II0Z7Q+1veYuuRXnr5p/aO7j20a+kVWLn/U3jr/amVaNG
5s376NziN+nsjuP7G3tP2d+XlZzK/63uc7/jhyi8sdra8bfZn/p9lSOzN9qy
xMMt6jVI4y9OQaL8+RecBNoJr7vftBUmk4kLznzCxkgRzH/p5uj+7w9IHPY3
H9D/zqbhfw6HNs0zgpj8i/ZLfflbp1d8nhqn/4Q9452w+SSf3uyK2bVv/n8Z
mOyd/8WB/UZZ+euGda3c/KQhrEDHtG0Iw//kQ5BwyY4hFP981TdgzA/12ZCt
UK3b9bz5ag9HTYHd3o2q/qrCjqyU5d+FBFjbYntlBkSWKPpZUqB+mPRPpK9S
obOGEFaXVwbzn6rPEwAk1gKD6XPaNpR/TkRRL0y6Z9QzJEYpM3YFic4qNw+L
LO/J71KqQXIQSHc8fRgPRUtQEDoFBnRui1MCE0roJCe5ed7UMOlGARq6Wdpw
eovBQGZcXR2Of3oJSjGpPZ9/pO3weXW/nC83K0o7jAbJdO3CBN1DxiQcUWNj
Cu2kFgMTXflm1q9XTTPYDmd1Jbo5NYyA8dOwFWwnXqXDsRWf69AcWTvhxpZP
p87/SVVmdZoJgTyK7k17eQmKfaJP6VDvqj3X8AG76qihUW7SMR27MA4GfwPt
H46qwwO2CdlJatElNUaTasvG4lyc6CFTwpnJUqBEYPzZZzgSYpzk5CCM42at
KVXxHB7AdeqVcqkoYHx829qpNYddn1QnCxe3VAeGXfsHUmXUdqiYk/QkbW1s
yc1ZnKH1RodOsTNl0KL5NUAOHbSJZzq0YI0Vns9nn+1GqjucaMkDu0epYRdr
pIaEJI4JHcXBJTKSOQkaidWxuy5QP5m9jzKbrQexZfAeL5a6O5Q2F0yYaGrN
hX3ZfSzt9f0BOQJH3BegeY0Nx4lAwVy1bZONTJYtUw+dFY6/4liRNzGwJ5G7
MBPfrPyeKKEawvDMJA4G4kIkV0pI7oWIzurDZxv5bewKJnUfpau5Kz+jGmAR
YVyJmFYOomPbxlkShkZAvRWg4Cs2Jd9v4lbsxQ1C5g/23I7isl/Qycppucu6
UDpXBB1w3hnRxj6/Xnn54Q9H7BT8hFfKwHXwqVd6CxHcbmw1tuEs830vm7i+
qhXNxtjNxvYeZhOTR/aumYkUN+uHzXa9ukvp2dNxx9WFwXDj4Bn26actJfK/
155nLWTTDp99ccq2cHFSaeR182n7ovf1bNHlyOpJJd3rUVpoXmX3vEcaoMqY
1bc091by8rKbnOUOvLonGYkd/nC5WVGRaK0K6Ys8OUgL/8rOe/tkfP9lD2lO
zsnyuU8cBOBG8AdniALpBMSIbt+/MyjnH67Y31c7ort78QHZbvHftJxF2Ur7
ttrdSvtWGkklMXbs2P+U5v/zH3H7RD2kSQUkwIYAPoaXekHQPCb/Ml9d5Cx+
tVxdkQ7NVQO7PC7A8DHGmoTwi/A0oxKgNvZL+OXB2P3zi/1LfJ41zJOcX7F6
spj9eI77Du39sss5Ru1HbbXFBZu08F+qNPqtrga8+3zZUdA7q21QMk/nze08
db/A5PHik+dI7B29EJFGn45eR+vl6EgToxBmOQrwcYp88fKhKhAF1brgyv9B
uYALm343thUXi5ocVMbXuONoUHBchLavxRQcB4LqItDlO01g5ZR/+hviPT3f
N93YvQmGOCRk5SXYfBPv8oGIKXXxveBIl3zaCayoYVwX9KKGPqtg1UYN4Btk
tTyO6mfbjMnwvagXTFN8zg9w2surqNVfUpjXxaviDBXvffjw3ZO/nfzppydP
nj354eXHj5nOzmU9uObPRG5PQ4hjGf/jgG/JBUHgNJcSVX3EWAE4XKp5E5qi
fTWmbRAFFrNGL2aBDN6xlGRxtX6YahnnPlWJIdqZC+Vd8t/J6+uEPK4oZz6L
EtYZbofi8hJtceZSVniH9X1BfW0rBm3kkBcE+Z5L1TEMaMKr+GQ+p6T5afVo
E2/CwWWMvb48vnN3dTTCv966f5v+lc43/eed4yP6zyePHn9buU3SEaJDASIU
OfA6Dr2azYh78QDn1tY5Y+UML5T+4s7k7oRKyVNTdyb38O9xyL3tk1TWfKDB
4Q7jfb08j+ZiHGo+/Oq50qOzeM/7/B9kJlLL78fTJbqIhDTeF5iO/PlGOzDF
THPtv1XDxR7okq2ZPAzlJXgbTYpy0/63+P3a4q4cDg04iuMnrPeM18vx17Ql
X/Dzj3AqEJHP4DInKAvUvq8eYQ77R/B1LVuvTsUegEIwWCFO+MMq21/BSotj
72Zd9zXAhCWI3AMvmIsY0gcJH1y03fMjgZnuchNFMO4Ezb/i3DzarD8f37lz
9AX2xc+3b98fpdXINicjV13VMNaEuGWcTEoD5FIoSzV5IDOfLNarqwkpH+p9
SfVutfJLVaUoKyLytgmxLWJPaoNBqvj2aJXkjqs46KY060J1kKp7Exicm4PC
dZBoCJWmRoZ0Fq1LbDkK8+C9jd+2vBu5jYnOxsAmbpNz4pOGR3lJWwe4cyCU
okXESLYyNxhAURkVknhVvxO8wmLpkoZl26xBy4+T2W21HTRAj6VAgUY9R0HB
T/fu3b5PgKmlbTd+pRAs2aROhgvdoNAqaQEWHDdFopDSg0tkpXhYKQWRAyhN
qF7UslelO6Qq3XcrrtHNYwHLnU0I4dtpGkBhDocYiceSssXqUeQyr5M6j0ol
IqUa6MR4Xy2Nu4D0pc7dyzvHSs0Tcft3IXCq2517h3fiMijFdKmWaZigUxYm
iKlmdWG818TMdNk1m9lSMNa2e/ef//TNwUQhEAIyjGJ8Xiv6Jz7AG40MEBqy
Ubwl0Ja/ynm7ap84ZzHeR3TKCM/RmVNZXAb2pFh8pVuAzPPY/7HOyv6cgbTi
BD/Fa5n9tNNDMAzOlTb39g52egm0r+Ie2M/6cJAbcYJlTkgdVyNxMCwueR2h
+PO2Amx6fMtWmNkwaF1C8k+W1Rg82z6v1mB/2gQTp421YYaCrgFOS5OxuUCw
rDVT98nzbMSBnSmcGGbGbQh103L1Ed/KT08e/fgs3tePnzx+yBcu2FpYQbEH
iaqUFCrk/wBEx/oRdSlvUvJQVs0rKvwKP6zL86HE53bKENCawwmLpe4vn/c0
UnByWnT6GXJJymaSXsJlPYjnIvCb1CnXouzvdBJUqOmXdBAXl+urFOxJxSs9
c+QOXVmXxzejyL54uELysSve7TXK8HBdQIt6TaqTztIvVUbYHSYI3cUySAYx
YI0y7xp/EEA5JZMI6ZSn0LLvfIPiMTl1lytiYwWSJFEiyT2olFwjkb+iww5T
F3ZzS5BHt+YMwaaEoE3H9WpT2zlTVKjTxljAlW6DdbZdZwyT5mgXQgVyjVPH
4jb7yeuBehYYCOl7oAEQxyKV3yG3A98hfEtwIhKfPTgtomk6/okE+lW0hYkf
fwzxfkWeBcShtD3g2FfrNSgE43VDb3/4wA+PD+MPlFCCUgca59Ik23bxmvcR
PxwSP1JXSoIqxWIIVJyCIBTgq9cdByECMtmQrk8rBYX2B6lqqzyXJICWFVen
quXL8iNS0OgSv6pmGxF1dKRIbZsjSBtnzIunrc0jWlrP3sZ5q7ksssR3OE39
rHldv20BuyTbfMWMF+eWoMdpuIm/1OUKXbaNctr4SmVVqvqA887TYgS1nBXL
n2Oe2vcgbNFEK81OxYHgfbdanm065gGQ2BDTLvBwJckPSY2SdC+hIx6hJKN2
k+rb5Tvy9ox0b81mBW49tjBrL7T8nVhUMgfdVRfbFvs9xUmlVHn1ar48E6Zm
x0Kj76JQUPXCES+MmD8sb5xpGmyK/7lcNMYYwpVLWGLSD9VJYg0nqLdywbS0
AnjgawkZO2ZV5FLrhiI55FPcUQCIbh2aBvhEqeKS3oUn2NckmU7w5NdRqK6r
EyGDpMepO8wy4zrDc81JKnFBv/bbCv1fNf9F/D14TD8MB78k2aJKF9E1bpAf
pzjTSnlQdWRnUXS/6QTe7IBbPGMnLnzu45sajRMrsWAW/FoT8c+IglP2E5tb
wjegFjYhHzbJdsQxcCOV9QVbRTyUc9UcGV2Likw4SXz2taIyx4tZ6SGTAr5t
5jNdVq82URmJv0pKD+MCVB7gktVFoMSTJbEdUHXnVJin4A/EedNKU0GEkRTu
IropVeA4ouzqp8ZrYlZkmGaBOqbgpZsinmaaeC7rJ5yo8Lp26+Uyqiav9Xwy
+RYTlhs9TDyeIlMFGcFEdvPlFd8/WE87j5I/sXbj4nCnFZpbhAXz69gXRik1
Xk8WqL9x5vnALuLBNWPKyhl2QdOFOZF17uaLi1SCyRhqAHAiyBdPJetEqsAW
mzXNBQqmSTCbVwKB6KdJVqnNzqWuhMe7YxA5Pc+WHTtA6nKDiUxhlIyNnmaV
5iOnqYz/c8FXnLv+o2K+bGVj1lzEPkgBuNSDan/dAs2unIQkvBHGkUJwzfvX
UeKbAxJQB5TgC0W6cnaBH2AZKb4mx4Qcgq80ByHK7s2KvR9x2Wk3XQU+Fpf1
1XxZz/QtnVZej5q7RIRTNozYe6utK8eYyysuOuHAYWJlI3cGh321//8x9+7r
bRtZvuj/eAps5ftOpGmS0dWXuHtasizbat90JCfpnkyOBiIhCREJ6BCkbMbx
vMp5mP1ie91rFQDScnf2+ba/mY5NFAp1WbVqXX/rgksEAyliucQcDex0BY6k
WM9CwFQ44z9x9T6nOdBpJtcGG8Qvp5kZszYE45sPtpx2u6kRU4J/CkzMn3zR
QqQgJb7S3jEhKnuQGOwNT7G2rBk7d8hQuNh1YEiKjj0k7sp5QnA9o2w9Jjaq
BuRQhwDFCwKhMxRHdzPVAlr6KwMOI3NCQYvWk+orL6y8HzIjkaUDArbIyAT+
hDjJlMxmw2XHxZpfKxTE08bc19wE6VABbVPZXWcMfWJ8QJgrEzpviy6yFlQj
je4yz7TUGNMZwit0XQhaGcvuhGYF11C/jSJgMJGI7jBZoEhhDkbsxiO8nGp1
xtcRE1ukN0U5YmrxgqMJdqg3IwkF2xPLd3XFYN1OcEctAI5RLtaiM9jUcd7/
Ac70exFzPn1T848gEvZF9pG4ScanrmfsIOruGHeoLcMS+gJXtiMncFwVTvgt
6Xl8VbZTl7gvinm0myYjMkZzLqPpjinwDK29SOKM8WF15yjageB1M0wm5Q+b
K9E6ymqJDuIwvWMBjhRYPn6rqJNYq1epipgESTuXlDaJFER+t4YIZVjyKlui
SsNFaMaX/YCK6TKCSIPTQaJrs2dACnHgFlfhI30PxasR+z8pVnDWRE53LlzJ
jaW38/LXakHjYRbtdjloZyJYIiAu7DfViyfTz3BBe4i77TQVMgZidF1rwTFc
duHCVmTYYrIIdYvpS4LYVBs2KdEadjyXQm+CVqNmAzEUJOLrhZV/arASUfeW
TqviHu8rk6kNVoH8ZMPLasScOS/vCuBuKg4hNK2qEhh2Cjcq2SSFR1GMqhQE
uMaFQxqBKwsYTHoNKmbK+BmY9jUn2EYgH5oVi+p+BwUMf3KbSeobUVCopyoE
hiUKx8UNxh3HM8LQ0rhCI5cHte+inEQRgH1sPrIOYiggi/qVgGfTwmbVlFCm
xaJBaBjMlLX+RD5i6YvDVmUbOvoQrdBIMYnU8AioRO9KCx5KasOoB6bH95tA
g5zqlYj57d6Q38nkOLNYkvwzBBhHkAfWlVupeV7DW7eCQt6U60FLFJkHljrh
MNkNd/kG1bEehDETz4uua6LtmmVwLOZxNUUpWjaGajHKuVWeNaQAJVb4ZF5R
h5LnrbGcKJrBbzDsDzQ6NSSvVReX85oseOdMSOewZ2u4Wk5qSxy/K79FQwjz
fAkX5rI+1DneypW7BfG09tQU6xfWl0nyFwXrd4zgrc4IQ5/s8PiERGsKsDGc
A/L6zJR1BttrYkDsWNEDdvCclqaJ+DPTKE8fPMlbWutBuJQbJyxD7iQ1Xo8e
3SgUtiGXCo5hK5Y6w73SPbjCpEjt1DRzvV7Z4UR8JJeRXTOgbEU1WjPGq21g
9NE9CappQpc/ERlqGUzo5GqrGwE7XyyFmVRTEbfd5uF1yGvHR5++W1adY3Jj
oVkWM+svGDjpCTIYIRFPWehuh6kjAoMGoq9YVts5pV9V9hG2TO8uIWYSvuWr
nOcADahmEEVYIE/mhOHk6bhCh1uBbIlwSgzjns/dQuu9mG0ORMrMmVNR+jfx
XSaOyxjKDbdrO5hEbJqX5pawN53ZMTqrSTzgGlQC/jpSQq81R6ZJJs1lFmmn
thszcbBshThK26Y0gbCya9YzLdLsXBaAHHrFhjJQ4bru31rauGHVSUllKhnD
6QlNqDCzUQgQLuqeckgmE7Lbod1lFU9BUINBPiDLBn5MDGNcDoNkMDH1KQ61
fprHW3urWhKvC7t3ZpbQQfN9GjwmZK9QAYebEJDGge1O9B5Bz1jRLr/7VPpa
LE5+Q211gBTzbMqmN7u+epIRwTbAgJ3tOhAEDTGicXgVSEuJwEfjQVOriybW
C7EPsbg9nKPxeC41G8YieIAWlTgjnbffCnKgRJ3yRzRzAv8eMqMoxFlXKVC8
rJeQlad3vt+tgLoiALg1TMMaisYp+T2uEvYSidUs4SozYb8qFDhFKDEVKEid
qPuyZha4UlHGsioZTplBJbFU6jJ3cG/Ezmz1PAneNXhnQPP7kGc3+bRTXdQV
t4w6DB6FQ73gD0kJJpsa3Z4wxtySDrrMFgbtNEDL3YR8CUgpMidNAEFtQqpB
41KQDmLehA4JVJTMZV/lr3F4Yib6FsyPgNy7NKgGKmaCWj1FRbACbp8ll8IF
nPM5EPMU68uIeJoGqYz0Ul6dS9bkvJHKJC/yO5rRBjtWaH6N4xEzRy3KfmLX
SMPmr9uGNwCOjwZJZ4YPbuL9dgepUAB6za9KEaOdtUL9+07WT8hQwHMnRRON
ByIx8SS6hs9GtmSpkc1sTPyyDxq2pB3vTbhE2+u0DgEoljREd4yIODwtqYDV
CplCZfwSzsw1mp9n2VQLeWn0T+IdMakTOXCS6McNcURUmjCWDFMs0jLObnnS
1D/G51Is7ruZVEiQ703nmmxa3xA101aJYY+WSJhzTpDujHk8ltKWI2fehRUs
Kldk7dK5d76lGnXMyeCDhJ0ywdN3SfnDqUCY65X2bS0XSSzXC6OKS8s0hGRZ
AMGQvqQAgKaQhDyPvLbeOYanYou5FpJxIUUSg3PWjCtRXRQMYZsGp7TQHpJf
yQfqLpsWaEWuLqXwE9kUTZFkBt8wsXuvOjngUUV9juRCbtdDksj9JRBflr7a
S87qGSpR6tVIg2QxS4pZK/UN9TOFvEdVP+fSYLkF28W7gmUj0I6gNMHVgcVF
J3Zk8iiQ3ahpLefbOnEd9lwRj6aCI+m9Xi7V9S5ztE5k04UJc36QykTsqmx6
NXhN+tfYum/n6fPnwNVsUE43UisrS+5sFmz7Lvx9wKILmayhVzTiYMmcSfGb
hLkCk2sY/ILp1cwxTiSRep22YWqYZ/YQS8BxKayAOMqU26Fdh+XqBetAY85K
YklTIg5JT95sxlNAt90lJkGTPRwNR5T7qoeEMpz7cKUz07IyYa6WOH9ERGaf
6zfCpHus/4PKAKXOYA9/SeN//8m+OTpH+xm9z7Qk0TXsNaFsiKC26+gxaJFD
yALaG6fS3uT5rbg7Lb3JW6C5h4H3Y1EUgB2yIPoD07wr8g9WCfXKJCK5uNER
Pb+gXG5Lt6Qn39bJWrC4nGej0ZrHeVtlnDGdm1M8HQNfAzHgnFUXzENzmMpf
mE23htxWBaOsze6X/rJsf/+kzmI3GdnUn7QAx4fVRqKlijyy/MTsqdkV3vki
11quFOuAZN+me46ZbjkSZW4hGgPqgKFAWUZA4eS1oLAjDYWhof1q1T0t7ot4
X6gHZp49NZlWFkAR5ajX6HhFaAuLjWLHL8elEZY342HSnUicJVFQNMzPl8O3
fI3U6TABzg/X7ShhSeNHvPlY3Ck6zi6vVMIaBI5TLhFW9cifh2DTMn+nOvBp
uKirMebAk2NYRQPgKngqyAcuuv0g0UgsTBCA3eP0oJxEm0yr/6CCIt8Xcylh
OARsuDId51eFsClnNchRzCKjOk6Zy04j0b/NP5wxy3sfBPEudSSIIihlSLVh
pLNyhOdvqiVlyT/ek1vc3rkuRqO8JGjdwxP2kclBSARB8JhqvDDTYv1mXJCN
CeUka4WWPPazc3J+VTKPR68xBsS5mkm0lxjdQ0O8izZZKIB8Hk9Eowje6bQG
cQDaw12E+9WA16Z7ZQBrhOenvoHjaqqnicxYOateTCao7g0JAYMGjzco6mvT
bJQjCWDvRXlXje84FN9e4RJSaIai4E4ReGyXlWJcZtmlSV1kB2VdWuJ9GRne
bl6qjMWgEio6u4vaVHMu1YsDnwT5WQvEixFW7up+PwKOADGoHH0oRhLwKmFM
w+w2G6KRCloPpew4gcUkF6B6aQSvjohq5mTjPpyI8chirzEmPISzMKkkHVMv
GDQfJlPmqtwTC2iJoBjTr9yVY2WlkhVibXA8s4TctJI0WfqiDbdOQC2j+tcu
SscFVfXsHdx5LSYkoZ9AQ3k2ya2okXAfqradGZguTsI0GATep2AJiiTxcbVc
wPmNluzBJDILpk+5EmZ6hujVdVyM5rg0yN/Hg60ejfODRefOKICJQHHJvkL5
O1mZzEs6lzkWp6xnzZozx6VywlwCXuLYT6ulHWpyU8jjghFBg0TLSRFUzLM/
lHnPop6k2nOQDSnU4fzg6Ox8a/vR+YvDN+dnLw+29x5gRz/DP3+JobyRAiQI
o7sXeFV72Xm0G3rBF7HN4csD+L/tzfOTd6//sbWzuSffo0Ixj3Z3HscfrKlO
A81K0/eeDnYxdes+E5VqD8B/gOPjdRkKUUohw3RaZ+e3N8N6CyUiHMc6ckhX
9wPh0qlRXZ/Df3PfDjtw5Yt+lNJp5ajZAcWADkfQjSWZSj9wYA8SSWS5x0wI
J1jz8chKYR1iL+tvj6HxSR9+2PB7tfx1ySP8WVKNfmkUF/qDSfPf/kDq/MMI
9I+j0W4yvc+k70GpfwSx/nH0+oeR7B9Etf3+vydJ8q+Qa0SrfwiVpp8+wT8+
f07+FQrVTkhIW0mdlJiJ5IlwAm36/PSJf+zzj1wp6l8mzH+NJP9lYjxI/gAq
/Kfpz6XCSszdMoki1M1LP30zmRXBX4jxd38M2cJKfWk1YoIL+DsY7hhGRLz6
30D80RqUP2oGGZ3WtVCVUFPL1p7AWtjPff0ZYeOxp8OquinyVtbk+tqQHtDb
/Fd948yKjx6EWu70bX1wHoq889f1QT88WNmbr124pGMq/fbF3t8GcI4XBP6R
ttaJQUEaq8Q/ai+EZYlGmeYaYeooWWvodcLGxH/Z3FgKfouhuMcCioTpu1Gd
uycuK2xHMoulXFxC4C5NtwafHSq/FgKB6tyXCCElgEo94l0vpEaIazkzCCGj
LnKBiVEy5//9w/Hp0TN2d8XRTr24JiXVl2nWpXSeQP5QF220PuRruqHXDa0R
EsHbHK9sG21Es5tOEwAXv1ieJ5ymiEkDbyOCwFHEWOTjYbf9W82Pf6mXpoWv
uxet/JddTXPafH27vjn3wA/nEwyFbK9kx/twoYh9SHBcJN9B3P5RHlko8Kvo
JaBsxkVKihUhJVknZSWhQBxx6s2Pmzubu64YfVESyNlFNVoMEomx79hLPgGT
PG+ySg/SgRTe5zCluEDsChsreWkY+IBfoOwvpJlsGQW7mndcD7FNocGEKyOK
R7PihTAeCmTSQWFKZESN7gUchcuLxgLEnEqs2CGCB8yvYvIYqb2Ca8RmMSAV
DaJytWtjf1ScExgqyDMviuFSeAbteCctvb7WqgW8llAsGtKsZSpiAmG2lB2K
OID9u6iGiNE2yc/dwDUZeKhM46VQPBbW8aFkFiCryZpWApPj3ZfULh24pVT4
BS6Ja4MRicbHkkXxdONMTGLLvkFBAuQLcBVEQnFmnmzSscqprjKKRydaZvq4
FHdqLc4aDaFUb15NhTy5CRvwSEaxgscUN1SMRuP8ovqY8w4lfEopppOImVaf
K2CivQmjYhrJ8GhfR1iMWtz8xqq4JLd4PLU6yNhqZGHwDqaF52amTcnhxyHg
FrmtZeLJoY+QLPQGQr1gHKCWmFc2iOZmMmCHwDWpIeXKQpOLJq4WaTk5CDh9
hbZTl2j9ffrGLRNWGvN4p+oTyGRowbif8A8WFccRZp4EcBAyB3RClpn4nIvy
cjzPBaXVeTmk4qZG9/ftCYXMHYjPEeUYNOL1fBaiQrZi/qLZmcnhQLbjxugr
GzYeKmdFTPQIV2O0kodVVXO8ZIJROEohlVrhOSfzMS9J+F2jRAPW4bgXdFC0
gXWE31Ph9THX5x7njpak6JxAX7qAwTZXjFgR8ipXTt5Koso1h/d5HCaiC4Nm
S6zm3prihaIWRwmpmL2UxsXJGaNTKtt3M/DGrOF4VVykLqpZjandXlvtOSGz
F1IYozPgJiVxbzKZJG3vWEQcNUGVW50uFxlic0jSjprkSFQtV1C4NpfPLUxG
Fs24lgZyyJGiKks4MMdWJfGMa7VRyqnqdknK5493YF1M4hrWI7Pa8NUPLQLN
CcDQSyuapOA8XRHS2DLP+8A8NRoGD5hflEEgjJcOg4cXDYPDavUKabTE8KIw
OiTfY2J+MwwbzKZBVtGYBC7K9aGMLrPUSz/k5nBnpJhpcnRG4OuMetvoNWN3
UZJGKe8+o6MXqjkxqCImSZkLSJjDtxKEQHbA4IqCNfu2tmrFkUSpcIOc/5TB
yixq9dUQBFlqi4xeBp8tpHF248UgPcsuc4r4QQ7Ku44bpaRGAO2cEoXoDgGT
yr4cVzF2UOAX+aJS6LVhdZu38F+WULmsUBxNHG+LSXphf/haTymYXUviYuCc
KVw2HFjWOBhdtlTT1zICUXA+K8N1LkG7IRCkFWyl4xpIY7bi/OE1bfdz/nAz
5Vb9WiRjK7sOSC+qO/ti1cRGJEbTltV8plZJnn2lXF2Cw+Voz3V3FbEvbIyL
MRZ+RcJFnbt36AJlw5dbd1l2AWOIIj+mFwWs7LRAKmycXQmsnlOGX2nwoO6E
0fAodkEKSDSeq5stbqRRCzBbdtwRCA83bfQo2Q8SqRoKNlIhd8Yqk+RMLPEx
CmcIw8Cqsh/xvcTLnyLc2E8g0zwJyAueukGqzD7SgIOEi9FvmHvve4y9n/Hn
2bV5pqf1MDqtqFnJA5DGtYTeqKiHcy4zez3FSAwS5zg2bFLBpUuaN4MslGny
6VMsw/QJDxqBfj59wiA+pO1+VDWPqkoTMpBJeMq/rAo6FU5vjjaGmOMUN4l0
meZXFDqQiw7QjF3lRBHJ8jp9fri7s/tAAIpYYgzlWh/t2iOu+Qo/PMQEMCQI
gSROVBx2b/TsHw91hu3Cu40YxIui7kuXOHWa9bVmMiDEFsn3OaX+qzqLJjnJ
GGo+9dyVhuuWRYi/IANapebiChHeZOO1kHefiD1ybWtHi+/TH6Xmg8JfcYod
Qf0qjAJFXKTpZn97bzddHwG1TLLxhkCMivJ0V2QBj4fGIk73kSzj1vYDXJJ0
1Qe39/Ya/SN27PROohxPqKAkDgVT26NuEyExXGxGNibBJnKGoCnCgkVjjwgL
kLOwwgte7zUa7Bot9tqznOvLkHIL9/d8IjEtCAlVuuqiGWV4MNLFGhYb7r97
JX2chmyiuA9CAppk0xvOKFn7x1qIPsQ6tLGsPLBdReSxckZA6mFPGTXN19EM
SGywUSjdiD+hTg9Y4IxXkzsXmPF79xt6hS909Bu26La6JehQOVL6BZRKrWS0
RGjhqn76RLaEvt7+/UycrXKM4b2wzryqKM22lxPFdIpX1jghI0fX9vz06Ozo
9MejZ2sc4MQ7Rhhbet5F3iumAWyPUtVt6Qwm/o/dmbCCyuWa60eJzFSNFgNR
0l1ewLWmBkM5vGtAWOcS1itRl2soFiJGU/cGLdse0+j7Ktz6LWodhX9pi5bu
z4rNYTw2RN6ZYny57lV8AZGWQ7eQCBXBeUe7KMOwtVh5HT3o3i62LRifb/L4
9FAg8kXYt2+xgUvMzm0aMBJz18Aixn9OV3Jez+pXMnrs5568ftUHsZv7cfsO
Xt+5BJ5KSW5ngZhlX2fP7rVM9L2ljg9Efl1jJFQMWMOW4rjsdfogqL3TY881
uavAztK1qhidS9ovfbWqfblObLzGgsYKp2QaueIax9GhQTZkFRGV4wvIynnA
4fvKdc3SNZSEUxSi7UCzxof3bC3hxKKtWfYOhyCraRnzP1PJKJW8G+lJ61GQ
WaeQqOHAlOK7lq9051j/3NObBHWX8D2UwkUKoMBcz376azw9TrwhqRM/boXj
GK90oYpDi3vwitWkncO/SUaTU0UXtXM+IjdxTLuTjzDJP9h8vLVcrCUp1vYs
8ewgL2eSR8N7vGWpkJTqgPfD2jtg0CcvTgI77SVd5LH2VohS+Gy69oPYGXFe
Zla/nSLqJXwFF2ct7eZSzWFttoaVrP19b/Mxno6uofyjOZSf4AN/H8AbQC0U
Zi3bszZIl20QZqvQMJbsDlzAM7gyaJOS1cxeNunxg61oJ9pTTsKUtzt2ohrW
t+eU9O7uttaSJ51LnvKS4/n14arP/3Hcw/hU+pIfDwMJXOeSIEtIuHZPYGeo
C804/ZFUG1ukEBYi0Q5BVj4Z5xmlU1K6CxcZwSPDeH8U1gJLeCF5TWgnieJg
v+okNYdBwZy6Teu6OXNGBPHR6bjUcIAxdmx39/H2L09SHJziTvHVJs8f7W5v
/7IRnTt58vDx1mMOGPxZDuEvSGqHnEfyf/Bs7jkZhANMqEr80gN035l8zTRY
aoJ5fP7cmog+xmk0mKE+womYjm/McUPQBmWw4RDW6TZX0NjZTNc/hoIaH3d3
H2041Co7NxUJhwnJbW3VPEKS7DVuXoXox1XDDKamZYNqUEaTRTZiartFMGG5
20n+TyvuO/+bFfdd9JP80/r7V4imD9Jqau3QssvpuF1Nd8IKUxwBn1E0qJvO
1RwjGlzFyJVGRi5WYrwwRKaGTo1eFZ6oKRFUlyzTluEchFG6NASNDRQhPMWp
lCbVoDjqx/f9knDKnvudqh/h7/AXFKM6QjjbcZ3YtvXj3ta27wD/v/m+/Ba9
Lr/h2xwBOqIDKovanJLTJY2kMyfYvl2T8gdpKH+QKN6wprbg2SVfCb+nkSNL
ZeUkAMutVtfT46OzFxgaPq3uuFqaxlElAvXwj/6/v+XaxYVgmaV88E/qm1f5
4kgUkjegj7TPvuTI45Vhits/cdCxg3jY7wM54tHGNWqdbb6p7qGwdR4cijLq
OjtfPDr4ZuP0sPqWrm/ylY3/HF3n9NPWhub0NU9G/PmBUtcfQV7pv05g6R9B
YulSIkPAPDE1XGoQA3SafvrGm7CTpCXSZgTn583U3sguDBjfStxF90XjduJN
5SXneqG2SqobrM45V6mXMiSyVokTPlZbatDW5boqtPL8mv+wCim2S4pCsCYo
f+eU4CfRY17yadhJGxxd0FwYFoLMmGojY2NGv09XDvlJzijt/A0jHYv8pYa0
EO2TpfV8MkFDlkSiEdiaQpnbNhsoVtLO3DWrAyYO8ldx2amoHe3xMLvFsH8M
ysBijcnZ+4PT9yIbleKPGxP0OKE7zPmaNeAbtl1TrBwlXk/za800FyqOykyT
AZ183ZibKinVw2IK5KFIychxVDsn3es/f/7PX/gShMudGdraq/NPGDzTm+bD
u8/pX2AY1Rrjo2N4m4IblKPvsEEiVdDwR94jtAZ5NEnOZU+zrL5bGdxLi5P+
GWuV/ilqd5Y3coZ/1ye/I97jXTu0WV//+dU5RQD+xSVM/uJeXxlrnN612/2J
ZHr/56eD4/fnZy/TeNi/px1/ZLSxx3Zl+1fnuMQwfKM0euMQtO/ON37ExzTj
9mMa6NERxtTQWqwa4pGCpIbEC7Lbc3lY+/MnqzKrf2uswA8ULdf+0u/yJI6l
iZYCo6PbL951rVjUjKZ5eHQK/3O6sjFN9Hf7lf7ZDlzq7sJbOvTBl4fG/7IB
3rN95+i+/K4S7z2GJUP68R4tlwyHs4+63scDQ90/P357fPby6Bkc8JXHRDrH
qrGEvew7ajX9mVhDXL/4l1WHGo+UcIT4SC1tz5/wG/7zn9pT/wW+iqeS+u7o
hToJc4LbiA9TmvbjebkB2uGP6thklP9NdtfGn7tlEzl89/bt0eF7kGUYCSSE
UoWSx+6+y7ToNNWXDeUnMEKG46nppmagG0G/5JJZWNrZx5t4yzWHyCHoodc8
XR67IQjq9wRKhr/J+Ej04RggjHXcae6uoRAzS3WOi0uPGEjQ7oxadM97KbqZ
GleTsJHOy0m3fenttOyP3TtfuKBOjw5/fHZ+2Lx7lvzB0WBkqgsb++JAVjZ4
e/Ti3fvjg/csI3/p05gX2HHxLX3j686p+8qSu2v1m61TLlv1S7L8VC97Ne3i
D4k78isGbyyCj3mLPXSsj+cOXWzBXdPhL/GKvK0EcafrptYaSN3DaP0CLdtS
S2fL0C5wgeTns5viVnFHBWpFJDYZvdwnR+/gLllO9r/74XVd9fGlsboXx6VC
L0tksyWdBFEJl98t1tI3up8seSNcs6+PX7x8vy3M6l58YWmXX6AaJBv0tnbu
LZ4AhsW3pIi5JeK3m993UKskwlUt20LXktZfkAq/8DrncbUlwmbrlvzYlMBW
zSUe3b1eubNflwtt8Z8uue1el0y39La0ebeQs/rPymupKewkLm2KYHXOtHIR
R/8daslyNncsNReQn5GCYlHesejzGXmhNTCA3BQsRpGfROuh1yGMQzznWZ34
EByKzJyLR3hp6VEyghFCGPVB5bL4Mwx3hiBFAwvK7cyiwVBwujhmiLt0MZ8l
HOCrlRTpZ5LmOFGH0rvijli350IL6Wus8pMkuiN5OZ+kn/z+YJTuuBitb8YV
gCVChMPxzjF4dn270YSkvfXtrfhX47br29uN9oGCKNBkfXsnbrC+vbe3oT98
9lF/T2wCXNcqnoIPD5xRa/dQiUuS/MmKNFycMxCTBrVEb8yLcrb1QArbRk+q
2+z/JXDC7AqX+2dY/JMxerWwiiu3/+VJmIB/vHoG0vGQJ7K63y/OGMf/iIrz
1j/zy+fV5fktW2cb4zsuy3x6z0H6j/KAz/HbMW+gnX2Sfvdv6fZO+m/fffVO
QG+U07xDfVAgwNZgu9HTF3fIishI7z9HwfPdWxWeP0kEypZMnukb1ZI+fbMs
QLNxvtIP2RQthutwNtJLWJDxOpwFpm/4GHX7GosLPllxMIfjqs7Pywqug0Xz
dM5LQziUwaxvNZpcZDr580nWPrwiweGOXVLhGWN2rRMtvSAQ2eW4+tA616Oc
bZ8cYYm9YUSXdbezuYRBaNP13UaLsjr34WXW0+5We4qu4frudnOVQvRa1K7B
d/zHgLVXN/lofXd3eRtYe3Qore/uLW8jZbfWdx/EbVo1Q9Z3HzZHTW+eD7P1
3UcNDkqVjc5HeVng5x+392GUs/1+fa97v/VpYyW55jJMHl0ZZLgOq/6g0ZNe
rXpi1x82GhRlABs812SJ9YdbzVZUrkj8DeuPWp0QLvotojYipYzH6D5Yf9RY
TiyFDitVDkF1Hq0/bhPSNNcE5GhSW5uNpq3MbmjyeDk5uWbNgxdTQXWBVn6M
33Mf39pq9hxyKikzHZpsr6T185rit841PQpe2Fn9wnVWX3Ppdj+Q3W7aQ9+i
FhWBVivoXPx3I2jV2JrInwSPH7b2xl8bSlXrW01O1ZAKiHm6JIXVd1ZgtVzN
9UnroetKghKk2/iLdidYzHsQWz99syoyfAWLJxTvc/Gihm1pEhSjTVDj9Qbl
CJoBP2uQDPfOCantjzTIpR0kv96gDZgNyhEhUHh9r+t7hEHf/tyDZmd6QYeA
1vVHS8lsvXliZN5RNHMg6+3V9AoDW28eF7+Q5wgb6rpbcRXw6q63Tghv2ZLh
NdbiUpSx1h0dcZLpePkN3cEYQtvGYiAPE21hTNvomjbWBIfPHvH17cYaiNRB
XAUO6O7KIxuliaw+r3FGyaS+IhHzCT4CcTDYq0jwbAuF27sqFKb+D7zKNTDI
i7uY5QICzNmecTcMD5Cu20gGOoqNeKi08JnVnmfS+T48czbnJ53veZJz7zkr
bPd7rYPIL8cGs2Wvto/d92mXSbb7/Y6ThB9v22W/+LqbsH/9y5/lE/d94z22
lXS/refr+/iZ2kC6X2rzQ3q9mWHU/XI4ONE3X+WLH+jX6K3PTzpOil433xBw
msZHmSoSFHpRhRq6lXUp+tAppfb/vLP9y5PozUeSMEn5kj9jeG1Kp+UQyaG6
mma318VQgB35YFRTPC+rjvASNa+t3/Gnlqh4PGLBJOhS8aRb3aNi9OfNwWBn
+99jPTnMLlVTBiVD/nl7MNj+f7Ye9BsvxJ17vUZK1v95C1981N+K37OD4/JW
/vxIvuHafo7Zwv+J63ieD6+rr1nMDuPD0vXDYX954R50LVzEF1ctXBwlZd2e
twwlaiywFshMcebtj1ufqzR2By2FMly66g/sGEaiIUphY8cm2cdztTCd821G
doSv68X0AxZ39lYNZ0UvDWA1sjKs7gXj13sphqo3++pI9iIxbFVfu80RgcJ3
Xk9ntySVLZ+S72Xv4YPdRi/XcHnOLvJsRpLbvXp5sLe92ejF6y9UTd20mHOn
dJK8p7083Nnc6liX2EBB1SpgAycwy0fR8HQsjx80z7kIIVEvQO/rW4/b89Ox
bO81ZyQU3Oplu2Pbl/cipkYSU1evbejlwaO9Zi9R/iIZf77USwe9OHUFzUP3
GUtHL+0sSDIifWUvnFVJpqWV41jdS3cWJxmjvmYs3fmbZI26fy8u1ZOMVf/k
jNoZomTc+rpeliaTki3svr1YCi3ZyFbNZ1Uv6w/29na8ChTdSauvL4S6HVFy
UUpMt+vK8vvPEknzwlKsyiNMzFv9waipMhLGtuy+DPWFe4sybkosReqF0tFp
KxrnawYv/IsG39H3vUWISIohWM6/pLtdG/H3n+FQIzIWnqMuT420+8eqdp/T
H0oVlfLRCUJrneb4L3XpNYUO4QEkZIQ0AJIS1MfQTqz4grTZTsS4EdZCBLa3
5ymg3bpudw9Uj+721d/9enW7WzPDHdvZJuEpsPzzuvhtmUrZqbTLgLte6Fad
2y94dc608YBcfS8/oJpeu452GibbWRot3qVj6Sl8Vj4Bz55S7V86OH/e2dY9
/gKRaIeuyvWfH3aPMv6ElBqu/7yz08VT3lGu5Aje6aCkP9I+E32oq3lslhH9
2thWYQu6ZM9PgM2Q1EIHJGgNpM1/o1jz4UJI/nfOttmC96WhWKpIQzrx3q6j
gRXrAndfN2h5fBEu/agtaJcH3q+nJdwqSn9YS8Hdv+dSmo8dX+q+NLnD8IEO
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
+4m78D9EjwUTjaMEAA==

-->

</rfc>
