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

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

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

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

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

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

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


b) Introduction: 

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

-->

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

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

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

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

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

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

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

<t>This document specifies version 1.3 of the Transport Layer Security
(TLS) protocol.  TLS allows client/server applications to communicate
over the Internet in a way that is designed to prevent eavesdropping,
tampering, and message forgery.</t>
      <t>This document updates RFCs 5705, 6066, 7627, and 8422 and obsoletes
RFCs 5077, 5246, 6961, 8422, and 8446. This document also specifies
new requirements for TLS 1.2 implementations.</t>
    </abstract>
  </front>
  <middle>
    <?line 530?>

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

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

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

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

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

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

Original:
   record_size_limit [RFC8849] 

Current:
   record_size_limit [RFC8449]


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

Current:
   delegated_credentials {{RFC9345}}
-->

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

   opaque PskBinderEntry<32..255>;

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

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

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

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

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

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

   * Only included if present.


A definition list will yield the following: 

   *: Only included if present.
-->

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

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

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

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

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

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

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

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

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

    Derive-Secret(Secret, Label, Messages) =
         HKDF-Expand-Label(Secret, Label,
                           Transcript-Hash(Messages), Hash.length)
]]></sourcecode>
        <t>The Hash function used by Transcript-Hash and HKDF is the cipher suite hash
algorithm.
Hash.length is its output length in bytes. Messages is the concatenation of the
indicated handshake messages, including the handshake message type
and length fields, but not including record layer headers. Note that
in some cases a zero-length Context (indicated by "") is passed to
HKDF-Expand-Label.  The labels specified in this document are all
ASCII strings and do not include a trailing NUL byte.</t>
        <t>Any extensions to TLS which use "HKDF-Expand-Label" use the
HkdfLabel definition associated with the version of TLS with which
they are being used. When used with this specification, that means
using HkdfLabel as defined above; when used with DTLS <xref target="RFC9147"/> that
means using the version defined in <xref section="5.9" sectionFormat="comma" target="RFC9147"/>.</t>
        <t>Note: With common hash functions, any label longer than 12 characters
requires an additional iteration of the hash function to compute.
The labels in this specification have all been chosen to fit within
this limit.</t>
        <t>Keys are derived from two input secrets using
the HKDF-Extract and Derive-Secret functions. The general pattern
for adding a new secret is to use HKDF-Extract with the Salt
being the current secret state and the Input Keying Material (IKM) being the new
secret to be added. In this version of TLS 1.3, the two
input secrets are:</t>
        <ul spacing="normal">
          <li>
            <t>PSK (a pre-shared key established externally or derived from
the resumption_secret value from a previous connection)</t>
          </li>
          <li>
            <t>(EC)DHE shared secret (<xref target="ecdhe-shared-secret-calculation"/>)</t>
          </li>
        </ul>
        <t>This produces the key schedule shown in the diagram below
(<xref target="key-schedule-diagram"/>). In this diagram, the following formatting conventions apply:</t>
        <ul spacing="normal">
          <li>
            <t>HKDF-Extract is drawn as taking the Salt argument from the top and
the IKM argument from the left, with its output to the bottom and
the name of the output on the right.</t>
          </li>
          <li>
            <t>Derive-Secret's Secret argument is indicated by the incoming
arrow. For instance, the Early Secret is the Secret for
generating the client_early_traffic_secret.</t>
          </li>
          <li>
            <t>"0" indicates a string of Hash.length bytes set to zero.</t>
          </li>
        </ul>
        <t>Note: The key derivation labels use the string "master" even though
the values are referred to as "main" secrets.  This mismatch is a
result of renaming the values while retaining compatibility.</t>
        <t>Note: This does not show all the leaf keys such as the separate
AEAD and IV keys but rather the first set of secrets derived
from the handshake.</t>
        <figure anchor="key-schedule-diagram">
          <name>Main TLS 1.3 Key Schedule</name>
          <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>
        <!--[rfced] In Section 9.1, may we format these two items into an
unordered list?

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

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

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

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

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

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

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

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

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

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

<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="PRE-RFC9849"/>.</t>
        <t>If an external PSK identity is used for multiple connections, then it
will generally be possible for an external observer to track
clients and/or servers across connections. Use of the
Encrypted Client Hello extension <xref target="PRE-RFC9849"/> can
mitigate this risk, as can mechanisms external to TLS that
rotate or encrypt the PSK identity.</t>
      </section>
      <section anchor="unauthenticated-operation">
        <name>Unauthenticated Operation</name>
        <t>Previous versions of TLS offered explicitly unauthenticated cipher suites based
