<?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.10 (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-06" category="std" consensus="true" obsoletes="5077, 5246, 6961, 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-06"/>
    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>Mozilla</organization>
      <address>
        <email>ekr@rtfm.com</email>
      </address>
    </author>
    <date year="2023" month="March" day="13"/>
    <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 applicaiton
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
solely an editorial update. It 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 neccessary.</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>
      <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>Optional components are denoted by enclosing them in "[[ ]]" (double
brackets).</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>If negotiating TLS 1.1 or below, TLS 1.3 servers MUST, and TLS 1.2
servers SHOULD, 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>Note that <xref target="RFC8996"/> and <xref target="backward-compatibility-security"/> forbid
the negotation of TLS versions below 1.2; implementations which do not
follow that guidance MUST behave as described above.</t>
          <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"/>).
Servers which are authenticating with an external PSK
MUST NOT send the CertificateRequest message either in the main handshake
or request post-handshake authentication. Future specifications MAY
provide an extension to permit this.</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 SHOULD
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 SHOULD not exceed the limits
when sending early data.</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>
        <t>[[OPEN ISSUE: Replace the strings with hex value?]]</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>[[OPEN ISSUE: Should we remove this? I am reluctant to create a situation
where one needs to read 8446 to process this document.]]</t>
      <t>[[OPEN ISSUE: Add some text to rename the extended_master_secret entry in
the extensions registry to extended_main_secret, after the above is resolved.]]</t>
      <t>This document uses several registries that were originally created in
<xref target="RFC4346"/> and updated in <xref target="RFC8447"/>. IANA has updated these to reference this document.
The registries and their allocation policies are below:</t>
      <ul spacing="normal">
        <li>
          <t>TLS Cipher Suites registry: values with the first byte in the range
0-254 (decimal) are assigned via Specification Required <xref target="RFC8126"/>.
Values with the first byte 255 (decimal) are reserved for Private
Use <xref target="RFC8126"/>.  </t>
          <t>
IANA has added the cipher suites listed in <xref target="cipher-suites"/> to
the registry. The "Value" and "Description" columns are taken from the table.
The "DTLS-OK" and "Recommended" columns are both marked as "Y" for each new
cipher suite.</t>
        </li>
        <li>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>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2104" target="https://www.rfc-editor.org/info/rfc2104">
          <front>
            <title>HMAC: Keyed-Hashing for Message Authentication</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="M. Bellare" initials="M." surname="Bellare">
              <organization/>
            </author>
            <author fullname="R. Canetti" initials="R." surname="Canetti">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <author fullname="S. Farrell" initials="S." surname="Farrell">
              <organization/>
            </author>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen">
              <organization/>
            </author>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <author fullname="W. Polk" initials="W." surname="Polk">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6066">
          <front>
            <title>Transport Layer Security (TLS) Extensions: Extension Definitions</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6655">
          <front>
            <title>AES-CCM Cipher Suites for Transport Layer Security (TLS)</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew">
              <organization/>
            </author>
            <author fullname="D. Bailey" initials="D." surname="Bailey">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc8439">
          <front>
            <title>ChaCha20 and Poly1305 for IETF Protocols</title>
            <author fullname="Y. Nir" initials="Y." surname="Nir">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="A. Delignat-Lavaud" initials="A." surname="Delignat-Lavaud">
              <organization/>
            </author>
            <author fullname="A. Pironti" initials="A." surname="Pironti">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="M. Ray" initials="M." surname="Ray">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc7748">
          <front>
            <title>Elliptic Curves for Security</title>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="M. Hamburg" initials="M." surname="Hamburg">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." surname="Turner">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc7919">
          <front>
            <title>Negotiated Finite Field Diffie-Hellman Ephemeral Parameters for Transport Layer Security (TLS)</title>
            <author fullname="D. Gillmor" initials="D." surname="Gillmor">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc8032">
          <front>
            <title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <author fullname="I. Liusvaara" initials="I." surname="Liusvaara">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc8017">
          <front>
            <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty">
              <organization/>
            </author>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski">
              <organization/>
            </author>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson">
              <organization/>
            </author>
            <author fullname="A. Rusch" initials="A." surname="Rusch">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5116">
          <front>
            <title>An Interface and Algorithms for Authenticated Encryption</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew">
              <organization/>
            </author>
            <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" target="http://dx.doi.org/10.1109/tit.1976.1055638">
          <front>
            <title>New directions in cryptography</title>
            <author fullname="W. Diffie" surname="Diffie"/>
            <author fullname="M. Hellman" surname="Hellman"/>
            <author>
              <organization>Institute of Electrical and Electronics Engineers (IEEE)</organization>
            </author>
            <date month="November" year="1976"/>
          </front>
          <refcontent>IEEE Transactions on Information Theory, vol. 22, no. 6, pp. 644-654</refcontent>
          <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" target="https://www.rfc-editor.org/info/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" target="http://dx.doi.org/10.6028/nist.fips.180-4">
          <front>
            <title>Secure Hash Standard</title>
            <author fullname="Quynh H. Dang" surname="Dang"/>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date month="July" year="2015"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.fips.180-4"/>
        </reference>
        <reference anchor="RFC5756" target="https://www.rfc-editor.org/info/rfc5756">
          <front>
            <title>Updates for RSAES-OAEP and RSASSA-PSS Algorithm Parameters</title>
            <author fullname="S. Turner" initials="S." surname="Turner">
              <organization/>
            </author>
            <author fullname="D. Brown" initials="D." surname="Brown">
              <organization/>
            </author>
            <author fullname="K. Yiu" initials="K." surname="Yiu">
              <organization/>
            </author>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <author fullname="T. Polk" initials="T." surname="Polk">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl">
              <organization/>
            </author>
            <author fullname="A. Popov" initials="A." surname="Popov">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="E. Stephan" initials="E." surname="Stephan">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6962">
          <front>
            <title>Certificate Transparency</title>
            <author fullname="B. Laurie" initials="B." surname="Laurie">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="E. Kasper" initials="E." surname="Kasper">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6961">
          <front>
            <title>The Transport Layer Security (TLS) Multiple Certificate Status Request Extension</title>
            <author fullname="Y. Pettersen" initials="Y." surname="Pettersen">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6960">
          <front>
            <title>X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP</title>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <author fullname="M. Myers" initials="M." surname="Myers">
              <organization/>
            </author>
            <author fullname="R. Ankney" initials="R." surname="Ankney">
              <organization/>
            </author>
            <author fullname="A. Malpani" initials="A." surname="Malpani">
              <organization/>
            </author>
            <author fullname="S. Galperin" initials="S." surname="Galperin">
              <organization/>
            </author>
            <author fullname="C. Adams" initials="C." surname="Adams">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc7507">
          <front>
            <title>TLS Fallback Signaling Cipher Suite Value (SCSV) for Preventing Protocol Downgrade Attacks</title>
            <author fullname="B. Moeller" initials="B." surname="Moeller">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <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" target="http://dx.doi.org/10.1109/ieeestd.2000.92292">
          <front>
            <title>IEEE Standard Specifications for Public-Key Cryptography</title>
            <author>
              <organization>IEEE</organization>
            </author>
            <date day="23" month="September" year="2008"/>
          </front>
          <seriesInfo name="DOI" value="10.1109/ieeestd.2000.92292"/>
        </reference>
        <reference anchor="RFC5705" target="https://www.rfc-editor.org/info/rfc5705">
          <front>
            <title>Keying Material Exporters for Transport Layer Security (TLS)</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <author fullname="J. Schiller" initials="J." surname="Schiller">
              <organization/>
            </author>
            <author fullname="S. Crocker" initials="S." surname="Crocker">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc4346">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.1</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc4366">
          <front>
            <title>Transport Layer Security (TLS) Extensions</title>
            <author fullname="S. Blake-Wilson" initials="S." surname="Blake-Wilson">
              <organization/>
            </author>
            <author fullname="M. Nystrom" initials="M." surname="Nystrom">
              <organization/>
            </author>
            <author fullname="D. Hopwood" initials="D." surname="Hopwood">
              <organization/>
            </author>
            <author fullname="J. Mikkelsen" initials="J." surname="Mikkelsen">
              <organization/>
            </author>
            <author fullname="T. Wright" initials="T." surname="Wright">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="N. Bolyard" initials="N." surname="Bolyard">
              <organization/>
            </author>
            <author fullname="V. Gupta" initials="V." surname="Gupta">
              <organization/>
            </author>
            <author fullname="C. Hawk" initials="C." surname="Hawk">
              <organization/>
            </author>
            <author fullname="B. Moeller" initials="B." surname="Moeller">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5077">
          <front>
            <title>Transport Layer Security (TLS) Session Resumption without Server-Side State</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey">
              <organization/>
            </author>
            <author fullname="H. Zhou" initials="H." surname="Zhou">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc5929">
          <front>
            <title>Channel Bindings for TLS</title>
            <author fullname="J. Altman" initials="J." surname="Altman">
              <organization/>
            </author>
            <author fullname="N. Williams" initials="N." surname="Williams">
              <organization/>
            </author>
            <author fullname="L. Zhu" initials="L." surname="Zhu">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6176">
          <front>
            <title>Prohibiting Secure Sockets Layer (SSL) Version 2.0</title>
            <author fullname="S. Turner" initials="S." surname="Turner">
              <organization/>
            </author>
            <author fullname="T. Polk" initials="T." surname="Polk">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6091">
          <front>
            <title>Using OpenPGP Keys for Transport Layer Security (TLS) Authentication</title>
            <author fullname="N. Mavrogiannopoulos" initials="N." surname="Mavrogiannopoulos">
              <organization/>
            </author>
            <author fullname="D. Gillmor" initials="D." surname="Gillmor">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6520">
          <front>
            <title>Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) Heartbeat Extension</title>
            <author fullname="R. Seggelmann" initials="R." surname="Seggelmann">
              <organization/>
            </author>
            <author fullname="M. Tuexen" initials="M." surname="Tuexen">
              <organization/>
            </author>
            <author fullname="M. Williams" initials="M." surname="Williams">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc8305">
          <front>
            <title>Happy Eyeballs Version 2: Better Connectivity Using Concurrency</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <author fullname="T. Pauly" initials="T." surname="Pauly">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc7230">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." role="editor" surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="J. Gilmore" initials="J." surname="Gilmore">
              <organization/>
            </author>
            <author fullname="S. Weiler" initials="S." surname="Weiler">
              <organization/>
            </author>
            <author fullname="T. Kivinen" initials="T." surname="Kivinen">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc7465">
          <front>
            <title>Prohibiting RC4 Cipher Suites</title>
            <author fullname="A. Popov" initials="A." surname="Popov">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc7568">
          <front>
            <title>Deprecating Secure Sockets Layer Version 3.0</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." surname="Thomson">
              <organization/>
            </author>
            <author fullname="A. Pironti" initials="A." surname="Pironti">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="B. Schneier" initials="B." surname="Schneier">
              <organization/>
            </author>
            <author fullname="C. Jennings" initials="C." surname="Jennings">
              <organization/>
            </author>
            <author fullname="T. Hardie" initials="T." surname="Hardie">
              <organization/>
            </author>
            <author fullname="B. Trammell" initials="B." surname="Trammell">
              <organization/>
            </author>
            <author fullname="C. Huitema" initials="C." surname="Huitema">
              <organization/>
            </author>
            <author fullname="D. Borkmann" initials="D." surname="Borkmann">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc7685">
          <front>
            <title>A Transport Layer Security (TLS) ClientHello Padding Extension</title>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc8937">
          <front>
            <title>Randomness Improvements for Security Protocols</title>
            <author fullname="C. Cremers" initials="C." surname="Cremers">
              <organization/>
            </author>
            <author fullname="L. Garratt" initials="L." surname="Garratt">
              <organization/>
            </author>
            <author fullname="S. Smyshlyaev" initials="S." surname="Smyshlyaev">
              <organization/>
            </author>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan">
              <organization/>
            </author>
            <author fullname="C. Wood" initials="C." surname="Wood">
              <organization/>
            </author>
            <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="March"/>
          </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" target="http://dx.doi.org/10.1145/359340.359342">
          <front>
            <title>A method for obtaining digital signatures and public-key cryptosystems</title>
            <author fullname="R. L. Rivest" surname="Rivest">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <author fullname="A. Shamir" surname="Shamir">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <author fullname="L. Adleman" surname="Adleman">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <author>
              <organization>Association for Computing Machinery (ACM)</organization>
            </author>
            <date month="February" year="1978"/>
            <abstract>
              <t>
            An encryption method is presented with the novel property that publicly revealing an encryption key does not thereby reveal the corresponding decryption key. This has two important consequences: (1) Couriers or other secure means are not needed to transmit keys, since a message can be enciphered using an encryption key publicly revealed by the intented recipient. Only he can decipher the message, since only he knows the corresponding decryption key. (2) A message can be "signed" using a privately held decryption key. Anyone can verify this signature using the corresponding publicly revealed encryption key. Signatures cannot be forged, and a signer cannot later deny the validity of his signature. This has obvious applications in "electronic mail" and "electronic funds transfer" systems. A message is encrypted by representing it as a number M, raising M to a publicly specified power e, and then taking the remainder when the result is divided by the publicly specified product,
              </t>
            </abstract>
          </front>
          <refcontent>Communications of the ACM, vol. 21, no. 2, pp. 120-126</refcontent>
          <seriesInfo name="DOI" value="10.1145/359340.359342"/>
        </reference>
        <reference anchor="DSS" target="http://dx.doi.org/10.6028/nist.fips.186-5">
          <front>
            <title>Digital Signature Standard (DSS)</title>
            <author fullname="Dustin Moody" surname="Moody">
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date year="2023"/>
            <abstract>
              <t>&lt;jats:p /&gt;</t>
            </abstract>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.fips.186-5"/>
        </reference>
        <reference anchor="RFC3552" target="https://www.rfc-editor.org/info/rfc3552">
          <front>
            <title>Guidelines for Writing RFC Text on Security Considerations</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <author fullname="B. Korver" initials="B." surname="Korver">
              <organization/>
            </author>
            <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" target="https://datatracker.ietf.org/doc/html/draft-ietf-uta-rfc6125bis-12">
          <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="13" month="March" 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-12"/>
        </reference>
        <reference anchor="RFC8446" target="https://www.rfc-editor.org/info/rfc8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc7924">
          <front>
            <title>Transport Layer Security (TLS) Cached Information Extension</title>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc6347">
          <front>
            <title>Datagram Transport Layer Security Version 1.2</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu">
              <organization/>
            </author>
            <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" target="http://dx.doi.org/10.6028/nist.sp.800-186">
          <front>
            <title>Recommendations for Discrete Logarithm-based Cryptography:</title>
            <author fullname="Dustin Moody" surname="Moody"/>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date year="2022"/>
            <abstract>
              <t>&lt;jats:p /&gt;</t>
            </abstract>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-186"/>
        </reference>
        <reference anchor="SLOTH" target="http://dx.doi.org/10.14722/ndss.2016.23418">
          <front>
            <title>Transcript Collision Attacks: Breaking Authentication in TLS, IKE, and SSH</title>
            <author fullname="Karthikeyan Bhargavan" surname="Bhargavan"/>
            <author fullname="Gaetan Leurent" surname="Leurent"/>
            <author>
              <organization>Internet Society</organization>
            </author>
            <date year="2016"/>
          </front>
          <refcontent>Proceedings 2016 Network and Distributed System Security Symposium</refcontent>
          <seriesInfo name="DOI" value="10.14722/ndss.2016.23418"/>
        </reference>
        <reference anchor="RFC8422" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <author fullname="M. Pegourie-Gonnard" initials="M." surname="Pegourie-Gonnard">
              <organization/>
            </author>
            <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" target="http://dx.doi.org/10.6028/nist.sp.800-56ar2">
          <front>
            <title>Recommendation for Pair-Wise Key Establishment Schemes Using Discrete Logarithm Cryptography</title>
            <author fullname="Elaine Barker" surname="Barker"/>
            <author fullname="Lily Chen" surname="Chen"/>
            <author fullname="Allen Roginsky" surname="Roginsky"/>
            <author fullname="Miles Smid" surname="Smid"/>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date month="May" year="2013"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-56ar2"/>
        </reference>
        <reference anchor="RFC8449" target="https://www.rfc-editor.org/info/rfc8449">
          <front>
            <title>Record Size Limit Extension for TLS</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc8447">
          <front>
            <title>IANA Registry Updates for TLS and DTLS</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." surname="Turner">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc8448">
          <front>
            <title>Example Handshake Traces for TLS 1.3</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson">
              <organization/>
            </author>
            <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" target="http://dx.doi.org/10.1145/2976749.2978395">
          <front>
            <title>A Systematic Analysis of the Juniper Dual EC Incident</title>
            <author fullname="Stephen Checkoway" surname="Checkoway">
              <organization>University of Illinois at Chicago, Chicago, IL, USA</organization>
            </author>
            <author fullname="Jacob Maskiewicz" surname="Maskiewicz">
              <organization>UC San Diego, La Jolla, CA, USA</organization>
            </author>
            <author fullname="Christina Garman" surname="Garman">
              <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
            </author>
            <author fullname="Joshua Fried" surname="Fried">
              <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
            </author>
            <author fullname="Shaanan Cohney" surname="Cohney">
              <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
            </author>
            <author fullname="Matthew Green" surname="Green">
              <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
            </author>
            <author fullname="Nadia Heninger" surname="Heninger">
              <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
            </author>
            <author fullname="Ralf-Philipp Weinmann" surname="Weinmann">
              <organization>Comsecuris, Duisburg, Germany</organization>
            </author>
            <author fullname="Eric Rescorla" surname="Rescorla">
              <organization>UC San Diego, La Jolla, CA, USA</organization>
            </author>
            <author fullname="Hovav Shacham" surname="Shacham">
              <organization>UC San Diego, La Jolla, CA, USA</organization>
            </author>
            <author>
              <organization>ACM</organization>
            </author>
            <date day="24" month="October" year="2016"/>
          </front>
          <refcontent>Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications Security</refcontent>
          <seriesInfo name="DOI" value="10.1145/2976749.2978395"/>
        </reference>
        <reference anchor="RFC8879" target="https://www.rfc-editor.org/info/rfc8879">
          <front>
            <title>TLS Certificate Compression</title>
            <author fullname="A. Ghedini" initials="A." surname="Ghedini">
              <organization/>
            </author>
            <author fullname="V. Vasiliev" initials="V." surname="Vasiliev">
              <organization/>
            </author>
            <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" target="https://datatracker.ietf.org/doc/html/draft-ietf-tls-esni-15">
          <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="3" month="October" year="2022"/>
            <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-15"/>
        </reference>
        <reference anchor="RFC6101" target="https://www.rfc-editor.org/info/rfc6101">
          <front>
            <title>The Secure Sockets Layer (SSL) Protocol Version 3.0</title>
            <author fullname="A. Freier" initials="A." surname="Freier">
              <organization/>
            </author>
            <author fullname="P. Karlton" initials="P." surname="Karlton">
              <organization/>
            </author>
            <author fullname="P. Kocher" initials="P." surname="Kocher">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc2246">
          <front>
            <title>The TLS Protocol Version 1.0</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks">
              <organization/>
            </author>
            <author fullname="C. Allen" initials="C." surname="Allen">
              <organization/>
            </author>
            <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" target="http://dx.doi.org/10.1007/3-540-44987-6_28">
          <front>
            <title>Analysis of Key-Exchange Protocols and Their Use for Building Secure Channels</title>
            <author fullname="Ran Canetti" surname="Canetti"/>
            <author fullname="Hugo Krawczyk" surname="Krawczyk"/>
            <author>
              <organization>Springer Berlin Heidelberg</organization>
            </author>
            <date year="2001"/>
          </front>
          <refcontent>Lecture Notes in Computer Science, pp. 453-474</refcontent>
          <seriesInfo name="DOI" value="10.1007/3-540-44987-6_28"/>
        </reference>
        <reference anchor="BBFGKZ16" target="http://dx.doi.org/10.1109/sp.2016.37">
          <front>
            <title>Downgrade Resilience in Key-Exchange Protocols</title>
            <author fullname="Karthikeyan Bhargavan" surname="Bhargavan"/>
            <author fullname="Christina Brzuska" surname="Brzuska"/>
            <author fullname="Cedric Fournet" surname="Fournet"/>
            <author fullname="Matthew Green" surname="Green"/>
            <author fullname="Markulf Kohlweiss" surname="Kohlweiss"/>
            <author fullname="Santiago Zanella-Beguelin" surname="Zanella-Beguelin"/>
            <author>
              <organization>IEEE</organization>
            </author>
            <date month="May" year="2016"/>
          </front>
          <refcontent>2016 IEEE Symposium on Security and Privacy (SP)</refcontent>
          <seriesInfo name="DOI" value="10.1109/sp.2016.37"/>
        </reference>
        <reference anchor="DOW92" target="http://dx.doi.org/10.1007/bf00124891">
          <front>
            <title>Authentication and authenticated key exchanges</title>
            <author fullname="Whitfield Diffie" surname="Diffie"/>
            <author fullname="Paul C. Van Oorschot" surname="Van Oorschot"/>
            <author fullname="Michael J. Wiener" surname="Wiener"/>
            <author>
              <organization>Springer Science and Business Media LLC</organization>
            </author>
            <date month="June" year="1992"/>
          </front>
          <refcontent>Designs, Codes and Cryptography, vol. 2, no. 2, pp. 107-125</refcontent>
          <seriesInfo name="DOI" value="10.1007/bf00124891"/>
        </reference>
        <reference anchor="SIGMA" target="http://dx.doi.org/10.1007/978-3-540-45146-4_24">
          <front>
            <title>SIGMA: The ‘SIGn-and-MAc’ Approach to Authenticated Diffie-Hellman and Its Use in the IKE Protocols</title>
            <author fullname="Hugo Krawczyk" surname="Krawczyk"/>
            <author>
              <organization>Springer Berlin Heidelberg</organization>
            </author>
            <date year="2003"/>
          </front>
          <refcontent>Advances in Cryptology - CRYPTO 2003, pp. 400-425</refcontent>
          <seriesInfo name="DOI" value="10.1007/978-3-540-45146-4_24"/>
        </reference>
        <reference anchor="RFC8773" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <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" target="http://dx.doi.org/10.1109/csf.2016.19">
          <front>
            <title>On Post-compromise Security</title>
            <author fullname="Katriel Cohn-Gordon" surname="Cohn-Gordon"/>
            <author fullname="Cas Cremers" surname="Cremers"/>
            <author fullname="Luke Garratt" surname="Garratt"/>
            <author>
              <organization>IEEE</organization>
            </author>
            <date month="June" year="2016"/>
          </front>
          <refcontent>2016 IEEE 29th Computer Security Foundations Symposium (CSF)</refcontent>
          <seriesInfo name="DOI" value="10.1109/csf.2016.19"/>
        </reference>
        <reference anchor="CHSV16" target="http://dx.doi.org/10.1109/sp.2016.35">
          <front>
            <title>Automated Analysis and Verification of TLS 1.3: 0-RTT, Resumption and Delayed Authentication</title>
            <author fullname="Cas Cremers" surname="Cremers"/>
            <author fullname="Marko Horvat" surname="Horvat"/>
            <author fullname="Sam Scott" surname="Scott"/>
            <author fullname="Thyla van der Merwe" surname="van der Merwe"/>
            <author>
              <organization>IEEE</organization>
            </author>
            <date month="May" year="2016"/>
          </front>
          <refcontent>2016 IEEE Symposium on Security and Privacy (SP)</refcontent>
          <seriesInfo name="DOI" value="10.1109/sp.2016.35"/>
        </reference>
        <reference anchor="LXZFH16" target="http://dx.doi.org/10.1109/sp.2016.36">
          <front>
            <title>Multiple Handshakes Security of TLS 1.3 Candidates</title>
            <author fullname="Xinyu Li" surname="Li"/>
            <author fullname="Jing Xu" surname="Xu"/>
            <author fullname="Zhenfeng Zhang" surname="Zhang"/>
            <author fullname="Dengguo Feng" surname="Feng"/>
            <author fullname="Honggang Hu" surname="Hu"/>
            <author>
              <organization>IEEE</organization>
            </author>
            <date month="May" year="2016"/>
          </front>
          <refcontent>2016 IEEE Symposium on Security and Privacy (SP)</refcontent>
          <seriesInfo name="DOI" value="10.1109/sp.2016.36"/>
        </reference>
        <reference anchor="BBK17" target="http://dx.doi.org/10.1109/sp.2017.26">
          <front>
            <title>Verified Models and Reference Implementations for the TLS 1.3 Standard Candidate</title>
            <author fullname="Karthikeyan Bhargavan" surname="Bhargavan"/>
            <author fullname="Bruno Blanchet" surname="Blanchet"/>
            <author fullname="Nadim Kobeissi" surname="Kobeissi"/>
            <author>
              <organization>IEEE</organization>
            </author>
            <date month="May" year="2017"/>
          </front>
          <refcontent>2017 IEEE Symposium on Security and Privacy (SP)</refcontent>
          <seriesInfo name="DOI" value="10.1109/sp.2017.26"/>
        </reference>
        <reference anchor="REKEY" target="http://dx.doi.org/10.1007/3-540-44448-3_42">
          <front>
            <title>Increasing the Lifetime of a Key: A Comparative Analysis of the Security of Re-keying Techniques</title>
            <author fullname="Michel Abdalla" surname="Abdalla"/>
            <author fullname="Mihir Bellare" surname="Bellare"/>
            <author>
              <organization>Springer Berlin Heidelberg</organization>
            </author>
            <date year="2000"/>
          </front>
          <refcontent>Advances in Cryptology — ASIACRYPT 2000, pp. 546-559</refcontent>
          <seriesInfo name="DOI" value="10.1007/3-540-44448-3_42"/>
        </reference>
        <reference anchor="CLINIC" target="http://dx.doi.org/10.1007/978-3-319-08506-7_8">
          <front>
            <title>I Know Why You Went to the Clinic: Risks and Realization of HTTPS Traffic Analysis</title>
            <author fullname="Brad Miller" surname="Miller"/>
            <author fullname="Ling Huang" surname="Huang"/>
            <author fullname="A. D. Joseph" surname="Joseph"/>
            <author fullname="J. D. Tygar" surname="Tygar"/>
            <author>
              <organization>Springer International Publishing</organization>
            </author>
            <date year="2014"/>
          </front>
          <refcontent>Privacy Enhancing Technologies, pp. 143-163</refcontent>
          <seriesInfo name="DOI" value="10.1007/978-3-319-08506-7_8"/>
        </reference>
        <reference anchor="HCJC16" target="http://dx.doi.org/10.1186/s13635-016-0030-7">
          <front>
            <title>HTTPS traffic analysis and client identification using passive SSL/TLS fingerprinting</title>
            <author fullname="Martin Husák" surname="Husák"/>
            <author fullname="Milan Čermák" surname="Čermák"/>
            <author fullname="Tomáš Jirsík" surname="Jirsík"/>
            <author fullname="Pavel Čeleda" surname="Čeleda"/>
            <author>
              <organization>Springer Science and Business Media LLC</organization>
            </author>
            <date day="26" month="February" year="2016"/>
          </front>
          <refcontent>EURASIP Journal on Information Security, vol. 2016, no. 1</refcontent>
          <seriesInfo name="DOI" value="10.1186/s13635-016-0030-7"/>
        </reference>
        <reference anchor="JSS15" target="http://dx.doi.org/10.1145/2810103.2813657">
          <front>
            <title>On the Security of TLS 1.3 and QUIC Against Weaknesses in PKCS#1 v1.5 Encryption</title>
            <author fullname="Tibor Jager" surname="Jager">
              <organization>Horst Görtz Institute, Ruhr University Bochum, Bochum, Germany</organization>
            </author>
            <author fullname="Jörg Schwenk" surname="Schwenk">
              <organization>Horst Görtz Institute, Ruhr University Bochum, Bochum, Germany</organization>
            </author>
            <author fullname="Juraj Somorovsky" surname="Somorovsky">
              <organization>Horst Görtz Institute, Ruhr University Bochum, Bochum, Germany</organization>
            </author>
            <author>
              <organization>ACM</organization>
            </author>
            <date day="12" month="October" year="2015"/>
          </front>
          <refcontent>Proceedings of the 22nd ACM SIGSAC Conference on Computer and Communications Security</refcontent>
          <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>
      </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_master_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.]]</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

      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:
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
5Lt6uye1Rr8cnV1e9V/H4bAb60TLaEM/09r2b65wcWH4jsLojWMQyxvf+Bkf
04zrj2mgp6cYCUBrsW6Ipwog5sPFyZDHJeL8n79qgTn/l8qUPlKUT/1bf8qT
MAYgXAwM66y/ede4aEE7murx6QX838X61jTbP92v9M96zMWKPqwipE8eMTr+
lxvjY19oHOAjXlYqfszIZFQ/P6Zp43g4eaLx9b/+G/f+8uz9Wf/16Un849rj
In1rBXPX9L81Nf2VWERYy/C3dYcbj5ZwhvBorWzPn7Bb/utf6zP/Db6Kp5P6
buiFOvFzgtuID1UcYyX45gE6JhCAvbO7jowylT93qyZy/OH9+9PjS7hBOTPW
B4L4Aojmvku0ACX5Az1EM/r3ORqUnB+c+i3AUFxXAus8Wm+5NWtxgA/iAVld
x+R1OXAd/Z4WdKZvMnQAfTjEzmCtap6ai8hH/HFR4LEF0yH4U07o/+rNFNxN
lctJeEjj9aQbvvJ+WvXH3TxfuaIuTo9/Prk6rt4+K/7gaDCizoS7fHUgaxu8
P3314fLs6JJlsq99GvOZGq6+lW982wk1X1lxe61/s3a+Zat+i1af51Wvxk2c
ITKHfc3gHXPgA15jDA3rY/lCE0NYf0/Tn/eF5J43MXktEdA8jNov0LIutzRf
H66dP//Rr/3bbKZgXJJ0LDKbjF4uktMPcImspPo/7ejsNe9EHHtZrO/EcCfX
yQrRbEUfbt1p7f1CrXyh8cGKF9zN+vbs1evLbWFTj+IIq3r8Gr0gwaD7pXFX
kfYZLtaFcS85s6RpCI8e1DpRcF3LuqS1ovVXhMGvvM6ZJ3U5sNq6JjVWZa51
cwlH96hX7tyvq+W08M9fOzVR7XHXS7PEtrJ5s2Cz/s/aC6kq4EQm0YNSy/uK
6M/BQcdacpRtTitNBOR8oDA+lHFcvOyCPFPqKSRjOItOEZfn5M5L79UVV1pS
RtYfT8FSS/ESrazJReYWQsmgPqiMhFYBRcgPTNTvujDCxrh/DF6lK4OwBwbL
RcQhiVpiiH4mCY5TCyghJeyINXoGII7fIvp9FOmOpPlyGn+2+4NxhZNs1NoK
S+OJy5ijda4w3K+1XWlCEl5ruxf+6lhta3u70t5UCkc+3dreCRu0tvf2NvWH
LzYo6LmbANd7CKdgo4cW1No8VOKStGSyHA0frhiMQL3cwRvLLF/09qXiW/Ck
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
ZgQA

-->

</rfc>
