<?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-rfc2629 version 1.5.12 -->
<?rfc rfcedstyle="yes"?>
<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="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-04" category="std" obsoletes="5077, 5246, 6961, 8446" updates="5705, 6066, 7627, 8422" submissionType="IETF" xml:lang="en" 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-04"/>
    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>Mozilla</organization>
      <address>
        <email>ekr@rtfm.com</email>
      </address>
    </author>
    <date year="2022" month="March" day="07"/>
    <area>General</area>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document specifies version 1.3 of the Transport Layer Security
(TLS) protocol.  TLS allows client/server applications to communicate
over the Internet in a way that is designed to prevent eavesdropping,
tampering, and message forgery.</t>
      <t>This document updates RFCs 5705, 6066, 7627, and 8422 and obsoletes
RFCs 5077, 5246, 6961, and 8446. This document also specifies new
requirements for TLS 1.2 implementations.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <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" format="default"/>, the Elliptic Curve Digital Signature
Algorithm (ECDSA) <xref target="ECDSA" format="default"/>, or the Edwards-Curve Digital Signature
Algorithm (EdDSA) <xref target="RFC8032" format="default"/>) 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" format="default"/>.
See <xref target="security-analysis" format="default"/> 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" format="default"/>) 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" format="default"/>) 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.</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" format="default"/>.  It also obsoletes the TLS ticket
mechanism defined in <xref target="RFC5077" format="default"/> and replaces it with the mechanism
defined in <xref target="resumption-and-psk" format="default"/>. Because TLS 1.3 changes the way keys are derived, it
updates <xref target="RFC5705" format="default"/> as described in <xref target="exporters" format="default"/>.  It also changes
how Online Certificate Status Protocol (OCSP) messages are carried and therefore updates <xref target="RFC6066" format="default"/>
and obsoletes <xref target="RFC6961" format="default"/> as described in <xref target="ocsp-and-sct" format="default"/>.</t>
      <section anchor="conventions-and-terminology" numbered="true" toc="default">
        <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" format="default"/> <xref target="RFC8174" format="default"/>
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" numbered="true" toc="default">
        <name>Relationship to RFC 8446</name>
        <t>TLS 1.3 was originally specified in <xref target="RFC8446" format="default"/>. 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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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" format="default"/>.</li>
          <li>RSASSA-PSS signature schemes are defined in <xref target="signature-algorithms" format="default"/>.</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" format="default"/> 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" format="default"/>.</t>
      </section>
    </section>
    <section anchor="protocol-overview" numbered="true" toc="default">
      <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" format="default"/>).</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" format="default"/> below shows the basic full TLS handshake:</t>
      <figure anchor="tls-full">
        <name>Message Flow for Full TLS Handshake</name>
        <artwork name="" type="" align="left" alt=""><![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" format="default"/>) 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" format="default"/>) extension), a list of pre-shared key labels (in the
"pre_shared_key" (<xref target="pre-shared-key-extension" format="default"/>) 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" format="default"/>), 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" format="default"/>]</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" format="default"/>]</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" format="default"/> or the cached information extension
<xref target="RFC7924" format="default"/> 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" format="default"/>]</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" format="default"/>]</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" format="default"/>]</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" format="default"/>.
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" numbered="true" toc="default">
        <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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <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" format="default"/>). 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" format="default"/>. 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" format="default"/> 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 name="" type="" align="left" alt=""><![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" format="default"/>. 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" numbered="true" toc="default">
        <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" format="default"/>, 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 name="" type="" align="left" alt=""><![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" format="default"/>). 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" format="default"/>
contains a description of potential attacks, and <xref target="anti-replay" format="default"/>
describes mechanisms which the server can use to limit the impact of
replay.</t>
      </section>
    </section>
    <section anchor="presentation-language" numbered="true" toc="default">
      <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" numbered="true" toc="default">
        <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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <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 name="" type="" align="left" alt=""><![CDATA[
   T T';
]]></artwork>
      </section>
      <section anchor="numbers" numbered="true" toc="default">
        <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" format="default"/> and are also unsigned. The following numeric