on anonymous Diffie-Hellman. These modes have been deprecated in TLS 1.3.
However, it is still possible to negotiate parameters that do not provide
verifiable server authentication by several methods, including:</t>
        <ul spacing="normal">
          <li>
            <t>Raw public keys <xref target="RFC7250"/>.</t>
          </li>
          <li>
            <t>Using a public key contained in a certificate but without
validation of the certificate chain or any of its contents.</t>
          </li>
        </ul>
        <t>Either technique used alone is vulnerable to man-in-the-middle attacks
and therefore unsafe for general use. However, it is also possible to
bind such connections to an external authentication mechanism via
out-of-band validation of the server's public key, trust on first
use, or a mechanism such as channel bindings (though the
channel bindings described in <xref target="RFC5929"/> are not defined for
TLS 1.3). If no such mechanism is used, then the connection has no protection
against an active man-in-the-middle attack; applications <bcp14>MUST NOT</bcp14> use TLS
in such a way absent explicit configuration or a specific application
profile.</t>
      </section>
    </section>
    <section anchor="update-tls12">
      <name>Updates to TLS 1.2</name>
      <t>To align with the names used this document, the following terms from
<xref target="RFC5246"/> are renamed:</t>
      <ul spacing="normal">
        <li>
          <t>The master secret, computed in <xref section="8.1" sectionFormat="of" target="RFC5246"/>, is renamed to
the main secret. It is referred to as main_secret in formulas and
structures, instead of master_secret. However, the label parameter to the PRF
function is left unchanged for compatibility.</t>
        </li>
        <li>
          <t>The premaster secret is renamed to the preliminary secret. It is referred to
as preliminary_secret in formulas and structures, instead of
pre_master_secret.</t>
        </li>
        <li>
          <t>The PreMasterSecret and EncryptedPreMasterSecret structures, defined in
<xref section="7.4.7.1" sectionFormat="of" target="RFC5246"/>, are renamed to PreliminarySecret and
EncryptedPreliminarySecret, respectively.</t>
        </li>
      </ul>
      <t>Correspondingly, the extension defined in <xref target="RFC7627"/> is renamed to the
"Extended Main Secret" extension. The extension code point is renamed to
"extended_main_secret". The label parameter to the PRF function in <xref section="4" sectionFormat="of" target="RFC7627"/> is left unchanged for compatibility.</t>
    </section>
    <section anchor="backward-compatibility">
      <name>Backward Compatibility</name>
      <t>The TLS protocol provides a built-in mechanism for version negotiation between
endpoints potentially supporting different versions of TLS.</t>
      <t>TLS 1.x and SSL 3.0 use compatible ClientHello messages. Servers can also handle
clients trying to use future versions of TLS as long as the ClientHello format
remains compatible and there is at least one protocol version supported by
both the client and the server.</t>
      <t>Prior versions of TLS used the record layer version number
(TLSPlaintext.legacy_record_version and
TLSCiphertext.legacy_record_version) for various purposes.
As of TLS 1.3, this field is deprecated. The value of
TLSPlaintext.legacy_record_version <bcp14>MUST</bcp14> be ignored by all implementations.
The value of TLSCiphertext.legacy_record_version is included in the
additional data for deprotection but <bcp14>MAY</bcp14> otherwise be ignored
or <bcp14>MAY</bcp14> be validated to match the fixed constant value.
Version negotiation is performed using only the handshake versions
(ClientHello.legacy_version and ServerHello.legacy_version, as well as the
ClientHello, HelloRetryRequest, and ServerHello "supported_versions" extensions).
To maximize interoperability with older endpoints, implementations
that negotiate the use of TLS 1.0-1.2 <bcp14>SHOULD</bcp14> set the record layer
version number to the negotiated version for the ServerHello and all
records thereafter.</t>
      <t>For maximum compatibility with previously non-standard behavior and misconfigured
deployments, all implementations <bcp14>SHOULD</bcp14> support validation of certification paths
based on the expectations in this document, even when handling prior TLS versions'
handshakes (see <xref target="certificate-selection"/>).</t>
      <t>TLS 1.2 and prior supported an "Extended Main Secret" <xref target="RFC7627"/> extension
which digested large parts of the handshake transcript into the secret and
derived keys. Note this extension was renamed in <xref target="update-tls12"/>. Because TLS
1.3 always hashes in the transcript up to the server Finished, implementations
which support both TLS 1.3 and earlier versions <bcp14>SHOULD</bcp14> indicate the use of the
Extended Main Secret extension in their APIs whenever TLS 1.3 is used.</t>
      <section anchor="negotiating-with-an-older-server">
        <name>Negotiating with an Older Server</name>
        <t>A TLS 1.3 client who wishes to negotiate with servers that do not
