<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.31 (Ruby 2.6.10) -->
<?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-08" category="std" consensus="true" obsoletes="8446" updates="5705, 6066, 7627, 8422" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.10.0 -->
  <front>
    <title abbrev="TLS">The Transport Layer Security (TLS) Protocol Version 1.3</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-tls-rfc8446bis-08"/>
    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>Mozilla</organization>
      <address>
        <email>ekr@rtfm.com</email>
      </address>
    </author>
    <date year="2023" month="July" day="07"/>
    <area>General</area>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <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, and 8446. This document also specifies new
requirements for TLS 1.2 implementations.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>RFC EDITOR: PLEASE REMOVE THE FOLLOWING PARAGRAPH
The source for this draft is maintained in GitHub. Suggested changes
should be submitted as pull requests at
https://github.com/ekr/tls13-spec. Instructions are on that page as
well.</t>
      <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>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).</li>
        <li>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 in order to obscure lengths
and improve protection against traffic analysis techniques.</li>
        <li>Integrity: Data sent over the channel after establishment cannot be
modified by attackers without detection.</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>A handshake protocol (<xref target="handshake-protocol"/>) that authenticates the communicating parties,
negotiates cryptographic modes 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.</li>
        <li>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.</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 MUST specify how TLS works with their
application protocol, including how and when handshaking
occurs, and how to do identity verification. <xref target="I-D.ietf-uta-rfc6125bis"/>
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 "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" 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>
        <t>The following terms are used:</t>
        <t>client:  The endpoint initiating the TLS connection.</t>
        <t>connection:  A transport-layer connection between two endpoints.</t>
        <t>endpoint:  Either the client or server of the connection.</t>
        <t>handshake:  An initial negotiation between client and server that establishes the parameters of their subsequent interactions within TLS.</t>
        <t>peer:  An endpoint. When discussing a particular endpoint, "peer" refers to the endpoint that is not the primary subject of discussion.</t>
        <t>receiver:  An endpoint that is receiving records.</t>
        <t>sender:  An endpoint that is transmitting records.</t>
        <t>server:  The endpoint that did not initiate the TLS connection.</t>
      </section>
      <section anchor="relationship-to-rfc-8446">
        <name>Relationship to RFC 8446</name>
        <t>TLS 1.3 was originally specified in <xref target="RFC8446"/>. This document is a
minor update to TLS 1.3 that retains the same version number and is
backward compatible. It tightens some requirements and contains
updated text in areas which were found to be unclear as well as other
editorial improvements.  In addition, it removes the use of the term
"master" as applied to secrets in favor of the term "main" or shorter
names where no term was necessary. This document makes the following
specific technical changes:</t>
        <ul spacing="normal">
          <li>Forbid negotiating TLS 1.0 and 1.1 as they are now deprecated by <xref target="RFC8996"/>.</li>
          <li>Removes ambiguity around which hash is used with PreSharedKeys and
HelloRetryRequest.</li>
          <li>Require that clients ignore NewSessionTicket if they do not
support resumption.</li>
          <li>Upgrade the requirement to initiate key update before exceeding
key usage limits to MUST.</li>
          <li>Limit the number of permitted KeyUpdate messages.</li>
          <li>Restore text defining the level of "close_notify" to "warning".
Clarify behavior around "user_canceled", requiring that
"close_notify" be sent and that "user_canceled" should
be ignored.</li>
          <li>Add a "general_error" generic alert.</li>
          <li>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.</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>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).</li>
          <li>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.</li>
          <li>Static RSA and Diffie-Hellman cipher suites have been removed;
all public-key based key exchange mechanisms now provide forward secrecy.</li>
          <li>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.</li>
          <li>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.</li>
          <li>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).</li>
          <li>Elliptic curve algorithms are now in the base spec, 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.</li>
          <li>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.</li>
          <li>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.</li>
          <li>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.</li>
          <li>References have been updated to point to the updated versions of RFCs, as
appropriate (e.g., RFC 5280 rather than RFC 3280).</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>A version downgrade protection mechanism is described in <xref target="server-hello"/>.</li>
          <li>RSASSA-PSS signature schemes are defined in <xref target="signature-algorithms"/>.</li>
          <li>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.</li>
          <li>The "signature_algorithms_cert" extension allows a client to indicate
which signature algorithms it can validate in X.509 certificates.</li>
          <li>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".</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>(EC)DHE (Diffie-Hellman over either finite fields or elliptic curves)</li>
        <li>PSK-only</li>
        <li>PSK with (EC)DHE</li>
      </ul>
      <t><xref target="tls-full"/> below shows the basic full TLS handshake:</t>
      <figure anchor="tls-full">
        <name>Message Flow for Full TLS Handshake</name>
        <artwork><![CDATA[
       Client                                              Server

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

              +  Indicates noteworthy extensions sent in the
                 previously noted message.

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

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

              [] Indicates messages protected using keys
                 derived from [sender]_application_traffic_secret_N.
]]></artwork>
      </figure>
      <t>The handshake can be thought of as having three phases (indicated
in the diagram above):</t>
      <ul spacing="normal">
        <li>Key Exchange: Establish shared keying material and select the
 cryptographic parameters. Everything after this phase is
 encrypted.</li>
        <li>Server Parameters: Establish other handshake parameters
 (whether the client is authenticated, application-layer protocol support, etc.).</li>
        <li>Authentication: Authenticate the server (and, optionally, the client)
 and provide key confirmation and handshake integrity.</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/HKDF 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 MUST 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, 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 MUST NOT 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 MUST 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 in order 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*
       + 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 SHOULD 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 MUST also be provisioned.</t>
        <dl>
          <dt>Note:</dt>
          <dd>
            <t>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>
          </dd>
        </dl>
      </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>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.</li>
          <li>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.</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 MUST 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
MUST 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>A list of cipher suites which indicates the AEAD algorithm/HKDF hash
pairs which the client supports.</li>
            <li>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.</li>
            <li>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.</li>
            <li>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.</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 MUST abort the
handshake with a "handshake_failure" or an "insufficient_security" alert.</t>
          <t>If the server selects a PSK, then it MUST 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 MUST
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>If PSK is being used, then the server will send a
"pre_shared_key" extension indicating the selected key.</li>
            <li>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.</li>
            <li>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.</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 MUST 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 REQUIRED 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 MUST send the same
ClientHello without modification, except as follows:</t>
          <ul spacing="normal">
            <li>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.</li>
            <li>Removing the "early_data" extension (<xref target="early-data-indication"/>) if one was
present. Early data is not permitted after a HelloRetryRequest.</li>
            <li>Including a "cookie" extension if one was provided in the
HelloRetryRequest.</li>
            <li>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.</li>
            <li>Optionally adding, removing, or changing the length of the "padding"
extension <xref target="RFC7685"/>.</li>
            <li>Other modifications that may be allowed by an extension defined in the
future and present in the HelloRetryRequest.</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 MUST 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 MUST retain the
previous protocol version. In particular, it MUST NOT negotiate TLS 1.3.</t>
          <t>Structure of this message:</t>
          <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;
]]></artwork>
          <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 MUST
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 MUST 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 SHOULD set this field to that value. In
compatibility mode (see <xref target="middlebox"/>), this field MUST be non-empty,
so a client not offering a pre-TLS 1.3 session MUST generate a
new 32-byte value. This value need not be random but SHOULD be
unpredictable to avoid implementations fixating on a specific value
(also known as ossification).
Otherwise, it MUST 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
MUST ignore those cipher suites and process the remaining ones as
usual. If the client is
attempting a PSK key establishment, it SHOULD 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 MUST 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 MUST
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)
MUST 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 MUST 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 MUST 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 MUST 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 MAY 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>
          <artwork><![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;
]]></artwork>
          <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 MUST
be set to 0x0303, which is the version number for TLS 1.2.
(See <xref target="backward-compatibility"/> for details about backward compatibility.)</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 MUST be overwritten as described
below if negotiating TLS 1.2 or TLS 1.1, but the
remaining bytes MUST be random.
This structure is generated by the server and MUST 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
MUST 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 MUST abort the handshake with an "illegal_parameter"
alert.</t>
            </dd>
            <dt>legacy_compression_method:</dt>
            <dd>
              <t>A single byte which MUST have the value 0.</t>
            </dd>
            <dt>extensions:</dt>
            <dd>
              <t>A list of extensions.  The ServerHello MUST only include extensions
which are required to establish the cryptographic context and negotiate
the protocol version. All TLS 1.3 ServerHello messages MUST contain the
"supported_versions" extension.  Current ServerHello messages additionally contain
either 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
MUST 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 MUST set the last 8 bytes of their
Random value specially in their ServerHello.</t>
          <t>If negotiating TLS 1.2, TLS 1.3 servers MUST 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 MUST
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
MUST check that the last 8 bytes are not equal to either of these values.
TLS 1.2 clients SHOULD 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 MUST 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
MUST 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 MUST contain "supported_versions".
Additionally, it SHOULD contain the minimal set of extensions necessary for the
client to generate a correct ClientHello pair. As with the ServerHello, a
HelloRetryRequest MUST NOT 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 MUST 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 MUST 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
MUST abort the handshake with an "unexpected_message" alert.</t>
          <t>Otherwise, the client MUST 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>supported_versions (see <xref target="supported-versions"/>)</li>
            <li>cookie (see <xref target="cookie"/>)</li>
            <li>key_share (see <xref target="key-share"/>)</li>
          </ul>
          <t>A client which receives a cipher suite that was not
offered MUST abort the handshake.  Servers MUST 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 MUST 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 SHOULD NOT 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 MUST be retained in the ServerHello, and a client MUST 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>"extension_type" identifies the particular extension type.</li>
          <li>"extension_data" contains information specific to the particular
extension type.</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 MUST NOT
include data after the structure in the "extension_data" field. When
processing an extension, receivers MUST 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 MAY respond to with a
Certificate message. The server MAY also send unsolicited extensions
in the NewSessionTicket, though the client does not respond directly
to these.</t>
        <t>Implementations MUST NOT 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 MUST 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 MUST abort the handshake with an "illegal_parameter" alert.</t>
        <table anchor="extensions-list">
          <name>TLS Extensions</name>
          <thead>
            <tr>
              <th align="left">Extension</th>
              <th align="right">TLS 1.3</th>
              <th align="left"> </th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">server_name <xref target="RFC6066"/></td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">max_fragment_length <xref target="RFC6066"/></td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">status_request <xref target="RFC6066"/></td>
              <td align="right">CH, CR, CT</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">supported_groups <xref target="RFC7919"/></td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">signature_algorithms (RFC8446)</td>
              <td align="right">CH, CR</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">use_srtp <xref target="RFC5764"/></td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">heartbeat <xref target="RFC6520"/></td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">application_layer_protocol_negotiation <xref target="RFC7301"/></td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">signed_certificate_timestamp <xref target="RFC6962"/></td>
              <td align="right">CH, CR, CT</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">client_certificate_type <xref target="RFC7250"/></td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">server_certificate_type <xref target="RFC7250"/></td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">padding <xref target="RFC7685"/></td>
              <td align="right">CH</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">cached_info <xref target="RFC7924"/></td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">compress_certificate <xref target="RFC8879"/></td>
              <td align="right">CH, CR</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">record_size_limit [RFC8849]</td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">delegated_credentials [RFC-TBD]</td>
              <td align="right">CH, CR, CT</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">supported_ekt_ciphers</td>
              <td align="right"> </td>
              <td align="left">CH, EE</td>
            </tr>
            <tr>
              <td align="left">pre_shared_key [RFC 8446]</td>
              <td align="right">CH, SH</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">early_data [RFC 8446]</td>
              <td align="right">CH, EE, NST</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">psk_key_exchange_modes [RFC 8446]</td>
              <td align="right">CH</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">cookie [RFC 8446]</td>
              <td align="right">CH, HRR</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">supported_versions [RFC 8446]</td>
              <td align="right">CH, SH, HRR</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">certificate_authorities [RFC 8446]</td>
              <td align="right">CH, CR</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">oid_filters [RFC 8446]</td>
              <td align="right">CR</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">post_handshake_auth [RFC 8446]</td>
              <td align="right">CH</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">signature_algorithms_cert [RFC 8446]</td>
              <td align="right">CH, CR</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">key_share [RFC 8446]</td>
              <td align="right">CH, SH, HRR</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">transparency_info [RFC 9162]</td>
              <td align="right">CH, CR, CT</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">connection_id [RFC 9146]</td>
              <td align="right">CH, SH</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">external_id_hash [RFC 8844]</td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">external_session_id [RFC 8844]</td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">quic_transport_parameters [RFC 9001]</td>
              <td align="right">CH, EE</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">ticket_request [RFC 9149]</td>
              <td align="right">CH, EE</td>
              <td align="left"> </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 MAY appear in any order, with the exception of
"pre_shared_key" (<xref target="pre-shared-key-extension"/>) which MUST be
the last extension in the ClientHello (but can appear anywhere in
the ServerHello extensions block).
There MUST NOT 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>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.</li>
          <li>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.</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 MUST 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 MUST 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
MUST negotiate TLS 1.2 or prior as specified in
<xref target="RFC5246"/>, even if ClientHello.legacy_version is 0x0304 or later.
Servers MAY abort the handshake upon receiving a ClientHello with
legacy_version 0x0304 or later.</t>
          <t>If this extension is present in the ClientHello, servers MUST NOT use the
ClientHello.legacy_version value for version negotiation and MUST use only the
"supported_versions" extension to determine client
preferences. Servers MUST only select a version of TLS present in that
extension and MUST 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 SHOULD support TLS 1.2.
Servers MUST 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 MUST
set ServerHello.version and MUST NOT send the "supported_versions"
extension. A server which negotiates TLS 1.3 MUST respond by sending a
"supported_versions" extension containing the selected version value
(0x0304). It MUST 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 MUST check for this extension
prior to processing the rest of the ServerHello. This will require clients to
parse the ServerHello in order to read the extension.
If this extension is present, clients MUST ignore the
ServerHello.legacy_version value and MUST 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 MUST 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>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).</li>
            <li>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).</li>
          </ul>
          <t>When sending a HelloRetryRequest, the server MAY 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 MUST copy the contents of the extension received in