types are predefined.</t>
        <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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" format="default"/>). 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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![CDATA[
   enum { sad(0), meh(1..254), happy(255) } Mood;
]]></artwork>
      </section>
      <section anchor="constructed-types" numbered="true" toc="default">
        <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 name="" type="" align="left" alt=""><![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" format="default"/>) 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" numbered="true" toc="default">
        <name>Constants</name>
        <t>Fields and variables may be assigned a fixed value using "=", as in:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
   struct {
       T1 f1 = 8;  /* T.f1 must always be 8 */
       T2 f2;
   } T;
]]></artwork>
      </section>
      <section anchor="variants" numbered="true" toc="default">
        <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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
      <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 name="" type="" align="left" alt=""><![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" format="default"/> and shown in the diagrams in <xref target="protocol-overview" format="default"/>.
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" format="default"/>.</t>
      <section anchor="key-exchange-messages" numbered="true" toc="default">
        <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" numbered="true" toc="default">
          <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" format="default"/>) extension which indicates the (EC)DHE groups
which the client supports and a "key_share" (<xref target="key-share" format="default"/>) extension which contains
(EC)DHE shares for some or all of these groups.</li>
            <li>A "signature_algorithms" (<xref target="signature-algorithms" format="default"/>) extension which indicates the signature
algorithms which the client can accept. A "signature_algorithms_cert" extension (<xref target="signature-algorithms" format="default"/>) may also be
added to indicate certificate-specific signature algorithms.</li>
            <li>A "pre_shared_key" (<xref target="pre-shared-key-extension" format="default"/>) 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" format="default"/>)
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" format="default"/>) 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" format="default"/>) and CertificateVerify
(<xref target="certificate-verify" format="default"/>) 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" format="default"/>).</t>
        </section>
        <section anchor="client-hello" numbered="true" toc="default">
          <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" format="default"/>) 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" format="default"/>.</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 name="" type="" align="left" alt=""><![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" format="default"/>) 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" format="default"/> 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" format="default"/> 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" format="default"/>). 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" format="default"/>), 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" format="default"/>.
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" format="default"/>.  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" format="default"/>) while waiting for the next handshake message.</t>
        </section>
        <section anchor="server-hello" numbered="true" toc="default">
          <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 name="" type="" align="left" alt=""><![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" format="default"/>),
and the legacy_version field MUST
be set to 0x0303, which is the version number for TLS 1.2.
(See <xref target="backward-compatibility" format="default"/> 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" format="default"/> 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" format="default"/>) are sent
separately in the EncryptedExtensions message.</t>
            </dd>
          </dl>
          <t>For reasons of backward compatibility with middleboxes
(see <xref target="middlebox" format="default"/>), 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 name="" type="" align="left" alt=""><![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" format="default"/>).</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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![CDATA[
  44 4F 57 4E 47 52 44 00
]]></artwork>
          <t>Note that <xref target="RFC8996" format="default"/> and <xref target="backward-compatibility-security" format="default"/> 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" format="default"/>, 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" numbered="true" toc="default">
          <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" format="default"/>, 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" format="default"/>) 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" format="default"/> 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" format="default"/>)</li>
            <li>cookie (see <xref target="cookie" format="default"/>)</li>
            <li>key_share (see <xref target="key-share" format="default"/>)</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" numbered="true" toc="default">
        <name>Extensions</name>
        <t>A number of TLS messages contain tag-length-value encoded extensions structures.</t>
        <artwork name="" type="" align="left" alt=""><![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" format="default"/>.</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
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" align="center">
          <name>TLS Extensions</name>
          <thead>
            <tr>
              <th align="left">Extension</th>
              <th align="right">TLS 1.3</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">server_name <xref target="RFC6066" format="default"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">max_fragment_length <xref target="RFC6066" format="default"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">status_request <xref target="RFC6066" format="default"/></td>
              <td align="right">CH, CR, CT</td>
            </tr>
            <tr>
              <td align="left">supported_groups <xref target="RFC7919" format="default"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">signature_algorithms (RFC8446)</td>
              <td align="right">CH, CR</td>
            </tr>
            <tr>
              <td align="left">use_srtp <xref target="RFC5764" format="default"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">heartbeat <xref target="RFC6520" format="default"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">application_layer_protocol_negotiation <xref target="RFC7301" format="default"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">signed_certificate_timestamp <xref target="RFC6962" format="default"/></td>
              <td align="right">CH, CR, CT</td>
            </tr>
            <tr>
              <td align="left">client_certificate_type <xref target="RFC7250" format="default"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">server_certificate_type <xref target="RFC7250" format="default"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">padding <xref target="RFC7685" format="default"/></td>
              <td align="right">CH</td>
            </tr>
            <tr>
              <td align="left">cached_info <xref target="RFC7924" format="default"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">key_share (RFC 8446)</td>
              <td align="right">CH, SH, HRR</td>
            </tr>
            <tr>
              <td align="left">pre_shared_key (RFC 8446)</td>
              <td align="right">CH, SH</td>
            </tr>
            <tr>
              <td align="left">psk_key_exchange_modes (RFC 8446)</td>
              <td align="right">CH</td>
            </tr>
            <tr>
              <td align="left">early_data (RFC 8446)</td>
              <td align="right">CH, EE, NST</td>
            </tr>
            <tr>
              <td align="left">cookie (RFC 8446)</td>
              <td align="right">CH, HRR</td>
            </tr>
            <tr>
              <td align="left">supported_versions (RFC 8446)</td>
              <td align="right">CH, SH, HRR</td>
            </tr>
            <tr>
              <td align="left">certificate_authorities (RFC 8446)</td>
              <td align="right">CH, CR</td>
            </tr>
            <tr>
              <td align="left">oid_filters (RFC 8446)</td>
              <td align="right">CR</td>
            </tr>
            <tr>
              <td align="left">post_handshake_auth (RFC 8446)</td>
              <td align="right">CH</td>
            </tr>
            <tr>
              <td align="left">signature_algorithms_cert (RFC 8446)</td>
              <td align="right">CH, CR</td>
            </tr>
          </tbody>
        </table>
        <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" format="default"/>) 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" format="default"/>).</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" numbered="true" toc="default">
          <name>Supported Versions</name>
          <artwork name="" type="" align="left" alt=""><![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" format="default"/>, 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" numbered="true" toc="default">
          <name>Cookie</name>
          <artwork name="" type="" align="left" alt=""><![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" format="default"/> 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" format="default"/>). 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" numbered="true" toc="default">
          <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" format="default"/>).</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 name="" type="" align="left" alt=""><![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" format="default"/>
with the corresponding hash algorithm as defined in <xref target="SHS" format="default"/>. These values
refer solely to signatures which appear in certificates (see
<xref target="server-certificate-selection" format="default"/>) 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="ECDSA" format="default"/>, the corresponding
curve as defined in ANSI X9.62 <xref target="ECDSA" format="default"/> and FIPS 186-4 <xref target="DSS" format="default"/>, and the
corresponding hash algorithm as defined in <xref target="SHS" format="default"/>. The signature is
represented as a DER-encoded <xref target="X690" format="default"/> ECDSA-Sig-Value structure as defined in <xref target="RFC4492" format="default"/>.</t>
            </dd>
            <dt>
RSASSA-PSS RSAE algorithms:  </dt>
            <dd>
              <t>Indicates a signature algorithm using RSASSA-PSS <xref target="RFC8017" format="default"/> with mask
generation function 1. The
digest used in the mask generation function and the digest being signed are
both the corresponding hash algorithm as defined in <xref target="SHS" format="default"/>.
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" format="default"/>.</t>
            </dd>
            <dt>
EdDSA algorithms:  </dt>
            <dd>
              <t>Indicates a signature algorithm using EdDSA as defined in
<xref target="RFC8032" format="default"/> 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 <xref target="RFC8017" format="default"/> with mask
generation function 1. The
digest used in the mask generation function and the digest being signed are
both the corresponding hash algorithm as defined in <xref target="SHS" format="default"/>.
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" format="default"/>. 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" format="default"/>) 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" format="default"/>).</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" format="default"/>, 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" format="default"/> 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" format="default"/>, 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" numbered="true" toc="default">
          <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 name="" type="" align="left" alt=""><![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" format="default"/> of acceptable
certificate authorities, represented in DER-encoded <xref target="X690" format="default"/> 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" format="default"/>, 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" numbered="true" toc="default">
          <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 name="" type="" align="left" alt=""><![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" format="default"/> with their allowed value(s) and
represented in DER-encoded <xref target="X690" format="default"/> 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" format="default"/>:</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" numbered="true" toc="default">
          <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" format="default"/>). Servers
MUST NOT send a post-handshake CertificateRequest to clients which do not
offer this extension. Servers MUST NOT send this extension.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
   struct {} PostHandshakeAuth;
]]></artwork>
          <t>The "extension_data" field of the "post_handshake_auth" extension is zero length.</t>
        </section>
        <section anchor="supported-groups" numbered="true" toc="default">
          <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" format="default"/> and
<xref target="RFC7919" format="default"/>. This extension was also used to negotiate
ECDSA curves. Signature algorithms are now negotiated independently (see
<xref target="signature-algorithms" format="default"/>).</t>
          <t>The "extension_data" field of this extension contains a
"NamedGroupList" value:</t>
          <artwork name="" type="" align="left" alt=""><![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 FIPS 186-4 <xref target="DSS" format="default"/> or in <xref target="RFC7748" format="default"/>.
Values 0xFE00 through 0xFEFF are reserved for Private Use <xref target="RFC8126" format="default"/>.</t>
            </dd>
            <dt>
Finite Field Groups (DHE):  </dt>
            <dd>
              <t>Indicates support for the corresponding finite field
group, defined in <xref target="RFC7919" format="default"/>.
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" numbered="true" toc="default">
          <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" format="default"/>).</t>
          <artwork name="" type="" align="left" alt=""><![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" format="default"/> parameters are described in
<xref target="ffdhe-param" format="default"/>; Elliptic Curve Diffie-Hellman parameters are
described in <xref target="ecdhe-param" format="default"/>.</t>
            </dd>
          </dl>
          <t>In the ClientHello message, the "extension_data" field of this extension
contains a "KeyShareClientHello" value:</t>
          <artwork name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
            <name>Diffie-Hellman Parameters</name>
            <t>Diffie-Hellman <xref target="DH76" format="default"/> 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" format="default"/> 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" numbered="true" toc="default">
            <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 name="" type="" align="left" alt=""><![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 Section 4.3.7 of <xref target="ECDSA" format="default"/>
and alternatively in Section 5.6.2.3 of <xref target="KEYAGREEMENT" format="default"/>.
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" format="default"/>.
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" numbered="true" toc="default">
          <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 name="" type="" align="left" alt=""><![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" format="default"/>.</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" numbered="true" toc="default">
          <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" format="default"/>), 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 name="" type="" align="left" alt=""><![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" format="default"/> 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" format="default"/> 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" format="default"/>).  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" format="default"/> 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" format="default"/>.</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" numbered="true" toc="default">
          <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 name="" type="" align="left" alt=""><![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" format="default"/>) 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" format="default"/> 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" format="default"/>), 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" format="default"/>), 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" format="default"/>), 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" format="default"/>.</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" format="default"/> 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" format="default"/> and <xref target="psk-identity-exposure" format="default"/> 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" numbered="true" toc="default">
            <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" format="default"/>), modulo 2^32.
This addition prevents passive observers from correlating connections
unless tickets 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" numbered="true" toc="default">
            <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" format="default"/>) 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" format="default"/>) 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" format="default"/>).</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 name="" type="" align="left" alt=""><![CDATA[
   Transcript-Hash(Truncate(ClientHello1))
]]></artwork>
            <t>Where Truncate() removes the binders list from the ClientHello.</t>
            <t>If the server responds with a HelloRetryRequest and the client then sends