support TLS 1.3 will send a
normal TLS 1.3 ClientHello containing 0x0303 (TLS 1.2) in
ClientHello.legacy_version but with the correct version(s) in the
"supported_versions" extension. If the server does not support TLS 1.3, it
will respond with a ServerHello containing an older version number. If the
client agrees to use this version, the negotiation will proceed as appropriate
for the negotiated protocol. A client using a ticket for resumption <bcp14>SHOULD</bcp14> initiate the
connection using the version that was previously negotiated.</t>
        <t>Note that 0-RTT data is not compatible with older servers and <bcp14>SHOULD NOT</bcp14>
be sent absent knowledge that the server supports TLS 1.3.
See <xref target="zero-rtt-backwards-compatibility"/>.</t>
        <t>If the version chosen by the server is not supported by the client (or is not
acceptable), the client <bcp14>MUST</bcp14> abort the handshake with a "protocol_version" alert.</t>
        <t>Some legacy server implementations are known to not implement the TLS
specification properly and might abort connections upon encountering
TLS extensions or versions which they are not aware of. Interoperability
with buggy servers is a complex topic beyond the scope of this document.
Multiple connection attempts may be required to negotiate
a backward-compatible connection; however, this practice is vulnerable
to downgrade attacks and is <bcp14>NOT RECOMMENDED</bcp14>.</t>
      </section>
      <section anchor="negotiating-with-an-older-client">
        <name>Negotiating with an Older Client</name>
        <t>A TLS server can also receive a ClientHello indicating a version number smaller
than its highest supported version. If the "supported_versions" extension
is present, the server <bcp14>MUST</bcp14> negotiate using that extension as described in
<xref target="supported-versions"/>. If the "supported_versions" extension is not
present, the server <bcp14>MUST</bcp14> negotiate the minimum of ClientHello.legacy_version
and TLS 1.2. For example, if the server supports TLS 1.0, 1.1, and 1.2,
and legacy_version is TLS 1.0, the server will proceed with a TLS 1.0 ServerHello.
If the "supported_versions" extension is absent and the server only supports
versions greater than ClientHello.legacy_version, the server <bcp14>MUST</bcp14> abort the handshake
with a "protocol_version" alert.</t>
        <t>Note that earlier versions of TLS did not clearly specify the record layer
version number value in all cases (TLSPlaintext.legacy_record_version). Servers
will receive various TLS 1.x versions in this field, but its value
<bcp14>MUST</bcp14> always be ignored.</t>
      </section>
      <section anchor="zero-rtt-backwards-compatibility">
        <name>0-RTT Backward Compatibility</name>
        <t>0-RTT data is not compatible with older servers. An older server will respond
to the ClientHello with an older ServerHello, but it will not correctly skip
the 0-RTT data and will fail to complete the handshake. This can cause issues when
a client attempts to use 0-RTT, particularly against multi-server deployments. For
example, a deployment could deploy TLS 1.3 gradually with some servers
implementing TLS 1.3 and some implementing TLS 1.2, or a TLS 1.3 deployment
could be downgraded to TLS 1.2.</t>
        <t>A client that attempts to send 0-RTT data <bcp14>MUST</bcp14> fail a connection if it receives
a ServerHello with TLS 1.2 or older.  It can then retry
the connection with 0-RTT disabled.  To avoid a downgrade attack, the
client <bcp14>SHOULD NOT</bcp14> disable TLS 1.3, only 0-RTT.</t>
        <t>To avoid this error condition, multi-server deployments <bcp14>SHOULD</bcp14> ensure a uniform
and stable deployment of TLS 1.3 without 0-RTT prior to enabling 0-RTT.</t>
      </section>
      <section anchor="middlebox">
        <name>Middlebox Compatibility Mode</name>
        <t>Field measurements
<xref target="Ben17a"/> <xref target="Ben17b"/> <xref target="Res17a"/> <xref target="Res17b"/> have found that a significant number of middleboxes
misbehave when a TLS client/server pair negotiates TLS 1.3. Implementations
can increase the chance of making connections through those middleboxes
by making the TLS 1.3 handshake look more like a TLS 1.2 handshake:</t>
        <ul spacing="normal">
          <li>
            <t>The client always provides a non-empty session ID in the ClientHello,