the HelloRetryRequest into a "cookie" extension in the new ClientHello.
Clients MUST NOT 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
MUST 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 MUST 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 MUST 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 MUST 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 SHOULD also process
this extension. Implementations which have the same policy in both cases
MAY 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="server-certificate-selection"/>) and are not defined for use in signed
TLS handshake messages, although they MAY 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 MUST be equal to the length of the output of the
digest algorithm. If the public key is carried
in an X.509 certificate, it MUST 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 MUST be equal to the length of the digest
algorithm. If the public key is carried in an X.509 certificate,
it MUST use the RSASSA-PSS OID  <xref target="RFC5756"/>. When used in certificate signatures,
the algorithm parameters MUST be DER encoded. If the corresponding
public key's parameters are present, then the parameters in the signature
MUST 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="server-certificate-selection"/>) and are not defined for use in
signed TLS handshake messages, although they MAY appear in "signature_algorithms"
and "signature_algorithms_cert" for backward compatibility with TLS 1.2.
Endpoints SHOULD NOT negotiate these algorithms
but are permitted to do so solely for backward compatibility. Clients
offering these values MUST list
them as the lowest priority (listed after all other algorithms in
SignatureSchemeList). TLS 1.3 servers MUST NOT offer a SHA-1 signed
certificate unless no valid certificate chain can be produced
without it (see <xref target="server-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 target="RFC5280"/>, Section 3.2).  A certificate that begins a certification
path MAY 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 MUST behave in accordance with the requirements of
<xref target="RFC5246"/> when negotiating that version. In particular:</t>
          <ul spacing="normal">
            <li>TLS 1.2 ClientHellos MAY omit this extension.</li>
            <li>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 MUST NOT be offered or
negotiated by any implementation. In particular, MD5 <xref target="SLOTH"/>, SHA-224, and
DSA MUST NOT be used.</li>
            <li>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 MUST be prepared to accept a signature that uses
any curve that they advertised in the "supported_groups" extension.</li>
            <li>Implementations that advertise support for RSASSA-PSS (which is mandatory in
TLS 1.3) MUST 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.</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 SHOULD
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 MAY send the "certificate_authorities" extension in the ClientHello
message. The server MAY 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, MUST 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 MUST contain all of the specified extension OIDs that the client
recognizes. For each extension OID recognized by the client, all of the
specified values MUST be present in the client certificate (but the
certificate MAY have other values as well). However, the client MUST 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 MAY at its discretion either
continue the connection without client authentication or abort the handshake
with an "unsupported_certificate" alert. Any given OID MUST NOT 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>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.</li>
            <li>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 MUST NOT be
used in the request.</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
MUST NOT send a post-handshake CertificateRequest to clients which do not
offer this extension. Servers MUST NOT 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).</t>
          <t>As of TLS 1.3, servers are permitted to send the "supported_groups"
extension to the client. Clients MUST NOT act upon any information
found in "supported_groups" prior to successful completion of the
handshake but MAY 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 SHOULD send "supported_groups" to update the client's
view of its preferences; this extension SHOULD 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 MAY send an empty client_shares list in order 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 MAY be empty if the client is requesting a HelloRetryRequest.
Each KeyShareEntry value MUST correspond to a group offered in the
"supported_groups" extension and MUST appear in the same order.  However, the
values MAY be a non-contiguous subset of the "supported_groups" extension and
MAY 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>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 MUST be
generated independently.  Clients MUST NOT offer multiple
KeyShareEntry values for the same group.  Clients MUST NOT offer any
KeyShareEntry values for groups not listed in the client's
"supported_groups" extension.  Servers MAY 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 MUST
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 MUST abort the handshake with an
"illegal_parameter" alert.  Otherwise, when sending the new ClientHello, the
client MUST 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 MUST be in the same group
as the KeyShareEntry value offered
by the client that the server has selected for the negotiated key exchange.
Servers MUST NOT send a KeyShareEntry for any group not
indicated in the client's "supported_groups" extension and
MUST NOT 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 MUST verify that the
selected NamedGroup in the ServerHello is the same as that in the HelloRetryRequest.
If this check fails, the client MUST 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^X 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 MUST 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 MUST 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 contents of the public value is the K_A
or K_B value described in Section 6 of <xref 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>In order to use PSKs, clients MUST 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 MUST 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 MUST abort the handshake.
Servers MUST NOT select a key exchange mode that is not listed by the
client. This extension also restricts the modes for use with PSK resumption.
Servers SHOULD NOT 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 MUST NOT 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 MUST NOT
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 MUST 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 MUST
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
MUST be the first PSK listed in the client's "pre_shared_key" extension.</t>
          <t>For PSKs provisioned via NewSessionTicket, a server MUST validate that
the ticket age for the selected PSK identity (computed by subtracting
ticket_age_add from PskIdentity.obfuscated_ticket_age modulo 2^32)
is within a small tolerance of the
time since the ticket was issued (see <xref target="anti-replay"/>).  If it is not,
the server SHOULD proceed with the handshake but reject 0-RTT, and
SHOULD NOT 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
MUST behave in one of three ways:</t>
          <ul spacing="normal">
            <li>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.</li>
            <li>Request that the client send another ClientHello by responding with a
HelloRetryRequest.  A client MUST NOT 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.</li>
            <li>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.</li>
          </ul>
          <t>In order to accept early data, the server MUST have selected the first
key offered in the client's "pre_shared_key" extension. In addition,
it MUST verify that the following values are the same as those
associated with the selected PSK:</t>
          <ul spacing="normal">
            <li>The selected TLS version number</li>
            <li>The selected cipher suite</li>
            <li>The selected ALPN <xref target="RFC7301"/> protocol, if any</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 MUST define their interaction with 0-RTT.</t>
          <t>If any of these checks fail, the server MUST NOT 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 MUST 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 MUST 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 MAY 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 SHOULD NOT automatically resend early data;
applications are in a better position to decide when retransmission
is appropriate. A TLS implementation MUST NOT 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
SHOULD be used, and servers MUST 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 MUST be set when the
PSK is established or default to SHA-256 if no such algorithm
is defined. The server MUST 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 (Section 3 of <xref 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, SHOULD 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) SHOULD simply be ignored. If no acceptable PSKs are
found, the server SHOULD perform a non-PSK handshake if possible.
If backward compatibility is important, client-provided, externally
established PSKs SHOULD influence cipher suite selection.</t>
          <t>Prior to accepting PSK key establishment, the server MUST validate the
corresponding binder value (see <xref target="psk-binder"/> below). If this value is
not present or does not validate, the server MUST abort the handshake.
Servers SHOULD NOT attempt to validate multiple binders; rather, they
SHOULD 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.
In order to accept PSK key establishment, the
server sends a "pre_shared_key" extension indicating the selected
identity.</t>
          <t>Clients MUST 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 MUST abort the handshake with an
"illegal_parameter" alert.</t>
          <t>If the server supplies an "early_data" extension, the client MUST
verify that the server's selected_identity is 0. If any
other value is returned, the client MUST abort the handshake
with an "illegal_parameter" alert.</t>
          <t>The "pre_shared_key" extension MUST be the last extension in the
ClientHello (this facilitates implementation as described
below). Servers MUST 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 MUST NOT 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^32.
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 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 MUST 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 MUST 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
MUST check EncryptedExtensions for the presence of any forbidden
extensions and if any are found MUST abort the handshake with an
"illegal_parameter" alert.</t>
          <t>Structure of this message:</t>
          <artwork><![CDATA[
   struct {
       Extension extensions<0..2^16-1>;
   } EncryptedExtensions;
]]></artwork>
          <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 MAY optionally
request a certificate from the client. This message, if sent, MUST
follow EncryptedExtensions.</t>
          <t>Structure of this message:</t>
          <artwork><![CDATA[
   struct {
       opaque certificate_request_context<0..2^8-1>;
       Extension extensions<0..2^16-1>;
   } CertificateRequest;
]]></artwork>
          <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 MUST be unique within the scope
of this connection (thus preventing replay of client
CertificateVerify messages). This field SHALL 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 SHOULD
make the context unpredictable to the client (e.g., by
randomly generating it) in order 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 MUST be specified, and other extensions may optionally be
included if defined for this message.
Clients MUST 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 MUST NOT send the
CertificateRequest message in the main handshake, though they
MAY 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
MUST NOT send the CertificateRequest message either in the main handshake
or request post-handshake authentication.
<xref target="RFC8773"/> provides an extension to permit this,
but has not received the level of analysis as 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.</t>
        <t>The computations for the Authentication messages all uniformly
take the following inputs:</t>
        <ul spacing="normal">
          <li>The certificate and signing key to be used.</li>
          <li>A Handshake Context consisting of the list of messages to be
included in the transcript hash.</li>
          <li>A Base Key to be used to compute a MAC key.</li>
        </ul>
        <t>Based on these inputs, the messages then contain:</t>
        <dl>
          <dt>Certificate</dt>
          <dd>
            <t>The certificate to be used for authentication, and any
supporting certificates in the chain. Note that certificate-based
client authentication is not available in PSK handshake flows
(including 0-RTT).</t>
          </dd>
          <dt>CertificateVerify:</dt>
          <dd>
            <t>A signature over the value Transcript-Hash(Handshake Context, Certificate)</t>
          </dd>
          <dt>Finished:</dt>
          <dd>
            <t>A MAC over the value Transcript-Hash(Handshake Context, Certificate, CertificateVerify)
using a MAC key derived from the Base Key.</t>
          </dd>
        </dl>
        <t>The following table defines the Handshake Context and MAC Base Key
for each scenario:</t>
        <table anchor="hs-ctx-and-keys">
          <name>Authentication Inputs</name>
          <thead>
            <tr>
              <th align="left">Mode</th>
              <th align="left">Handshake Context</th>
              <th align="left">Base Key</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Server</td>
              <td align="left">ClientHello ... later of EncryptedExtensions/CertificateRequest</td>
              <td align="left">server_handshake_traffic_secret</td>
            </tr>
            <tr>
              <td align="left">Client</td>
              <td align="left">ClientHello ... later of server Finished/EndOfEarlyData</td>
              <td align="left">client_handshake_traffic_secret</td>
            </tr>
            <tr>
              <td align="left">Post-Handshake</td>
              <td align="left">ClientHello ... client Finished + CertificateRequest</td>
              <td align="left">client_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, 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 MUST 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 MUST 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
MUST send a Certificate message containing no certificates (i.e., with
the "certificate_list" field having length 0).  A Finished message MUST
be sent regardless of whether the Certificate message is empty.</t>
          <t>Structure of this message:</t>
          <artwork><![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;
]]></artwork>
          <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 SHALL 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 MUST correspond to ones from the ClientHello message.
Extensions in the Certificate message from the client MUST correspond to
extensions in the CertificateRequest message from the server.
If an extension applies to the entire chain, it SHOULD 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 MUST come in the first CertificateEntry in the list.  Each
following certificate SHOULD directly certify the one immediately preceding it.
Because certificate validation requires that trust anchors be
distributed independently, a certificate that specifies a trust anchor
MAY 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 SHOULD be prepared to
handle potentially extraneous certificates and arbitrary orderings from any TLS
version, with the exception of the end-entity certificate which MUST be first.</t>
          <t>If the RawPublicKey certificate type was negotiated, then the
certificate_list MUST contain no more than one CertificateEntry, which
contains an ASN1_subjectPublicKeyInfo value as defined in <xref target="RFC7250"/>,
Section 3.</t>
          <t>The OpenPGP certificate type <xref target="RFC6091"/> MUST NOT be used with TLS 1.3.</t>
          <t>The server's certificate_list MUST 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 MUST 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
MUST NOT act upon its presence or information in it when processing ClientHello messages; in particular, they MUST NOT send the status_request_v2 extension in the
EncryptedExtensions, CertificateRequest, or Certificate messages.
TLS 1.3 servers MUST be able to process ClientHello messages that include it,
as it MAY be sent by clients that wish to use it in earlier protocol versions.</t>
            <t>A server MAY 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 MUST 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="server-certificate-selection">
            <name>Server Certificate Selection</name>
            <t>The following rules apply to the certificates sent by the server:</t>
            <ul spacing="normal">
              <li>The certificate type MUST be X.509v3 <xref target="RFC5280"/>, unless explicitly negotiated
otherwise (e.g., <xref target="RFC7250"/>).</li>
              <li>The end-entity certificate MUST allow the key to be used for signing with
a signature scheme indicated in the client's "signature_algorithms"
extension (see <xref target="signature-algorithms"/>). That is, the digitalSignature bit
MUST be set if the Key Usage extension is present, and the public key (with
associated restrictions) MUST be compatible with some supported signature
scheme.</li>
              <li>The "server_name" <xref target="RFC6066"/> and "certificate_authorities" extensions are used to
guide certificate selection. As servers MAY require the presence of the "server_name"
extension, clients SHOULD send this extension when the server is identified by name.</li>
            </ul>
            <t>All certificates provided by the server MUST be signed by a
signature algorithm advertised by the client, 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 MAY be signed with any algorithm.</t>
            <t>If the server cannot produce a certificate chain that is signed only via the
indicated supported algorithms, then it SHOULD continue the handshake by sending
the client a certificate chain of its choice that may include algorithms
that are not known to be supported by the client.
This fallback chain SHOULD NOT use the deprecated SHA-1 hash algorithm in general,
but MAY do so if the client's advertisement permits it,
and MUST NOT do so otherwise.</t>
            <t>If the client cannot construct an acceptable chain using the provided
certificates and decides to abort the handshake, then it MUST 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 server 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="client-certificate-selection">
            <name>Client Certificate Selection</name>
            <t>The following rules apply to certificates sent by the client:</t>
            <ul spacing="normal">
              <li>The certificate type MUST be X.509v3 <xref target="RFC5280"/>, unless explicitly negotiated
otherwise (e.g., <xref target="RFC7250"/>).</li>
              <li>If the "certificate_authorities" extension in the CertificateRequest
message was present, at least one of the certificates in the certificate
chain SHOULD be issued by one of the listed CAs.</li>
              <li>The certificates MUST be signed using an acceptable signature
algorithm, as described in <xref target="certificate-request"/>.  Note that this
relaxes the constraints on certificate-signing algorithms found in
prior versions of TLS.</li>
              <li>If the CertificateRequest message contained a non-empty "oid_filters"
extension, the end-entity certificate MUST match the extension OIDs
that are recognized by the client, as described in <xref target="oid-filters"/>.</li>
            </ul>
          </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 MUST 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 MAY 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 MAY 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 MUST abort the
handshake with a "bad_certificate" alert.  SHA-1 is deprecated and it
is RECOMMENDED 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 RECOMMENDED 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
MAY 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 MUST send this message when authenticating via a certificate.
Clients MUST send this message whenever authenticating via a certificate (i.e., when
the Certificate message is non-empty). When sent, this message MUST appear immediately
after the Certificate message and immediately prior to the Finished message.</t>
          <t>Structure of this message:</t>
          <artwork><![CDATA[
   struct {
       SignatureScheme algorithm;
       opaque signature<0..2^16-1>;
   } CertificateVerify;
]]></artwork>
          <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>A string that consists of octet 32 (0x20) repeated 64 times</li>
            <li>The context string (defined below)</li>
            <li>A single 0 byte which serves as the separator</li>
            <li>The content to be signed</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>The content covered by the digital signature</li>
            <li>The private signing key corresponding to the certificate sent in the
previous message</li>
          </ul>
          <t>If the CertificateVerify message is sent by a server, the signature