ClientHello2, its binder will be computed over:</t>
            <artwork name="" type="" align="left" alt=""><![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" format="default"/>.</t>
          </section>
          <section anchor="processing-order" numbered="true" toc="default">
            <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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
          <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 name="" type="" align="left" alt=""><![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" format="default"/>.</t>
            </dd>
          </dl>
        </section>
        <section anchor="certificate-request" numbered="true" toc="default">
          <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 name="" type="" align="left" alt=""><![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" format="default"/>.
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" format="default"/>).</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" format="default"/>)
provided that the client has sent the "post_handshake_auth"
extension (see <xref target="post_handshake_auth" format="default"/>).
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" numbered="true" toc="default">
        <name>Authentication Messages</name>
        <t>As discussed in <xref target="protocol-overview" format="default"/>, 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" align="center">
          <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" numbered="true" toc="default">
          <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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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" format="default"/>).</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" numbered="true" toc="default">
          <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" format="default"/>). 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 name="" type="" align="left" alt=""><![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" format="default"/>. Valid extensions for server certificates
at present include the OCSP Status extension <xref target="RFC6066" format="default"/> and the
SignedCertificateTimestamp extension <xref target="RFC6962" format="default"/>; 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" format="default"/>,
Section 3.</t>
          <t>The OpenPGP certificate type <xref target="RFC6091" format="default"/> 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" numbered="true" toc="default">
            <name>OCSP Status and SCT Extensions</name>
            <t><xref target="RFC6066" format="default"/> and <xref target="RFC6961" format="default"/> 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" format="default"/>, which is interpreted as defined in <xref target="RFC6960" format="default"/>.</t>
            <t>Note: The status_request_v2 extension <xref target="RFC6961" format="default"/> 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" format="default"/>.</t>
            <t>Similarly, <xref target="RFC6962" format="default"/> 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" numbered="true" toc="default">
            <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" format="default"/>, unless explicitly negotiated
otherwise (e.g., <xref target="RFC7250" format="default"/>).</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" format="default"/>). 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" format="default"/> 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" format="default"/>).
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" format="default"/> 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" numbered="true" toc="default">
            <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" format="default"/>, unless explicitly negotiated
otherwise (e.g., <xref target="RFC7250" format="default"/>).</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" format="default"/>.  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" format="default"/>.</li>
            </ul>
          </section>
          <section anchor="receiving-a-certificate-message" numbered="true" toc="default">
            <name>Receiving a Certificate Message</name>
            <t>In general, detailed certificate validation procedures are out of scope for
TLS (see <xref target="RFC5280" format="default"/>). 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" numbered="true" toc="default">
          <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 name="" type="" align="left" alt=""><![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" format="default"/> 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" format="default"/>, namely:</t>
          <artwork name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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" format="default"/>).</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" numbered="true" toc="default">
          <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" format="default"/>.</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" format="default"/> using HKDF (see
<xref target="key-schedule" format="default"/>). Specifically:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
finished_key =
    HKDF-Expand-Label(BaseKey, "finished", "", Hash.length)
]]></artwork>
          <t>Structure of this message:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
   struct {
       opaque verify_data[Hash.length];
   } Finished;
]]></artwork>
          <t>The verify_data value is computed as follows:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
   verify_data =
       HMAC(finished_key,
            Transcript-Hash(Handshake Context,
                            Certificate*, CertificateVerify*))

   * Only included if present.
]]></artwork>
          <t>HMAC <xref target="RFC2104" format="default"/> 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" format="default"/>.
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" numbered="true" toc="default">
        <name>End of Early Data</name>
        <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
          <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" format="default"/>).</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" format="default"/>). 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" format="default"/>).
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" format="default"/> 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 name="" type="" align="left" alt=""><![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" format="default"/>. 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" format="default"/>). 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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
          <name>Post-Handshake Authentication</name>
          <t>When the client has sent the "post_handshake_auth" extension (see
<xref target="post_handshake_auth" format="default"/>), 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" format="default"/>). 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" numbered="true" toc="default">
          <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" format="default"/>.
Upon receiving a KeyUpdate, the receiver MUST update its receiving keys.</t>
          <artwork name="" type="" align="left" alt=""><![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>
        </section>
      </section>
    </section>
    <section anchor="record-protocol" numbered="true" toc="default">
      <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" format="default"/>).</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" format="default"/>.</t>
      <section anchor="record-layer" numbered="true" toc="default">
        <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" format="default"/>) 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 name="" type="" align="left" alt=""><![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" format="default"/>.</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" format="default"/> for details).</t>
      </section>
      <section anchor="record-payload-protection" numbered="true" toc="default">
        <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" format="default"/>.
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 name="" type="" align="left" alt=""><![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" format="default"/> 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" format="default"/>. 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" format="default"/>), and the additional data input is the
record header. I.e.,</t>
        <artwork name="" type="" align="left" alt=""><![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" format="default"/>.</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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <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" format="default"/>) 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" format="default"/>.
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" format="default"/>, 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" numbered="true" toc="default">
        <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" format="default"/> -- 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" numbered="true" toc="default">
        <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" format="default"/> 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" format="default"/> 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" numbered="true" toc="default">
      <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" format="default"/>). 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" format="default"/> 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" format="default"/>) 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 name="" type="" align="left" alt=""><![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),
       no_application_protocol(120),
       (255)
   } AlertDescription;

   struct {
       AlertLevel level;
       AlertDescription description;
   } Alert;
]]></artwork>
      <section anchor="closure-alerts" numbered="true" toc="default">
        <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.</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
SHOULD be followed by a "close_notify". This alert generally
has AlertLevel=warning.</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 closure 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" numbered="true" toc="default">
        <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" format="default"/>).
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" format="default"/>).</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" format="default"/>).</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" format="default"/>).</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" format="default"/>).</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>
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" format="default"/>).</t>
          </dd>
        </dl>
        <t>New Alert values are assigned by IANA as described in <xref target="iana-considerations" format="default"/>.</t>
      </section>
    </section>
    <section anchor="cryptographic-computations" numbered="true" toc="default">
      <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" numbered="true" toc="default">
        <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" format="default"/>, as well as the functions