as described in the legacy_session_id section of <xref target="client-hello"/>.</t>
          </li>
          <li>
            <t>If not offering early data, the client sends a dummy
change_cipher_spec record (see the third paragraph of <xref target="record-protocol"/>)
immediately before its second flight. This
may either be before its second ClientHello or before its encrypted
handshake flight. If offering early data, the record is placed
immediately after the first ClientHello.</t>
          </li>
          <li>
            <t>The server sends a dummy change_cipher_spec record immediately
after its first handshake message. This may either be after a
ServerHello or a HelloRetryRequest.</t>
          </li>
        </ul>
        <t>When put together, these changes make the TLS 1.3 handshake resemble
TLS 1.2 session resumption, which improves the chance of successfully
connecting through middleboxes. This "compatibility mode" is partially
negotiated: the client can opt to provide a session ID or not,
and the server has to echo it. Either side can send change_cipher_spec
at any time during the handshake, as they must be ignored by the peer,
but if the client sends a non-empty session ID, the server <bcp14>MUST</bcp14> send
the change_cipher_spec as described in this appendix.</t>
      </section>
      <section anchor="backward-compatibility-security">
        <name>Security Restrictions Related to Backward Compatibility</name>
        <t>Implementations negotiating the use of older versions of TLS <bcp14>SHOULD</bcp14> prefer
forward secret and AEAD cipher suites, when available.</t>
        <t>The security of RC4 cipher suites is considered insufficient for the reasons
cited in <xref target="RFC7465"/>. Implementations <bcp14>MUST NOT</bcp14> offer or negotiate RC4 cipher suites
for any version of TLS for any reason.</t>
        <t>Old versions of TLS permitted the use of very low strength ciphers.
Ciphers with a strength less than 112 bits <bcp14>MUST NOT</bcp14> be offered or
negotiated for any version of TLS for any reason.</t>
        <t>The security of SSL 2.0 <xref target="SSL2"/>, SSL 3.0 <xref target="RFC6101"/>, TLS 1.0
<xref target="RFC2246"/>, and TLS 1.1 <xref target="RFC4346"/> are considered insufficient for
the reasons enumerated in <xref target="RFC6176"/>, <xref target="RFC7568"/>, and <xref target="RFC8996"/>
and they <bcp14>MUST NOT</bcp14> be negotiated for any reason.</t>
        <t>Implementations <bcp14>MUST NOT</bcp14> send an SSL version 2.0 compatible CLIENT-HELLO.
Implementations <bcp14>MUST NOT</bcp14> negotiate TLS 1.3 or later using an SSL version 2.0 compatible
CLIENT-HELLO. Implementations are <bcp14>NOT RECOMMENDED</bcp14> to accept an SSL version 2.0 compatible
CLIENT-HELLO to negotiate older versions of TLS.</t>
        <t>Implementations <bcp14>MUST NOT</bcp14> send a ClientHello.legacy_version or ServerHello.legacy_version
set to 0x0300 or less. Any endpoint receiving a Hello message with
ClientHello.legacy_version or ServerHello.legacy_version set to 0x0300 <bcp14>MUST</bcp14>
abort the handshake with a "protocol_version" alert.</t>
        <t>Implementations <bcp14>MUST NOT</bcp14> send any records with a version less than 0x0300.
Implementations <bcp14>SHOULD NOT</bcp14> accept any records with a version less than 0x0300
(but may inadvertently do so if the record version number is ignored completely).</t>
        <t>Implementations <bcp14>MUST NOT</bcp14> use the Truncated HMAC extension, defined in
<xref section="7" sectionFormat="of" target="RFC6066"/>, as it is not applicable to AEAD algorithms and has
been shown to be insecure in some scenarios.</t>
      </section>
    </section>
    <section anchor="security-analysis">
      <name>Overview of Security Properties</name>
      <t>A complete security analysis of TLS is outside the scope of this document.
In this appendix, we provide an informal description of the desired properties
as well as references to more detailed work in the research literature
which provides more formal definitions.</t>
      <t>We cover properties of the handshake separately from those of the record layer.</t>
      <section anchor="security-handshake">
        <name>Handshake</name>
        <t>The TLS handshake is an Authenticated Key Exchange (AKE) protocol which
is intended to provide both one-way authenticated (server-only) and
mutually authenticated (client and server) functionality. At the completion
of the handshake, each side outputs its view of the following values:</t>
        <ul spacing="normal">
          <li>
            <t>A set of "session keys" (the various secrets derived from the main secret)