algorithm MUST 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
MUST 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 MUST be compatible with the key
in the sender's end-entity certificate. RSA signatures MUST use an
RSASSA-PSS algorithm, regardless of whether RSASSA-PKCS1-v1_5 algorithms
appear in "signature_algorithms". The SHA-1 algorithm MUST NOT 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 MUST verify the signature field.
The verification process takes as input:</t>
          <ul spacing="normal">
            <li>The content covered by the digital signature</li>
            <li>The public key contained in the end-entity certificate found in the
associated Certificate message</li>
            <li>The digital signature received in the signature field of the
CertificateVerify message</li>
          </ul>
          <t>If the verification fails, the receiver MUST 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 MUST verify that the contents are
correct and if incorrect MUST 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>Clients sending 0-RTT data as described in <xref target="early-data-indication"/>.</li>
            <li>Servers MAY 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).</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>
          <artwork><![CDATA[
finished_key =
    HKDF-Expand-Label(BaseKey, "finished", "", Hash.length)
]]></artwork>
          <t>Structure of this message:</t>
          <artwork><![CDATA[
   struct {
       opaque verify_data[Hash.length];
   } Finished;
]]></artwork>
          <t>The verify_data value is computed as follows:</t>
          <artwork><![CDATA[
   verify_data =
       HMAC(finished_key,
            Transcript-Hash(Handshake Context,
                            Certificate*, CertificateVerify*))

   * Only included if present.
]]></artwork>
          <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 MUST 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 MUST send an
EndOfEarlyData message after receiving the server Finished.  If the server does
not send an "early_data" extension in EncryptedExtensions, then the client MUST NOT 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 MUST NOT send this message, and clients receiving it
MUST 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>At any time after the server has received the client Finished message,
it MAY 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 MAY 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 MUST silently ignore this message.
Resumption MAY be done while the
original connection is still open. Servers MAY 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 in order to encapsulate the additional client
authentication state. Multiple tickets are useful for clients
for a variety of purposes, including:</t>
          <ul spacing="normal">
            <li>Opening multiple parallel HTTP connections.</li>
            <li>Performing connection racing across interfaces and address families
via (for example) Happy Eyeballs <xref target="RFC8305"/> or related techniques.</li>
          </ul>
          <t>Any ticket MUST 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 MUST only resume if the new SNI value is valid for the server
certificate presented in the original session, and SHOULD 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 MAY resume with a different
SNI value.</t>
          <t>On resumption, if reporting an SNI value to the calling application,
implementations MUST 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 MAY 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 MUST NOT use any value greater than 604800 seconds (7 days).
The value of zero indicates that the ticket should be discarded
immediately. Clients MUST NOT use tickets for longer than
7 days after issuance, regardless of the ticket_lifetime, and MAY delete tickets
earlier based on local policy. A server MAY 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^32 to
obtain the value that is transmitted by the client.
The server MUST 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 MAY 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 MUST 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
SHOULD 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 SHOULD NOT
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>
          <artwork><![CDATA[
    HKDF-Expand-Label(resumption_secret,
                      "resumption", ticket_nonce, Hash.length)
]]></artwork>
          <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 RECOMMENDED
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 MAY request certificate-based client authentication at any time
after the handshake has completed by sending a CertificateRequest message. The
client MUST respond with the appropriate Authentication messages (see
<xref target="authentication-messages"/>). If the client chooses to authenticate, it MUST
send Certificate, CertificateVerify, and Finished. If it declines, it MUST send
a Certificate message containing no certificates followed by Finished.
All of the client's messages for a given response
MUST appear consecutively on the wire with no intervening messages of other types.</t>
          <t>A client that receives a CertificateRequest message without having sent
the "post_handshake_auth" extension MUST send an "unexpected_message" fatal
alert.</t>
          <t>Note: Because certificate-based client authentication could involve prompting the user, servers
MUST 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 MAY 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
MUST terminate the connection with an "unexpected_message" alert.
After sending a KeyUpdate message, the sender SHALL 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 MUST 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 MUST
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 MUST
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. 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, 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 MUST encrypt their KeyUpdate
messages with the old keys. Additionally, both sides MUST 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^64 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.  In order
to provide an extra margin of security, sending implementations MUST
NOT allow the epoch -- and hence the number of key updates --
to exceed 2^48-1.  In order to allow this value to be changed later
-- for instance for ciphers with more than 128-bit keys --
receiving implementations MUST NOT enforce this
rule.  If a sending implementation receives a KeyUpdate with
request_update set to "update_requested", it MUST NOT send its own
KeyUpdate if that would cause it to exceed these limits and SHOULD
instead ignore the "update_requested" flag. This may result in
an eventual need to terminate the connection when the
limits in <xref target="limits-on-key-usage"/> are reached.</t>
        </section>
      </section>
    </section>
    <section anchor="record-protocol">
      <name>Record Protocol</name>
      <t>The TLS record protocol takes messages to be transmitted, fragments
the data into manageable blocks, protects the records, and transmits
the result. Received data is verified, decrypted, reassembled, and
then delivered to higher-level clients.</t>
      <t>TLS records are typed, which allows multiple higher-level protocols to
be multiplexed over the same record layer. This document specifies
four content types: handshake, application_data, alert, and
change_cipher_spec.
The change_cipher_spec record is used only for compatibility purposes
(see <xref target="middlebox"/>).</t>
      <t>An implementation may receive an unencrypted record of type
change_cipher_spec consisting of the single byte value 0x01 at any
time after the first ClientHello message has been sent or received and before
the peer's Finished message has been received and MUST 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 MUST 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 MUST be treated as an unexpected record type (though stateless
servers may not be able to distinguish these cases from allowed cases).</t>
      <t>Implementations MUST NOT send record types not defined in this
document unless negotiated by some extension.  If a TLS implementation
receives an unexpected record type, it MUST 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^14 bytes or less. Message
boundaries are handled differently depending on the underlying
ContentType. Any future content types MUST specify appropriate
rules.
Note that these rules are stricter than what was enforced in TLS 1.2.</t>
        <t>Handshake messages MAY be coalesced into a single TLSPlaintext
record or fragmented across several records, provided that:</t>
        <ul spacing="normal">
          <li>Handshake messages MUST NOT be interleaved with other record
types. That is, if a handshake message is split over two or more
records, there MUST NOT be any other records between them.</li>
          <li>Handshake messages MUST NOT span key changes. Implementations MUST verify that
all messages immediately preceding a key change align with a record boundary;
if not, then they MUST terminate the connection with an "unexpected_message"
alert. Because the ClientHello, EndOfEarlyData, ServerHello, Finished, and
KeyUpdate messages can immediately precede a key change, implementations MUST
send these messages in alignment with a record boundary.</li>
        </ul>
        <t>Implementations MUST NOT send zero-length fragments of Handshake
types, even if those fragments contain padding.</t>
        <t>Alert messages (<xref target="alert-protocol"/>) MUST NOT be fragmented across
records, and multiple alert messages MUST NOT be coalesced into a
single TLSPlaintext record. In other words, a record with an Alert
type MUST 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 MAY be sent, as they are potentially
useful as a traffic analysis countermeasure.  Application Data fragments
MAY 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>MUST 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
MAY also be 0x0301 for compatibility purposes.
This field is deprecated and MUST 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 MUST NOT exceed 2^14 bytes. An endpoint that receives a record
that exceeds this length MUST 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. In order to maximize backward
compatibility, a record containing an initial ClientHello SHOULD have version
0x0301 (reflecting TLS 1.0) and a record containing a second ClientHello or
a ServerHello MUST 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 MUST NOT 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 MUST NOT exceed 2^14 + 256 bytes.
An endpoint that receives a record that exceeds this length MUST
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 Section 2.1
of <xref 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>In order 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 MUST terminate the connection
with a "bad_record_mac" alert.</t>
        <t>An AEAD algorithm used in TLS 1.3 MUST NOT produce an expansion greater than
255 octets. An endpoint that receives a record from its peer with
TLSCiphertext.length larger than 2^14 + 256 octets MUST terminate
the connection with a "record_overflow" alert.
This limit is derived from the maximum TLSInnerPlaintext length of
2^14 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 MUST 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 MUST 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 target="RFC5116"/>, Section 4).
An AEAD algorithm where N_MAX is less than 8 bytes MUST NOT be used with TLS.
The per-record nonce for the AEAD construction is formed as follows:</t>
        <ol spacing="normal" type="1"><li>The 64-bit record sequence number is encoded in network byte order
and padded to the left with zeros to iv_length.</li>
          <li>The padded sequence number is XORed with either the static client_write_iv
or server_write_iv (depending on the role).</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 MAY 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 MUST 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 MUST NOT send Handshake and Alert records
that have a zero-length TLSInnerPlaintext.content; if such a message
is received, the receiving implementation MUST 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 MUST 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 MUST 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 MUST NOT exceed 2^14 + 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 MUST
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
and therefore implementations MUST not exceed the limits
when sending early data. Receiving implementations SHOULD NOT enforce
these limits, as future analyses may result in updated values.</t>
        <t>For AES-GCM, up to 2^24.5 full-size records (about 24 million)
may be encrypted on a given connection while keeping a safety
margin of approximately 2^-57 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 SHOULD
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 SHOULD indicate an error to the application and
MUST NOT allow any further data to be sent or received on the
connection.  Servers and clients MUST forget the secret values and
keys established in failed connections, with the exception of
the PSKs associated with session tickets, which SHOULD be discarded if
possible.</t>
      <t>All the alerts listed in <xref target="error-alerts"/> MUST be sent with
AlertLevel=fatal and MUST be treated as error alerts when received
regardless of the AlertLevel in the
message. Unknown Alert types MUST 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) MUST 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) MUST 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 MUST be ignored. This alert MUST 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
MUST be followed by a "close_notify". This alert generally
has AlertLevel=warning. Receiving implementations SHOULD
continue to read data from the peer until a "close_notify" is received,
though they MAY log or otherwise record them.</t>
          </dd>
        </dl>
        <t>Either party MAY initiate a close of its write side of the connection by
sending a "close_notify" alert. Any data received after a "close_notify" alert has
been received MUST be ignored. 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 MUST 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>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 MUST 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 MUST immediately close the connection.</t>
        <t>Whenever an implementation encounters a fatal error condition, it
SHOULD send an appropriate fatal alert and MUST 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 SHOULD 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
MUST 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 SHOULD 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^14 + 256 bytes, or a record decrypted to a TLSPlaintext record
with more than 2^14 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
known to be prohibited for inclusion in the given handshake message, or including
any extensions in a ServerHello or Certificate not first offered in the
corresponding ClientHello or CertificateRequest.</t>
          </dd>
          <dt>unrecognized_name:</dt>
          <dd>
            <t>Sent by servers when no server exists identified by the name
provided by the client via the "server_name" extension
(see <xref target="RFC6066"/>).</t>
          </dd>
          <dt>bad_certificate_status_response:</dt>
          <dd>
            <t>Sent by clients when an invalid or unacceptable OCSP response is
provided by the server via the "status_request" extension
(see <xref target="RFC6066"/>).</t>
          </dd>
          <dt>unknown_psk_identity:</dt>
          <dd>
            <t>Sent by servers when PSK key establishment is desired but no
 acceptable PSK identity is provided by the client. Sending this alert
 is OPTIONAL; servers MAY 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 SHOULD 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>
        <artwork><![CDATA[
    HKDF-Expand-Label(Secret, Label, Context, Length) =
         HKDF-Expand(Secret, HkdfLabel, Length)

    Where HkdfLabel is specified as:

    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)
]]></artwork>
        <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>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>PSK (a pre-shared key established externally or derived from
the resumption_secret value from a previous connection)</li>
          <li>(EC)DHE shared secret (<xref target="ecdhe-shared-secret-calculation"/>)</li>
        </ul>
        <t>This produces a full key derivation schedule shown in the diagram below.
In this diagram, the following formatting conventions apply:</t>
        <ul spacing="normal">
          <li>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.</li>
          <li>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.</li>
          <li>"0" indicates a string of Hash.length bytes set to zero.</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>
        <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>
        <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 SHOULD 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>
        <artwork><![CDATA[
    application_traffic_secret_N+1 =
        HKDF-Expand-Label(application_traffic_secret_N,
                          "traffic upd", "", Hash.length)
]]></artwork>
        <t>Once client_/server_application_traffic_secret_N+1 and its associated
traffic keys have been computed, implementations SHOULD 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>A secret value</li>
          <li>A purpose value indicating the specific value being generated</li>
          <li>The length of the key being generated</li>
        </ul>
        <t>The traffic keying material is generated from an input traffic secret value using:</t>
        <artwork><![CDATA[
    [sender]_write_key = HKDF-Expand-Label(Secret, "key", "", key_length)
    [sender]_write_iv  = HKDF-Expand-Label(Secret, "iv", "", iv_length)
]]></artwork>
        <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="DH76"/> 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 parameter
and key generation as well as the shared secret calculation) are
performed according to <xref target="IEEE1363"/> using the ECKAS-DH1 scheme with the identity
map as the key derivation function (KDF), so that the shared secret is the
x-coordinate of the ECDH shared secret elliptic curve point represented
as an octet string.  Note that this octet string ("Z" in IEEE 1363 terminology)
as output by FE2OSP (the Field Element to Octet String Conversion
Primitive) has constant length for any given field; leading zeros
found in this octet string MUST NOT be truncated.</t>
          <t>(Note that this use of the identity KDF is a technicality.  The
complete picture is that ECDH is employed with a non-trivial KDF
because TLS does not directly use this secret for anything
other than for computing other secrets.)</t>
          <t>For X25519 and X448, the ECDH calculations are as follows:</t>
          <ul spacing="normal">
            <li>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).</li>
            <li>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.</li>
          </ul>
          <t>For these curves, implementations SHOULD use the approach specified
in <xref target="RFC7748"/> to calculate the Diffie-Hellman shared secret.
Implementations MUST check whether the computed Diffie-Hellman
shared secret is the all-zero value and abort if so, as described in
Section 6 of <xref target="RFC7748"/>. If implementors use an alternative
implementation of these elliptic curves, they SHOULD perform the
additional checks specified in Section 7 of <xref 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 MUST 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 RECOMMENDED; 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 MUST NOT define a use of exporters that permit both an empty
context and no context with the same label. New uses of exporters SHOULD 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 Section 4
of <xref 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>Network attackers who mount a replay attack by simply duplicating a
flight of 0-RTT data.</li>
        <li>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.</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 SHOULD 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 MUST 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 MUST
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 SHOULD limit 0-RTT replays further when feasible.</t>
      <t>The second class of attack cannot be prevented at the TLS layer and