defined below:</t>
        <artwork name="" type="" align="left" alt=""><![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" format="default"/>)</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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <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" format="default"/>.  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" format="default"/>.</t>
        <t>The next-generation application_traffic_secret is computed as:</t>
        <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <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 name="" type="" align="left" alt=""><![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" align="center">
          <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" numbered="true" toc="default">
        <name>(EC)DHE Shared Secret Calculation</name>
        <section anchor="finite-field-diffie-hellman" numbered="true" toc="default">
          <name>Finite Field Diffie-Hellman</name>
          <t>For finite field groups, a conventional Diffie-Hellman
<xref target="DH76" format="default"/> 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" numbered="true" toc="default">
          <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" format="default"/> 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" format="default"/> 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" format="default"/>. If implementors use an alternative
implementation of these elliptic curves, they SHOULD perform the
additional checks specified in Section 7 of <xref target="RFC7748" format="default"/>.</t>
        </section>
      </section>
      <section anchor="exporters" numbered="true" toc="default">
        <name>Exporters</name>
        <t><xref target="RFC5705" format="default"/> 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 name="" type="" align="left" alt=""><![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" format="default"/>.</t>
      </section>
    </section>
    <section anchor="anti-replay" numbered="true" toc="default">
      <name>0-RTT and Anti-Replay</name>
      <t>As noted in <xref target="zero-rtt-data" format="default"/> and <xref target="replay-0rtt" format="default"/>, 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" format="default"/>).  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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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" format="default"/>. 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" format="default"/>).
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" format="default"/>.</t>
      </section>
      <section anchor="freshness-checks" numbered="true" toc="default">
        <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" format="default"/> 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 name="" type="" align="left" alt=""><![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 name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
      <name>Compliance Requirements</name>
      <section anchor="mandatory-to-implement-cipher-suites" numbered="true" toc="default">
        <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" format="default"/>
cipher suite and SHOULD implement the TLS_AES_256_GCM_SHA384 <xref target="GCM" format="default"/> and
TLS_CHACHA20_POLY1305_SHA256 <xref target="RFC8439" format="default"/> cipher suites (see
<xref target="cipher-suites" format="default"/>).</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" format="default"/>.</t>
      </section>
      <section anchor="mti-extensions" numbered="true" toc="default">
        <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" format="default"/>)</li>
          <li>Cookie                 ("cookie"; <xref target="cookie" format="default"/>)</li>
          <li>Signature Algorithms   ("signature_algorithms"; <xref target="signature-algorithms" format="default"/>)</li>
          <li>Signature Algorithms Certificate  ("signature_algorithms_cert"; <xref target="signature-algorithms" format="default"/>)</li>
          <li>Negotiated Groups      ("supported_groups"; <xref target="supported-groups" format="default"/>)</li>
          <li>Key Share              ("key_share"; <xref target="key-share" format="default"/>)</li>
          <li>Server Name Indication ("server_name"; Section 3 of <xref target="RFC6066" format="default"/>)</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" numbered="true" toc="default">
        <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" format="default"/>). 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" format="default"/>); however, it does not relax the invariants.
Those middleboxes continue to be non-compliant.</t>
      </section>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>Security issues are discussed throughout this memo, especially in
<xref target="implementation-notes" format="default"/>, <xref target="backward-compatibility" format="default"/>, and <xref target="security-analysis" format="default"/>.</t>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <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" format="default"/> and updated in <xref target="RFC8447" format="default"/>. 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" format="default"/>.
Values with the first byte 255 (decimal) are reserved for Private
Use <xref target="RFC8126" format="default"/>.  </t>
          <t>
IANA has added the cipher suites listed in <xref target="cipher-suites" format="default"/> 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" format="default"/>.</li>
        <li>TLS Alerts registry: Future values are allocated via Standards
Action <xref target="RFC8126" format="default"/>. IANA has populated this registry
with the values from <xref target="alert-messages-appendix" format="default"/>. 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" format="default"/>. 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" format="default"/>.
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" format="default"/>. 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" format="default"/>.  Values with the first byte
255 (decimal) are reserved for Private Use <xref target="RFC8126" format="default"/>.</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" format="default"/>,
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" format="default"/> and updated in <xref target="RFC8447" format="default"/>.  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" format="default"/>.  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" format="default"/>; now maintained
by <xref target="RFC8422" format="default"/>) and updated by <xref target="RFC7919" format="default"/> and <xref target="RFC8447" format="default"/>.  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" format="default"/>.
Values with the first byte 254 or 255 (decimal) are reserved for Private
Use <xref target="RFC8126" format="default"/>. 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" format="default"/>. 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" format="default"/>.  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" format="default"/>.  The values 254 and 255 (decimal) are
reserved for Private Use <xref target="RFC8126" format="default"/>.  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" format="default"/>.  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">
          <front>
            <title>New directions in cryptography</title>
            <author fullname="W. Diffie" initials="W." surname="Diffie">
              <organization/>
            </author>
            <author fullname="M. Hellman" initials="M." surname="Hellman">
              <organization/>
            </author>
            <date month="November" year="1976"/>
          </front>
          <seriesInfo name="IEEE Transactions on Information Theory" value="Vol. 22, pp. 644-654"/>
          <seriesInfo name="DOI" value="10.1109/tit.1976.1055638"/>
        </reference>
        <reference anchor="GCM">
          <front>
            <title>Recommendation for Block Cipher Modes of Operation: Galois/Counter Mode (GCM) and GMAC</title>
            <author initials="M." surname="Dworkin">
              <organization/>
            </author>
            <date year="2007" month="November"/>
          </front>
          <seriesInfo name="NIST" value="Special Publication 800-38D"/>
        </reference>
        <reference anchor="ECDSA">
          <front>
            <title>Public Key Cryptography for the Financial Services Industry: The Elliptic Curve Digital Signature Algorithm (ECDSA)</title>
            <author>
              <organization>American National Standards Institute</organization>
            </author>
            <date year="2005" month="November"/>
          </front>
          <seriesInfo name="ANSI" value="ANS X9.62-2005"/>
        </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">
          <front>
            <title>Secure Hash Standard</title>
            <author fullname="Quynh H. Dang" initials="Q." surname="Dang">
              <organization/>
            </author>
            <date month="July" year="2015"/>
          </front>
          <seriesInfo name="National Institute of Standards and Technology" value="report"/>
          <seriesInfo name="DOI" value="10.6028/nist.fips.180-4"/>
        </reference>
        <reference anchor="RFC5756" 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">
          <front>
            <title>IEEE Standard Specifications for Public-Key Cryptography</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
          <seriesInfo name="IEEE" value="standard"/>
          <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="2022" 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">
          <front>
            <title>A method for obtaining digital signatures and public-key cryptosystems</title>
            <author fullname="R. L. Rivest" initials="R." surname="Rivest">
              <organization/>
            </author>
            <author fullname="A. Shamir" initials="A." surname="Shamir">
              <organization/>
            </author>
            <author fullname="L. Adleman" initials="L." surname="Adleman">
              <organization/>
            </author>
            <date month="February" year="1978"/>
          </front>
          <seriesInfo name="Communications of the ACM" value="Vol. 21, pp. 120-126"/>
          <seriesInfo name="DOI" value="10.1145/359340.359342"/>
        </reference>
        <reference anchor="RFC3552" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.3552.xml" 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="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="DSS">
          <front>
            <title>Digital Signature Standard (DSS)</title>
            <author>
              <organization/>
            </author>
            <date month="July" year="2013"/>
          </front>
          <seriesInfo name="National Institute of Standards and Technology" value="report"/>
          <seriesInfo name="DOI" value="10.6028/nist.fips.186-4"/>
        </reference>
        <reference anchor="SLOTH">
          <front>
            <title>Transcript Collision Attacks: Breaking Authentication in TLS, IKE, and SSH</title>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="Gaetan Leurent" initials="G." surname="Leurent">
              <organization/>
            </author>
            <date year="2016"/>
          </front>
          <seriesInfo name="Proceedings 2016 Network and Distributed System Security" value="Symposium"/>
          <seriesInfo name="DOI" value="10.14722/ndss.2016.23418"/>
        </reference>
        <reference anchor="RFC8422" 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">
          <front>
            <title>Recommendation for Pair-Wise Key Establishment Schemes Using Discrete Logarithm Cryptography</title>
            <author fullname="Elaine Barker" initials="E." surname="Barker">
              <organization/>
            </author>
            <author fullname="Lily Chen" initials="L." surname="Chen">
              <organization/>
            </author>
            <author fullname="Allen Roginsky" initials="A." surname="Roginsky">
              <organization/>
            </author>
            <author fullname="Miles Smid" initials="M." surname="Smid">
              <organization/>
            </author>
            <date month="May" year="2013"/>
          </front>
          <seriesInfo name="National Institute of Standards and Technology" value="report"/>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-56ar2"/>
        </reference>
        <reference anchor="RFC8449" 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">
          <front>
            <title>A Systematic Analysis of the Juniper Dual EC Incident</title>
            <author fullname="Stephen Checkoway" initials="S." surname="Checkoway">
              <organization/>
            </author>
            <author fullname="Jacob Maskiewicz" initials="J." surname="Maskiewicz">
              <organization/>
            </author>
            <author fullname="Christina Garman" initials="C." surname="Garman">
              <organization/>
            </author>
            <author fullname="Joshua Fried" initials="J." surname="Fried">
              <organization/>
            </author>
            <author fullname="Shaanan Cohney" initials="S." surname="Cohney">
              <organization/>
            </author>
            <author fullname="Matthew Green" initials="M." surname="Green">
              <organization/>
            </author>
            <author fullname="Nadia Heninger" initials="N." surname="Heninger">
              <organization/>
            </author>
            <author fullname="Ralf-Philipp Weinmann" initials="R." surname="Weinmann">
              <organization/>
            </author>
            <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <author fullname="Hovav Shacham" initials="H." surname="Shacham">
              <organization/>
            </author>
            <date month="October" year="2016"/>
          </front>
          <seriesInfo name="Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications" value="Security"/>
          <seriesInfo name="DOI" value="10.1145/2976749.2978395"/>
        </reference>
        <reference anchor="RFC8879" 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="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">
          <front>
            <title>Analysis of Key-Exchange Protocols and Their Use for Building Secure Channels</title>
            <author fullname="Ran Canetti" initials="R." surname="Canetti">
              <organization/>
            </author>
            <author fullname="Hugo Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2001"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 453-474"/>
          <seriesInfo name="DOI" value="10.1007/3-540-44987-6_28"/>
        </reference>
        <reference anchor="BBFGKZ16">
          <front>
            <title>Downgrade Resilience in Key-Exchange Protocols</title>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="Christina Brzuska" initials="C." surname="Brzuska">
              <organization/>
            </author>
            <author fullname="Cedric Fournet" initials="C." surname="Fournet">
              <organization/>
            </author>
            <author fullname="Matthew Green" initials="M." surname="Green">
              <organization/>
            </author>
            <author fullname="Markulf Kohlweiss" initials="M." surname="Kohlweiss">
              <organization/>
            </author>
            <author fullname="Santiago Zanella-Beguelin" initials="S." surname="Zanella-Beguelin">
              <organization/>
            </author>
            <date month="May" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE Symposium on Security and Privacy" value="(SP)"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.37"/>
        </reference>
        <reference anchor="DOW92">
          <front>
            <title>Authentication and authenticated key exchanges</title>
            <author fullname="Whitfield Diffie" initials="W." surname="Diffie">
              <organization/>
            </author>
            <author fullname="Paul C. Van Oorschot" initials="P." surname="Van Oorschot">
              <organization/>
            </author>
            <author fullname="Michael J. Wiener" initials="M." surname="Wiener">
              <organization/>
            </author>
            <date month="June" year="1992"/>
          </front>
          <seriesInfo name="Designs, Codes and Cryptography" value="Vol. 2, pp. 107-125"/>
          <seriesInfo name="DOI" value="10.1007/bf00124891"/>
        </reference>
        <reference anchor="SIGMA">
          <front>
            <title>SIGMA: The ‘SIGn-and-MAc’ Approach to Authenticated Diffie-Hellman and Its Use in the IKE Protocols</title>
            <author fullname="Hugo Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2003"/>
          </front>
          <seriesInfo name="Advances in Cryptology - CRYPTO 2003" value="pp. 400-425"/>
          <seriesInfo name="DOI" value="10.1007/978-3-540-45146-4_24"/>
        </reference>
        <reference anchor="CCG16">
          <front>
            <title>On Post-compromise Security</title>
            <author fullname="Katriel Cohn-Gordon" initials="K." surname="Cohn-Gordon">
              <organization/>
            </author>
            <author fullname="Cas Cremers" initials="C." surname="Cremers">
              <organization/>
            </author>
            <author fullname="Luke Garratt" initials="L." surname="Garratt">
              <organization/>
            </author>
            <date month="June" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE 29th Computer Security Foundations Symposium" value="(CSF)"/>
          <seriesInfo name="DOI" value="10.1109/csf.2016.19"/>
        </reference>
        <reference anchor="CHSV16">
          <front>
            <title>Automated Analysis and Verification of TLS 1.3: 0-RTT, Resumption and Delayed Authentication</title>
            <author fullname="Cas Cremers" initials="C." surname="Cremers">
              <organization/>
            </author>
            <author fullname="Marko Horvat" initials="M." surname="Horvat">
              <organization/>
            </author>
            <author fullname="Sam Scott" initials="S." surname="Scott">
              <organization/>
            </author>
            <author fullname="Thyla van der Merwe" initials="T." surname="van der Merwe">
              <organization/>
            </author>
            <date month="May" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE Symposium on Security and Privacy" value="(SP)"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.35"/>
        </reference>
        <reference anchor="LXZFH16">
          <front>
            <title>Multiple Handshakes Security of TLS 1.3 Candidates</title>
            <author fullname="Xinyu Li" initials="X." surname="Li">
              <organization/>
            </author>
            <author fullname="Jing Xu" initials="J." surname="Xu">
              <organization/>
            </author>
            <author fullname="Zhenfeng Zhang" initials="Z." surname="Zhang">
              <organization/>
            </author>
            <author fullname="Dengguo Feng" initials="D." surname="Feng">
              <organization/>
            </author>
            <author fullname="Honggang Hu" initials="H." surname="Hu">
              <organization/>
            </author>
            <date month="May" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE Symposium on Security and Privacy" value="(SP)"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.36"/>
        </reference>
        <reference anchor="BBK17">
          <front>
            <title>Verified Models and Reference Implementations for the TLS 1.3 Standard Candidate</title>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="Bruno Blanchet" initials="B." surname="Blanchet">
              <organization/>
            </author>
            <author fullname="Nadim Kobeissi" initials="N." surname="Kobeissi">
              <organization/>
            </author>
            <date month="May" year="2017"/>
          </front>
          <seriesInfo name="2017 IEEE Symposium on Security and Privacy" value="(SP)"/>
          <seriesInfo name="DOI" value="10.1109/sp.2017.26"/>
        </reference>
        <reference anchor="REKEY">
          <front>
            <title>Increasing the Lifetime of a Key: A Comparative Analysis of the Security of Re-keying Techniques</title>
            <author fullname="Michel Abdalla" initials="M." surname="Abdalla">
              <organization/>
            </author>
            <author fullname="Mihir Bellare" initials="M." surname="Bellare">
              <organization/>
            </author>
            <date year="2000"/>
          </front>
          <seriesInfo name="Advances in Cryptology - ASIACRYPT 2000" value="pp. 546-559"/>
          <seriesInfo name="DOI" value="10.1007/3-540-44448-3_42"/>
        </reference>
        <reference anchor="CLINIC">
          <front>
            <title>I Know Why You Went to the Clinic: Risks and Realization of HTTPS Traffic Analysis</title>
            <author fullname="Brad Miller" initials="B." surname="Miller">
              <organization/>
            </author>
            <author fullname="Ling Huang" initials="L." surname="Huang">
              <organization/>
            </author>
            <author fullname="A. D. Joseph" initials="A." surname="Joseph">
              <organization/>
            </author>
            <author fullname="J. D. Tygar" initials="J." surname="Tygar">
              <organization/>
            </author>
            <date year="2014"/>
          </front>
          <seriesInfo name="Privacy Enhancing Technologies" value="pp. 143-163"/>
          <seriesInfo name="DOI" value="10.1007/978-3-319-08506-7_8"/>
        </reference>
        <reference anchor="HCJC16">
          <front>
            <title>HTTPS traffic analysis and client identification using passive SSL/TLS fingerprinting</title>
            <author fullname="Martin Husák" initials="M." surname="Husák">
              <organization/>
            </author>
            <author fullname="Milan Čermák" initials="M." surname="Čermák">
              <organization/>
            </author>
            <author fullname="Tomáš Jirsík" initials="T." surname="Jirsík">
              <organization/>
            </author>
            <author fullname="Pavel Čeleda" initials="P." surname="Čeleda">
              <organization/>
            </author>
            <date month="February" year="2016"/>
          </front>
          <seriesInfo name="EURASIP Journal on Information Security" value="Vol. 2016"/>
          <seriesInfo name="DOI" value="10.1186/s13635-016-0030-7"/>
        </reference>
        <reference anchor="JSS15">
          <front>
            <title>On the Security of TLS 1.3 and QUIC Against Weaknesses in PKCS#1 v1.5 Encryption</title>
            <author fullname="Tibor Jager" initials="T." surname="Jager">
              <organization/>
            </author>
            <author fullname="Jörg Schwenk" initials="J." surname="Schwenk">
              <organization/>
            </author>
            <author fullname="Juraj Somorovsky" initials="J." surname="Somorovsky">
              <organization/>
            </author>
            <date month="October" year="2015"/>
          </front>
          <seriesInfo name="Proceedings of the 22nd ACM SIGSAC Conference on Computer and Communications" value="Security"/>
          <seriesInfo name="DOI" value="10.1145/2810103.2813657"/>
        </reference>
      </references>
    </references>
    <section anchor="state-machine" numbered="true" toc="default">
      <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" numbered="true" toc="default">
        <name>Client</name>
        <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <name>Server</name>
        <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
      <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" numbered="true" toc="default">
        <name>Record Layer</name>
        <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <name>Alert Messages</name>
        <artwork name="" type="" align="left" alt=""><![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),
       no_application_protocol(120),
       (255)
   } AlertDescription;

   struct {
       AlertLevel level;
       AlertDescription description;
   } Alert;
]]></artwork>
      </section>
      <section anchor="handshake-protocol-appendix" numbered="true" toc="default">
        <name>Handshake Protocol</name>
        <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
          <name>Key Exchange Messages</name>
          <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
            <name>Version Extension</name>
            <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
            <name>Cookie Extension</name>
            <artwork name="" type="" align="left" alt=""><![CDATA[
   struct {
       opaque cookie<1..2^16-1>;
   } Cookie;
]]></artwork>
          </section>
          <section anchor="signature-algorithm-extension" numbered="true" toc="default">
            <name>Signature Algorithm Extension</name>
            <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
            <name>Supported Groups Extension</name>
            <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
          <name>Server Parameters Messages</name>
          <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
          <name>Authentication Messages</name>
          <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
          <name>Ticket Establishment</name>
          <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
          <name>Updating Keys</name>
          <artwork name="" type="" align="left" alt=""><![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" numbered="true" toc="default">
        <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 name="" type="" align="left" alt=""><![CDATA[
   CipherSuite TLS_AEAD_HASH = VALUE;
]]></artwork>
        <table anchor="cs-components" align="center">
          <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" align="center">
          <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" format="default"/>. AEAD_CHACHA20_POLY1305 is defined
in <xref target="RFC8439" format="default"/>. AEAD_AES_128_CCM_8 is defined in <xref target="RFC6655" format="default"/>. The corresponding
hash algorithms are defined in <xref target="SHS" format="default"/>.</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" format="default"/>.</t>
      </section>
    </section>
    <section anchor="implementation-notes" numbered="true" toc="default">
      <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" format="default"/> provides test vectors for TLS 1.3 handshakes.</t>
      <section anchor="random-number-generation-and-seeding" numbered="true" toc="default">
        <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" format="default"/> 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" format="default"/> and
<xref target="DSA-1571-1" format="default"/>.</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" format="default"/> 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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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" format="default"/>)? 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" format="default"/> 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" format="default"/>)?</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" format="default"/>)?</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" format="default"/>)?</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" format="default"/>), hello extensions (<xref target="extensions" format="default"/>), named groups
(<xref target="supported-groups" format="default"/>), key shares (<xref target="key-share" format="default"/>),
supported versions (<xref target="supported-versions" format="default"/>),
and signature algorithms (<xref target="signature-algorithms" format="default"/>) 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" format="default"/>?</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" format="default"/>)?</li>
          <li>Does your TLS client check that the Diffie-Hellman parameters sent