from which a set of working keys can be derived. Note that when early data
is in use, secrets are also derived from the early secret. These enjoy
somewhat weaker properties than those derived from the main secret,
as detailed below.</t>
          </li>
          <li>
            <t>A set of cryptographic parameters (algorithms, etc.).</t>
          </li>
          <li>
            <t>The identities of the communicating parties.</t>
          </li>
        </ul>
        <t>We assume the attacker to be an active network attacker, which means it
has complete control over the network used to communicate between the parties <xref target="RFC3552"/>.
Even under these conditions, the handshake should provide the properties listed below.
Note that these properties are not necessarily independent, but reflect
the protocol consumers' needs.</t>
        <dl>
          <dt>Establishing the same session keys:</dt>
          <dd>
            <t>The handshake needs to output the same set of session keys on both sides of
the handshake, provided that it completes successfully on each endpoint
(see <xref target="CK01"/>, Definition 1, part 1).</t>
          </dd>
          <dt>Secrecy of the session keys:</dt>
          <dd>
            <t>The shared session keys should be known only to the communicating
parties and not to the attacker (see <xref target="CK01"/>; Definition 1, part 2).
Note that in a unilaterally authenticated connection, the attacker can establish
its own session keys with the server, but those session keys are distinct from
those established by the client.</t>
          </dd>
          <dt>Peer Authentication:</dt>
          <dd>
            <t>The client's view of the peer identity should reflect the server's
identity. If the client is authenticated, the server's view of the
peer identity should match the client's identity.</t>
          </dd>
          <dt>Uniqueness of the session keys:</dt>
          <dd>
            <t>Any two distinct handshakes should produce distinct, unrelated session
keys. Individual session keys produced by a handshake should also be distinct
and independent.</t>
          </dd>
          <dt>Downgrade Protection:</dt>
          <dd>
            <t>The cryptographic parameters should be the same on both sides and
should be the same as if the peers had been communicating in the
absence of an attack (see <xref target="BBFGKZ16"/>; Definitions 8 and 9).</t>
          </dd>
          <dt>Forward secret with respect to long-term keys:</dt>
          <dd>
            <t>If the long-term keying material (in this case the signature keys in
certificate-based authentication modes or the external/resumption
PSK in PSK with (EC)DHE modes) is compromised after the handshake is
complete, this does not compromise the security of the session key
(see <xref target="DOW92"/>), as long as the session key
itself (and all material that could be used to recreate the session
key) has been erased. In particular, private keys corresponding to key
shares, shared secrets, and keys derived in the TLS key schedule
other than <tt>binder_key</tt>, <tt>resumption_secret</tt>, and PSKs derived from
the <tt>resumption_secret</tt> also need to be erased.  The forward secrecy
property is not satisfied when PSK is used in the "psk_ke"
PskKeyExchangeMode.  Failing to erase keys or secrets intended to be
ephemeral or connection-specific in effect creates additional
long-term keys that must be protected. Compromise of those long-term
keys (even after the handshake is complete) can result in loss of
protection for the connection's traffic.</t>
          </dd>
          <dt>Key Compromise Impersonation (KCI) resistance:</dt>
          <dd>
            <t>In a mutually authenticated connection with certificates, compromising the long-term
secret of one actor should not break that actor's authentication of their peer in
the given connection (see <xref target="HGFS15"/>). For example, if a client's signature key is
compromised, it should not be possible to impersonate arbitrary servers to that client
in subsequent handshakes.</t>
          </dd>
          <dt>Protection of endpoint identities:</dt>
          <dd>
            <t>The server's identity (certificate) should be protected against passive
attackers. The client's identity (certificate) should be protected against
both passive and active attackers. This property does not hold for cipher
suites without confidentiality; while this specification does not define any such cipher suites,
other documents may do so.</t>
          </dd>
        </dl>
        <t>Informally, the signature-based modes of TLS 1.3 provide for the
establishment of a unique, secret, shared key established by an
(EC)DHE key exchange and authenticated by the server's signature over
the handshake transcript, as well as tied to the server's identity by
a MAC. If the client is authenticated by a certificate, it also signs
over the handshake transcript and provides a MAC tied to both
identities. <xref target="SIGMA"/> describes the design and analysis of this type of key
exchange protocol. If fresh (EC)DHE keys are used for each connection,
then the output keys are forward secret.</t>
        <t>The external PSK and resumption PSK bootstrap from a long-term shared