MUST 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>In order 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 MAY also implement data stores with false positives, such as
Bloom filters, in which case they MUST respond to apparent replay by
rejecting 0-RTT but MUST NOT abort the handshake.</t>
        <t>The server MUST 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 SHOULD
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>In order to implement this mechanism, a server needs to store the time
that the server generated the session ticket, offset by an estimate of
the round-trip time between client and server. I.e.,</t>
        <artwork><![CDATA[
    adjusted_creation_time = creation_time + estimated_RTT
]]></artwork>
        <t>This value can be encoded in the ticket, thus avoiding the need to
keep state for each outstanding ticket. The server can determine the
client's view of the age of the ticket by subtracting the ticket's
"ticket_age_add" value from the "obfuscated_ticket_age" parameter in
the client's "pre_shared_key" extension. The server can determine the
expected_arrival_time of the ClientHello as:</t>
        <artwork><![CDATA[
    expected_arrival_time = adjusted_creation_time + clients_ticket_age
]]></artwork>
        <t>When a new ClientHello is received, the expected_arrival_time is then
compared against the current server wall clock time and if they differ
by more than a certain amount, 0-RTT is rejected, though the 1-RTT
handshake can be allowed to complete.</t>
        <t>There are several potential sources of error that might cause
mismatches between the expected_arrival_time and the measured
time. Variations in client and server clock
rates are likely to be minimal, though potentially the absolute
times may be off by large values.
Network propagation delays are the most likely causes of
a mismatch in legitimate values for elapsed time.  Both the
NewSessionTicket and ClientHello messages might be retransmitted and
therefore delayed, which might be hidden by TCP. For clients
on the Internet, this implies windows
on the order of ten seconds to account for errors in clocks and
variations in measurements; other deployment scenarios
may have different needs. Clock skew distributions are not
symmetric, so the optimal tradeoff may involve an asymmetric range
of permissible mismatch values.</t>
        <t>Note that freshness checking alone is not sufficient to prevent
replays because it does not detect them during the error window,
which -- depending on bandwidth and system capacity -- could include
billions of replays in real-world settings.  In addition, this
freshness checking is only done at the time the ClientHello is
received, and not when subsequent early Application Data records are
received. After early data is accepted, records may continue to be
streamed to the server over a longer time period.</t>
      </section>
    </section>
    <section anchor="compliance-requirements">
      <name>Compliance Requirements</name>
      <section anchor="mandatory-to-implement-cipher-suites">
        <name>Mandatory-to-Implement Cipher Suites</name>
        <t>In the absence of an application profile standard specifying otherwise:</t>
        <t>A TLS-compliant application MUST implement the TLS_AES_128_GCM_SHA256 <xref target="GCM"/>
cipher suite and SHOULD 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 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 <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 MUST implement the following TLS extensions:</t>
        <ul spacing="normal">
          <li>Supported Versions     ("supported_versions"; <xref target="supported-versions"/>)</li>
          <li>Cookie                 ("cookie"; <xref target="cookie"/>)</li>
          <li>Signature Algorithms   ("signature_algorithms"; <xref target="signature-algorithms"/>)</li>
          <li>Signature Algorithms Certificate  ("signature_algorithms_cert"; <xref target="signature-algorithms"/>)</li>
          <li>Negotiated Groups      ("supported_groups"; <xref target="supported-groups"/>)</li>
          <li>Key Share              ("key_share"; <xref target="key-share"/>)</li>
          <li>Server Name Indication ("server_name"; Section 3 of <xref target="RFC6066"/>)</li>
        </ul>
        <t>All implementations MUST send and use these extensions when offering
applicable features:</t>
        <ul spacing="normal">
          <li>"supported_versions"   is REQUIRED for all ClientHello, ServerHello, and HelloRetryRequest messages.</li>
          <li>"signature_algorithms" is REQUIRED for certificate authentication.</li>
          <li>"supported_groups"     is REQUIRED for ClientHello messages using
                        DHE or ECDHE key exchange.</li>
          <li>"key_share"            is REQUIRED for DHE or ECDHE key exchange.</li>
          <li>"pre_shared_key"       is REQUIRED for PSK key agreement.</li>
          <li>"psk_key_exchange_modes" is REQUIRED for PSK key agreement.</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 MUST meet the following requirements:</t>
        <ul spacing="normal">
          <li>If not containing a "pre_shared_key" extension, it MUST contain both
a "signature_algorithms" extension and a "supported_groups" extension.</li>
          <li>If containing a "supported_groups" extension, it MUST also contain a
"key_share" extension, and vice versa. An empty KeyShare.client_shares
list is permitted.</li>
        </ul>
        <t>Servers receiving a ClientHello which does not conform to these
requirements MUST abort the handshake with a "missing_extension"
alert.</t>
        <t>Additionally, all implementations MUST support the use of the "server_name"
extension with applications capable of using it.
Servers MAY require clients to send a valid "server_name" extension.
Servers requiring this extension SHOULD 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 MUST
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 MAY continue to
support older parameters, which would allow it to interoperate with
older endpoints.</t>
        <t>For this to work, implementations MUST correctly handle extensible fields:</t>
        <ul spacing="normal">
          <li>A client sending a ClientHello MUST support all parameters advertised in it.
Otherwise, the server may fail to interoperate by selecting one of those
parameters.</li>
          <li>A server receiving a ClientHello MUST 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 MUST also ignore all unrecognized
extensions.</li>
          <li>
            <t>A middlebox which terminates a TLS connection MUST 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 MUST generate its own ClientHello
containing only parameters it understands, and it MUST 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 MUST
NOT process any messages beyond that ClientHello. It MUST 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 MAY 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"/> and <xref target="RFC8447"/> this document are described in <xref target="bis-changes"/>.
IANA has updated these to reference this document.</t>
      <t>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>TLS ContentType registry: Future values are allocated via
Standards Action <xref target="RFC8126"/>.</li>
        <li>TLS Alerts registry: Future values are allocated via Standards