by the server are acceptable (see <xref target="ffdhe-param" format="default"/>)?</li>
          <li>Do you use a strong and, most importantly, properly seeded random number
generator (see <xref target="random-number-generation-and-seeding" format="default"/>) 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" format="default"/>. 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" format="default"/> and <xref target="finite-field-diffie-hellman" format="default"/>)?</li>
          <li>Do you verify signatures after making them, to protect against RSA-CRT
key leaks <xref target="FW15" format="default"/>?</li>
        </ul>
      </section>
      <section anchor="client-tracking" numbered="true" toc="default">
        <name>Client 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" format="default"/> 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" format="default"/> defines network partition keys to separate
cache lookups in web browsers.</t>
      </section>
      <section anchor="unauthenticated-operation" numbered="true" toc="default">
        <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" format="default"/>.</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" format="default"/> 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" numbered="true" toc="default">
      <name>Updates to TLS 1.2</name>
      <t>To align with the names used this document, the following terms from
<xref target="RFC5246" format="default"/> are renamed:</t>
      <ul spacing="normal">
        <li>The master secret, computed in Section 8.1 of <xref target="RFC5246" format="default"/>, 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" format="default"/>, are renamed to PreliminarySecret and
EncryptedPreliminarySecret, respectively.</li>
      </ul>
      <t>Correspondingly, the extension defined in <xref target="RFC7627" format="default"/> 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" format="default"/> is left unchanged for compatibility.</t>
    </section>
    <section anchor="backward-compatibility" numbered="true" toc="default">
      <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" format="default"/>).</t>
      <t>TLS 1.2 and prior supported an "Extended Main Secret" <xref target="RFC7627" format="default"/> 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" format="default"/>. 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" numbered="true" toc="default">
        <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" format="default"/>.</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" numbered="true" toc="default">
        <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" format="default"/>. 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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <name>Middlebox Compatibility Mode</name>
        <t>Field measurements