secret into a unique per-connection set of short-term session keys. This
secret may have been established in a previous handshake. If
PSK with (EC)DHE key establishment is used, these session keys will also be forward
secret. The resumption PSK has been designed so that the
resumption secret computed by connection N and needed to form
connection N+1 is separate from the traffic keys used by connection N,
thus providing forward secrecy between the connections.
In addition, if multiple tickets are established on the same
connection, they are associated with different keys, so compromise of
the PSK associated with one ticket does not lead to the compromise of
connections established with PSKs associated with other tickets.
This property is most interesting if tickets are stored in a database
(and so can be deleted) rather than if they are self-encrypted.</t>
        <t>Forward secrecy limits the effect of key leakage in one direction
(compromise of a key at time T2 does not compromise some key at time
T1 where T1 &lt; T2). Protection in the other direction (compromise at
time T1 does not compromise keys at time T2) can be achieved by
rerunning (EC)DHE. If a long-term authentication key has been
compromised, a full handshake with (EC)DHE gives protection against
passive attackers. If the resumption_secret has been
compromised, a resumption handshake with (EC)DHE gives protection
against passive attackers and a full handshake with (EC)DHE gives
protection against active attackers. If a traffic secret has been
compromised, any handshake with (EC)DHE gives protection against
active attackers. Using the terms in <xref target="RFC7624"/>, forward secrecy
without rerunning (EC)DHE does not stop an attacker from doing static
key exfiltration. After key exfiltration of
application_traffic_secret_N, an attacker can, e.g., passively
eavesdrop on all future data sent on the connection including data
encrypted with application_traffic_secret_N+1,
application_traffic_secret_N+2, etc. Frequently rerunning (EC)DHE
forces an attacker to do dynamic key exfiltration (or content
exfiltration).</t>
        <t>The PSK binder value forms a binding between a PSK
and the current handshake, as well as between the session where the
PSK was established and the current session. This binding
transitively includes the original handshake transcript, because that
transcript is digested into the values which produce the resumption
secret. This requires that both the KDF used to produce the
resumption secret and the MAC used to compute the binder be collision
resistant. See <xref target="key-derivation-and-hkdf"/> for more on this.
Note: The binder does not cover the binder values from other
PSKs, though they are included in the Finished MAC.</t>
        <t>Note: This specification does not currently permit the server to send a certificate_request
message in non-certificate-based handshakes (e.g., PSK).
If this restriction were to be relaxed in future, the
client's signature would not cover the server's certificate directly.
However, if the PSK was established through a NewSessionTicket, the client's
signature would transitively cover the server's certificate through
the PSK binder. <xref target="PSK-FINISHED"/>
describes a concrete attack on constructions that do not bind to
the server's certificate (see also <xref target="Kraw16"/>). It is unsafe to use certificate-based client
authentication when the client might potentially share the same
PSK/key-id pair with two different endpoints.  In the absence
of some other specification to the contrary, implementations <bcp14>MUST
NOT</bcp14> combine external PSKs with certificate-based authentication of
either the client or server. <xref target="RFC8773"/> provides an extension
to permit this, but has not received the level of analysis as this
specification.</t>
        <t>If an exporter is used, then it produces values which are unique
and secret (because they are generated from a unique session key).
Exporters computed with different labels and contexts are computationally
independent, so it is not feasible to compute one from another or
the session secret from the exported value.
Note: Exporters can
produce arbitrary-length values; if exporters are to be
used as channel bindings, the exported value <bcp14>MUST</bcp14> be large
enough to provide collision resistance. The exporters provided in
TLS 1.3 are derived from the same Handshake Contexts as the
early traffic keys and the application traffic keys, respectively,
and thus have similar security properties. Note that they do
not include the client's certificate; future applications
which wish to bind to the client's certificate may need
to define a new exporter that includes the full handshake
transcript.</t>
        <t>For all handshake modes, the Finished MAC (and, where present, the
signature) prevents downgrade attacks. In addition, the use of
certain bytes in the random nonces as described in <xref target="server-hello"/>
allows the detection of downgrade to previous TLS versions.
See <xref target="BBFGKZ16"/> for more details on TLS 1.3 and downgrade.</t>
        <t>As soon as the client and the server have exchanged enough information
to establish shared keys, the remainder of the handshake is encrypted,
thus providing protection against passive attackers, even if the
computed shared key is not authenticated. Because the server
authenticates before the client, the client can ensure that if it
authenticates to the server, it only
reveals its identity to an authenticated server. Note that implementations
must use the provided record-padding mechanism during the handshake
to avoid leaking information about the identities due to length.
The client's proposed PSK identities are not encrypted, nor is the
one that the server selects.</t>
        <section anchor="key-derivation-and-hkdf">
          <name>Key Derivation and HKDF</name>
          <t>Key derivation in TLS 1.3 uses  HKDF as defined in <xref target="RFC5869"/> and