Action <xref target="RFC8126"/>. IANA [is requested to/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.</li>
        <li>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.</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>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".</li>
        <li>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.</li>
      </ul>
      <t>This document updates an entry in the TLS Certificate Types registry
originally created in <xref target="RFC6091"/> and updated in <xref target="RFC8447"/>.  IANA has
updated the entry for value 1 to have the name "OpenPGP_RESERVED",
"Recommended" value "N", and comment "Used in TLS versions prior
to 1.3."  IANA has updated the entry for value 0 to have the name
"X509", "Recommended" value "Y", and comment "Was X.509 before TLS 1.3".</t>
      <t>This document updates an entry in the TLS Certificate Status Types
registry originally created in <xref target="RFC6961"/>.  IANA has updated the entry
for value 2 to have the name "ocsp_multi_RESERVED" and comment "Used
in TLS versions prior to 1.3".</t>
      <t>This document updates two entries in the TLS Supported Groups
registry (created under a different name by <xref target="RFC4492"/>; now maintained
by <xref target="RFC8422"/>) and updated by <xref target="RFC7919"/> and <xref target="RFC8447"/>.  The entries
for values 29 and 30 (x25519 and x448) have been updated to also
refer to this document.</t>
      <t>In addition, this document defines two new registries that are maintained
by IANA:</t>
      <ul spacing="normal">
        <li>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 REQUIRED
 for a Y-&gt;N transition.</li>
        <li>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 REQUIRED
for a Y-&gt;N transition.</li>
      </ul>
      <section anchor="bis-changes">
        <name>Changes for this RFC</name>
        <t>IANA [shall update/has updated] the TLS registries to reference this document.</t>
        <t>IANA [shall rename/has renamed] the "extended_master_secret" value
in the TLS ExtensionType Values registry to "extended_main_secret".</t>
        <t>IANA [shall create/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>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2104">
          <front>
            <title>HMAC: Keyed-Hashing for Message Authentication</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="M. Bellare" initials="M." surname="Bellare"/>
            <author fullname="R. Canetti" initials="R." surname="Canetti"/>
            <date month="February" year="1997"/>
            <abstract>
              <t>This document describes HMAC, a mechanism for message authentication using cryptographic hash functions. HMAC can be used with any iterative cryptographic hash function, e.g., MD5, SHA-1, in combination with a secret shared key. The cryptographic strength of HMAC depends on the properties of the underlying hash function. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2104"/>
          <seriesInfo name="DOI" value="10.17487/RFC2104"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications. The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5869"/>
          <seriesInfo name="DOI" value="10.17487/RFC5869"/>
        </reference>
        <reference anchor="RFC6066">
          <front>
            <title>Transport Layer Security (TLS) Extensions: Extension Definitions</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <date month="January" year="2011"/>
            <abstract>
              <t>This document provides specifications for existing TLS extensions. It is a companion document for RFC 5246, "The Transport Layer Security (TLS) Protocol Version 1.2". The extensions specified are server_name, max_fragment_length, client_certificate_url, trusted_ca_keys, truncated_hmac, and status_request. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6066"/>
          <seriesInfo name="DOI" value="10.17487/RFC6066"/>
        </reference>
        <reference anchor="RFC6655">
          <front>
            <title>AES-CCM Cipher Suites for Transport Layer Security (TLS)</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="D. Bailey" initials="D." surname="Bailey"/>
            <date month="July" year="2012"/>
            <abstract>
              <t>This memo describes the use of the Advanced Encryption Standard (AES) in the Counter with Cipher Block Chaining - Message Authentication Code (CBC-MAC) Mode (CCM) of operation within Transport Layer Security (TLS) and Datagram TLS (DTLS) to provide confidentiality and data origin authentication. The AES-CCM algorithm is amenable to compact implementations, making it suitable for constrained environments. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6655"/>
          <seriesInfo name="DOI" value="10.17487/RFC6655"/>
        </reference>
        <reference anchor="RFC8439">
          <front>
            <title>ChaCha20 and Poly1305 for IETF Protocols</title>
            <author fullname="Y. Nir" initials="Y." surname="Nir"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <date month="June" year="2018"/>
            <abstract>
              <t>This document defines the ChaCha20 stream cipher as well as the use of the Poly1305 authenticator, both as stand-alone algorithms and as a "combined mode", or Authenticated Encryption with Associated Data (AEAD) algorithm.</t>
              <t>RFC 7539, the predecessor of this document, was meant to serve as a stable reference and an implementation guide. It was a product of the Crypto Forum Research Group (CFRG). This document merges the errata filed against RFC 7539 and adds a little text to the Security Considerations section.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8439"/>
          <seriesInfo name="DOI" value="10.17487/RFC8439"/>
        </reference>
        <reference anchor="RFC7627">
          <front>
            <title>Transport Layer Security (TLS) Session Hash and Extended Master Secret Extension</title>
            <author fullname="K. Bhargavan" initials="K." role="editor" surname="Bhargavan"/>
            <author fullname="A. Delignat-Lavaud" initials="A." surname="Delignat-Lavaud"/>
            <author fullname="A. Pironti" initials="A." surname="Pironti"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="M. Ray" initials="M." surname="Ray"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>The Transport Layer Security (TLS) master secret is not cryptographically bound to important session parameters such as the server certificate. Consequently, it is possible for an active attacker to set up two sessions, one with a client and another with a server, such that the master secrets on the two sessions are the same. Thereafter, any mechanism that relies on the master secret for authentication, including session resumption, becomes vulnerable to a man-in-the-middle attack, where the attacker can simply forward messages back and forth between the client and server. This specification defines a TLS extension that contextually binds the master secret to a log of the full handshake that computes it, thus preventing such attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7627"/>
          <seriesInfo name="DOI" value="10.17487/RFC7627"/>
        </reference>
        <reference anchor="RFC7748">
          <front>
            <title>Elliptic Curves for Security</title>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="M. Hamburg" initials="M." surname="Hamburg"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="January" year="2016"/>
            <abstract>
              <t>This memo specifies two elliptic curves over prime fields that offer a high level of practical security in cryptographic applications, including Transport Layer Security (TLS). These curves are intended to operate at the ~128-bit and ~224-bit security level, respectively, and are generated deterministically based on a list of required properties.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7748"/>
          <seriesInfo name="DOI" value="10.17487/RFC7748"/>
        </reference>
        <reference anchor="RFC7919">
          <front>
            <title>Negotiated Finite Field Diffie-Hellman Ephemeral Parameters for Transport Layer Security (TLS)</title>
            <author fullname="D. Gillmor" initials="D." surname="Gillmor"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>Traditional finite-field-based Diffie-Hellman (DH) key exchange during the Transport Layer Security (TLS) handshake suffers from a number of security, interoperability, and efficiency shortcomings. These shortcomings arise from lack of clarity about which DH group parameters TLS servers should offer and clients should accept. This document offers a solution to these shortcomings for compatible peers by using a section of the TLS "Supported Groups Registry" (renamed from "EC Named Curve Registry" by this document) to establish common finite field DH parameters with known structure and a mechanism for peers to negotiate support for these groups.</t>
              <t>This document updates TLS versions 1.0 (RFC 2246), 1.1 (RFC 4346), and 1.2 (RFC 5246), as well as the TLS Elliptic Curve Cryptography (ECC) extensions (RFC 4492).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7919"/>
          <seriesInfo name="DOI" value="10.17487/RFC7919"/>
        </reference>
        <reference anchor="RFC8032">
          <front>
            <title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="I. Liusvaara" initials="I." surname="Liusvaara"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document describes elliptic curve signature scheme Edwards-curve Digital Signature Algorithm (EdDSA). The algorithm is instantiated with recommended parameters for the edwards25519 and edwards448 curves. An example implementation and test vectors are provided.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8032"/>
          <seriesInfo name="DOI" value="10.17487/RFC8032"/>
        </reference>
        <reference anchor="RFC8017">
          <front>
            <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson"/>
            <author fullname="A. Rusch" initials="A." surname="Rusch"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t>
              <t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series. By publishing this RFC, change control is transferred to the IETF.</t>
              <t>This document also obsoletes RFC 3447.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8017"/>
          <seriesInfo name="DOI" value="10.17487/RFC8017"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC5116">
          <front>
            <title>An Interface and Algorithms for Authenticated Encryption</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms. The interface and registry can be used as an application-independent set of cryptoalgorithm suites. This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5116"/>
          <seriesInfo name="DOI" value="10.17487/RFC5116"/>
        </reference>
        <reference anchor="X690">
          <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="ISO/IEC 8824-1:2021" value=""/>
        </reference>
        <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"/>
        </reference>
        <reference anchor="GCM">
          <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="Special Publication 800-38D"/>
        </reference>
        <reference anchor="RFC8996">
          <front>
            <title>Deprecating TLS 1.0 and TLS 1.1</title>
            <author fullname="K. Moriarty" initials="K." surname="Moriarty">
              <organization/>
            </author>
            <author fullname="S. Farrell" initials="S." surname="Farrell">
              <organization/>
            </author>
            <date month="March" year="2021"/>
            <abstract>
              <t>This document formally deprecates Transport Layer Security (TLS) versions 1.0 (RFC 2246) and 1.1 (RFC 4346). Accordingly, those documents have been moved to Historic status. These versions lack support for current and recommended cryptographic algorithms and mechanisms, and various government and industry profiles of applications using TLS now mandate avoiding these old TLS versions. TLS version 1.2 became the recommended version for IETF protocols in 2008 (subsequently being obsoleted by TLS version 1.3 in 2018), providing sufficient time to transition away from older versions. Removing support for older versions from implementations reduces the attack surface, reduces opportunity for misconfiguration, and streamlines library and product maintenance. </t>
              <t>This document also deprecates Datagram TLS (DTLS) version 1.0 (RFC 4347) but not DTLS version 1.2, and there is no DTLS version 1.1.</t>
              <t>This document updates many RFCs that normatively refer to TLS version 1.0 or TLS version 1.1, as described herein. This document also updates the best practices for TLS usage in RFC 7525; hence, it is part of BCP 195.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="195"/>
          <seriesInfo name="RFC" value="8996"/>
          <seriesInfo name="DOI" value="10.17487/RFC8996"/>
        </reference>
        <reference anchor="SHS">
          <front>
            <title>Secure Hash Standard</title>
            <author fullname="Quynh H. Dang" initials="Q." surname="Dang">
              <organization/>
            </author>
            <date month="July" year="2015"/>
          </front>
          <seriesInfo name="National Institute of Standards and Technology" value="report"/>
          <seriesInfo name="DOI" value="10.6028/nist.fips.180-4"/>
        </reference>
        <reference anchor="RFC5756">
          <front>
            <title>Updates for RSAES-OAEP and RSASSA-PSS Algorithm Parameters</title>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <author fullname="D. Brown" initials="D." surname="Brown"/>
            <author fullname="K. Yiu" initials="K." surname="Yiu"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="T. Polk" initials="T." surname="Polk"/>
            <date month="January" year="2010"/>
            <abstract>
              <t>This document updates RFC 4055. It updates the conventions for using the RSA Encryption Scheme - Optimal Asymmetric Encryption Padding (RSAES-OAEP) key transport algorithm in the Internet X.509 Public Key Infrastructure (PKI). Specifically, it updates the conventions for algorithm parameters in an X.509 certificate's subjectPublicKeyInfo field. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5756"/>
          <seriesInfo name="DOI" value="10.17487/RFC5756"/>
        </reference>
        <reference anchor="RFC7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl"/>
            <author fullname="A. Popov" initials="A." surname="Popov"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="E. Stephan" initials="E." surname="Stephan"/>
            <date month="July" year="2014"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7301"/>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
        </reference>
        <reference anchor="RFC6962">
          <front>
            <title>Certificate Transparency</title>
            <author fullname="B. Laurie" initials="B." surname="Laurie"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="E. Kasper" initials="E." surname="Kasper"/>
            <date month="June" year="2013"/>
            <abstract>
              <t>This document describes an experimental protocol for publicly logging the existence of Transport Layer Security (TLS) certificates as they are issued or observed, in a manner that allows anyone to audit certificate authority (CA) activity and notice the issuance of suspect certificates as well as to audit the certificate logs themselves. The intent is that eventually clients would refuse to honor certificates that do not appear in a log, effectively forcing CAs to add all issued certificates to the logs.</t>
              <t>Logs are network services that implement the protocol operations for submissions and queries that are defined in this document.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6962"/>
          <seriesInfo name="DOI" value="10.17487/RFC6962"/>
        </reference>
        <reference anchor="RFC6961">
          <front>
            <title>The Transport Layer Security (TLS) Multiple Certificate Status Request Extension</title>
            <author fullname="Y. Pettersen" initials="Y." surname="Pettersen"/>
            <date month="June" year="2013"/>
            <abstract>
              <t>This document defines the Transport Layer Security (TLS) Certificate Status Version 2 Extension to allow clients to specify and support several certificate status methods. (The use of the Certificate Status extension is commonly referred to as "OCSP stapling".) Also defined is a new method based on the Online Certificate Status Protocol (OCSP) that servers can use to provide status information about not only the server's own certificate but also the status of intermediate certificates in the chain.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6961"/>
          <seriesInfo name="DOI" value="10.17487/RFC6961"/>
        </reference>
        <reference anchor="RFC6960">
          <front>
            <title>X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP</title>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="M. Myers" initials="M." surname="Myers"/>
            <author fullname="R. Ankney" initials="R." surname="Ankney"/>
            <author fullname="A. Malpani" initials="A." surname="Malpani"/>
            <author fullname="S. Galperin" initials="S." surname="Galperin"/>
            <author fullname="C. Adams" initials="C." surname="Adams"/>
            <date month="June" year="2013"/>
            <abstract>
              <t>This document specifies a protocol useful in determining the current status of a digital certificate without requiring Certificate Revocation Lists (CRLs). Additional mechanisms addressing PKIX operational requirements are specified in separate documents. This document obsoletes RFCs 2560 and 6277. It also updates RFC 5912.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6960"/>
          <seriesInfo name="DOI" value="10.17487/RFC6960"/>
        </reference>
        <reference anchor="RFC7507">
          <front>
            <title>TLS Fallback Signaling Cipher Suite Value (SCSV) for Preventing Protocol Downgrade Attacks</title>
            <author fullname="B. Moeller" initials="B." surname="Moeller"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <date month="April" year="2015"/>
            <abstract>
              <t>This document defines a Signaling Cipher Suite Value (SCSV) that prevents protocol downgrade attacks on the Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) protocols. It updates RFCs 2246, 4346, 4347, 5246, and 6347. Server update considerations are included.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7507"/>
          <seriesInfo name="DOI" value="10.17487/RFC7507"/>
        </reference>
        <reference anchor="IEEE1363">
          <front>
            <title>IEEE Standard Specifications for Public-Key Cryptography</title>
            <author>
              <organization/>
            </author>
            <date month="September" year="2008"/>
          </front>
          <seriesInfo name="IEEE" value="standard"/>
          <seriesInfo name="DOI" value="10.1109/ieeestd.2000.92292"/>
        </reference>
        <reference anchor="RFC5705">
          <front>
            <title>Keying Material Exporters for Transport Layer Security (TLS)</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="March" year="2010"/>
            <abstract>
              <t>A number of protocols wish to leverage Transport Layer Security (TLS) to perform key establishment but then use some of the keying material for their own purposes. This document describes a general mechanism for allowing that. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5705"/>
          <seriesInfo name="DOI" value="10.17487/RFC5705"/>
        </reference>
        <reference anchor="RFC6979">
          <front>
            <title>Deterministic Usage of the Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)</title>
            <author fullname="T. Pornin" initials="T." surname="Pornin"/>
            <date month="August" year="2013"/>
            <abstract>
              <t>This document defines a deterministic digital signature generation procedure. Such signatures are compatible with standard Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA) digital signatures and can be processed with unmodified verifiers, which need not be aware of the procedure described therein. Deterministic signatures retain the cryptographic security features associated with digital signatures but can be more easily implemented in various environments, since they do not need access to a source of high-quality randomness.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6979"/>
          <seriesInfo name="DOI" value="10.17487/RFC6979"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="J. Schiller" initials="J." surname="Schiller"/>
            <author fullname="S. Crocker" initials="S." surname="Crocker"/>
            <date month="June" year="2005"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="106"/>
          <seriesInfo name="RFC" value="4086"/>
          <seriesInfo name="DOI" value="10.17487/RFC4086"/>
        </reference>
        <reference anchor="RFC4346">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.1</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="April" year="2006"/>
            <abstract>
              <t>This document specifies Version 1.1 of the Transport Layer Security (TLS) protocol. The TLS protocol provides communications security over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4346"/>
          <seriesInfo name="DOI" value="10.17487/RFC4346"/>
        </reference>
        <reference anchor="RFC4366">
          <front>
            <title>Transport Layer Security (TLS) Extensions</title>
            <author fullname="S. Blake-Wilson" initials="S." surname="Blake-Wilson"/>
            <author fullname="M. Nystrom" initials="M." surname="Nystrom"/>
            <author fullname="D. Hopwood" initials="D." surname="Hopwood"/>
            <author fullname="J. Mikkelsen" initials="J." surname="Mikkelsen"/>
            <author fullname="T. Wright" initials="T." surname="Wright"/>
            <date month="April" year="2006"/>
            <abstract>
              <t>This document describes extensions that may be used to add functionality to Transport Layer Security (TLS). It provides both generic extension mechanisms for the TLS handshake client and server hellos, and specific extensions using these generic mechanisms.</t>
              <t>The extensions may be used by TLS clients and servers. The extensions are backwards compatible: communication is possible between TLS clients that support the extensions and TLS servers that do not support the extensions, and vice versa. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4366"/>
          <seriesInfo name="DOI" value="10.17487/RFC4366"/>
        </reference>
        <reference anchor="RFC4492">
          <front>
            <title>Elliptic Curve Cryptography (ECC) Cipher Suites for Transport Layer Security (TLS)</title>
            <author fullname="S. Blake-Wilson" initials="S." surname="Blake-Wilson"/>
            <author fullname="N. Bolyard" initials="N." surname="Bolyard"/>
            <author fullname="V. Gupta" initials="V." surname="Gupta"/>
            <author fullname="C. Hawk" initials="C." surname="Hawk"/>
            <author fullname="B. Moeller" initials="B." surname="Moeller"/>
            <date month="May" year="2006"/>
            <abstract>
              <t>This document describes new key exchange algorithms based on Elliptic Curve Cryptography (ECC) for the Transport Layer Security (TLS) protocol. In particular, it specifies the use of Elliptic Curve Diffie-Hellman (ECDH) key agreement in a TLS handshake and the use of Elliptic Curve Digital Signature Algorithm (ECDSA) as a new authentication mechanism. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4492"/>
          <seriesInfo name="DOI" value="10.17487/RFC4492"/>
        </reference>
        <reference anchor="RFC5077">
          <front>
            <title>Transport Layer Security (TLS) Session Resumption without Server-Side State</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <author fullname="H. Zhou" initials="H." surname="Zhou"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document describes a mechanism that enables the Transport Layer Security (TLS) server to resume sessions and avoid keeping per-client session state. The TLS server encapsulates the session state into a ticket and forwards it to the client. The client can subsequently resume a session using the obtained ticket. This document obsoletes RFC 4507. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5077"/>
          <seriesInfo name="DOI" value="10.17487/RFC5077"/>
        </reference>
        <reference anchor="RFC5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol. The TLS protocol provides communications security over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="RFC5764">
          <front>
            <title>Datagram Transport Layer Security (DTLS) Extension to Establish Keys for the Secure Real-time Transport Protocol (SRTP)</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document describes a Datagram Transport Layer Security (DTLS) extension to establish keys for Secure RTP (SRTP) and Secure RTP Control Protocol (SRTCP) flows. DTLS keying happens on the media path, independent of any out-of-band signalling channel present. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5764"/>
          <seriesInfo name="DOI" value="10.17487/RFC5764"/>
        </reference>
        <reference anchor="RFC5929">
          <front>
            <title>Channel Bindings for TLS</title>
            <author fullname="J. Altman" initials="J." surname="Altman"/>
            <author fullname="N. Williams" initials="N." surname="Williams"/>
            <author fullname="L. Zhu" initials="L." surname="Zhu"/>
            <date month="July" year="2010"/>
            <abstract>
              <t>This document defines three channel binding types for Transport Layer Security (TLS), tls-unique, tls-server-end-point, and tls-unique-for-telnet, in accordance with RFC 5056 (On Channel Binding).</t>
              <t>Note that based on implementation experience, this document changes the original definition of 'tls-unique' channel binding type in the channel binding type IANA registry. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5929"/>
          <seriesInfo name="DOI" value="10.17487/RFC5929"/>
        </reference>
        <reference anchor="RFC6176">
          <front>
            <title>Prohibiting Secure Sockets Layer (SSL) Version 2.0</title>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <author fullname="T. Polk" initials="T." surname="Polk"/>
            <date month="March" year="2011"/>
            <abstract>
              <t>This document requires that when Transport Layer Security (TLS) clients and servers establish connections, they never negotiate the use of Secure Sockets Layer (SSL) version 2.0. This document updates the backward compatibility sections found in the Transport Layer Security (TLS). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6176"/>
          <seriesInfo name="DOI" value="10.17487/RFC6176"/>
        </reference>
        <reference anchor="RFC6091">
          <front>
            <title>Using OpenPGP Keys for Transport Layer Security (TLS) Authentication</title>
            <author fullname="N. Mavrogiannopoulos" initials="N." surname="Mavrogiannopoulos"/>
            <author fullname="D. Gillmor" initials="D." surname="Gillmor"/>
            <date month="February" year="2011"/>
            <abstract>
              <t>This memo defines Transport Layer Security (TLS) extensions and associated semantics that allow clients and servers to negotiate the use of OpenPGP certificates for a TLS session, and specifies how to transport OpenPGP certificates via TLS. It also defines the registry for non-X.509 certificate types. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6091"/>
          <seriesInfo name="DOI" value="10.17487/RFC6091"/>
        </reference>
        <reference anchor="RFC6520">
          <front>
            <title>Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) Heartbeat Extension</title>
            <author fullname="R. Seggelmann" initials="R." surname="Seggelmann"/>
            <author fullname="M. Tuexen" initials="M." surname="Tuexen"/>
            <author fullname="M. Williams" initials="M." surname="Williams"/>
            <date month="February" year="2012"/>
            <abstract>
              <t>This document describes the Heartbeat Extension for the Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) protocols.</t>
              <t>The Heartbeat Extension provides a new protocol for TLS/DTLS allowing the usage of keep-alive functionality without performing a renegotiation and a basis for path MTU (PMTU) discovery for DTLS. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6520"/>
          <seriesInfo name="DOI" value="10.17487/RFC6520"/>
        </reference>
        <reference anchor="RFC8305">
          <front>
            <title>Happy Eyeballs Version 2: Better Connectivity Using Concurrency</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>Many communication protocols operating over the modern Internet use hostnames. These often resolve to multiple IP addresses, each of which may have different performance and connectivity characteristics. Since specific addresses or address families (IPv4 or IPv6) may be blocked, broken, or sub-optimal on a network, clients that attempt multiple connections in parallel have a chance of establishing a connection more quickly. This document specifies requirements for algorithms that reduce this user-visible delay and provides an example algorithm, referred to as "Happy Eyeballs". This document obsoletes the original algorithm description in RFC 6555.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8305"/>
          <seriesInfo name="DOI" value="10.17487/RFC8305"/>
        </reference>
        <reference anchor="RFC7230">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document provides an overview of HTTP architecture and its associated terminology, defines the "http" and "https" Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7230"/>
          <seriesInfo name="DOI" value="10.17487/RFC7230"/>
        </reference>
        <reference anchor="RFC7250">
          <front>
            <title>Using Raw Public Keys in Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
            <author fullname="P. Wouters" initials="P." role="editor" surname="Wouters"/>
            <author fullname="H. Tschofenig" initials="H." role="editor" surname="Tschofenig"/>
            <author fullname="J. Gilmore" initials="J." surname="Gilmore"/>
            <author fullname="S. Weiler" initials="S." surname="Weiler"/>
            <author fullname="T. Kivinen" initials="T." surname="Kivinen"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>This document specifies a new certificate type and two TLS extensions for exchanging raw public keys in Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS). The new certificate type allows raw public keys to be used for authentication.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7250"/>
          <seriesInfo name="DOI" value="10.17487/RFC7250"/>
        </reference>
        <reference anchor="RFC7465">
          <front>
            <title>Prohibiting RC4 Cipher Suites</title>
            <author fullname="A. Popov" initials="A." surname="Popov"/>
            <date month="February" year="2015"/>
            <abstract>
              <t>This document requires that Transport Layer Security (TLS) clients and servers never negotiate the use of RC4 cipher suites when they establish connections. This applies to all TLS versions. This document updates RFCs 5246, 4346, and 2246.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7465"/>
          <seriesInfo name="DOI" value="10.17487/RFC7465"/>
        </reference>
        <reference anchor="RFC7568">
          <front>
            <title>Deprecating Secure Sockets Layer Version 3.0</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <author fullname="A. Pironti" initials="A." surname="Pironti"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <date month="June" year="2015"/>
            <abstract>
              <t>The Secure Sockets Layer version 3.0 (SSLv3), as specified in RFC 6101, is not sufficiently secure. This document requires that SSLv3 not be used. The replacement versions, in particular, Transport Layer Security (TLS) 1.2 (RFC 5246), are considerably more secure and capable protocols.</t>
              <t>This document updates the backward compatibility section of RFC 5246 and its predecessors to prohibit fallback to SSLv3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7568"/>
          <seriesInfo name="DOI" value="10.17487/RFC7568"/>
        </reference>
        <reference anchor="RFC7624">
          <front>
            <title>Confidentiality in the Face of Pervasive Surveillance: A Threat Model and Problem Statement</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="B. Schneier" initials="B." surname="Schneier"/>
            <author fullname="C. Jennings" initials="C." surname="Jennings"/>
            <author fullname="T. Hardie" initials="T." surname="Hardie"/>
            <author fullname="B. Trammell" initials="B." surname="Trammell"/>
            <author fullname="C. Huitema" initials="C." surname="Huitema"/>
            <author fullname="D. Borkmann" initials="D." surname="Borkmann"/>
            <date month="August" year="2015"/>
            <abstract>
              <t>Since the initial revelations of pervasive surveillance in 2013, several classes of attacks on Internet communications have been discovered. In this document, we develop a threat model that describes these attacks on Internet confidentiality. We assume an attacker that is interested in undetected, indiscriminate eavesdropping. The threat model is based on published, verified attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7624"/>
          <seriesInfo name="DOI" value="10.17487/RFC7624"/>
        </reference>
        <reference anchor="RFC7685">
          <front>
            <title>A Transport Layer Security (TLS) ClientHello Padding Extension</title>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>This memo describes a Transport Layer Security (TLS) extension that can be used to pad ClientHello messages to a desired size.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7685"/>
          <seriesInfo name="DOI" value="10.17487/RFC7685"/>
        </reference>
        <reference anchor="RFC8937">
          <front>
            <title>Randomness Improvements for Security Protocols</title>
            <author fullname="C. Cremers" initials="C." surname="Cremers"/>
            <author fullname="L. Garratt" initials="L." surname="Garratt"/>
            <author fullname="S. Smyshlyaev" initials="S." surname="Smyshlyaev"/>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <date month="October" year="2020"/>
            <abstract>
              <t>Randomness is a crucial ingredient for Transport Layer Security (TLS) and related security protocols. Weak or predictable "cryptographically secure" pseudorandom number generators (CSPRNGs) can be abused or exploited for malicious purposes. An initial entropy source that seeds a CSPRNG might be weak or broken as well, which can also lead to critical and systemic security problems. This document describes a way for security protocol implementations to augment their CSPRNGs using long-term private keys. This improves randomness from broken or otherwise subverted CSPRNGs.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8937"/>
          <seriesInfo name="DOI" value="10.17487/RFC8937"/>
        </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">
          <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>
          <seriesInfo name="USENIX" value="Security Symposium"/>
        </reference>
        <reference anchor="X501">
          <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="ISO/IEC 9594-2:2020" value=""/>
        </reference>
        <reference anchor="PSK-FINISHED" target="https://www.ietf.org/mail-archive/web/tls/current/msg18215.html">
          <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"/>
          </front>
          <seriesInfo name="message to the TLS mailing list," value=""/>
        </reference>
        <reference anchor="CHHSV17" target="https://www.ietf.org/mail-archive/web/tls/current/msg22382.html">
          <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"/>
          </front>
          <seriesInfo name="message to the TLS mailing list" value=""/>
        </reference>
        <reference anchor="AEAD-LIMITS" target="http://www.isg.rhul.ac.uk/~kp/TLS-AEbounds.pdf">
          <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">
          <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>
          <seriesInfo name="Proceedings of USENIX Workshop on Offensive Technologies" value=""/>
        </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="Proceedings of IEEE Symposium on Security and Privacy (Oakland) 2016" value=""/>
        </reference>
        <reference anchor="FW15">
          <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"/>
          </front>
        </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>
          <seriesInfo name="Proceedings of IEEE Symposium on Security and Privacy (San Jose) 2017" value=""/>
        </reference>
        <reference anchor="Blei98">
          <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>
          <seriesInfo name="Proceedings of CRYPTO '98" value=""/>
        </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>
          <seriesInfo name="ProvSec 2015" value=""/>
        </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>
          <seriesInfo name="Proceedings of CRYPTO 2016" value=""/>
        </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>
          <seriesInfo name="Proceedings of ACM CCS 2016" value=""/>
        </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"/>
          </front>
          <seriesInfo name="Proceedings of Euro S&amp;P 2016" value=""/>
        </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="2016" month="October"/>
          </front>
          <seriesInfo name="Proceedings of ACM CCS 2015" value=""/>
        </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>
          <seriesInfo name="TRON 2016" value=""/>
        </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"/>
          </front>
          <seriesInfo name="Proceedings of Euro S&amp;P 2017" value=""/>
        </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>
          <seriesInfo name="Proceedings of CRYPTO 2010" value=""/>
        </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="March"/>
          </front>
        </reference>
        <reference anchor="Res17a" target="https://www.ietf.org/mail-archive/web/tls/current/msg25091.html">
          <front>
            <title>Preliminary data on Firefox TLS 1.3 Middlebox experiment</title>
            <author initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date year="2017"/>
          </front>
          <seriesInfo name="message to the TLS mailing list" value=""/>
        </reference>
        <reference anchor="Res17b" target="https://www.ietf.org/mail-archive/web/tls/current/msg25179.html">
          <front>
            <title>More compatibility measurement results</title>
            <author initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date year="2017" month="December"/>
          </front>
          <seriesInfo name="message to the TLS mailing list" value=""/>
        </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"/>
          </front>
        </reference>
        <reference anchor="Ben17b" target="https://www.ietf.org/mail-archive/web/tls/current/msg25168.html">
          <front>
            <title>Additional TLS 1.3 results from Chrome</title>
            <author initials="D." surname="Benjamin">
              <organization/>
            </author>
            <date year="2017"/>
          </front>
        </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 Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date year="2023" month="July"/>
          </front>
        </reference>
        <reference anchor="DSA-1571-1" target="https://www.debian.org/security/2008/dsa-1571">
          <front>
            <title>openssl -- predictable random number generator</title>
            <author>
              <organization>The Debian Project</organization>
            </author>
            <date year="2008" month="May"/>
          </front>
        </reference>
        <reference anchor="RSA">
          <front>
            <title>A method for obtaining digital signatures and public-key cryptosystems</title>
            <author fullname="R. L. Rivest" initials="R." surname="Rivest">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <author fullname="A. Shamir" initials="A." surname="Shamir">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <author fullname="L. Adleman" initials="L." surname="Adleman">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <date month="February" year="1978"/>
          </front>
          <seriesInfo name="Communications of the ACM" value="vol. 21, no. 2, pp. 120-126"/>
          <seriesInfo name="DOI" value="10.1145/359340.359342"/>
        </reference>
        <reference anchor="DSS">
          <front>
            <title>Digital Signature Standard (DSS)</title>
            <author fullname="Dustin Moody" initials="D." surname="Moody">
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date year="2023"/>
          </front>
          <seriesInfo name="National Institute of Standards and Technology" value="report"/>
          <seriesInfo name="DOI" value="10.6028/nist.fips.186-5"/>
        </reference>
        <reference anchor="RFC3552">
          <front>
            <title>Guidelines for Writing RFC Text on Security Considerations</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="B. Korver" initials="B." surname="Korver"/>
            <date month="July" year="2003"/>
            <abstract>
              <t>All RFCs are required to have a Security Considerations section. Historically, such sections have been relatively weak. This document provides guidelines to RFC authors on how to write a good Security Considerations section. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="72"/>
          <seriesInfo name="RFC" value="3552"/>
          <seriesInfo name="DOI" value="10.17487/RFC3552"/>
        </reference>
        <reference anchor="I-D.ietf-uta-rfc6125bis">
          <front>
            <title>Service Identity in TLS</title>
            <author fullname="Peter Saint-Andre" initials="P." surname="Saint-Andre">
              <organization>independent</organization>
            </author>
            <author fullname="Rich Salz" initials="R." surname="Salz">
              <organization>Akamai Technologies</organization>
            </author>
            <date day="27" month="June" year="2023"/>
            <abstract>
              <t>   Many application technologies enable secure communication between two
   entities by means of Transport Layer Security (TLS) with Internet
   Public Key Infrastructure Using X.509 (PKIX) certificates.  This
   document specifies procedures for representing and verifying the
   identity of application services in such interactions.

   This document obsoletes RFC 6125.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-uta-rfc6125bis-14"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <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 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC7924">
          <front>
            <title>Transport Layer Security (TLS) Cached Information Extension</title>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="July" year="2016"/>
            <abstract>
              <t>Transport Layer Security (TLS) handshakes often include fairly static information, such as the server certificate and a list of trusted certification authorities (CAs). This information can be of considerable size, particularly if the server certificate is bundled with a complete certificate chain (i.e., the certificates of intermediate CAs up to the root CA).</t>
              <t>This document defines an extension that allows a TLS client to inform a server of cached information, thereby enabling the server to omit already available information.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7924"/>
          <seriesInfo name="DOI" value="10.17487/RFC7924"/>
        </reference>
        <reference anchor="RFC6347">
          <front>
            <title>Datagram Transport Layer Security Version 1.2</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <date month="January" year="2012"/>
            <abstract>
              <t>This document specifies version 1.2 of the Datagram Transport Layer Security (DTLS) protocol. The DTLS protocol provides communications privacy for datagram protocols. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery. The DTLS protocol is based on the Transport Layer Security (TLS) protocol and provides equivalent security guarantees. Datagram semantics of the underlying transport are preserved by the DTLS protocol. This document updates DTLS 1.0 to work with TLS version 1.2. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6347"/>
          <seriesInfo name="DOI" value="10.17487/RFC6347"/>
        </reference>
        <reference anchor="ECDP">
          <front>
            <title>Recommendations for Discrete Logarithm-based Cryptography:: Elliptic Curve Domain Parameters</title>
            <author fullname="Dustin Moody" initials="D." surname="Moody">
              <organization/>
            </author>
            <date year="2022"/>
          </front>
          <seriesInfo name="National Institute of Standards and Technology" value="report"/>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-186"/>
        </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"/>
        </reference>
        <reference anchor="RFC8422">
          <front>
            <title>Elliptic Curve Cryptography (ECC) Cipher Suites for Transport Layer Security (TLS) Versions 1.2 and Earlier</title>
            <author fullname="Y. Nir" initials="Y." surname="Nir"/>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="M. Pegourie-Gonnard" initials="M." surname="Pegourie-Gonnard"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document describes key exchange algorithms based on Elliptic Curve Cryptography (ECC) for the Transport Layer Security (TLS) protocol. In particular, it specifies the use of Ephemeral Elliptic Curve Diffie-Hellman (ECDHE) key agreement in a TLS handshake and the use of the Elliptic Curve Digital Signature Algorithm (ECDSA) and Edwards-curve Digital Signature Algorithm (EdDSA) as authentication mechanisms.</t>
              <t>This document obsoletes RFC 4492.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8422"/>
          <seriesInfo name="DOI" value="10.17487/RFC8422"/>
        </reference>
        <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="Miles Smid" initials="M." surname="Smid">
              <organization/>
            </author>
            <date month="May" year="2013"/>
          </front>
          <seriesInfo name="National Institute of Standards and Technology" value="report"/>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-56ar2"/>
        </reference>
        <reference anchor="RFC8449">
          <front>
            <title>Record Size Limit Extension for TLS</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>An extension to Transport Layer Security (TLS) is defined that allows endpoints to negotiate the maximum size of protected records that each will send the other.</t>
              <t>This replaces the maximum fragment length extension defined in RFC 6066.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8449"/>
          <seriesInfo name="DOI" value="10.17487/RFC8449"/>
        </reference>
        <reference anchor="RFC8447">
          <front>
            <title>IANA Registry Updates for TLS and DTLS</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document describes a number of changes to TLS and DTLS IANA registries that range from adding notes to the registry all the way to changing the registration policy. These changes were mostly motivated by WG review of the TLS- and DTLS-related registries undertaken as part of the TLS 1.3 development process.</t>
              <t>This document updates the following RFCs: 3749, 5077, 4680, 5246, 5705, 5878, 6520, and 7301.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8447"/>
          <seriesInfo name="DOI" value="10.17487/RFC8447"/>
        </reference>
        <reference anchor="RFC8448">
          <front>
            <title>Example Handshake Traces for TLS 1.3</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <date month="January" year="2019"/>
            <abstract>
              <t>This document includes examples of TLS 1.3 handshakes. Private keys and inputs are provided so that these handshakes might be reproduced. Intermediate values, including secrets, traffic keys, and IVs, are shown so that implementations might be checked incrementally against these values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8448"/>
          <seriesInfo name="DOI" value="10.17487/RFC8448"/>
        </reference>
        <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" value="Security"/>
          <seriesInfo name="DOI" value="10.1145/2976749.2978395"/>
        </reference>
        <reference anchor="RFC8879">
          <front>
            <title>TLS Certificate Compression</title>
            <author fullname="A. Ghedini" initials="A." surname="Ghedini"/>
            <author fullname="V. Vasiliev" initials="V." surname="Vasiliev"/>
            <date month="December" year="2020"/>
            <abstract>
              <t>In TLS handshakes, certificate chains often take up the majority of the bytes transmitted.</t>
              <t>This document describes how certificate chains can be compressed to reduce the amount of data transmitted and avoid some round trips.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8879"/>
          <seriesInfo name="DOI" value="10.17487/RFC8879"/>
        </reference>
        <reference anchor="I-D.ietf-tls-esni">
          <front>
            <title>TLS Encrypted Client Hello</title>
            <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
              <organization>RTFM, Inc.</organization>
            </author>
            <author fullname="Kazuho Oku" initials="K." surname="Oku">
              <organization>Fastly</organization>
            </author>
            <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
              <organization>Cloudflare</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="6" month="April" year="2023"/>
            <abstract>
              <t>   This document describes a mechanism in Transport Layer Security (TLS)
   for encrypting a ClientHello message under a server public key.