<xref target="Ben17a" format="default"/> <xref target="Ben17b" format="default"/> <xref target="Res17a" format="default"/> <xref target="Res17b" format="default"/> 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" format="default"/>.</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" format="default"/>)
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" numbered="true" toc="default">
        <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" format="default"/>. 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" format="default"/>, SSL 3.0 <xref target="RFC6101" format="default"/>, TLS 1.0
<xref target="RFC2246" format="default"/>, and TLS 1.1 <xref target="RFC4346" format="default"/> are considered insufficient for
the reasons enumerated in <xref target="RFC6176" format="default"/>, <xref target="RFC7568" format="default"/>, and <xref target="RFC8996" format="default"/>
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" format="default"/>, 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" numbered="true" toc="default">
      <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" numbered="true" toc="default">
        <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" format="default"/>.
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" format="default"/>; 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" format="default"/>; 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" format="default"/>; 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" format="default"/>), as long as the session key itself has
been erased. The forward secrecy property is not satisfied
when PSK is used in the "psk_ke" PskKeyExchangeMode.</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" format="default"/>). 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" format="default"/> 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" format="default"/>, 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" format="default"/> 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: TLS 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" format="default"/>
describes a concrete attack on constructions that do not bind to
the server's certificate (see also <xref target="Kraw16" format="default"/>). 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.  Implementations MUST
NOT combine external PSKs with certificate-based authentication of
either the client or server. Future specifications MAY provide an
extension to permit this.</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" format="default"/>
allows the detection of downgrade to previous TLS versions.
See <xref target="BBFGKZ16" format="default"/> 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" numbered="true" toc="default">
          <name>Key Derivation and HKDF</name>
          <t>Key derivation in TLS 1.3 uses  HKDF as defined in <xref target="RFC5869" format="default"/> and