its two components, HKDF-Extract and HKDF-Expand. The full rationale for the HKDF
construction can be found in <xref target="Kraw10"/> and the rationale for the way it is used
in TLS 1.3 in <xref target="KW16"/>.  Throughout this document, each
application of HKDF-Extract is followed by one or more invocations of
HKDF-Expand. This ordering should always be followed (including in future
revisions of this document); in particular, one <bcp14>SHOULD NOT</bcp14> use an output of
HKDF-Extract as an input to another application of HKDF-Extract without an
HKDF-Expand in between. Multiple applications of HKDF-Expand to some of
the same inputs are allowed as
long as these are differentiated via the key and/or the labels.</t>
          <t>Note that HKDF-Expand implements a pseudorandom function (PRF) with both inputs and
outputs of variable length. In some of the uses of HKDF in this document
(e.g., for generating exporters and the resumption_secret), it is necessary
that the application of HKDF-Expand be collision resistant; namely, it should
be infeasible to find two different inputs to HKDF-Expand that output the same
value. This requires the underlying hash function to be collision resistant
and the output length from HKDF-Expand to be of size at least 256 bits (or as
much as needed for the hash function to prevent finding collisions).</t>
        </section>
        <section anchor="certificate-based-client-authentication">
          <name>Certificate-Based Client Authentication</name>
          <t>A client that has sent certificate-based authentication data to a server, either during
the handshake or in post-handshake authentication, cannot be sure whether
the server afterwards considers the client to be authenticated or not.
If the client needs to determine if the server considers the
connection to be unilaterally or mutually authenticated, this has to
be provisioned by the application layer. See <xref target="CHHSV17"/> for details.
In addition, the analysis of post-handshake authentication from
<xref target="Kraw16"/> shows that the client identified by the certificate sent in
the post-handshake phase possesses the traffic key. This party is therefore
the client that participated in the original handshake or
one to whom the original client delegated the traffic key (assuming
that the traffic key has not been compromised).</t>
        </section>
        <section anchor="rtt">
          <name>0-RTT</name>
          <t>The 0-RTT mode of operation generally provides security
properties similar to those of 1-RTT data, with the two exceptions that the 0-RTT
encryption keys do not provide full forward secrecy and that the
server is not able to guarantee uniqueness of the handshake
(non-replayability) without keeping potentially undue amounts of
state. See <xref target="anti-replay"/> for mechanisms to limit
the exposure to replay.</t>
        </section>
        <section anchor="exporter-independence">
          <name>Exporter Independence</name>
          <t>The exporter_secret and early_exporter_secret are
derived to be independent of the traffic keys and therefore do
not represent a threat to the security of traffic encrypted with
those keys. However, because these secrets can be used to
compute any exporter value, they <bcp14>SHOULD</bcp14> be erased as soon as
possible. If the total set of exporter labels is known, then
implementations <bcp14>SHOULD</bcp14> pre-compute the inner Derive-Secret
stage of the exporter computation for all those labels,
then erase the [early_]exporter_secret, followed by
each inner values as soon as it is known that it will not be
needed again.</t>
        </section>
        <section anchor="post-compromise-security">
          <name>Post-Compromise Security</name>
          <t>TLS does not provide security for handshakes which take place after the peer's
long-term secret (signature key or external PSK) is compromised. It therefore
does not provide post-compromise security <xref target="CCG16"/>, sometimes also referred to
as backwards or future secrecy. This is in contrast to KCI resistance, which
describes the security guarantees that a party has after its own long-term
secret has been compromised.</t>
        </section>
        <section anchor="external-references">
          <name>External References</name>
          <t>The reader should refer to the following references for analysis of the
TLS handshake: <xref target="DFGS15"/>, <xref target="CHSV16"/>, <xref target="DFGS16"/>, <xref target="KW16"/>, <xref target="Kraw16"/>, <xref target="FGSW16"/>,
<xref target="LXZFH16"/>, <xref target="FG17"/>, and <xref target="BBK17"/>.</t>
        </section>
      </section>
      <section anchor="security-record-layer">
        <name>Record Layer</name>
        <t>The record layer depends on the handshake producing strong traffic secrets
which can be used to derive bidirectional encryption keys and nonces.
Assuming that is true, and the keys are used for no more data than
indicated in <xref target="limits-on-key-usage"/>, then the record layer should provide the following
guarantees:</t>
        <!--[rfced] We note that some author comments are present in the markdown file.