Discussion Venues

   This note is to be removed before publishing as an RFC.

   Source for this draft and an issue tracker can be found at
   https://github.com/tlswg/draft-ietf-tls-esni
   (https://github.com/tlswg/draft-ietf-tls-esni).

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-16"/>
        </reference>
        <reference anchor="RFC6101">
          <front>
            <title>The Secure Sockets Layer (SSL) Protocol Version 3.0</title>
            <author fullname="A. Freier" initials="A." surname="Freier"/>
            <author fullname="P. Karlton" initials="P." surname="Karlton"/>
            <author fullname="P. Kocher" initials="P." surname="Kocher"/>
            <date month="August" year="2011"/>
            <abstract>
              <t>This document is published as a historical record of the SSL 3.0 protocol. The original Abstract follows.</t>
              <t>This document specifies version 3.0 of the Secure Sockets Layer (SSL 3.0) protocol, a security protocol that provides communications privacy over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery. This document defines a Historic Document for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6101"/>
          <seriesInfo name="DOI" value="10.17487/RFC6101"/>
        </reference>
        <reference anchor="RFC2246">
          <front>
            <title>The TLS Protocol Version 1.0</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks"/>
            <author fullname="C. Allen" initials="C." surname="Allen"/>
            <date month="January" year="1999"/>
            <abstract>
              <t>This document specifies Version 1.0 of the Transport Layer Security (TLS) protocol. The TLS protocol provides communications privacy over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2246"/>
          <seriesInfo name="DOI" value="10.17487/RFC2246"/>
        </reference>
        <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"/>
        </reference>
        <reference anchor="BBFGKZ16">
          <front>
            <title>Downgrade Resilience in Key-Exchange Protocols</title>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="Christina Brzuska" initials="C." surname="Brzuska">
              <organization/>
            </author>
            <author fullname="Cedric Fournet" initials="C." surname="Fournet">
              <organization/>
            </author>
            <author fullname="Matthew Green" initials="M." surname="Green">
              <organization/>
            </author>
            <author fullname="Markulf Kohlweiss" initials="M." surname="Kohlweiss">
              <organization/>
            </author>
            <author fullname="Santiago Zanella-Beguelin" initials="S." surname="Zanella-Beguelin">
              <organization/>
            </author>
            <date month="May" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE Symposium on Security and Privacy" value="(SP)"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.37"/>
        </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"/>
        </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="Advances in Cryptology - CRYPTO 2003" value="pp. 400-425"/>
          <seriesInfo name="DOI" value="10.1007/978-3-540-45146-4_24"/>
        </reference>
        <reference anchor="RFC8773">
          <front>
            <title>TLS 1.3 Extension for Certificate-Based Authentication with an External Pre-Shared Key</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="March" year="2020"/>
            <abstract>
              <t>This document specifies a TLS 1.3 extension that allows a server to authenticate with a combination of a certificate and an external pre-shared key (PSK).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8773"/>
          <seriesInfo name="DOI" value="10.17487/RFC8773"/>
        </reference>
        <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" value="(CSF)"/>
          <seriesInfo name="DOI" value="10.1109/csf.2016.19"/>
        </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" value="(SP)"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.35"/>
        </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" value="(SP)"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.36"/>
        </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" value="(SP)"/>
          <seriesInfo name="DOI" value="10.1109/sp.2017.26"/>
        </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="Advances in Cryptology - ASIACRYPT 2000" value="pp. 546-559"/>
          <seriesInfo name="DOI" value="10.1007/3-540-44448-3_42"/>
        </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="Privacy Enhancing Technologies" value="pp. 143-163"/>
          <seriesInfo name="DOI" value="10.1007/978-3-319-08506-7_8"/>
        </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"/>
        </reference>
        <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" value="Security"/>
          <seriesInfo name="DOI" value="10.1145/2810103.2813657"/>
        </reference>
      </references>
    </references>
    <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 SHOULD
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 MUST NOT 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 MUST NOT 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</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).
In most cases, the operating system provides an appropriate facility such
as /dev/urandom, which should be used absent other (e.g., performance) concerns.
It is RECOMMENDED 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 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 SHOULD 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>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.</li>
          <li>Do you ignore the TLS record layer version number in all unencrypted TLS