its two components, HKDF-Extract and HKDF-Expand. The full rationale for the HKDF
construction can be found in <xref target="Kraw10" format="default"/> and the rationale for the way it is used
in TLS 1.3 in <xref target="KW16" format="default"/>.  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" numbered="true" toc="default">
          <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" format="default"/> for details.
In addition, the analysis of post-handshake authentication from
<xref target="Kraw16" format="default"/> 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" numbered="true" toc="default">
          <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" format="default"/> for mechanisms to limit
the exposure to replay.</t>
        </section>
        <section anchor="exporter-independence" numbered="true" toc="default">
          <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" numbered="true" toc="default">
          <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" format="default"/>, 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" numbered="true" toc="default">
          <name>External References</name>
          <t>The reader should refer to the following references for analysis of the
TLS handshake: <xref target="DFGS15" format="default"/>, <xref target="CHSV16" format="default"/>, <xref target="DFGS16" format="default"/>, <xref target="KW16" format="default"/>, <xref target="Kraw16" format="default"/>, <xref target="FGSW16" format="default"/>,
<xref target="LXZFH16" format="default"/>, <xref target="FG17" format="default"/>, and <xref target="BBK17" format="default"/>.</t>
        </section>
      </section>
      <section anchor="security-record-layer" numbered="true" toc="default">
        <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" format="default"/>, 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" format="default"/> 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" format="default"/> 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" format="default"/>), 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" format="default"/> for analysis of this construction.</t>
        <t>The rekeying technique in TLS 1.3 (see <xref target="updating-traffic-keys" format="default"/>) follows the
construction of the serial generator as discussed in <xref target="REKEY" format="default"/>, 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" numbered="true" toc="default">
          <name>External References</name>
          <t>The reader should refer to the following references for analysis of the TLS record layer:
<xref target="BMMRT15" format="default"/>, <xref target="BT16" format="default"/>, <xref target="BDFKPPRSZZ16" format="default"/>, <xref target="BBK17" format="default"/>, and <xref target="PS18" format="default"/>.</t>
        </section>
      </section>
      <section anchor="traffic-analysis" numbered="true" toc="default">
        <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" format="default"/>
          <xref target="HCJC16" format="default"/>.
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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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>Exploiting cache timing behavior to discover the content of 0-RTT
messages by replaying a 0-RTT message to a different cache node
and then using a separate connection to measure request latency,
to see if the two requests address the same resource.</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" format="default"/>.</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" format="default"/> 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" format="default"/>. 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" format="default"/> and <xref target="client-hello-recording" format="default"/> 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" numbered="true" toc="default">
          <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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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" format="default"/>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" format="default"/>. 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="changes-since-00" numbered="true" toc="default">
      <name>Changes Since -00</name>
      <t>[[RFC EDITOR: Please remove in final RFC.]]</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" toc="default">
      <name>Contributors</name>
      <artwork name="" type="" align="left" alt=""><![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
   
      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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
xah9m/6pO1SmcqsnbDcfvoD/AevhIQY6b/M1NakLHlm7NqjebE7Gq8Tt47Jz
YG5J0xd3QOss3LBO1UTafA767ebU1yikzZmoo6PUz9bB6bnLAjdVzeDN5mqt
VSs3jOz9sfnKCzI9kpurtJolf9xC7uovr60PAnjoDMe6mOe0VjyV5VmHeRu6
EVmmojsjqDG6zv36qfDWKo76mr1xFFfVkFoCPwpGOxDKN48LBsWyAqgDdddE
PS9wm1JXi8SLadcJ14kh2z4m76sY46n3a3D9wczKI8o0Tu32LX4959QsMyp/
5uIZa8qDQnOjkmhYK8vfvpSSQM6lVAPAEMQvnkMVszDovbm8DBBtyaeZl0Ef
dSBg19VjM09LCWCl7DwJLY8Y9gnZGvdg45/XwCWyUFckUsHnusLScxR2jnJJ
Ll9tc15zPK6B7WGN1sJ6GyMXmW4BRzFzSYBvWOpJ3lFExY3/lqmIJyDOZKxG
B2eMzj75iydLdv9ieaA70gRd4YR6QddQmUQMruVsEmFle1gzhs3CcJx8SQ7J
hOBGsC8UPmGwOvo/6pkL1B4RmdOLtHVwkPgGccyxVS31EYw5qvGEk5PZArxc
W7omsUmxZ7SwpNkyEdmTFNeYEPNLFDRxfabLEnQkwjVlbqqNQXZFCTxPNOau
GwSJfnY9HPKKlTbRMmQjAm2ajY5NDqxCXteWt2eYuFyQ+Ukp7twVYxHgSS9d
sFaXc8x94U+kbgalXUkon5G8H6pwS1F0pgO9IW4QfN7mQI/m5NHUMI+zdIE1
pYQN+PBKE6i+vgwnhmW5dWFSoiquN3ExoTLG0IpKfbedRYbBoIG93fE8ODQy
VkW0ihzmS5lYr6aVxb+Px5X31Pp1VQUlxSLldiHNFsvKgo5EvgSNUxPEu2hB
CHy4GKcEQCegsiKpCTZwkmDreAAkqcQPQ5x2ooXEDEsz9bqdzlRSea8wggTn
+ZT3VRC6nYqUF5r44vu4cDkIfj2wvN9MpuibdlhZGm0fCSuM/WT0Aon+9Ikq
BC6dArkiag/BkCaUY8J4tvp6tSGCFw59xmLZbPYufmHhp/oT9K+e6GtlJkJj
3Nv9k3c6Bg2HlaEefc1abMNhHJqm13Za90CvrT7kVswumBRf/ki2qUVcCOPF
VIGOiC+HOkBIWiuNEmasrX1fgjPJ7sDXhiL6RmGOyIMQuf5TDWTYEKbmIEnK
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
aYOi/inKqe21PAOUaYP59DGSiFMb4QyBbwfhS6YBlps59uo6+TULY6Htw2W8
Fsl1wud6lEY0u1pyDPRDk2FHartyAR4FjqyxAduzts795Zb76tAV6cQBesZ7
2rhHCcTKeDu2lCMcEp48+Y4JyAj4Ugl7Ik133NIlO+tEMnuCz15Fpmnjr3Sa
dQLe+uHSZLDxahmxa5MzZKrQkKxbMRwUz0DfsjkMtvi8GnFvU9oPj2rAtibB
ILDOjN/MetQVo8jCjsSJ/L6+ZQall0YDUiRrrZuo6K2QqvAGrBEn6JWWIUsy
jtIrMOoJVd0SSh5pgEkburhV40EyeQmpB2uYQlpCQOKCbS5vmSeCS/AmKIWV
C03f4ikhUyS1jauF8jM6FaKXUcUkw3nk3jsCCzCd61rZYKimsrG9RoNz+dUT
Oc6bdaOAQ9hlm3ptOWkpsss0MbzRpT7ZiQA5+1zjLMExdk6vb2XSnSkbl8yq
ywpvg2Tz8rHyB/3itnJlAPwNwgkaRPUAAuY8ACReEmFgs2OjcbYo1FD49eOk
Z6kV5UaR4uq+2CO0eW44lbVG1aysrUyJ3uqZpKG5PihFxUF1mGhotOh6o/nX
SWZNqvtuD5l2HAgaJ+GN7JyL6oV+IRFuA+MyUeOwj2HjEoZCZZ7W/MLWWmNw
rCpRZbokhQA8pcdLdkeeHukm2iwDAhJ8h5QWxTK0VHb0yR6VlpH07OQhVJo5
JUXxnynhF7YPM6sAMoRx3CW3QK4QMchwlbqPaopeX3nUl1nuypMxlt3wygWk
nSkPdoFRjnaRr3ovNYeMa81en4R2PMLu4lmZZueD6aRbjimvXs+xKmv7I7lO
jfIPEZ7yCa9yl7+RYi3QqaViDW/Q6haKfl9g1cGeJ2dB/LDuoQ6GUiPhYS2u
rVk+uXqVJL9FK+ecN1YY2XXguEwwmVKJvBECsHjK64RjwHchk+VCx1FGFJec
NepkUYmXbtX8eoObQq4SyBvbKlMR1NjNPJ6UsSPqEFXSG5NsDj4fmCvwsubC
FQLVhLMcgjye21P6l6PSMFfvWqjl9s8VQDdA1gUpbTcbN9QJPkRU/0PiwpS1
Y7m5ca+569GYnzAZ5JOIxxW+5g3FbePKGCr0oSTH2WwWFxO31a0pH2hJrG5U
b4Z0AHD1ACJ2hPIPljA8/4PL6IikYtwZ7hAjBzxTVZVFOfEPglS3z+uFdshq
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
/9Wm4o6JakaTMKhRlorC2Ncq/2nqkk+XbyZy0L7p1rekIjPzUJ873DmBRtzt
4ScBfQSbkDb2U/jpy6n75yf7l/g8K5BPcxyp6sVq8cMlrjO099M+Rxe1H5VR
Jv5NSvZPlQ1+p5MAr77qegqJZujIJYpl1treY/ZT+Phl9YmXjTxDUUdZNl8d
6G2HKtR01vqDnwUFjl3SBgLFc4wiVAsv8eKBXoAiV31wBELQHJBGSb9b0bsL
+MyODJRqz1GgwKkIZM/pEFwFseoZ0NN7Lf/igln6W+vpoF2+SDfE44b4o8Sy
G+AUJnjHIxFL6qc742iSfNoJqKg93BVYooY+qWB8xtv9a+SJP4+qZdtMyT69
rlcMu3jJD3Ai+Zuosd9QKNUFiOIMFe99/Pi/nn/z2eOvnv/wcnZyPDs5Of7i
d69fvp6dfPHZ4/iHR48eP/j8558zLZ3BwplRYCb3pWViYm3/9YjvxRWlQWml
EhgDxDxBEqZQg1L8vX0zpb0RxRZDVq4WgUzcqQC9OxYBBpSEKEjY8wQJcK0g
Fv47OWp/yCN6IgaoxxaRq7OEjovunYarnYGUwfmzhi+ZP7uYJQ0X6zo2GEfG
nCYY0IzX9sVySYWo8+rZNt6Ho4sbe31z+ujx+mSCf33w+cP1ifBJz28enZ7Q
Dy+ePf+mcjunpxQAzSiwJFlYQTRsr+LkSTf5TLkWj0ANaeufA5XFzfTyxYsX
Jw8eP8g2FP3x7PXz2enx8fHsi9PTL07jlkqK64tnf3h6Nn3+zYnheqv40LTB
cE3MJf1Y8MwC+4fxljkSqkf1nuTrzZvgw3TeocsoELmUHsR5y59udEXmWBFm
G1o3DDVNV3LNiC0At+btNrSl/a/V4cG/UuiwotmoaI4EqKxbdm9uj0JtUdR4
Or5+cfrD2SuyRPW8v2Bliqb5B7R6xq0+wylDCuorhallVFrs0zohTyNZwPLQ
ICSeVNlmDEZqOuy9pyMRuAdYRofFkF1CmOWlSq5OHQc8v6IKEEQTmW5VbaHq
phVicHF/YU0IsCj+3t2maiDCFd+Qrh+FWWw4aL4ecPzUd2E07hxUZZtB1YM4
CZS68SZwHjlSSy5Rg0RCDuYym2ASRz3iA/iX00ePTr7AkfvLw4efT9LOyU4c
Z2Q6nhXW8W628RZjRiAqIdoKf7cYbrgdXqw269sZqVTqQ/J86b3kdqcALoL9
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
peZLkzv0H2hA+W76Wl0TRMmgf9DvH3RO3xz2e5273sVO6sWSaJFixPsWaPbb
G7G/1Tba2tvGRjsrG+30NrHRLjWKRnd8eNQ/WD6i5pQ8HldkJG7O0uPRLW26
s9mbhWPcqo9RV7DftwPl9KrFADQvgor+cHKE0xYTJpJWw+KGuYL4xb2N7Yal
C9MHud3O6nYyg72N3YZVHq1eZc4i5Ncjf28+2t7e4yd7/5WlMS2b18WnQPLX
njVP12dFcrNsZTO3KIP62N+SVPXI09DDbjZjMhdCco+biEezAA9RlDlliN9I
ecHKQ7kNJYDO4E+3S53GrnL5YtB6cyPyrjT2ubmxTX1uL+kTi3PY9tuP6nVb
et1Z0itsVdB+51G97kivu0t6hZ0N2u8+qtdd7fXlyzhsgPIzLxYVSLOfXh7z
6r98GbdryY/mXgiT0FcLDXHGutfnm7TGJuNw7YNvi2pubooIaOBx18Ri6rK+
YyJsYCbjMfqoh+nhAghbv9MixP71x5F2jzZhI/bJOz5PrXpoAXD8nH/ak5+I
b/NPzx6x7Ru9A/niYdj6k2N8G70j6PuTMLuN3nF94uiomefwn3zslrfVMOnL
S9CD4KxRTxTKwT9tbTzd5J96+tP2xrNd/imiXnq629ve5qdb+sJe75n0sf1v
8Rrq5CKk9o3ey0Nanl5M7cDfaq3d2TiOWzct/cuXvNnw382vnSSvnT9ai0cT
t6jwFxjW6k5MIE75F9xhSQyoQjHF8oXR2Nc4aZxBA5aG1iYmtNYFyHLZOCoO
Uc48CLoFs6kHxWLmrA4C0Rju4NOU3ItAmvhJCn15Mr/Oy1nOhaWx8jHG7GJt
uRk1Tq6zEY7tIR0X8/k4Z8wtKlxLqI8oP2vBLYbfXEwLCpskkNxE6+iV08vi
aiG4Voy0Sbm9D4IXoUWuTBkMEw9FQcUMOMx1zinP2cGpZ9DfxKHR2zJ8i2mV
XeZa/nGOiysrIbUzJGoZU7lNmTT8nEexZUgKSSQfjxOPbOHwTikTnlqPH9xk
4fdl0cqa5pWeelTfugdU5PojILFierUgny5SXiDir6Lr2pupMYj+1KitGs/z
gW/b4CRapYgEsYPqgiqL0RIX48rXGBih2VwHYuBLstGuHpZrlopF9yu9rZgt
aMFlNXc6Ky7RI1121gvY7IhrClX4xtXWKCUKrP405w89zqXbOKam8Afx3h8E
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
ij+62aj7xy37qv5feHj/7WNTBAA=

-->

</rfc>