Please confirm that no updates related to these comments are outstanding. Note
that the comments will be deleted prior to publication.

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

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

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

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

      Richard Barnes
      Cisco
      rlb@ipv.sx

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

      David Benjamin
      Google
      davidben@google.com

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

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

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

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

      Ran Canetti
      IBM
      canetti@watson.ibm.com

      Matt Caswell
      OpenSSL
      matt@openssl.org

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

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

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

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

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

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

      Roelof DuToit
      Symantec Corporation
      roelof_dutoit@symantec.com

      Taher Elgamal
      Securify
      taher@securify.com

      Pasi Eronen
      Nokia
      pasi.eronen@nokia.com

      Cedric Fournet
      Microsoft
      fournet@microsoft.com

      Anil Gangolli
      anil@busybuddha.org

      David M. Garrett
      dave@nulldereference.com

      Illya Gerasymchuk
      Independent
      illya@iluxonchik.me

      Alessandro Ghedini
      Cloudflare Inc.
      alessandro@cloudflare.com

      Daniel Kahn Gillmor
      ACLU
      dkg@fifthhorseman.net

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

      Jens Guballa
      ETAS
      jens.guballa@etas.com

      Felix Guenther
      TU Darmstadt
      mail@felixguenther.info

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

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

      Kipp Hickman

      Alfred Hoenes

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

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

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

      Subodh Iyengar
      Facebook
      subodh@fb.com

      Benjamin Kaduk
      Akamai Technologies
      kaduk@mit.edu

      Hubert Kario
      Red Hat Inc.
      hkario@redhat.com

      Phil Karlton
      (co-author of SSL 3.0)

      Leon Klingele
      Independent
      mail@leonklingele.de

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

      Hugo Krawczyk
      IBM
      hugokraw@us.ibm.com

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

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

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

      Ilari Liusvaara
      Independent
      ilariliusvaara@welho.com

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

      Colm MacCarthaigh
      Amazon Web Services
      colm@allcosts.net

      Carl Mehner
      USAA
      carl.mehner@usaa.com

      Jan Mikkelsen
      Transactionware
      janm@transactionware.com

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

      Kyle Nekritz
      Facebook
      knekritz@fb.com

      Erik Nygren
      Akamai Technologies
      erik+ietf@nygren.org

      Magnus Nystrom
      Microsoft
      mnystrom@microsoft.com

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

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

      Christopher Patton
      University of Florida
      cjpatton@ufl.edu

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

      Andrei Popov
      Microsoft
      andrei.popov@microsoft.com

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

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

      Robert Relyea
      Netscape Communications
      relyea@netscape.com

      Kyle Rose
      Akamai Technologies
      krose@krose.org

      Jim Roskind
      Amazon
      jroskind@amazon.com

      Michael Sabin

      Joe Salowey
      Tableau Software
      joe@salowey.net

      Rich Salz
      Akamai
      rsalz@akamai.com

      David Schinazi
      Apple Inc.
      dschinazi@apple.com

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

      Mohit Sethi
      Aalto University
      mohit@iki.fi

      Thomas Shrimpton
      University of Florida
      teshrim@ufl.edu

      Dan Simon
      Microsoft, Inc.
      dansimon@microsoft.com

      Brian Smith
      Independent
      brian@briansmith.org

      Ben Smyth
      Ampersand
      www.bensmyth.com

      Brian Sniffen
      Akamai Technologies
      ietf@bts.evenmere.org

      Nick Sullivan
      Cloudflare Inc.
      nick@cloudflare.com

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

      Tim Taubert
      Mozilla
      ttaubert@mozilla.com

      Martin Thomson
      Mozilla
      mt@mozilla.com

      Hannes Tschofenig
      Arm Limited
      Hannes.Tschofenig@arm.com

      Sean Turner
      sn3rd
      sean@sn3rd.com

      Steven Valdez
      Google
      svaldez@google.com

      Filippo Valsorda
      Cloudflare Inc.
      filippo@cloudflare.com

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

      Victor Vasiliev
      Google
      vasilvv@google.com

      Loganaden Velvindron
      cyberstorm.mu
      logan@cyberstorm.mu

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

      Tom Weinstein

      David Wong
      NCC Group
      david.wong@nccgroup.trust

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

      Tim Wright
      Vodafone
      timothy.wright@vodafone.com

      Peter Wu
      Independent
      peter@lekensteyn.nl

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

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

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

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

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

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

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

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

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

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

</section>
  </back>
  <!-- ##markdown-source:
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
Y93aT9yF/wEa7gPviKMEAA==

-->

</rfc>