records (see <xref target="backward-compatibility"/>)?</li>
          <li>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"/>)?</li>
          <li>Do you handle TLS extensions in ClientHellos correctly, including
unknown extensions?</li>
          <li>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"/>)?</li>
          <li>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?</li>
          <li>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?</li>
          <li>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?</li>
        </ul>
        <t>Cryptographic details:</t>
        <ul spacing="normal">
          <li>What countermeasures do you use to prevent timing attacks <xref target="TIMING"/>?</li>
          <li>When using Diffie-Hellman key exchange, do you correctly preserve
leading zero bytes in the negotiated key (see <xref target="finite-field-diffie-hellman"/>)?</li>
          <li>Does your TLS client check that the Diffie-Hellman parameters sent
by the server are acceptable (see <xref target="ffdhe-param"/>)?</li>
          <li>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 RECOMMENDED that implementations implement "deterministic ECDSA"
as specified in <xref target="RFC6979"/>. Note that purely deterministic ECC signatures such as
deterministic ECDSA and EdDSA may be vulnerable to certain side-channel and fault
injection attacks in easily accessible IoT devices.</li>
          <li>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"/>)?</li>
          <li>Do you verify signatures after making them, to protect against RSA-CRT
key leaks <xref target="FW15"/>?</li>
        </ul>
      </section>
      <section anchor="client-tracking">
        <name>Client and Server Tracking Prevention</name>
        <t>Clients SHOULD NOT reuse a ticket for multiple connections. Reuse
of a ticket allows passive observers to correlate different connections.
Servers that issue tickets SHOULD 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="RFC7230"/> might open six connections to a server. Servers SHOULD
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 SHOULD NOT 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 SHOULD NOT 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>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 <xref target="I-D.ietf-tls-esni"/> extension can
mitigate this risk, as can mechanisms external to TLS that
rotate 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>Raw public keys <xref target="RFC7250"/>.</li>
          <li>Using a public key contained in a certificate but without
validation of the certificate chain or any of its contents.</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 active man-in-the-middle attack; applications MUST NOT 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>The master secret, computed in Section 8.1 of <xref 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.</li>
        <li>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.</li>
        <li>The PreMasterSecret and EncryptedPreMasterSecret structures, defined in
