<?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.35 (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.33.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="May"/>
    <area>SEC</area>
    <workgroup>tls</workgroup>
    <abstract>
      <?line 441?>

<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 451?>

<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>
        <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>
      <figure anchor="tls-full">
        <name>Message Flow for Full TLS Handshake</name>
        <artwork><![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>
      </figure>
      <!-- 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.

SVG removed per discussion with ekr.
-->

<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>
          <artwork><![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>
        </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>
          <artwork><![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>
        </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>
          <artwork><![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>
        </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>
        <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_credential <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="RFC9147"/> 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>
        <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>
          <dl>
            <dt>*</dt>
            <dd>
              <t>Only included if present.</t>
            </dd>
          </dl>
          <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 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>
          <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>
          <artwork><![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>
        </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>
        <t>In the absence of an application profile standard specifying otherwise:</t>
        <ul spacing="normal">
          <li>
            <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>
          </li>
          <li>
            <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>
          </li>
        </ul>
      </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>
      <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"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9849.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" target="https://datatracker.ietf.org/doc/html/draft-hickman-netscape-ssl-00">
          <front>
            <title>The SSL Protocol</title>
            <author initials="K. E." 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="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.9147.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.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 5073?>

<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>
        <artwork><![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>
        <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>
        <artwork><![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>
      </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="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="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>
        <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>
    </section>
  </back>
  <!-- ##markdown-source:
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
jG24yWlbVXxISraYEIrNoW/ZHAZbfF6NuMspOYxHNaAAlKAQOJHG72g99Iq3
ZeFHIup+W98wv9dTI6kpUvrWTVT5VkhZeAlOkxP0SkvqJSlHyT8YwYcqyAnj
kXTBpBdd3KgZIWnehDqFNUyhLaHHcUE3l9TOE8HlpBOUdcvVpm/xlJBRktrG
JUN5Gp2K08uobJIJPXIDHoGams51rVxFVB/c2F6jwbnk+4kc5826UfAs7LJN
vTb3TYrwMokRb3SptXciQM4+1+tLkIxd0+sbmXRn1MYls0rJwu8gqd58rPxB
v7ipXDELf4Mwr4ZZdFXuCyDxklgsmx0bjXOKoZDCqx8nPUuxKDeKAAX0xR6h
zXPNCc81KsBlbWVK9H7PJA3N9UEpKg6qw0SSpAACG03OTzJrUt11e8i040DQ
OAk7Z+dcVE/0C4kFHgitibiJvQ0blzgUKvO05le31s2D+FfZU9N1Kaz0qXZC
sjzyJFo30WYjEBrmG6S2KCCn1TmgT/aotIzUeCcPodzMKTmK/0xp4bCCmPcH
8DfMMiA5BnKFiGmGq9R9VFP1eo00KOTL05VkS6cxlt3wagaknakRdoFRJn+R
1XwnhYfMbK1xmIR2PNLuolmZjueD6qRljqmxXuMxxAD7I/lOjZAS8Z3yCa98
l7+Rii3Av6WKDb/Q6gYqf1/gLsKyJ7dB/LDuoQ4mUyPBYS0Ur1k+uWKmJL9F
P+fcN1Yd2YngmHYwmVJVvxF6unjK64TJwXchMzhDx1G+HpekNepuUYmXbtX8
eoPDQq4SyBvbKlMR1NjNPJ6UuSPqEKFCGL1xTo0QmMnysuaqJkKGhbccgjye
21P6l6PSRFc/W6jl9s8VQDdA1gUpfTcbN9QJPkRUHEbiwpS1Y7m5ca+569F4
yTAZ5J2IxxVe5w1FbePKGKT5oSTJ2WwWFxO31a0pL2hJnINUNYlkADBJAeB4
hJASNjFc/4PL6IikYtwZ7hCjUiBTVZXaO7Fjgum5z4vJdshq4Uxrjbbxitwh
6WTS2W3W624NwIIlKxzpnISUiIGR+jvLeDWYrdfJX+MBfO4QoicFoTDSalhT
YnOuztfQ5E2oV0lb3TFKGyCXH1mN3KA28+CiXpzzF86v6rmymFHqZ+xTolys
b4jydJo2Eop+8nXQXbpn9t3299o+I7ReS2GauhDxcOkHI//emxb+w6BGhZvq
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
Q/ehrmUYmxuzVdLip3ShDHnVsYmmoB3LQm1Ei75TCQYqSn71uF/gFO3utBm5
jjsMfRCeVqs2iBfYrJlNYP0YL6jhTUAEJA8z7+IMDR4p8nHvQcvz7w9SkMmQ
iYY8ZXE79iphNJfkPOc9GRudHiRfbEsdj3+/aBdR53dcWGwr8O+MeLk19Ohf
6UF7rlhFliMk0x3v+P/5n/8JI0ktidY49azEAP8wNtZHaPH959XL9ouDvtuu
5w1BLh18CG6MeXKCK5mFFgmiP3eCCchAIsSIYzCgur2kddiECIpj5QmtRTIM
aoPI9+AouazmY8AZ2V2zo3pJV4ZoWNlDSb/3KAi+dIorsOGJ5ItibN5+3TKN
MLNKL89lg/OiZZSud1vboXjds7R7OqAZO9xT8m/QZPMicEF7K0LYz+o6abPE
IclVoFoONn/VjZQo+GX3PMk5nV/ZPXOyblftf0swVDW6eXeNVBDF80tJC5zA
Lk4rjhxSJWOCqw/ZNvwLO6D1IjmSTcI+p+d/Ovv2W+qBo0Uj7j32bGXZqftZ
59Rf3w/pB25ho6OspX9nrdSAePd+ayR4SAydtXIgy9xuV3GKFu2cz21GJaOs
txeUAxZ1wkV3Fe8pBwXfIr1d5xhEGptNPX+NI0xJMlSGSL7bbk1B4XrOOlGX
bwrhl4JJTicVRUTNlO0BqUaJetjutZrdRW7pdKue6ArEE5qp254pjaLpN5pP
cmBMaeeJKS3PprKsFk0LmCR3vO8OdHcTXMzlmOykS8PMstiby17LPOSSYpax
3XqEA0VkXY0TcfM22U1XHeb1es2Etjqp/SjX3Gqxi2o+lHg+wsfNmvRskHAB
p/haaFY5FYsKMryWP74QPNNpUkefArHtgWe2ZJ9bjbRpIPZq/lf50dsJ4RXG
0j05dU+yj0jjOUmnGb/nXHoFuaJKcshmRL1OmiXLxyvStJ3/N5XJ3YSClP4W
ukwJtt9CmZmwrMv8RcbSXYnpO0ZA6aCS3ddKzlCawUooWeoLU9WYqxmHLKM8
dVlBGxJCyU67ZfZdqSahnwwmf8+RGZ98AjzTK3PvXM+YEfLTTz65x7VuNKG9
9sgov9iShmyAj+OVx9jFvVTHzt/0sBlqgdnJ5oatvoKp9Tu1pIikjCrLtn1v
V5Tk6U/J+UQRwA8fJji6VrFFd6Hk1F3F0yCFd8lwpPzi4pZCaTnVrZoqSac4
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
sDy3oIyQaZVKSXskdDhSannHBsi1gd6LEfpgE0w1cC/OaKVzzxx1RtcYZDGP
vlVLLEypFkqqWVWa+ZDwF7By3eSyyNGo5RbVgpso0GMKlDYWSrtspHqllGzi
QhD8La8NCdkQpq2SWBtcAz67z3tJih0bNsiyHFZjpoRGhbdFudNa5LUyR6pC
zBidOLX+OROeS0+nVLCz7D49XQwnyDtB2pDqxQaZ4Xgb+5+Ffj2Gv8ln0BTu
Ooe8nVLIdJm+QA/a+dmHUwEZ23v6ZAcDhuH7M/j+LX8fpZ2EIUS39zYlaplw
+5v56kH2uFtMUG7TeKAwfbU7f/r07h3ikWoUb1HfqNkfDeZXikTOcfa4Z2u6
WxfF+AJ581pAQJPipPu7iBResXxN0DRO50M4SrYnxQnpsWbIglGUBb3Gjy4Q
hsF/k2r6iNZvZ85V9YF9dx7Qc8JJTc/OD5PkUJm57qcZnZEwoQmFAbMwjhKH
oB2zYSiEZzUiKn+Y5MDd83KI/heQlBEGPSw3Pn0GNIxLI59N1IXA4O4i3tQ2
UJNuGdqLdTsOv0ga4RfBXNwUPhulFcJSU71fXQCvVgAt/vX8fGsvBGLu7n23
vb+1ubW5M4D/7jxBFjAg3ZIOQ8dlo0fUG2wpmwBjIckdw7OlQbgZi8kITcfN
sqxU+AXkplHBpSeayEV0jyrcuUqDwQPXPJgxYvdPyCwSQr5ojCgEefBtBj9Z
bquW1sIIdE0MSEJAvBrtZnD8a7GMSUKXdVGLs5AOOeaZ+nF6LEhzM42Lq2Ke
Tc4twXaIuCS51BNnH3hsLcxLgr9Nm5CdXB4UgeNmBUwE1cxP37OPLx//ee0S
FjNf+5wk//Vf/5Wk9OcdqtBlejjMxoX89FNZ0E5xIPERcGP4WFlkvfQcRLEs
PZotfpemGb52MKoHi1E9GuTjRSIPjq6B/8wrKi5xCLpgKb+vj6p+DpdrNQsV
IjY35OHhBIgFP/szzBVXst3Z4YE2egei0hWRywDuK/3u+2IKcld6eFfMsqn8
9gGjye6KOzcxeVJS60FGrQ+upqAY+c7O4PBjMP0P2awMgynqUSV/n02GB8Xt
3aD+qK+czykU8R0GkYIUflfoxI8w0G1YZO1B1NMhruBIGvhVfAEjg8/n5W/Z
1Hp6VVVXFEuDf8bYYpiXB1f0qx+9vgZ/WczGFdys+tLJ+7OTw/R/hzsUz2Z1
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
Co0HRfHbIBsPfrslxxX++X8BA8REAL9/BAA=

-->

</rfc>
