<?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.32.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 (SP)" value="pp. 506-525"/>
          <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:
H4sIAJNLr2kAA+y963bbyLUw+B9PUUdZa0L1R1Ikdbc7yciy1Fa6besz1d3J
cXy0IBKSEJMAA4CSGbfPs8yzzJPNvlXVLgCUZXcn3/kxXitpigTqsmvXvl96
vV5UpdUseWIubhNzUcRZuciLyvwQr5LCjJPJskirlelc/DDeNOdFXuWTfGZ+
SooyzTMz7G9H8dVVkdzB+z+Mo2w5v0qKJ+bwYGcvmuaTLJ7DyNMivq56aVJd
96pZ2SuuJwc7O3tXadkb7kTl8mqeljhatVrAw2cnF6fRJM/KJCuX5RNTFcsk
msRVcpMXqyemrKbRcjGFv+G33f3BbtfsDfb2umZ/b7TfNQc7o1GUX5X5LKEn
cKIogtVtR7M4u3likixKF7DCRZHsbu8fXBTLshoNBoeDUYSDPjGjwWivNxhG
cZHET8z45Di6z4v3N0W+XMBiZmVUVnE2vYxneQZPr5IyWqRPImNgV8m0rFYz
+dYYAJX6mGbTJKvsFyXAuEiuS/f3ah78WRXpxD08yedzeNf9mmazNPPTJB+q
3iwtqx4McpXP4LFe/s3/gl/gAObxYpHivvHZeFnd5gUstgc/0r80g6dP+uZN
Uk7yYhbb7/ncTmARjZ/y4ibO0n/GFZwYnBbsapHQ1uwDyTxOZwDo98X/XVTX
8z6sPoqyvJjDK3cJgurN6fFoONhxH4eH8nH3YM9+xEO1H/d2d+Xjwc62fQDP
237c3zmwHw/dYAeD7ZH7OLTPHgxHe+7jvl3D7nAI38Lnv+wdDp7YncjF2DjL
rnn5gPFVMrnN8ll+szI9czR+1R8CSk3yKQDZvFnOEOfGi2SSXqcTfiG/Ns/i
EgB5EjxmOs9O3mx2zXGc5Rk8O2v8fgy/G0A18xzOFr5fpuVtMm089hwe27Ar
ZhQ+Ta6KZVysEJeH9id3+MYfJJzfxY+9C/tdmRRpUqawW/UYPfEE0ICxcMq7
+ksfAOXgFBc3CWDrbVUtyidbW/f39/20WvbTrNoqksnWRe/NyXGPXunhkgaj
3tkWXERjvjt+6aey4K5NBbA3z2b55L05The3QJRe5lPYOMD19SIpBA+/g/uY
llvH+TKr5BHTgdEZgt+9PDp2MDL2ng/2e0MHniZ84Hzperzsm+dIAtLM/dYK
KPPqbAyAGp+bg8Ggt33wXP30/PXZEzMc9PcGo4MtfK4/Pu/XH6uDcZqnfTik
rXXvpRYt3a3aGRxY5N7Z3vEf3VXa2Tm0d2J3sG/vxO7IPbu7v+fuxOHIX8bD
of043Hf3cnc0sNduZ89e0f3Rrvt2d+/A39Yd9/HAXeftgfsIlNpd8h13hw/2
7WAHh9t2vYeDgV3O4XA4ch/3/Ee3IfhoBzsc7e77j3Zlh9s7u3T1n7+AneFJ
9QHgw+HgcOvi7KI/PNzfgy92d/e2D+Ch8fiHUYM+IOeEHxx7dKjWwCmmq9+n
i4V5kU7ez2OPU3wfXyVVOYkXiTmGK7DMhIiU8Gex6Ie3fHh4uNuDqzQ4hO8v
zl6evfqusbI3yTyvgK2nc6QYR1UVT96X5qhIYK3xpEK64xbbdouXwIXTD4SF
wJKvkwJoXbI1HFW3Pf6pV4qEgMxnkZfpcg5XHiftVTRpL+ZJe8BPews76VoA
9fxH4U7P++YZsNrbzz1TLOezZGV/AmYKC66I4+JyzY/jk1dnf/ECzdgu13Tq
Pw22N0NIA6nYRt6wy2gXQFjzhgvNG4A4ZTBLWSXzEtgkUCVYUJZM6MkeSVvP
U6COFYk1SLBmZY2Ov4YfQZyC+YeHX0prYa09fG84sLS2HeC/kgvANOqh8eut
s5NjEP92D3d6oydA65FHnI+/752eAfV6cfK8BUPvUhYlByCU5SAIXs0Sw0hj
0mszmaVwiLRu+K9lqmlp4tksvwd+OIVDA9yGSTbqpzbc7cH2t4dtSDFPyjK+
SUAyMxUKvj+MDcotOBTKUuvAjc/ExeQWaG4fBVq6GvjF1ry82QLxcOtiefNs
dzr983I7++vN/uR2skrOVj/+4+fx1dHWmlNQCE3ofNw3x3CJQMZe9wTwpBd5
cRdX6x646Ju7ODNT5IVJcZ+se27cN+NJXuE4xy9ejH9iOSk4oaP79/dxMTUv
gJOWt/F7+O7cnhNI7oD7k1vkxnxSW4A+dzDrXZrcGzipNeeX4VlXvVs7ppkj
x4avPT4cNM9zH+ndcK3c8fnDmRTT8fFN+nPvcOefo7/ny9lf/1wtj3ZHJ4cn
W78CS/715/lnfGAFKsz0Nzzxo5Oj570fgHNcjBun/gNQ76rEEzzyR8fiZ7Fa
0CH+WNKJAVDWMbz63Ed988Ny9f7Dut+/75tzmKUo82zdGScLuO5VP40nBR0v
0JidrcHuMMSVo+UN6HWEMvDDi+9Ox8PdxhbPixUeJBHqc4BsXsS/L4HZfICF
HJ85bhnfxLC4Ktjn43nlfZ5Xw90tFCDL23wBLDC/KeL5Fuif8HxF12HrdhYv
y8lt8v7xCPWi/koLSn1XLIF9rHvgtG9O4+z9LYyz/qFjxBa4pYlDXX09QOCZ
JAlqIySPCyP9WfaKyPP6+hr0eLiQnjmmfixPqOGb0+/GPw/3Gqf0fbIC6Se7
Ti2XBZTD704+4Lpu8LDNKbLgmbkAlb2aE7kBof9svpg5+QmVCLy9w/72Y5EV
AHiaAohnXvBvAeF3S5jvdj0AnxEA5+l07dWGJ36OAalhqvQRQD47OTlR0gsA
xAkuuOvzIr2LJyvTeR2/R3KxieDde5C3W+WEZF7QL/CF/vZOG64DqqdJknxY
zPICaWySEL5P88kS4b61vwuKwHB/q3HAuILTn1su4WmMEhDps+MjPNjS/JyC
vIaHdZ4U1yAg4fESB4KNgoizevAWFsn0Nq7Q6ABSz9YV4NvWtZ2iV5Rx7z1M
QWaoBY/eu+bRUZLF0R+JHXD0Pyfp3B+8iFJvEuSUFZ7adAlrt4fTIpsMDoGd
tZ24HQO03hv4/dnz0+/Pz9+M//M//fVw4icgeYKgRwjy+ed3+NmyK0B4ktoA
fGTSs8ALt+d3Z+nws1sAbnznFJTaE0DJnyez9CaLq94P8Nhy2v4c0I/TfFlk
SdX+O1yy7/Pb2X2SlmX7E39GnrBmFfgb6Fz/TLL3+dp1vonLCqhO+++v4Hre
x/NV+6/AK/8TaN9sFveeJTfLxJOC5kL+M83+mQITuc2Xlvf+Brd4DCz9z3mZ
bFpeFuDQXm9oEejzfHK4tzUc7h+gqvtslqSHB3VcOr6FiTKxsqBVscECrYJb
okkLkBSWjbdWyQRjNI7iXT3//nhsfjfcWLM8gOT7folrvEkKuq1AzRfA+tHa
MRwM9reurq8GoHbvO+L1IMaiBgibAoaYXcUTT48fOILjN389v3htfn94EIAV
1GqG0cuXby48wXLS8PIGr1sy5QMDRR24EKBISeeGt+67HFgRjP+rbiDcm2cx
yHJVqTbTfOZlXK25WD/ij7C+Ne+ew73Ib+L7eA3mA1O6iMlAkbVD8g62bzm3
B944gTOci866+3jU3N3aPtwhqF80aRyqyi+XsyrtgcSpfBIA43WyKVz8k3Hv
u+OXIqBqvv8g3IEePcP7XiRfCZcWDFMMmKH05+Vspb991N3d3SMAfV/E9y1S
0pH5MQPlBy5QPOtVee/lsloCGh6FatdxPl+kM4AhikNaiDKde2S6RwslMoHO
c8zK21FDeauLUg17hZM4HgDPERzPMVAJ/fijQLE/XGfVrnPpF30C2OSfq/cE
vDYBE9Hr9TnJG9a9hVe5fYsvUZ187AZPlkVuxv9XPF88Pf/SXe5uHe4ffMUu
1z/yc5KQmRPk7BY57AhUVLg7qJwsbtOJOcri2apMyzolY1/ecGBOl7OZ8Kqk
Bzo8CF6EUs5M0DSHNrBk98uwZPfL4DfceST84FI/z+9Rq//X6gLApMZVcgX3
1B1E203+dx2EchO1o/PFm9evvvx2Dg4eezv/z8D99LsWI9ebZDGLV07gASr3
nwlc3jf5Mpv2Lop0gTZ0cZIfg+xTPw0P7GP4lJJ/ugbuIwDWTItxX0I69r/g
CPbhCEaPPIIvBLBlQE0faYi0Jx8qMvUDHBEzER2fJyjTMnNGKL74/vkpqsag
vTQNfYNHgMhz17UGwRbgDLZGe4+lCyFdfRlPWhDHSSNouEST5zXiBKLEoPfm
4qLBPlYPnuYNcOHlFcnDoKLek9FyuN0rF8lkCzSkZVKCfDx47P0iAXFyHBfV
bZze3OLpvUnK4X5c3wVQjhl6a5AYwEJjxP/TFGCff3AY/jKdTmfJFXwD6j+c
5Vy5/JWBdjjqDdbS6c8baN88Wwz+0nv986vlz39Z3pz++c1P+5PL27MfB9Oz
f6GBVkdAWCBd1YH0MgdpH05mAUgMtATPfJ7E5bIg/RtWVYKM2jRtEUhGo68H
yd7iu+8uevfz3bvx+3jy8vT85Pzu9OVJ9vfey38fSJ4lWTveOCOmuQJ0AQjZ
OX/+zsQVRfMYQNkQLK/yO6clrL0LiIhIRd6DguggM08SNHXgLQDQgbibxgCi
cpZOkxKY4YAsOyVCoEdX57EuF9Qfk+zv8dzTQQ1Tuw1NgxxYGphyNJ2mCBI0
ScrtEeww10U+B5UR/j9px5ThwddjSnp4NZvffTd6dnJ+PSyHr//8PslevM/e
3B9O/oWYokGHMDkfDw8aZPIciBAcFeg9JUfHJFM/DP2biB4tgWgObqQ4zyga
DXWUfFkZIFboImqyjccKzMfkZ6jytTzvAiSGW6Bxi+pLPBHDg629bdLSTk8u
jl80bZ1JNbmtrfoa8DdZs2wxKf784uji5+/WLeMaB+0jVPv3t3F1f0OLaTtu
Hsf8kJKB0Fpq3NwZMOY/+qkxACGtTJnFi/I2/+yEE3q8Zx8vt3b293evJ1c7
B4Od0eRgZzicXu8c7k8GV/uT6+He/tXOaGcwGOxcb5EsPD7qDXf3h72mg/3t
+OT4xzdnF399Z97CY4Yfe2deIbNdJFlZzswCqAQgMlyv9ANG9k3TSRWjf7JA
t87ccFiiuUkyDBjKi8e6ABpGXs3FB2tvKtqhpyBvxhmBxoZIbOE7W1MgTbiH
R1xIHsOHWMARgTw6ScJbiqLJS46uCQD3Mi2v0oxDxeJ7c768At2eLeww/hmG
7AGVAqDVfHguDJIs1KPDloV6MMXFh/TuyQiOtz843N9fK4nRcwSNxfR6q/n8
58XUl/myrOLr+IFHxknlXSgtV/poWRAzGyczIEAtohx9jRudcZwGKQKWFJGF
pDXMYG1wRguJONza3tl/5K5fgX5ULJEBrntiTLJ5AUQKCe+bkx4GNB1wxJPb
mL3UuBExkYGKKLadF8lsxrbzVm/K9aQHtwmuDK0fHUdb8B1OQe80/UmwgCd6
JfK18zHt7xzso/NT/8yAfJ5MrFAwYgnyQUtdS9SqAWGMI6wav1yDkrw+qLXp
/nj9ftkcVX/pB/w+/ufyNlc/trgY4OH0TgV7uSEbv/hxX6WT9/XfmxbgIyBR
eT5tjhx860cF2QOIRk6BlPbdqNfrmfiqJJ0tir79D/jzLcUzvzPnsyQmPz8c
NfpVV+Z9sroHnlyazlWyysnonZco94G4Fy8WSVzA0xHSL8K/TTI2LlFlzh7C
rTJBWaZver0/1paA8oD1MJrbBM3iBgkbGn2BelXGxXuTsinR4URBr3OMEiIS
eHpcPomi12FouIl+fDiW3ETRWUZDXeXTldX67Wq65j6BO8BCL3lMrhKYr29A
wq0EJPgTOeiInFy75cFrc4Nx7nAcuDEiL1VzqzDYi/w+uUuKrp/GClElzxHA
YM5SeJyZv2MMBGycttoFbvE+AQHsKpmgy9/94F61J2kXUMLUcvwFK7cIXngS
TtO8z/J7c5vfb6UMEjmXSYyKQOu+2gAIM0RRvGmOBPmeKMDd47Rz0BSmfBIk
OuPLfqvI/9x+gPaXODBBFo4ctmphnVZ9JJCASfwIw9f+iqjRcvy4WZoYP7g5
I6Zx8MJgHx7C0Fl47XBvyPhiX9vZgxmjq02M/GNPMBk+WlZRLkGbLpOpYK/f
3AKBDkzP3HGyRSm2hW5E138yWxJvv3OpGCPzVoJ53wFcz+A2zspcDWhl/AoI
C/tj5wlK3Wk5B1HjOs0A0iALvJXg4He0ngINYxO+Z+4o3Xs4iHp1LOGNo/6o
j8oRH4xloOxq4HXcx0RIYM/saZmidSiZdnEaey60EDgWWAjACyh2kV6F8+z3
d/1OcRg7BSCmeU1ZEuYY6BZH4yco81YAUGfn77w+Hp9vWrHLLWYSF8DWptaj
V7Biq5eFePKudl70PSACLpe31LLinf4OwGbYR5oLdI4pnSZ0IcUyt/Ed3Jwk
ydQtjUt5quyTKApLxFsdyVFN/TnJOzLanyJBXgNayj4MXdZHvlrRz4dDFlHo
0cO90YOP7o3so/uANQ88enB4uBe1UXe4DQBijpcSDkIiKkcW4j5SFWSL3CQg
7REF12ZJ1XuOJvHPGBDg3m2x6fyWA7B7mYRc90CTAGUEIXpvT5uJil8drGqR
g0jHEjr8dNZ7DmA9XhaFlYvfYoj4O+K6EuLdBYGi2xIl3jWH3gaP0dyAFedJ
cQsaVH2kk9lNPI9nXZRiyaDaR/nHjd82NkZhGZWzwP/OMfwM0L1rQqh1zXqg
9AaDbm2Y4aGYs3HZXfPtZ0F+W81nW7VBHpzxj/0WXPnZnsvUvAXI911KWVJm
6Ts8lLdK9HxHuJIRP4Y379PZDHDqPXNroFnxzDOIDFH0Ly9/6BuetkajHbv1
1HbbuQDW5MxFnDO3kCPpswBOYctlLVg2rvldJy74P4lyfADnsQeGi42JgDLv
J9qY3iAJRvQEroFLToBwlNMip/SvblTFczTawkfCH6toAoBukmLVr2/461jj
4/hijf8Rk3IAjjIQM4rkH8uUzao6cm9kUhvtxKDqk+A6J8N0FP3OBMwWt5QA
ONI5Xq8bCcrAkdKSAZXfpVMgOKbkQA4xQAH1qu6RgFX3eeQPAmnoIoHTf8qU
NQPxQq3TSyfLDHjZDCNLo8phBsarGzSyo1UCmFzWAwkazpWM7SD6JPG87/PG
ZrMVyXpRbWXlbb6cTd3KQwEXvl0gq0tQzP2m5rNno5pgW4kvC/LaoSmgHnAK
OVesgyp4uxLFTW+iK3LB5s3Zqv54vx4sgALhLRL1zNylMfCu1XyeYHajmXiP
EQ7TSfo3QCYxnujjxz/Bf/7gUnF2dre2dw+3dwZ9+s/o0ycWhU9AN4KVTAzQ
3ztMp7hJKzjmMYWlLYmXH81ucriMt3PTOTl+Pj7axMGfj8d2cJ9YdXp2Pu4P
D/Z6uzi8MJmTKYYGlr3HTTCVCST58NOnTRwnNn7PC++ifU/JKp3z8febfTww
inElo0yMvgXQhwk3EOyOBNjTAroJ3yQlGrnS8lZcMXgwiJYYQI/GL7YiwQ9J
NiWuBfIC4v80h5ud5aBgWCyaJdlNdeuEc5wY5DBCX4wCR+qPltebWz8Uykom
lmkWMcdLsLWWrhdQBcJdHprQCggAXGBA3oSIokhENrYMZrsG5IfHxN9NmZbp
P5ZJSfBB8ndTfAVkEAVxt1cIink+JeMzCiWcZAJX2hmWp4msighiUibqVtnb
B9oNpiQbJLNIiukWgtiF0ANct4Oa+9uchCH0GCF5xJxmoE4uNAwoOQaFdxvC
LWL/6fH27i4gUD8ag3b58aMyATJ0Pn0iwhiztmfnAFICl5A2LbMAzUnuYry6
liv5HeEm4dBEV+MAg/vckUwcNM8o75gIivHJGgsnQH/86L7t2W8R79kaoCgD
i/01ehrTOhC9suQmB8zH5yaBJzm294vVI3glhrsEh8YcxZ00p027q4XDW/9Q
n4hfy+pD1hmhiRMhYRyzfEonOsEMS3+wggeMUu4KwGlMEronCfMJ/NLtygDW
kQxZqR2wkk7S+z0OiVdYqLLPFLuHt2gu4iuyij4fiDhH9GnwV82jAD2MT0BN
72FH14FpRQuYmFnizXCX1PHI+pnCCLR7hnl9gdMUGVfphlkuAOFh+FgMiYCC
dApERbogw3Bm0T0gwi2eVuqzzYHOyaJg9ctSQp7xAGRs1C4Fw5G5eQlLnb8f
7ikQwxtQ9XpwXYCMLFygKxCPiL1PmPyNSQ0sRDBvjwtaSt/5rErxqnRRBWWj
jSW3EQs5K1JO/QTxdOouJ2tuMM5TeghwMs1SRiAc3J6NjfXmZxCESQGchW1N
YaZVNPHqL5y4hPtNiXrPkuvKuhr+vpzeaLoh96KgWxc5uSsviEz41RNyFcss
hE5fRxJG/mk+J9zKyx/HF0YDBL+kJBmnvaZF1HZqXWX7wBcREPewYw2dKJ8A
QIVECJSmACj2eaxQincJ+n0huIe7I+D8kQhXuNbkejkzN8t0GqPqR4GPyIKY
dtF6caVx204bAjUbSUp6TekQffPzbTrzJpKUGfOUEkNBurLhBrOEJ2vYhLqo
UNQtRAihvADBExEnjuRXIonO4MN3KtBGmMKykFg6xEJuAWRiFXliFtOdhx3Y
nQDZAk6Bqy+XCxR4maJc5bhkIgcNjerLrV7tJi+StlDbAGb5CKNXq8WLxwC9
BbjqI2xewZvo2J+TOAy8GQhv+R4X8ljTl7Z72bImshxQunA5DeEg+UAALspg
wzJB9PWGr89YvWhRqAPCHQlPjH8BTa91ufmkXBBkykmF8gzoab9D53J2Z23i
FGybFPOUU6dZb3tPTBFlyQ0kFRtd/q959Zo+vzn53z+evTl5jp/HL45++MF9
iOSJ8YvXP/7w3H/ybx6/fvny5NVzfhm+NcFX0cbLo79uMOXYeH1+cfb61dEP
GyzoBWprQWz/KvHkl0xzUbD/Z8fn/+//M9wBOPyHVDoBIPEfWH0E/kDSxbOR
7M5/okwQOV8KXfFJvEDdoyR5EUSQeyB4cEYoCbxFyLx7Yr69miyGO3+UL3DD
wZcWZsGXBLPmN42XGYgtX7VM46AZfF+DdLjeo78Gf1u4qy+//RMhdW948Ce0
m4amUjiAOSMxXLopiKtM0J5ErPdapcUIN9X5UV7UAlD6P/DVI+MU+B6LAEou
U1YCpV9Fkf2MA5ykeI+0Ag0iuyjheV3Sg3ed7EWzZ7LcmRMj9bw2r9pRbGbF
Sh6ui3s8YworWF6VyT8wpJNxNxZfN5I6jgWAtSDZlmXYLSGzgpmnKWh2JXHy
mEX4yXIGiGofg1uFL2+w2bS0EoY7BGu1QkZXKRMNLOvvKGPCOu0UBBVghQnQ
yPpq3Dj8Oy5HBEd4p0Spbu0bVrGt6i8VMs1FY73TlCV+J4+14g+StjfJjK1T
t+kC927dbCyKUiAB3GDQaW7SLAyI8sofPo/kPeSZKMZGSCYLZ53OHYdhQSyp
UJmmxZVw7o5TSgAMqeBldAUqBCVUevGij5ykAhG4SuD9Mp8noRUO30QFFoeP
rA2WXJFIn4oEtsQSBekr1xg2LeRxCWwb6Rg+kWCkOmyeYonZ94v4LVYB63M8
y1Aopgg68gexF5B3tfSh13jpo415XFaIbLHI+GwFpVzOiuy61/FdXuh3DLyT
Zht0F2+JlUboGscNsK7FT+EpwckihyxW9aNAM3LNwyziPWgebLjAkk7ClZ/U
/DxHwNUYuvDeBrMa1io32C1MJuAM0BQDmRzviZx234UFrLyD1L/trJDeGf2n
KHotyEZehW+A+8J1Rbn7KrmNQdiCsynowDYwE/xyguLuLJkCE3SLJPQS8/3G
ZJaXySXcBhhjA4+4tJSIkLA2irKbgEYBIsW05ub4ty9Ir6TX+yMPAkfUw0Tj
K7zolt6KnD/sD2i0YX+IeEYae0yocg/iDrB+Tj8DiVdY++HhHsk6PfNGcDee
X6WgSmB6J2+Nb8ttXJJii2xLAoyKZExWDArU4noPFKPzJqmK1Ruk22UlQ9P9
5D1aCZ43hsFx44QI6AXJvWJYWKEWhKqosYK68fIrDfrjAhQcsQpq8zZpA0L6
UDYTAiQxv6BXclAsDEy/knNhxiUk4FWUR2h4qirB5i+mSKhMouxXVZy1wuEY
TjCVjZYVxTQgTpPwbRk4K+swRg0FYMoNIHD43AYN8Wsw7OvwHd8MUL6HYcHA
MTc4CnF2mRRFDoSL/iRDF8jr9NxxXhRs16A95kBSQZVakoiopXqLDAAWrLEA
LAfNH0R0B4CMIJsL2UJSFgMfxAmtybJcATH/gOiciu3YFd8h+pkhvzN+6K5g
rA1kJs+i2I0HfYqS8USb1AfluyZ+oqm8tU07wwcZIadSzg1NP0RNiT/KSS04
JVq47Mv477CX52JVQ12NSJ84iuryIblfKFhE+MCcXr8G3iRx2lM1kohYkfU6
qWxAYpMiu6DsBFKG5XPJB6ykgabCrlehsIokTJatDPNtNQ0dNS7Trsurzt5f
kPjMamUIdT72RbFERRQtz8hZ/ROCu6TWCWQTDN25QQjCrC5gq8BqjRkb82ez
tfm0MBYniJZlPknpRzLCd7CEzKaamS1hEy7UVwLBowVMkkXlVh3ZMA3h1Cii
ikBVqxKEYERyYs1WXgfn4xZzq7IyWp+Cd8p4qwHLBDQg4y3XBoyJCLub4ykx
WS8q0UWnLnvJYQ0bl3wBIyZZoUOMPGBUi/Dl0fEmUwHzT8wsI6TuVZhZVqVw
OzqULrTJdZDowk6naBco4zuWtPkW0AtI770mUibVcoH2Z6TqeNG01Qx9OV0j
YWiTnDENbYJ46u72BT6BHlkLMEhyfCT1J69BPO0hFwJUDg5XB6hIsNZThACg
0oLijbHchrmiYgHrTjJjcyi5NKUWh5FaHAwwGKwB5lI8PbitMcntxCQdW05s
nCshJDkY7oGWpOIg9sidTE8cjXNucTGL3QHPQFNUQGCtgQold1ahRMETZb2+
IjRvo4Umyf6eo8dvEvr5FNo6irAO4dy9LxLrt+D7hk5z/kaWjk6/uExJ5Bd3
GkgnyrOCitl0aX2EoBQKdeZjkkvJF18hByfuASr3+EglzY/sOycfFs1UP3Nq
197BfL9N5jR0x5gneW856YEp0k8HB3/qJPkCIZ3cohHAwQF3TMyQ/AHAmqpi
OUHHrPhzrhLrH3PhiDErJiI4kxnyerbEU3aYVS7RMoowPCZk5YIY6J03HZR0
gJaRwTkDmQdmQj/c3CXHBQlifOOdm3pCXmTt0RJsFbRBoFp1kO8vsxI83lL5
nP0IXbtYQ87nLo3IJI9ww2XRcBwlK7QcS6WcbpLU7zSl2KB2D5KAfp72SR4Z
2gbt7DXZN0KHXcDmSRucg0CprfZEAqwIh0RmgZID/p0jaghVxx/Oi/wqRlCW
CD7ndpe0UdOBZ8bjo975eLzpym/QXqnCJFI6OI2CBWEOGWi48LUDH933XZG5
J8DLQaA4WeBMIK7VqWDn+YuTTUNloT0rtxKDU7sVgL3l2aGv0h0s+HnZsRuB
hANk0JmnQiLVAUBR707KWlIiMi+8/x+4bLA36JP1Az0D7Fzw0TQwf8uKmRUw
8JSaIF6PbOq85jxBj4JD+KIqXZ+dclgCkklGyD1gr0A2Z0iolGck5CoS1IgO
e+RwjJl4JWBQx1BEUXAynB/AGSuC0D0fSKb9DBjA1OWrD0wU6F5BCo8NTTk9
Nrujg4EB0sh2vZjCxsw2fLnJgqmEk5uja6wt5RXI0TqHUIlOQm8q4FPy8TXA
5nCgqBb5ZB09MLC+WRy/zYI6a3ocGWuVPaEH4s+3Zz7N7zPW+pQI5dE1bdj0
5cBvkb+RnvuN8TfRUypT0jW1jg7lNHGP9Dwpk4HwGm04UfjSns6G5KswT3VX
wcabE0fRDnchInaL1mlLBAYhhmxcBXWyMonSsZ3RwGWfTdkhjb+q6dU67T4u
/T4uUbraUEsUYSK2JltSpTl7AcVqOiwPM8UdUgpdASlkRvUEcNVYcPXQaJ+u
W4w1bT1kDlMCBDEEp6nAQjZoxcA2LnmMS35J74Q8PRgB+OmTHgqtZ8Jw9SBp
ZoeANfqUWI5t01dhQro5hdig+ErBLCn5XBuBgEIsoppz8CklYXz8aP2vvTRD
2Q3EglJ8Tt719RrexWQG1hFD3qWs5YRRHBVRDxBEdF5YMVICJ7R73odOCKUu
l1cuIkMFIeopGDciZc4nEeM6LcqqFjVD9JdDI5AM9aM10S2Cdy3BKLF/SADZ
BU0cc97WBt90g2AeNT1XDoray7xeJbhgS802ayE7NlzHK2ZB1E70mi5nsLnU
x1N1VagNp38kQUQLulgjHbpyG2hG4tGRaBHEUGDA6QzPWWwEflaUimivDmxs
SgFl7OaGWWsSVeTCdDX/Q+dOV5N0ZPokOSJLy9jw49THzseP9IUO4ZEwFqGK
OF2RkLTIYS5Kq8LK+E+QFXZOjjdBQgExJRRbKGAuYb8UGtKqhAkdeiRMEgiq
5SYOhJwbPZPymbFPRo+ijx8x+hqzy4AkkLmZfJOlFWdhLPwxiF5JnoTW8NO/
npkeBmgTz7Zs+TS9wbMYUmyV2Az3Rz3YKGocsHqyLvajhxOU0mtKWbteFrRj
68wmuZukd4ky/+///m8Tx+WdK0Qj2ZGP/ccKXxSh9mP+SzOLCEtsmV/M/8KT
uiSM/4Ynwe/aGIj6eVG+v8TX7AFf0gHLA3f4ALzJtwif+0ZW05N/Kpv7C3fC
bBZ28r0vqf74f3qvuBEEwReN0rKxu0cP8LFFs/+Ee7Gn9OiBmrbWbz4h3M05
8onySwGjx8OB/uvxA+hXf8LgpRUO8AvZ677ikM3HU7j7SCY/PQKy31p8Muat
iusiC+A37/jt/6rtLsKVwQLbFm7RVy9C/2ugb2PWd+HC/tj6TFTb1/9Cz6LN
GgXROLkHYnq7UtYdbdBpAkUZfvBtl0TRr0/0jZ7I0n1yN6bVkplPo2mO/2fN
EFtqXRxNK4GgHKdPa21M/fGTmtoZNOqBksQaGxNLKBIb0mPzln3o7y4d3b4U
ZiliXWPyt+9+o8nd1Ipf1ya/fNVHoh19fGJ+Z1kQ5xv/YeOlWPFOkR2h1Hhq
WZCr0rXxqZl5N/7pOzx7ZjwlcB5kJjsEdtByF0sOF4hBSAV5HPTYYjIjXWtm
E4qIYU3TEiuJleabevYs/P06S7ybBWtV3LuQ8tyQQUoUEXS/wKQ6U4PHf0xK
LovX6CG+cvy03/QCfymOfhliShaVFqNEV+NMAjJEx6Sos+aKIs3iluwZHasf
TSOxjE3TGKumm/gKgLRJEk5YA/ykLlTWpEkJlJmJJEhZnmtE/745AS6xwliY
G2dlRv/YLSXCE/J68zIbSUhiP3dD6PWw5Kjkc/cUDtQBMb8eJITeKu2H6bbI
rU4SFaGwa5Jq0hcPQy31Rzt1RJ+h9XZgTVow7apFUAcUCrgXyzzKmRNdhj30
fqQ2O6PvEuaD+qIEPD0BuRjLumqN4i//bq0LLkjROiBtFAq6RKS6CzqYoo7W
0PmXzaeGehiQz23aUHrKp94rGKm8JLJQbZFrfhGnmPElArP3IdakarKZI94R
7hKCbTgRaAPj8uEvTvzBHbkLhBqRGzPMDTKz+AqrCrvxQomIBvVvoJul54at
z5EX5Mx6SqbNRV6x8wGNS75Qlb/UQGJUASvRDuDNLbRzCw2IkLqQW+MKNU6q
AvaQIZzzaSziLbCIVmkzErRhB5EKk3BQlZKflSEuWqut26RgFY1FAU23ZKAo
FzniGqkugBARBk9qObdTN2ltWmTzZSYoZsFq0FM1UaQpxwXnQ1zVFEGN4dZO
rRdQ27LHAhjy7NqpW6TrBalNZAZmmxbttTZwpC6LRkhv0nHhzQyA35cmsRbv
qIbk9O7T8GH6joP5KRLWR56RZZyCvTLLwsRIYF/jvaFO2bav6KF9aSJQvxiR
35ycHhlN6DitXm7XYSkDLIKjJJhDIFn3dSjqpldkY2hwsCo2lV6FXQBiEikn
8yLNF02QY5AfWfFMykO+It8TGejCu0HbFdp4n3sxCgQEbzjx4NBMJ4paNB8M
Z+QbUCaqpnPNjlrj5GJ3E6Oew04G3po72BVOJ0lNuThyZFQfHMfWT+ApWJ86
sGSatx8/OsbqqVn56RPI8k1dDHeWXushrIthXcsodJEWyE9ZApA/m3QE/et+
VDHiWd8wCQC5RCw91KCKEjl4CtqaXmjBW6CdnaYN7qvDep1xp5ZY60KkqPGq
y++iy1cmxFEc8qCPYcVxBvXdMcyiluWzfYRTVAWytac4r7ckYzPlBkcJeStw
bm2X6m9GOrf5SXCaNt5WrcneUxeCS3Ea2QpDxXr6OcW0IlM/JndIzopL8IQj
I2FVbcUaVdG/pIfHaQP7rM3Pk6FsUDBeV/QWN1DUdKrbZanpkCsJZKUgl0xY
y6SWFen1bPZVdRxYSRHfo3ue67pRRgkb6Ee7g0+fbAbzBLshTIMKGg5q8DbH
G+8fjjAXgZ3HAdlVECW6xQsV8hsuz1wtK+saI0M+04O7eLZEplgIH2ZHr3hV
HCOZ5dlNj1wYsJH6dakTADYkcIi+95y4XGAEYaEVD5ceyEFkHMJI2wgXxY84
eFp+phNprM5PyBaZNnRLa8grpKCGcJQMH+Jbg0pQmtrKEgkylfCmXx4dm45V
cxs1/qfJ5npgNC6KS3hrSPhWqArM9GHaKEUBBsZyjLpIrWRvYQAH7HLvbDqA
S0VEzGXPAMAbGSkaOSnKAcTLZgqx3wmC69qakABIH59cFQYU+x8X5LC2WQEB
nlmSGFDbhoRYg2nk30JfFwjOxzUq0UBOkNuvjVD5ZCqeD3uI6G2oRKnkjIkH
vBxWXmxwhohtJjZELdB2HQMX8hWUUUVRQqAfNTVLyv73RhtQzCnxP9BIVVxi
P6ob3ozNPnKhsnDr8sKGldojscBw+l0ksTUohrkaseQuxoC5XlFVPVwbOvRU
kTBnfxGajIoJRa82luVW4VAjCoTBNfy1S5xn6koOxJIRYi93N6I4k2WBVJMd
XqW4eSm+KQQc+qskCe7MhmIYlCIp6Bt0Zy2hkpMVaYfcUQxWLJdoBaNf2yV6
CVZIK0mYTKQqBE4C+z85xg8ct4KrmyDMbRI7ZpZkQQpnRUG6CNnNrgazLJ2v
pOsCKTyrEa9OiqfaF8oWJR8FEJOiquG/RJgEql/rZlUynLPcmVEfoZjlNkl1
rdIo9iiv1XUjtUPC4vgqf8zqXPB23Y/0hW4k/medSXoIX6YzcK8E732926dx
YJ8ZQXkEgn9qZf/G1fM/rfZ+3QjN1T/uX6vD6ctGaPM0fZVfJ3TCfPW7oavm
K9bhXDtfiElrHUztW3tgzY/1Lj3GubTmwcAD4UjZGidEzG6IFyEdeSmkE40Q
jjKhdwJZ3JNaFCzlLU6KdFHpDH+mwZIrGqkLt9Wkw5bvo2HUCqZovVN57lly
H4XBTly2DIUxjiixIWtoOZ6n/8QYOgm2sYobe/7dwruNvOgqSM8opdqyMMY3
PtbQtrUZ+7Y2VDHJfPxdS+I9iFUzqVNE7ZzQqiNEXgutyD4K1rkj94w1ZobS
LYXKSEECFXIv7CxzcWfeNBNTaKJ6trNRNmIoKflwg/6mDEDhm1wLisJeYnXs
uorQNOTCcUaproGASDK0F7dJ33eKDnHdGLg8FlbygebieYsUJqkFdDi66tX4
QrAaY1JYaeewpQnXsckkEAfbX+o1YHDrknQ0N2YtIqni1M5I8Cf2aSYwENkJ
1a5ZZmG0h5+ViVCnE1G2mBgea0eS1ooMkS28klg5HMdm59bO3IraFmaRS7ds
wszGd2FWSZ5XWN520WI/o3jZCAtgJTEn8nDAjNLXzjKjM5EoykZC6HwCEwX+
xqWXFEF2c4h39rykLNPIfcPVMOBbVfqib56hpVJlZpDr05Xx9G3fMIFT3S2f
MmNNokFQkqq1J+kdkaR34JDaWk5jKOM3eS70JPEszxKbzhLZdJZZTvp9LXfE
qa/1dJi+DVtSFITKdkjoUkxeHxxYYas16YorFqPy/FnrIlR8/SyywFrywE9G
drq0evLrQ474n5UVzwQBfZP2cNhALlongv16Iew3kMK+Wgz7DeSw304Q+1WS
2G8qij1eFjN1cWy9MLZmew+te5089kVIVxMX39bznN361kl1DbmuLW4oGvsK
GV96ob7x37VH76nfA8fVV8Gj/d+vu4T1hf16beqbf/s91qP9S9D/8cj8azCx
pl8obrVWzagLz+PvUZs4KgMXSNlqjWZhChQDVyCUZMtYm965oGnT3Ons4lQi
xuU6kIO1VJJvFM4kNYS4BjD6Q1drPdUimlk3aR6RNhJ+B4LZhMoEFSEUrjEh
FaueRCT9hhJWl1xC4u1SntjQKvygo7lNlkUBot25TbVUMIUsqOS0GcmEbr51
YJjmoaClB0fBcFlKFbsWqQiEHzohkt8kkeGOummFipEVrr0Qb0UabNtIGdM+
yRoOIxAD7btsQnNRIm6ivlVvf2adgesZqumDVam4GHZBYNAMqJKIvLMoKBzA
UjeplN5MmmDO7wKE9mVhbc8INmkGJVbESEoOqYJwO4MDKsJD2awS+hckLEig
5AK0FSxV5tIEIsDLnp21zJcFlZKzN2pCUXxHJnhI9gUj2NG66Gi2JZHw0FOW
9Atbt7aUtOo8c/BGxws1DCEsdmWF4Kc2/y76pLD2dE6VWHnWpp+3nriNZW+j
e6f70nm3REMFSAkrCmtbKxoT2YLlunYuK60xNRHAy1izwBLgMXE3x7CEG5C5
r4pllfSoBquMYuFid7YVhleJqYGS7tk98PF3oZtBLkpbaUSWnFnS70hsWH6F
HtHgEsFxCrlzNgS3h82uS86t1WC01TdsH07UdFjhuJ5hfSbT2cAsKHZJbAR6
uK/yyvEowTlq27YkQYsXh/1xbsw+sQtnVWddaYCAsXW3GWpcJrrkLjNUrcDS
6CH+HildOFNqE+/C1of1JTlqOpKLZXAhZ3EpdjQavm6Qxx0HtWz+TaZ4gtsl
wqJp3/7GffWgKLhG4Oo0xI/Ndgnjq/b0ldLhbyMcfrVs+NuJhvrkvlA+Vcv5
7c3cnZNs+vr6BNeG32/+G63ZwR5+XbbEI3Mlfk2mxK/Ik+hsfm2iQi1Hgsnu
JWPSg9kRX5+Y8SvTMr4+KePXpmQQy3jAHcJcJEjJiM5enr9+c3H0iuIHTmzX
ikaVGhpBcSE88vskFtEBm89hHvy1y9t8TxEpknlLPC6USJ5E0ZA5ki9VbnUg
1yckWzVMjDfLuIizKkls5CAGGRIL9XrE70tfdEzF+WLr1AfG60rqIsf+ryIx
wXP1gx5wyJ6YcMUUn6pZRLhTTWQcZ7ZpxiUV7rSsV6crS93fLvYDJA1uWfXy
a5ALsRZTlt/PkumNC+ht7DCM8OfYNhDAljbw0EHILjKwCCPuRiNZhdxjDeMc
3fpZj0pCrHwlVGejL/vRebOxhDxO2FBMucm5lb2GWpKJnPEcpbYgbOgNZxpQ
LFuXAt0U9jlUYVoV5c145bCm8i3VxyB09bvrS1xWWqriZ5Hr35Dq3hxlPRyH
ZVBbPd4dcyj0U/G30vb8aKutLvovil1SPq+kCKEVR7OsdPlNJnq2GrUnPgow
rvEG6F48mWgMHDqofGRpP+kHni0MNozk+mGugJcHaeTqPp0kPkAtnuvQf4m2
Ajrgm3FI7KLu2ECtoDQR4XrLXAbMI0bUsQ0G2WXqSSeB2zd2QBq62aeS4Ihw
vQFJzDoEn12gC5sZ4DIxrEbH6/74Ec47FSyHAazjtNSuGe+M8K5A9r7lnBnN
bqn5IqZwXO4Nx1qPCdu2/wDy6BIzzxsFSkBz9/o8h4+SsQgL9BIaZlprx3um
xu3XSvBRBDL7hUmVyufJPWt55ZKUJVsgRA9iqxQSNoiJwScYcSlIDsoXr5iT
IXzzEsZXrMIgFQ+pGAlLJVerCHQg8R/BkHPc08bf3v7trfnbu7+92zCdab5E
dLminmZVKVVezDPayLNZji1a038mHMIfQsCW5ZN2Osmc7/YHvAlppQv/8rVj
4BDKXdHAJQzMTX0SKudor8kBKPq4FPNyOavSBfAD+lXNg64TLLsHFy7zBWOo
JGSX+bnt/VCgMibfYf8GcldWVT7vm1Pr3MT3Im5ShaaXOc7KU+JsphNjMU+q
Ydnw7CcfYvRbb+I2EIMA5h2WOI7xdtPaNmGCJ05o4XDhP5gOTvB28M58+605
+KaT9Yabm+YX+Xrovx7h13XRpd/vw7P0KLz47qngNq2ZGm+JZUzvhSamI6o4
iWeeZ1R6yHbqUa9HmFGV3vQwnDHO5G7Y2vYv03ICRD/OEhCAowj7qBMeXiU3
qfg4N7b+9g3X/U2svW/jb99sYaGUMXN4miuxHbqFhuCqgaOrevNO+kEkXy2S
KF/E/1gmVM4C/wYETIHZXPyeZa7MV4WiXy84K4Ivnj6FC3jlaSQbekWlWkvG
ccZSe+BMjHGoVMq5STsdxtclrPUAEBVL+M2wvXRh34zcm6WrUknF27yke51+
SKY9KTHq+sMwFhuP3S1V9z9+pFX26Br18BpJYwcuc1nmbp39Ws9Nuzq/MOwm
zwDygjVti/5/uPd29O5p8/vRztvttu+3R2932r7f23l7gGiKgGJE7BoWghBH
ZmXCtaltglWtRFyR+JLmDAGNssDAHKpuMv5yFhcvyFMtHy58m3wQOA+GZjAy
g20z2EEJCcOKYX2JL6M1haXMY1m1Ge4dDg4HewN7F34CTpkj6mC1KfxoOiLC
TtM5a214fkURrza5SivTGfK+5/McjbRoNyNsSWZSIjw6RUOpJrWLZbEAkb+U
uIgAQKoOPa+BElYw67IUOR3prEg1skpJnvY2VCwBL5yRB6VkGngSCWkE6OSe
XMKlnWFLHHyij8XMRTqbuAxYwWl0VlDOKIVd2XrIkZBpWx7fF0q2++9aPODF
itDG3A2vubTVIZM1hb4gNnfhRneNrYBfu12yayEiRBYCUvA2Q+R8kRQ0jMHu
Ogu8jplgic3S9t0Mu7aaOs82F05lwYwgx2CfCzFWhw3oZDmuzi6XM7SzAMfO
8U9pm+jEgQbX6aJdYznXNI6FO042R5IDqiU19+JtUNVcrRB50d4R3a6EnD8X
Qbw5Fk3aJccEhXfB9qu84vaTWSq8vPTUhEk2v4ZUg7/d+kaGDgk+L/Qb10qV
d4iLeXtoX1Uv63VtC5+TOwBjRD9h3B7INyEehAXbrlYBQmExq4I8ARh5k9zA
vqTFn3ToKWEutPH7pBvL6M3fvr2e5YCw/UmSzuDXv/1R/IUV9drDWeVwOUUP
ZNelG9+WTSoVivyeWSOxV1tDc0Vt8LijpketyGZdOhGlmHO4ldwvdVwlV2xm
UMelzoYEojTjgmluAf7mz+MP6RxOoyPb25S50dtz1wppG0te26ktPceVgm0D
YlmB1PKeL6iPFRGA4K7WYPzHpw9dkA3YKdzavFht8EWVdRGdmC+p9hinellt
e3swoBTmnYHUGHdUQ0QPzLtGZSTDKFGKqMSl8lm0bFPuScLprkL7YmGuXd/6
TTn0KG/AJp0TMhDvgRVZMwmfKdtGxqANzVBXhd1ilhlWx8P1+SGWJPYeqA1F
XDYZAIHb5LUo8ku5SpVlErK/M0yNQuzldMLZzBIuIMKwNb58becMy1i4QuJ1
su4JIx46X47IMik8H1RoUaxDPa9OZdXLtm6mbEKyRKLYDPc1WcBnZbuuNAls
Ba/5ZoNiOdz5FpCi3wdQ/fFpKIkDHQq2mgan7M0DjM2eqskS+Li+hbEPWsem
6wFAw0Ma7vWusHe8FUCpIEUidA5FkROS7VBeRHEk07UPsI9fmXhhFpcGm56a
jQRewmDdiD7x6xtduip3MaAVdU45wWJ4Xhnli+TtAjhiH5tyrYwfhLDM2S7o
/gg6xaXsAGMfsYYC5Q9zTRJ3fIQPkR/O44J9O7bGKmrJNSfx2laaDYhBJMQA
b4otuGdR3SfiuomsdZ3kSCHUq0iCNP3saCviGGNZBhkLVvyaxyQc2Hw0ybBz
N9zsmmTUuRvBf1F/g7+yzh1IrG/fdk0n23z3znwyFwmQs1OOJVZ2f9Rt5Dhd
vyHHwxGuzMwoNJvF6350VkvrxwgQkQ98W1tEC7rt3FZjmaEJNLO64jKbiWkq
Usfv6vUgxlN8r3S8uU9L0swyDU8nSyHbwVrOgIyTpIWbUVFdupOYoEi8Jp65
XnRs2RQxvK7VqMXxCGzPcnYFX/ke42OwD9zKVQUU4n6cz/LmuQECdLbhvK5g
0s4uV82oks7+JhwVvQGnhTWP8AhUAUTb91Fw1BUSxo2p0O8qvnGdVQnI9+m0
Cm6a79srTUHioKK3oPGDIuIFFjtlei2cyJOoFrkWbb+E7ZRT50zbznww7JoR
Mw5XGH5ZEBlQpWgDm3sdpiWw2aqDtwFDRzp4Ha5Qrys6O/Cxsz0aDAYIX1r4
U1bKuX+Rvazq8sYe18gkTkV584U3wzo7GsIbCZUDFTnrHZg4aGpl/gHsi6Wd
Rv1ciXVWJArPTE/vWApj0xWh6hiRXoYNo1Oc3MW276hCC4JzWjCtsVVQqNy0
N6g5oNJMcLL4/39Q8z61PAQTpd17XZFoPScK3/dvOh4kiZBdsYLM2bpHXMef
jKOLFHTheYDUaFakh4mmaEVijbDXmvDOGjq4/NGNpL0rczDyE5xV6v+WMhbf
NJcSivAEaZfkVSRwVnZ1Iryzh2UsDNJkXdeug00F2C0aVpiDFGfrctqeM2Qp
h9HSBV156aaK6ilKXYX0a7uxtkk2awDla96HeNoZAObPk9vOsN8f7eI1wMoT
q85odxdvwss8nz71jSWdHekCjThRNLZNAcTcJHy2YXFy/QfkuWs6eOxTmSKa
M5+PQtOCU+Ep7adreR6zfKWWU6zUNXkAvc06ZYofzdL34h4DQBx7APDyzEct
91wMzfUwkIQuRuZ6FHwD3DN4IDPXmXsACAeyUNL+6eTrmgmVo+qwOLjpyj8V
0hQjUc2WXbNjeifircKFtvAuzU9cRO+nkbNY2EQxISxYeslXat7UkgpZcqQ2
jqzCuY5cnwd7mJ4s+dXhIYB+hneha+t7yHEQo/Vgd7Ic15j2F7SPHcEUr+hf
j7w1KVJEz2lsTNol2ouxwxbTR/wk9MTN4hHYwlruCMqGDCh2Grm9vLeNP2yQ
VJdmTz6PKkC0Dp4SoYLFD1lMlMAImOdAUbomLjGqsB1PziiKnguzKP0p46Kp
dq87XReZSHVAvNtYzE+RB7hiQ0l2lxZ5xgGD7D+fNRUddzhko+URbS19Ar4t
r+gWw5hqEUaeldscsxWgcrOZDnmSNh0vKR0u8YMwnYwMuMXHLs5G53vib6l+
G2/E19K/WilSLeOQdit1pyLupk3GxdTGHzjTtlhnA8vnTNx3vwnZeIBu0MgC
opPNcHT8R6WukuETENGHILJfJ8N37562PzTCh0b00Kjlofo6/IsZvpjRi1nt
xU8aa++QwvmL+6TOUpAzJsRUcmJrIG3Ba4LjF/HN0wdhKcop2xiCRYheDC/B
PUW1dQhaK949e8GtNuxvHUw7/Px026PPTvd2OGD7H0zHNKNtrtHDc3kQEMa3
Hr4884YqivTxsXXYQGB+YmiHbb8z8J/QqtYcZTAZESOVQG1L+tfrjDrNT+Vg
huH5PqTIF+MkK4muH+gnCtpk27JtVuzFeAtdXkUs38gdVtakGS/K5UxHP1BR
vIKbE8EA57M4lYRVaoTCHYfoC0VnpWU7jG0LKEqzbuX70cVTXO0q0UCwz++d
DpRg7RRZU3A/9GFIhBvVRUSlJMQIjDyQ30bhbyANXUqy6SVHKqH6op9Isull
fn3pozBRgQwfkFDPS6/pdw7CZ1S1pM5wuPa3S6nE0xlur3+Gqy11hrVl2ApD
ndEg/AFDWLm6bmdU25sgzCXmSXRIYtW/ktzqcdzh2QVduYfuZ/ComZc3l3RN
8Se49qpQAP4csnb2SgpR0DoMvcptAFG6cIqvrQ8VDmOpgFtJ365iHRXQGPTE
/6Ziqdupg8Yu9Z6KqlrDXup4xS+HYbXrXm1i3BPT1imu/f0WjMPJmzmln31d
bVi//vlpGYmf1N7jJK32ty1+Pwl/s/HG7S81rze9Xk/HbH/ZX5xgTtf9dS03
cEgHt8T1c3HE2VYh1V35yNyoeg9h5vdt0vOFNHp4RSU6wKU8kFGEK06XHE/g
Gsvk0j0Gq1AdUTUn1xeVupSXQeUGVx0u4+CI5MOCQ8c4iuSzJYY2/CuXMtaG
qzUEwG6ZykcuOCUC2MDZ0asjtgT7MAmABfDWuBe2XpV+Ob8Lyze/tEkYxGpr
nRwVc7TsNiwZ6ssyxAtq54ZBLbbWg6prpsLZbIZKe6+YUjW9IjVMIpG5CqJd
hO780p5pYieVtJffoYYWlGd45duhRVKIQUJcg8d0nzfizWjcCStHUiakqKaR
t0Ne58sCy3WSEYQ1CEI5NIUqEvmEO4faUtFhE7W2UsXYl9W379l64bL2DNe0
VmqIjdaV7jJ9mkm14OJaYVRw2n3Z4y+DQtOt67CJivx8ZNbPK81YH1U3u1YK
PDJuHqnCTWEQOUdoYAwen3yZuIZ9vMeW7iu8z9b+ZJ/ba3uLxuaOqdwM1TDp
r1tFo4nYA4tSpbhxYpuIZdcWFHt1ZXjbGo4JVL620LjUPHbVQXXPZV9dnepq
Tl1kG/tTguh0RgQYZ6M9a6p9RfxEj56AZUXmM4fV7JskTm9pm4DOEONSy9AQ
FRahUTnSJBHFtVI0bD/nKAyLfZG94KwWYGFOyhKsbvMbtBw80RNgLqekvlCr
2RmV24sjfffRFR1eMdczmXMU8R40c4QjvmotOLCl67lSGZRaFiESpmR2bc1f
fGK2QE8hRguySc/ihQsaYApMDHLaQlpcTXQpS1ivQCggCQr9tNToi+oM1Gz4
JBlp7kWVl5CzAn66iIJLy6A8cw0P20FfHXJaqfxmhwSYEhdme1NDZ1coSPp5
SnuLkEf8vozWoryiBHFlLUBdrjUzE21Sl+CRWsGRrRWMs+DD9ZI96D2TV2Rf
mGFhz8/2HmgyA1VGkbwX4si/BkY6Y+ukLU6PA+CYPHtJHVJ8pnVgL8VBiaWu
P4A2dFekw1ZkJm6Ll0WaEMySNen0sgRbv0mx3G4d0er5+c3qakCXSF3pFfit
L/K9qdLfavtaTlCRZ9+a3aSCLfVDsJRG/GGwrcbUlFJd40ZiUtTDtbSnjkuR
RrhvnFTkp3QiCjcuxccf3Dtyl0pxCNPkGK0V+IM1cQZ2j6O/7ImGzQyCueiS
uUwsfZaa0PfV8hkha1vQJfubNdAbndvZ60HGcsk8kBW3Vs9QAzY3ICXC8Wtd
TaNTq3O92V5NGAWc9tLQm6oOvCsUto1b0YHdJmi42fX9TBBYlIynxo6oR7fa
Nyc8EUBzjGaT+As7XKkjLECFwm3mtiXj3LVFaOB+SvVnJdRCN6f05F/q2Csr
nc8UepDZNMvo+zE2u5Gj3et0LwZQtJaDrGMfRP+YidhYtLZujr8jVyWvkROx
o7Buiu37SZY6qdlnmSBT1jcn//vHszcnz129AKSzQSuVkpQIHgnxQpUudwDy
l8uWelEj3Ndu/S3FQhINFBEzVFKsk61BnQg1paZDrQsQHYMrYYjO66g+IrIo
4IIq4N0Xiq6RrrVdTuLS222FCDZpKCAud5u25MpJr6xUCN2nb1VGho2ti8iE
QZUqT7IKQ2h8dUDL74lpSa/qee7Kk294a1VN6KcfqCBFz9JSFruBpyPbv6dm
1SIPoFPLVnFw7iPUw9k0TK2sWvgWrefMNZEGIE7y/H0a8kk3nS8x6FK/20ck
Y47b4QM84tp1ELpa0Rkg1176V/Or62VJ8BNb0yXbQbAYIlU8kViFiDtWdXyk
0SY3OkYrgaHwM270Yu3oVEXVCQjNVji+DZkJVG7a3mvVo5va13fdZFy3UHe5
D+PbN6ThfcC8bHflg10ywcAERKM15ocqivXHcxdZP47qtM3HI7U3uZtXos1j
bQf3TLIdbYosqBBX6RRvvrJycHqyJgyqNxL2I6HCJtlUm8UC4lRxNCBtEb2d
XSdP2z66XLBEOSseZRQ7U8vSpVxjzoutj+Zlz7BTeFRbuwWG3gNFItShIpsA
ATAW+HvpttZ+jKgipmGnk+UsLvzLWDrf80Nfc9MHstiURtk+V5NEO6n4Jq1x
9CeeiUyo4i3kTOa325i2ZN84MOxwGiNyY0ITmlu3vqnZwgj1vVMeI5xM001R
m7reVf0PZvBhsD3YtlPg7u6wtKl3M0iuNbdwc9ZfWb4MZ23P6RTdrNsjHxys
diJ39pLNZN+O+v3Rfw33eurhcFCkBYUMDKLCbT4tv8WIo/866A39O84JoAJQ
vz2QseW5T6F7Q6oi3KR/2OByUBjGjfUOQuBgb4+zrIGStnCBrflK0QVIiF1Q
kQWuQkWhhTq3i8Sc9OYWNRX3Bic/NBRu0esj3C5GeFGc362rVyZkKFu5kkgS
ycYlGoAkuqZZMETL8jDQLrZdVzbsA4CKOdxjbP2+4Zto6U4xsKG/W0XQxdQa
1cSgKY7Y6WEc2S0BQRpVpdrwaZQIHUgpXrNCkccud+FCIEtPbJWubM+vbsdz
RlT7gJX7mVME94VPm9RPw84Nyn/gS6TSIyieJDzUa/YlY+FgavrSJGFsiGJr
HGe52X6ciD71pQAW8rRiqW1uNOgsZFkNnQK9uIPjt2Ghl49Irk8zXG9nTOIz
Vu3DChG9oJ/gp08STQdkdlaiHA9Con201noQbYFHThmrO2tqm+RAK0TlBGPK
PKyVwhDVWt54ziSpEpdO2fCMickZXvHtkThZpQKdsHApDeeaWvIhyjMYe42+
T4RI2I+uh5nspcBD5TSohk99R2g82cSF/BTSF0Cva4lHIETxRCE2bTXMUbJI
2H7IUEX6cIUa2Dwpbmx9hLDsmlyUtFS3UvSklnrumL5z5FQVN0dsm1r5+taR
oZtBcMQZ3R741KXMJF0eT0PJ6kzxXBSIfJaR7VqhDtvuZH2usyW1h1TDWL8j
GrkokQUVCayW77qd5Mr9U18f74DGsPhARhVMVdgeqdR0iasVBFU2N0EY1NFl
n+QIWGaYupxOXHOX+C5Pp41uhtfpB5bScwqstP4BDjiGwyHlkK302MwRlmul
0U1EydeWCHvxRagUHRSV1AsCS1l/xx3SbzTP1GYn0W51xhAqywEX5/5XVjEj
xlBr3Oq8aI0+Njaapevzg6nw+63rj7RQ1WNcdcuOdzUaW/qRGrTSOjeFGlK7
WJ9IwciPbjdKfUG/K/c+gjHYKZ271oGej/TNTxx1rRMwyQHNe+sxEFBBMLYo
vlZHy5pnkBJaA/6pjImT/CZL/4kx3baFMNmQeRs1KxwMQmcreTBcXymcS5oF
u2ItPqQkzygEHnESa324cv6u3TFyG1BR8fbTDWktmxrUi53eob0KWX+FkgRi
Q5bUtDRtfAStF89HJZfoQqWeQLaIgA9QypBKqnf96La9sFnzoEyiG0dZCkkX
QCKQKfnLG/dqZuqU09n5iGzCJqUEontJsny6IjvIzfPtlIPWEKSeZsvZbKNl
mdzujfto1YTTPptfWvWkkpV69v4Ir1wF3QGDLTcN7+bhIIm1XFe1S/SwsxLr
nIppyrpchwUqLID7C8SkwN2MN5jW3naOZICgesIi61It2gmrmgpum/ZGsQVL
/CBwe6ZL8V/LvdVdpoIRLOCjSAUrAa4eSx3RwrV8qTi7NGwWQcYpC4urlW3N
BrPa2j44u8qxE3TUebwbThfakBoofNgB5dJ9XPtNCXtJfWJz7uPKeOumpC72
kmNKTqVwCygLzPM7TvbMtS2l5PCPhIvHamQM+buVUFr1LZa4GECa+C0zRzun
QQdS23+QinjUKAYXq46zBkSp7Zo3JXl0iFpokT2ElmsW+Tgcttx7OuAm7FDG
D83TpqZ0vUrV5fBVnzTvKxBgORm5LBqwdnrg2C/y+4Qs1aEUVr9ybW87gy9m
t9YhZbN0WqgPhSWxxjEh84h6WVyeGJI0EWnAhidxZ+iErVAUtYuMl6VzH6PD
dqg1hyHNSKiQj6S86e5JigSJxYYIKZbQovUQf7SJA1xNjhKHS99bJsObNRMT
vn2b1TTKoAzTd4SEXlE6ZZQqK0EL6itephtUJ1766Ef1Q+RSapKxJkWYeW8g
k0/ei8MB6SCmSEbC2EMfjx1THNMP68wRpZKxgZs6+ynSGteooW/ySAQm1mxE
1ueKfNiIOVuexYpQWS5llchevl4wiGydhLTSIS/A0VJNFwwX8yJ426Edbkmr
wqoeU7CW3ZmNKVmPLpOiyJV6KVmbXEqbk5p8d1NiBKXWDkNCSnlF+r6xMaLR
YMjWMLeelGZ0RmTdOkd/bdsEZj8TVHUj0BY6EBhf7mPyY5GbUtcuhi+aLnjn
5AK4+pLWUc21LCOjId0Gz8vT9aq4UafRfnRTKsDgumwdMbqnGK7fCMgUb590
a+ddfvwdg6xH0QKfgv7v3rUeNF9OM9fFnb2BLVCLOOYRow+9AKqqcF+L67DF
55opG1okXleVUOEjCIKa82GbuEeYp/9PG4svk8lt/liLca1M11pCgMt82Dq8
V7cOB0Hs/3Oswy48o8WSGDpj+uZHtC9VS3TUzMTigcXarZEEGWicztiH7Gdh
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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
p0AiHUj1eA/qZeUlAYZ+XEGFUYW+x2++1xHy+GLPp+Zs4uU6ZzeJwKpze1Cv
hBFjRNcl/1iObk9ZLAw2alyF0hR2c2PIcJpvl23cSU09o1uzE1RL8md523YU
srifR8GazdRPdiYV8CIaALRKjP7RElf9dLiR+JDYvnlXt2tFp/mPhGF0f9xY
58tVYzNFkqXMGdS4RWJz4fO9INQbQwV9yce0KqMhrDDSH/qVcUZGT+4Z4osG
mU7BqKa7HQvGlUmtayHDRvO2BqZP7//iS64KjuDzT6OQWDVKbp5GlmAoHTPC
xdNqL3d996GuZRiaG7NV0uInuFBGverKiaagHctCbUSTvlMKBjJKfvW4X+IU
be+0GbmueBj6IIVaLdsgXmCTZjKC9WOFQY1vAiIgeZh5F2d08IDIx70HLc+/
34MgkyETDXlCcbvyVVLSXMB5znsyNDo9SD7Zljoe/37WzqLO74phsa3AvzPj
5cboo3+lB+2FchUZRkimO97x//M//xMGQC2prnHqWUkC/nForA/R4ocH1av2
q71uuVlNG6Jc2vsY3BhzcIJLmYUWiUp/7gQTkYFEiBHHYEZ1e0nzsIkRFMfK
V7QWydDLDSLfg6vJZTkfvaKRy0t2VM/pyhANK3so6feeBcGnTnEGNjyRfFEM
zduvW6aB0qzSy1PZ4LxoWU3Xm61tX7zuWNodHVDEDveU/Bs02bwInNDeihD2
s7pK2iwVkeQsUE0Hm75eDqQo+GX3hZLzen5l98zJulm0/y3BUNXopstLQEGU
zy+BFhjALk4rjhxSJmPiqw/ZNvwLO6D1IjmQTcI+pxffnnz/PfXA1UWj4nvs
2crQqbvLzqm/vuvXH7imHB2hlv7KWqkR8e781kDwkEp01loEWeZ2s4hTNGun
fG6zWjJa9vaMMGBRJ5wtL+I95bjgW8DbdY5RSWO9rqdvcIQJJENpiOS7Xa4o
KFxPWSda5ptCCkzBJKeTiiSiZsz2gGSjRD1s+1pNbiK3dLpVT3QJ4onN1G3P
BKNourXiSfasVNppKpWWo6kM1aKwgFFyx/vuQHc3wcXFHJOddG6cWRZ7c+i1
zEMuELOs3K1nOFBG1sVwJW7eJtvrVYdpvVpxRVud1G6w2Nxitq3WfCj5fKQg
N2vSkx7gAk7xldRZZSgWJWR4LX94IXim06QOPoXKtnu+tCX73GrApsHYq/iv
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
0u1dnrdgKn2J/7I12N1oyHSbvoKUXd2WW23I8ZDd2zmPLT15tpxZ0GiPeU/V
OvGAr0G1keic+iNO5oI7haHNFOVRAj9DmF+SX3jWO7Wyew5xVvl2w0HLunn6
9nhIpaYtJ2UB+NqY6PQrd10CO9XRTiXvGRJGEjR+la8K2IdLtuAB9bh7CKAZ
+aEppUjoUPrAtp3jEFqFQYVvyNhcroYU8KgVFINOKydAWM3hGRpIJalpbAK1
6xHVCiGGYtZqYCCdXVmpQPabI8uBazq2xvLbcu0EZr1VbKYvlEFNKmxMWERE
Mqbs8lweSE7EOldAHZjRTvz2fc2L2u2AGG4rz6WiOusSSx89UrSZdnz6pkco
lBcZHyFytCVqX29JOiydI8hj0ssUQ+IBBLZTs72TLNX9KPAPJDO9J4NcoCO0
A6J4ErZKPLpHdkjR/sd6toreUL7fL5SXqQRSUAgWBMDzK7tDvEql+9gvs7oG
BoFSUA90/WAevb3Fa3Pn+P4hiTfBzDsCNWfIVYm2RMHnpqFwuIw/uUVFE21C
w4IFtS+8GgLigl+4godGIUCUxw3rTKvvyWqSxUGEjtdDvyW6Zw+O04Nwob/k
RC1e8ln7ql3X8xf2/ai4xtY8KaK4/Eml/DNM/CGqoJTM70rG7+v4Up6U8laQ
eDmwz5RlOGGHJGvLhkLYLswPlkAOPqrKswS6CTZ6RN4jggWtXSWCHHWfkGK9
gJDzTXCRqrgtXUEDrl1A2PgTreqXb3PjMYEN4Twh12z4B27AO7wvomYAJ29a
bLW3bGen5y2Vtc73ymiXpYHFScm8adV/fPq400owTJxiiP+Cxaqfkhx7Mpae
mIL/W2eoEATq0VnUxNbiVd5Biu5XG1J6vWGtwQdAPE+6dDPLFdgKs2GvIGb2
YVcZobIb2CjXcFgyCu4SgUKql2Y9YWKpWbqR53l2YfJR2HQAAGtHmC8QqhsV
BlImfLlbLfTZSK1bZnZyigjsAyI7DbWch2uEjb8XXKlT4hgZc8cIjj4dfCjK
5kYJbojaKvMAaQqnWfx0EXvkMHfP6C6RdqxqEc+IWB1XjtPWcShgDiXRVfOL
81pTYVovmM9vOdug2NVA/FiSYuWTCKEK90dIIj5JujR7Yp4ndygd7XaxKYsw
JH0qDHVA1Jw4aa1Sr1LKj6qMLnPG10VOXq0zL4ez0y28TFSaBWVZ+HumRIO5
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
k1oMTHTlm1m/XjXNYDuc1ZXo5tQwAsZPw1awnXiVDsdWfK5Dc2TthBtbPp06
/ydVmdVpJgTyKLo37eUlKPaJPqVDvav2XMMH7Kqjhka5Scd07MI4GPwNtH84
qg4P2CZkJ6lFl9QYTaotG4tzcaKHTAlnJkuBEoHxZ5/hSIhxkpODMI6btaZU
xXN4ANepV8qlooDx8W1rp9Ycdn1SnSxc3FIdGHbtH0iVUduhYk7Sk7S1sSU3
Z3GG1hsdOsXOlEGL5tcAOXTQJp7p0II1Vng+n322G6nucKIlD+wepYZdrJEa
EpI4JnQUB5fISOYkaCRWx+66QP1k9j7KbLYexJbBe7xY6u5Q2lwwYaKpNRf2
ZfextNf3B+QIHHFfgOY1NhwnAgVz1bZNNjJZtkw9dFY4/opjRd7EwJ5E7sJM
fLPye6KEagjDM5M4GIgLkVwpIbkXIjqrD59t5LexK5jUfZSu5q78jGqARYRx
JWJaOYiObRtnSRgaAfVWgIKv2JR8v4lbsRc3CJk/2HM7ist+QScrp+Uu60Lp
XBF0wHlnRBv7/Hrl5Yc/HLFT8BNeKQPXwade6S1EcLux1diGs8z3vWzi+qpW
NBtjNxvbe5hNTB7Zu2YmUtysHzbb9eoupWdPxx1XFwbDjYNn2KeftpTI/157
nrWQTTt89sUp28LFSaWR182n7Yve17NFlyOrJ5V0r0dpoXmV3fMeaYAqY1bf
0txbycvLbnKWO/DqnmQkdvjD5WZFRaK1KqQv8uQgLfwrO+/tk/H9lz2kOTkn
y+c+cRCAG8EfnCEKpBMQI7p9/86gnH+4Yn9f7Yju7sUHZLvFf9NyFmUr7dtq
dyvtW2kklcTYsWP/U5r/z3/E7RP1kCYVkAAbAvgYXuoFQfOY/Mt8dZGz+NVy
dUU6NFcN7PK4AMPHGGsSwi/C04xKgNrYL+GXB2P3zy/2L/F51jBPcn7F6sli
9uM57ju098su5xi1H7XVFhds0sJ/qdLot7oa8O7zZUdB76y2Qck8nTe389T9
ApPHi0+eI7F39EJEGn06eh2tl6MjTYxCmOUowMcp8sXLh6pAFFTrgiv/B+UC
Lmz63dhWXCxqclAZX+OOo0HBcRHavhZTcBwIqotAl+80gZVT/ulviPf0fN90
Y/cmGOKQkJWXYPNNvMsHIqbUxfeCI13yaSewooZxXdCLGvqsglUbNYBvkNXy
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
VfqnqN1Z3sgZ/l2f/I54j3ft0GZ9/edX5xQB+BeXMPmLe31lrHF61273J5Lp
/Z+fDo7fn5+9TONh/552/JHRxh7ble1fneMSw/CN0uiNQ9C+O9/4ER/TjNuP
aaBHRxhTQ2uxaohHCpIaEi/Ibs/lYe3Pn6zKrP6tsQI/ULRc+0u/y5M4liZa
CoyObr9417ViUTOa5uHRKfzP6crGNNHf7Vf6ZztwqbsLb+nQB18eGv/LBnjP
9p2j+/K7Srz3GJYM6cd7tFwyHM4+6nofDwx1//z47fHZy6NncMBXHhPpHKvG
Evay76jV9GdiDXH94l9WHWo8UsIR4iO1tD1/wm/4z39qT/0X+CqeSuq7oxfq
JMwJbiM+TGnaj+flBmiHP6pjk1H+N9ldG3/ulk3k8N3bt0eH70GWYSSQEEoV
Sh67+y7TotNUXzaUn8AIGY6nppuagW4E/ZJLZmFpZx9v4i3XHCKHoIde83R5
7IYgqN8TKBn+JuMj0YdjgDDWcae5u4ZCzCzVOS4uPWIgQbszatE976XoZmpc
TcJGOi8n3falt9OyP3bvfOGCOj06/PHZ+WHz7lnyB0eDkakubOyLA1nZ4O3R
i3fvjw/es4z8pU9jXmDHxbf0ja87p+4rS+6u1W+2Trls1S/J8lO97NW0iz8k
7sivGLyxCD7mLfbQsT6eO3SxBXdNh7/EK/K2EsSdrptaayB1D6P1C7RsSy2d
LUO7wAWSn89uilvFHRWoFZHYZPRynxy9g7tkOdn/7ofXddXHl8bqXhyXCr0s
kc2WdBJEJVx+t1hL3+h+suSNcM2+Pn7x8v22MKt78YWlXX6BapBs0Nvaubd4
AhgW35Ii5paI325+30GtkghXtWwLXUtaf0Eq/MLrnMfVlgibrVvyY1MCWzWX
eHT3euXOfl0utMV/uuS2e10y3dLb0ubdQs7qPyuvpaawk7i0KYLVOdPKRRz9
d6gly9ncsdRcQH5GCopFeceiz2fkhdbAAHJTsBhFfhKth16HMA7xnGd14kNw
KDJzLh7hpaVHyQhGCGHUB5XL4s8w3BmCFA0sKLcziwZDwenimCHu0sV8lnCA
r1ZSpJ9JmuNEHUrvijti3Z4LLaSvscpPkuiO5OV8kn7y+4NRuuNitL4ZVwCW
CBEOxzvH4Nn17UYTkvbWt7fiX43brm9vN9oHCqJAk/XtnbjB+vbe3ob+8NlH
/T2xCXBdq3gKPjxwRq3dQyUuSfInK9Jwcc5ATBrUEr0xL8rZ1gMpbBs9qW6z
/5fACbMrXO6fYfFPxujVwiqu3P6XJ2EC/vHqGUjHQ57I6n6/OGMc/yMqzlv/
zC+fV5fnt2ydbYzvuCzz6T0H6T/KAz7Hb8e8gXb2Sfrdv6XbO+m/fffVOwG9
UU7zDvVBgQBbg+1GT1/cISsiI73/HAXPd29VeP4kEShbMnmmb1RL+vTNsgDN
xvlKP2RTtBiuw9lIL2FBxutwFpi+4WPU7WssLvhkxcEcjqs6Py8ruA4WzdM5
Lw3hUAazvtVocpHp5M8nWfvwigSHO3ZJhWeM2bVOtPSCQGSX4+pD61yPcrZ9
coQl9oYRXdbdzuYSBqFN13cbLcrq3IeXWU+7W+0puobru9vNVQrRa1G7Bt/x
HwPWXt3ko/Xd3eVtYO3RobS+u7e8jZTdWt99ELdp1QxZ333YHDW9eT7M1ncf
NTgoVTY6H+VlgZ9/3N6HUc72+/W97v3Wp42V5JrLMHl0ZZDhOqz6g0ZPerXq
iV1/2GhQlAFs8FyTJdYfbjVbUbki8TesP2p1Qrjot4jaiJQyHqP7YP1RYzmx
FDqsVDkE1Xm0/rhNSNNcE5CjSW1tNpq2MruhyePl5OSaNQ9eTAXVBVr5MX7P
fXxrq9lzyKmkzHRosr2S1s9rit861/QoeGFn9QvXWX3Npdv9QHa7aQ99i1pU
BFqtoHPx342gVWNrIn8SPH7Y2ht/bShVrW81OVVDKiDm6ZIUVt9ZgdVyNdcn
rYeuKwlKkG7jL9qdYDHvQWz99M2qyPAVLJ5QvM/Fixq2pUlQjDZBjdcblCNo
BvysQTLcOyektj/SIJd2kPx6gzZgNihHhEDh9b2u7xEGfftzD5qd6QUdAlrX
Hy0ls/XmiZF5R9HMgay3V9MrDGy9eVz8Qp4jbKjrbsVVwKu73johvGVLhtdY
i0tRxlp3dMRJpuPlN3QHYwhtG4uBPEy0hTFto2vaWBMcPnvE17cbayBSB3EV
OKC7K49slCay+rzGGSWT+opEzCf4CMTBYK8iwbMtFG7vqlCY+j/wKtfAIC/u
YpYLCDBne8bdMDxAum4jGegoNuKh0sJnVnueSef78MzZnJ90vudJzr3nrLDd
77UOIr8cG8yWvdo+dt+nXSbZ7vc7ThJ+vG2X/eLrbsL+9S9/lk/c94332FbS
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
bu0n7sL/AH+oJouNowQA

-->

</rfc>