Section 7.4.7.1 of <xref target="RFC5246"/>, are renamed to PreliminarySecret and
EncryptedPreliminarySecret, respectively.</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 Section 4 of
<xref 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 MUST be ignored by all implementations.
The value of TLSCiphertext.legacy_record_version is included in the
additional data for deprotection but MAY otherwise be ignored
or MAY 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).
In order to maximize interoperability with older endpoints, implementations
that negotiate the use of TLS 1.0-1.2 SHOULD 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 SHOULD support validation of certification paths
based on the expectations in this document, even when handling prior TLS versions'
handshakes (see <xref target="server-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 SHOULD 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 SHOULD initiate the
connection using the version that was previously negotiated.</t>
        <t>Note that 0-RTT data is not compatible with older servers and SHOULD NOT
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 MUST 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 in order to negotiate
a backward-compatible connection; however, this practice is vulnerable
to downgrade attacks and is NOT RECOMMENDED.</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 MUST negotiate using that extension as described in
<xref target="supported-versions"/>. If the "supported_versions" extension is not
present, the server MUST 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 MUST 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
MUST 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 MUST 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 SHOULD NOT disable TLS 1.3, only 0-RTT.</t>
        <t>To avoid this error condition, multi-server deployments SHOULD 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>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"/>.</li>
          <li>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.</li>
          <li>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.</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 MUST 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 SHOULD 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 MUST NOT 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 MUST NOT 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 MUST NOT be negotiated for any reason.</t>
        <t>Implementations MUST NOT send an SSL version 2.0 compatible CLIENT-HELLO.
Implementations MUST NOT negotiate TLS 1.3 or later using an SSL version 2.0 compatible
CLIENT-HELLO. Implementations are NOT RECOMMENDED to accept an SSL version 2.0 compatible
CLIENT-HELLO in order to negotiate older versions of TLS.</t>
        <t>Implementations MUST NOT 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 MUST
abort the handshake with a "protocol_version" alert.</t>
        <t>Implementations MUST NOT send any records with a version less than 0x0300.
Implementations SHOULD NOT 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 MUST NOT use the Truncated HMAC extension, defined in
Section 7 of <xref 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>A set of "session keys" (the various secrets derived from the main secret)
from which can be derived a set of working keys.</li>
          <li>A set of cryptographic parameters (algorithms, etc.).</li>
          <li>The identities of the communicating parties.</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 MUST
NOT 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 MUST 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 SHOULD NOT 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 SHOULD be erased as soon as
possible. If the total set of exporter labels is known, then
implementations SHOULD pre-compute the inner Derive-Secret
stage of the exporter computation for all those labels,
then erase the [early_]exporter_secret, followed by
each inner values as soon as it is known that it will not be
needed again.</t>
        </section>
        <section anchor="post-compromise-security">
          <name>Post-Compromise Security</name>
          <t>TLS does not provide security for handshakes which take place after the peer's
long-term secret (signature key or external PSK) is compromised. It therefore
does not provide post-compromise security <xref target="CCG16"/>, sometimes also referred to
as backwards or future secrecy. This is in contrast to KCI resistance, which
describes the security guarantees that a party has after its own long-term
secret has been compromised.</t>
        </section>
        <section anchor="external-references">
          <name>External References</name>
          <t>The reader should refer to the following references for analysis of the
TLS handshake: <xref target="DFGS15"/>, <xref target="CHSV16"/>, <xref target="DFGS16"/>, <xref target="KW16"/>, <xref target="Kraw16"/>, <xref target="FGSW16"/>,
<xref target="LXZFH16"/>, <xref target="FG17"/>, and <xref target="BBK17"/>.</t>
        </section>
      </section>
      <section anchor="security-record-layer">
        <name>Record Layer</name>
        <t>The record layer depends on the handshake producing strong traffic secrets
which can be used to derive bidirectional encryption keys and nonces.
Assuming that is true, and the keys are used for no more data than
indicated in <xref target="limits-on-key-usage"/>, then the record layer should provide the following
guarantees:</t>
        <dl>
          <dt>Confidentiality:</dt>
          <dd>
            <t>An attacker should not be able to determine the plaintext contents
of a given record.
</t>
          </dd>
          <dt>Integrity:</dt>
          <dd>
            <t>An attacker should not be able to craft a new record which is
different from an existing record which will be accepted by the receiver.
</t>
          </dd>
          <dt>Order protection/non-replayability:</dt>
          <dd>
            <t>An attacker should not be able to cause the receiver to accept a
record which it has already accepted or cause the receiver to accept
record N+1 without having first processed record N.</t>
          </dd>
          <dt>Length concealment:</dt>
          <dd>
            <t>Given a record with a given external length, the attacker should not be able
to determine the amount of the record that is content versus padding.</t>
          </dd>
          <dt>Forward secrecy after key change:</dt>
          <dd>
            <t>If the traffic key update mechanism described in <xref target="key-update"/> has been
used and the previous generation key is deleted, an attacker who compromises
the endpoint should not be able to decrypt traffic encrypted with the old key.</t>
          </dd>
        </dl>
        <t>Informally, TLS 1.3 provides these properties by AEAD-protecting the
plaintext with a strong key. AEAD encryption <xref target="RFC5116"/> provides confidentiality
and integrity for the data. Non-replayability is provided by using
a separate nonce for each record, with the nonce being derived from
the record sequence number (<xref target="nonce"/>), with the sequence
number being maintained independently at both sides; thus records which
are delivered out of order result in AEAD deprotection failures.
In order to prevent mass cryptanalysis when the same plaintext is
repeatedly encrypted by different users under the same key
(as is commonly the case for HTTP), the nonce is formed by mixing
the sequence number with a secret per-connection initialization
vector derived along with the traffic keys.
See <xref target="BT16"/> for analysis of this construction.</t>
        <t>The rekeying technique in TLS 1.3 (see <xref target="updating-traffic-keys"/>) follows the
construction of the serial generator as discussed in <xref target="REKEY"/>, which shows that rekeying can
allow keys to be used for a larger number of encryptions than without
rekeying. This relies on the security of the HKDF-Expand-Label function as a
pseudorandom function (PRF).  In addition, as long as this function is truly
one way, it is not possible to compute traffic keys from prior to a key change
(forward secrecy).</t>
        <t>TLS does not provide security for data which is communicated on a connection
after a traffic secret of that connection is compromised. That is, TLS does not
provide post-compromise security/future secrecy/backward secrecy with respect
to the traffic secret. Indeed, an attacker who learns a traffic secret can
compute all future traffic secrets on that connection.  Systems which want such
guarantees need to do a fresh handshake and establish a new connection with an
(EC)DHE exchange.</t>
        <section anchor="external-references-1">
          <name>External References</name>
          <t>The reader should refer to the following references for analysis of the TLS record layer:
<xref target="BMMRT15"/>, <xref target="BT16"/>, <xref target="BDFKPPRSZZ16"/>, <xref target="BBK17"/>, and <xref target="PS18"/>.</t>
        </section>
      </section>
      <section anchor="traffic-analysis">
        <name>Traffic Analysis</name>
        <t>TLS is susceptible to a variety of traffic analysis attacks based on
observing the length and timing of encrypted packets
<xref target="CLINIC"/>
          <xref target="HCJC16"/>.
This is particularly easy when there is a small
set of possible messages to be distinguished, such as for a video
server hosting a fixed corpus of content, but still provides usable
information even in more complicated scenarios.</t>
        <t>TLS does not provide any specific defenses against this form of attack
but does include a padding mechanism for use by applications: The
plaintext protected by the AEAD function consists of content plus
variable-length padding, which allows the application to produce
arbitrary-length encrypted records as well as padding-only cover traffic to
conceal the difference between periods of transmission and periods
of silence. Because the
padding is encrypted alongside the actual content, an attacker cannot
directly determine the length of the padding, but may be able to
measure it indirectly by the use of timing channels exposed during
record processing (i.e., seeing how long it takes to process a
record or trickling in records to see which ones elicit a response
from the server). In general, it is not known how to remove all of
these channels because even a constant-time padding removal function will
likely feed the content into data-dependent functions.
At minimum, a fully constant-time server or client would require close
cooperation with the application-layer protocol implementation, including
making that higher-level protocol constant time.</t>
        <t>Note: Robust
traffic analysis defenses will likely lead to inferior performance
due to delays in transmitting packets and increased traffic volume.</t>
      </section>
      <section anchor="side-channel-attacks">
        <name>Side Channel Attacks</name>
        <t>In general, TLS does not have specific defenses against side-channel
attacks (i.e., those which attack the communications via secondary
channels such as timing), leaving those to the implementation of the relevant
cryptographic primitives. However, certain features of TLS are
designed to make it easier to write side-channel resistant code:</t>
        <ul spacing="normal">
          <li>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.</li>
          <li>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.</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>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.</li>
          <li>Attackers can store and replay 0-RTT messages in order to
reorder them with respect to other messages (e.g., moving
a delete to after a create).</li>
          <li>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.</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
MUST NOT 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 MUST NOT 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 MUST NOT
enable 0-RTT (either sending or accepting) unless specifically
requested by the application and MUST NOT 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 MUST 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 SHOULD NOT 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">
        <name>Sharing PSKs</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="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 anchor="change-log">
      <name>Change Log</name>
      <t>[[RFC EDITOR: Please remove in final RFC.]]
Since -06
- Updated text about differences from RFC 8446.
- Clarify which parts of IANA considerations are new to this document.
- Upgrade the requirement to initiate key update before exceeding
  key usage limits to MUST.
- Add some text around use of the same cert for client and server.</t>
      <t>Since -05</t>
      <ul spacing="normal">
        <li>Port in text on key update limits from RFC 9147 (Issue 1257)</li>
        <li>Clarify that you need to ignore NST if you don't do resumption
(Issue 1280)</li>
        <li>Discuss the privacy implications of external key reuse (Issue 1287)</li>
        <li>Advice on key deletion (PR 1282)</li>
        <li>Clarify what unsolicited extensions means (PR 1275)</li>
        <li>close_notify should be warning (PR 1290)</li>
        <li>Reference RFC 8773 (PR 1296)</li>
        <li>Add some more information about application bindings and cite
6125-bis (PR 1297)</li>
      </ul>
      <t>Since -04</t>
      <ul spacing="normal">
        <li>Update the extension table (Issue 1241)</li>
        <li>Clarify user_canceled (Issue 1208)</li>
        <li>Clarify 0-RTT cache side channels (Issue 1225)</li>
        <li>Require that message reinjection be done with the current hash.
Potentially a clarification and potentially a wire format
change depending on previous interpretation (Issue 1227)</li>
      </ul>
      <t>Changelog not updated between -00 and -03</t>
      <t>Since -00</t>
      <ul spacing="normal">
        <li>Update TLS 1.2 terminology</li>
        <li>Specify "certificate-based" client authentication</li>
        <li>Clarify that privacy guarantees don't apply when you have null encryption</li>
        <li>Shorten some names</li>
        <li>Address tracking implications of resumption</li>
      </ul>
    </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

      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

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

      Tom Weinstein

      David Wong
      NCC Group
      david.wong@nccgroup.trust

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

      Tim Wright
      Vodafone
      timothy.wright@vodafone.com

      Peter Wu
      Independent
      peter@lekensteyn.nl

      Kazu Yamamoto
      Internet Initiative Japan Inc.
      kazu@iij.ad.jp
]]></artwork>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAH98qGQAA+y9a3fbRpY2+h2/ol5lrdNUhqRJ6m4nPUfWJdYktvVaStI9
6bQWREIS2iTAAUDJjOP57WffqmoXANKyne6ZD8drdYcigbru2rWvz+71elGV
VtPkqbm8S8xlEWflPC8q80O8TApzkYwXRVotTefyh4tNc17kVT7Op+anpCjT
PDPD/lYUX18XyT28/8NFNMnHWTyDxiZFfFP10qS66VXTslfcjPe3t3ev07I3
2I/GcZXc5sXyqSmrSbSYT+Dv8qnZ2RvsdM3uYHe3a/Z2R3tds789GkX5dZlP
E3oC24iidF48NfMi2dna278sFmU1GgwOBqMoLpL4qfkuyZIinkYPefH2tsgX
86fR22QJf02emrOsSoosqXrHOLwoKqs4m1zF0zyDIS+TMpqnTyNjYLTJpKyW
U/nWGJi1+phmkySr7BclLFeR3JTu7+Us+LMq0rF7eJzPZvCu+zXNpmnmu0ne
Vb1pWlY9aOQ6n8Jjvfzrf4NfYGFn8XyeZrf8bLyo7vICBtuDH+lfmsHTJ33z
JinHeTGN7fe8HycwiMZPeXEbZ+lvcQVb+dS8zH9Lp/7HZBan06cmeVv8v0V1
M+vDyKMoy4sZPH6f4DK9OT0aDQfb7uPwQD7ujPYH9uP+rv0WN9Z+3N3ZkY/7
21v2Adxz+3Fve99+PHDt7g+2Ru7j0D67Pxztuo97djg7wyF9+5fdAxoL/RNK
3zjLbngiQMJVMr7L8ml+uzQ9c3jxqj80STbOJ7DU5s1iimR3MU/G6U065hfy
G/M8LmE5T4LHTOf5yZvNrjmKszyDZ6eN34/gdwMEZ45hh+H7RVreJZPGY8fw
2IYdMR6Np+Y0uS4WcbE0o8FoaH9yJGD8dgKJX/7Yu7TflUmRJmUKs1WPnV28
fnJ2cmT290fbveFTafL4xd6uf8gu1KvkAUZbJGOceQk0Zo6K5bzKb4t4frd0
o2yOBdaSCPLnPrx/c5MmzZ9e9s2LZDqdxZn7jWc7PNjb6w123bdqFubs5OSE
uVQsY4Id0dsJXAw4S9f81D+77I1GJutjQ98dvWxO7k3Cp3HCb0Ib5vk0H781
R+n8Dpjfy3wC+wHb/XoOHIUPyXfALNLyyVG+QFZCj5gOtM4b+93Lw6ON2myA
Oe31hsOPLxWsxzEyrTRrm7l6/tXZxaUQJVDZ+eJ6aklzfzDobe0fA4u0K+JO
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
9kWtfIQdq0P+sYSX3kSo0KAsq5gdlp0vyoQL3LfyFGskFtC3uxz0iUgLjG0I
VA5iNDwUikL9aXVMpAUJy0VFspu4xsKQa0hCnn1CCFYI0TpJ7egoHyeAvnVL
V64BT7JL4BL8dBqffcntvfNiVSsuLL3Rq4ejO3WuNI9Mh07r9RSvuDlfZjUg
E8Y07fCKofPD1aOo6i62+vl0UG0CBtxh0PvRpkM0ophY7Lol4zE4imFwbwMv
KErruS9tOEetAbnuIvJeXbejKmSA/X4eQFUPmIV6koFt+SHbUZVHfHIaUb2Z
IJoSRceTUBjur2WgtXk4eNEkWrMZLuX5C5liG5FYcNKPNdQS3awxwCwTV1gQ
AkJr60MWbc/XD+CjMjkfFQctNWjINLxeFpe4VLYiM959A8SefgMJlT+UTMym
ekA6A0GnALVtUQDDTtgGcKiR9LyMSZppTW6dgHqRwbCQtxdoGeICokuCiMVn
0wINXzHZ77IEuizeYoQ3+iJMp7pb2MRSm2sfl4JIdZxfEHipTaDc7LsUSR50
OkUktORmMaWThIqyt9r2cgTB59ogzm7qMhn+HV1CW9t7FkMns7XorYy62V+z
DkAh0xzODZXnDosjIgEsJEQcX0wrWwCI4CNa0mUk77QEdZHjg5ZS9ltHQKCa
N8n5WFIRFvs4E1bpSpfUCmC0x4QzqSAqhayujYknAwyGuot9t0purU7fgFne
tFZbx+5X5VapKA5VIqwZayCqvtBWp7L5sJmy2cpiEy6xKRZTn9bRsEKTxCK1
WFjedkDILOA4M3Ft4TY5aktj3kVoKFuVfiDJfXNR6WrBcNqIJJC6YvhtS2yi
fKTVcRi1YfSjIJPLyq5jOeUOM6GlfJ6hvNHrEnvOKuXuKPuu2JUvBIZFIgQb
F2kTLUSSpchWTBaLqIayJynB6Aa9kqzR4g+zuXKgWQQlwTwMpeQ4BTZ0OLYR
Qs5ji0GxLnORZuNE05mNbKgfKMFa45JatPdRkNGpRuGKNeecG8H75iXw1uWI
ajdiaVHKvZXFJbMfOmeXB0pwyfrIljWWau4w1Rj+FMUwX8tW+fhVbVTCME9v
Uyx35p7lqK7ocRVtySmfsOXVNYCkq1yJpY9UW1GsV4UD8cDhl9uU0jglqoTH
6lwPq7ptKboXxqpRkg/BKeDTepCqDiiCn91EGqKZSNNadduq7jpzAtecRT7Z
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
EvEMLR1PnkuBpe4+zRd9ZhVDFSpeV6yPQb+VX+jv8aKltBCNsbHGEm1MEOnN
rla0ybKgxa5hxYbB+dobBqcIogmcuHWcyneALOFsxXlGexZlLlInwNEjqIva
PcMeg2rvgyXcqUQb6QbIj6WpgkTmnYWjuVUvQoZQJ6VLbPHmlUUWWvTbsJDl
g5tM0+W1gZSwyjuPtt1qz87733dfZCEpXgNHkUtDWzuA71GRHpg8xJxt4C1q
zmXhu4LnxSSwiuQ6SW1aKOxI9m/2uPsqvtZpf160qBgPoQyYKdhEiSWS3LXw
0DFTAKsE6QJraTunWBT2PUILJvBFm9+FbkflSYMROr6BVcsUrpW4E4cuYj5p
/pjA3VppNofZkFwF7+oQOVwjHrPO37eCsI3uiIrDwMhpaJqshRAQxuFjiGYN
8B/FlMiiCjbDct5kqZcpBSOkAGecSaQPsXshdo/pmWa1119HUa69gduG9rqk
lug+Ysc8OjoUzcSVB5TL28QI3CbKWCiDFv7P3TOAxOctQtOOwiiNjckO+D8/
fvX0k0dHn/Ca92Kh/usGpFgVHJZ9dHQRIwleMn4+pZArJPM1Occ2K+bEgO2r
NYQrlK5xHZmCQVYWZvC6a9obhRZ0xxByf0d/BDk4pjUWeyF30oppZVdX8dAI
DIzDkBDZxOrhgE2pD6N4rhIMHUt4Rk2Vh8akJEx3uXGVA5UD60RJIlBV5ZgX
Od7mAIssJq2IWvsJU3oLnGXgCmD/Ne+B5sEBaZ8iSe/z6eCUw+wwVm/bmtMA
pUiSnj7IJjdVsT4+evyYN+UdMXPf3cSi2yz9qcARdzr9D0/PXqYTBHFZdllG
mrqsX8W83d3rocD9zpmlq4CSry3t7VoKs7hITiV48HYJvaMNV223Y86n9EGp
sUhxyPhvP7x89eKH70+/fWI94bAci/RU9ajxpexyPQhy6xPgbNyASFVKCYY6
7b6LPfOCYzM7p8QEldfqejOyZMXHjV20ZRP/WdKDfc2nkFpGZKLiIZ0FjkB0
RVLnl8D9ItPavJLmfzarL0EfMWreO7r6O5H0s6ZeSP+KJkgp7CfuixuN7sXs
uyRNTY1bZibnjiSOO6c5NnngX4SKZK+fu0vc033X87e0OsRUVTGXlaPlSmF+
nCTTL0VGZ+fmkwdHxzg3GjAmdhjOYtTU0CE+mH6Vwi6+F8oyf5rpe0/BScyP
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
zMd7vWrPPseNMoWhyeZKWr8sKcLmUtNV4IWt1S/cJOUNV2y1A9lupj10KSqC
OLRaQefithtCq8rWBC4kePy0tjf22lCqavWqnKoiFRDzNAHlq+8sz2q5htuL
2kPTlcQhSLfhF92d4KKRvdj68MOqmN0VLJ4gOy/Feeq3pUpQnP1PjVsVypHs
cn5WIRnunRME6x+pkEs9fLlVoQ2YDcoRPoyztdP0PQKcrX9ut9qZXtA+3LC1
t5TMWtUTI/MOYk09WW+uplcYWKt6XOxCXiIwmOluxVXAq9uqnRDesiXDq6zF
lShjtTs64CTT0fIbuoEx+LaVxUAeJtrCiLbRNK2sCQ6fXd+tzcoaiNRBXAUO
6PbKIxsE8K8+r2Gs/7i8JhHzBT4CcdBbqkjwrAuFm9sqFMb2D7zKgNfkuV3M
UoH54+y7sBtO145bbiRdHcV6OFRa+MSVnGXSee6fGWvzi8b3LMmZ94z9tfm9
2kHkl0Nj2bJX68fuedxkjG1+v+Ek4cfrFtlvvm4mbF//9mf5xD2vvMe2kua3
9Xw9D5+pDaT5pTo/pNeruR/NL/uDE3zzbbr4RL8Gb3190XBS9Lr5gYCsNCTK
qSJeoRdVqKJbuS5FHzqjVOvPW5u/vQje3JPkNspt+wxP8QGclkMkh+J6mkxu
soHA7PHBKKZ4XlYd4SVqXl2/408tUfF4xJIj3qTiSbe6R9nwp41ud2vz30I9
2c8uVlMGJa79tNntbv7vvd1O5YWwc6vXSKXan3r44l6nF77nDo7JKvhpT75h
2n4N2cL/H9fxMh3cFN+zmA3Gh6Xrh8P+9sLtNi1cwBdXLVwYJuW6vawZStRY
4FogM8WZ1z/u+lylsRuoH5Th4lV/YMcwAA1R4yo7Nk6+XKqF6ZJvM7IjfF8v
Tj9gcWdn1XBW9FIBuiIrw+peMGS9HWNwerWvhlQcEsNW9bVdHREofJfldDYh
qWz5lGwvO093tyu93MDlOeunyYwkt0f1sruzuVHpxeovVEPVaTGXRukkeU97
ebq10WtYl9BAQXjUsIFjmOVeMDwdy7Pd6jkXISToBei91XtWn5+OZXOnOiOh
4Fovmw3bvrwXMTWSmLp6bX0vu3s71V6C7DIy/nyrlwZ6MeoKmoceM5aGXuo5
amRE+s5eOOeNTEsrx7G6l+YcOzJGfc9YmrPryBr1+F5MIh4Zq/7FGdXz98i4
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

-->

</rfc>
