<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.23 (Ruby 3.3.6) -->
<?rfc rfcedstyle="yes"?>
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc text-list-symbols="-o*+"?>
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="pre5378Trust200902" docName="draft-ietf-tls-rfc8446bis-12" category="std" consensus="true" submissionType="IETF" obsoletes="8446" updates="5705, 6066, 7627, 8422" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.26.0 -->
  <front>
    <title abbrev="TLS">The Transport Layer Security (TLS) Protocol Version 1.3</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-tls-rfc8446bis-12"/>
    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>Independent</organization>
      <address>
        <email>ekr@rtfm.com</email>
      </address>
    </author>
    <date year="2025" month="February" day="18"/>
    <area>Security</area>
    <workgroup>Transport Layer Security</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 410?>

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

<section anchor="introduction">
      <name>Introduction</name>
      <t>RFC EDITOR: PLEASE REMOVE THE FOLLOWING PARAGRAPH
The source for this draft is maintained in GitHub. Suggested changes
should be submitted as pull requests at
https://github.com/ekr/tls13-spec. Instructions are on that page as
well.</t>
      <t>The primary goal of TLS is to provide a secure channel between two
communicating peers; the only requirement from the underlying
transport is a reliable, in-order data stream. Specifically, the
secure channel should provide the following properties:</t>
      <ul spacing="normal">
        <li>
          <t>Authentication: The server side of the channel is always
authenticated; the client side is optionally
authenticated. Authentication can happen via asymmetric cryptography
(e.g., RSA <xref target="RSA"/>, the Elliptic Curve Digital Signature
Algorithm (ECDSA) <xref target="DSS"/>, or the Edwards-Curve Digital Signature
Algorithm (EdDSA) <xref target="RFC8032"/>) or a symmetric pre-shared key
(PSK).</t>
        </li>
        <li>
          <t>Confidentiality: Data sent over the channel after establishment
is only visible to the
endpoints. TLS does not hide the length of the data it transmits,
though endpoints are able to pad TLS records in order to obscure lengths
and improve protection against traffic analysis techniques.</t>
        </li>
        <li>
          <t>Integrity: Data sent over the channel after establishment cannot be
modified by attackers without detection.</t>
        </li>
      </ul>
      <t>These properties should be true even in the face of an attacker who has complete
control of the network, as described in <xref target="RFC3552"/>.
See <xref target="security-analysis"/> for a more complete statement of the relevant security
properties.</t>
      <t>TLS consists of two primary components:</t>
      <ul spacing="normal">
        <li>
          <t>A handshake protocol (<xref target="handshake-protocol"/>) that authenticates the communicating parties,
negotiates cryptographic algorithms and parameters, and establishes
shared keying material. The handshake protocol is designed to
resist tampering; an active attacker should not be able to force
the peers to negotiate different parameters than they would
if the connection were not under attack.</t>
        </li>
        <li>
          <t>A record protocol (<xref target="record-protocol"/>) that uses the parameters established by the
handshake protocol to protect traffic between the communicating
peers. The record protocol divides traffic up into a series of
records, each of which is independently protected using the
traffic keys.</t>
        </li>
      </ul>
      <t>TLS is application protocol independent; higher-level protocols can
layer on top of TLS transparently. The TLS standard, however, does not
specify how protocols add security with TLS; how to
initiate TLS handshaking and how to interpret the authentication
certificates exchanged are left to the judgment of the designers and
implementors of protocols that run on top of TLS. Application
protocols using TLS MUST specify how TLS works with their
application protocol, including how and when handshaking
occurs, and how to do identity verification. <xref target="RFC9525"/>
provides useful guidance on integrating TLS with application
protocols.</t>
      <t>This document defines TLS version 1.3. While TLS 1.3 is not directly
compatible with previous versions, all versions of TLS incorporate a
versioning mechanism which allows clients and servers to interoperably
negotiate a common version if one is supported by both peers.</t>
      <t>This document supersedes and obsoletes previous versions of TLS,
including version 1.2 <xref target="RFC5246"/>.  It also obsoletes the TLS ticket
mechanism defined in <xref target="RFC5077"/> and replaces it with the mechanism
defined in <xref target="resumption-and-psk"/>. Because TLS 1.3 changes the way keys are derived, it
updates <xref target="RFC5705"/> as described in <xref target="exporters"/>.  It also changes
how Online Certificate Status Protocol (OCSP) messages are carried and therefore updates <xref target="RFC6066"/>
and obsoletes <xref target="RFC6961"/> as described in <xref target="ocsp-and-sct"/>.</t>
      <section anchor="conventions-and-terminology">
        <name>Conventions and Terminology</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>
        <t>The following terms are used:</t>
        <t>client:  The endpoint initiating the TLS connection.</t>
        <t>connection:  A transport-layer connection between two endpoints.</t>
        <t>endpoint:  Either the client or server of the connection.</t>
        <t>handshake:  An initial negotiation between client and server that establishes the parameters of their subsequent interactions within TLS.</t>
        <t>peer:  An endpoint. When discussing a particular endpoint, "peer" refers to the endpoint that is not the primary subject of discussion.</t>
        <t>receiver:  An endpoint that is receiving records.</t>
        <t>sender:  An endpoint that is transmitting records.</t>
        <t>server:  The endpoint that did not initiate the TLS connection.</t>
      </section>
      <section anchor="relationship-to-rfc-8446">
        <name>Relationship to RFC 8446</name>
        <t>TLS 1.3 was originally specified in <xref target="RFC8446"/>. This document is a
minor update to TLS 1.3 that retains the same version number and is
backward compatible. It tightens some requirements and contains
updated text in areas which were found to be unclear as well as other
editorial improvements.  In addition, it removes the use of the term
"master" as applied to secrets in favor of the term "main" or shorter
names where no term was necessary. This document makes the following
specific technical changes:</t>
        <ul spacing="normal">
          <li>
            <t>Forbid negotiating TLS 1.0 and 1.1 as they are now deprecated by <xref target="RFC8996"/>.</t>
          </li>
          <li>
            <t>Removes ambiguity around which hash is used with PreSharedKeys and
HelloRetryRequest.</t>
          </li>
          <li>
            <t>Require that clients ignore NewSessionTicket if they do not
support resumption.</t>
          </li>
          <li>
            <t>Upgrade the requirement to initiate key update before exceeding
key usage limits to MUST.</t>
          </li>
          <li>
            <t>Limit the number of permitted KeyUpdate messages.</t>
          </li>
          <li>
            <t>Restore text defining the level of "close_notify" to "warning".
Clarify behavior around "user_canceled", requiring that
"close_notify" be sent and that "user_canceled" should
be ignored.</t>
          </li>
          <li>
            <t>Add a "general_error" generic alert.</t>
          </li>
          <li>
            <t>Corrected the lower bound on CertificateRequest.extensions
to be 0 bytes. This was an error in the syntax as it
is possible to send no extensions, which results in
length 0.</t>
          </li>
        </ul>
        <t>In addition, there have been some improvements to the
security considerations, especially around privacy.</t>
      </section>
      <section anchor="major-differences-from-tls-12">
        <name>Major Differences from TLS 1.2</name>
        <t>The following is a list of the major functional differences between
TLS 1.2 and TLS 1.3. It is not intended to be exhaustive, and there
are many minor differences.</t>
        <ul spacing="normal">
          <li>
            <t>The list of supported symmetric encryption algorithms has been pruned of all algorithms that
are considered legacy. Those that remain are all Authenticated Encryption
with Associated Data (AEAD) algorithms. The cipher suite concept has been
changed to separate the authentication and key exchange mechanisms from
the record protection algorithm (including secret key length) and a hash
to be used with both the key derivation function and handshake message
authentication code (MAC).</t>
          </li>
          <li>
            <t>A zero round-trip time (0-RTT) mode was added, saving a round trip at connection setup for
some application data, at the cost of certain security properties.</t>
          </li>
          <li>
            <t>Static RSA and Diffie-Hellman cipher suites have been removed;
all public-key based key exchange mechanisms now provide forward secrecy.</t>
          </li>
          <li>
            <t>All handshake messages after the ServerHello are now encrypted. The
newly introduced EncryptedExtensions message allows various extensions
previously sent in the clear in the ServerHello to also enjoy
confidentiality protection.</t>
          </li>
          <li>
            <t>The key derivation function has been redesigned. The new design allows
easier analysis by cryptographers due to their improved key separation
properties. The HMAC-based Extract-and-Expand Key Derivation Function (HKDF)
is used as an underlying primitive.</t>
          </li>
          <li>
            <t>The handshake state machine has been significantly restructured to
be more consistent and to remove superfluous messages such as
ChangeCipherSpec (except when needed for middlebox compatibility).</t>
          </li>
          <li>
            <t>Elliptic curve algorithms are now in the base 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.</t>
          </li>
          <li>
            <t>Other cryptographic improvements were made, including changing the RSA padding to use
the RSA Probabilistic Signature Scheme (RSASSA-PSS), and the removal
of compression, the Digital Signature Algorithm (DSA), and
custom Ephemeral Diffie-Hellman (DHE) groups.</t>
          </li>
          <li>
            <t>The TLS 1.2 version negotiation mechanism has been deprecated in favor
of a version list in an extension. This increases compatibility with
existing servers that incorrectly implemented version negotiation.</t>
          </li>
          <li>
            <t>Session resumption with and without server-side state as well as the
PSK-based cipher suites of earlier TLS versions have been replaced by a
single new PSK exchange.</t>
          </li>
          <li>
            <t>References have been updated to point to the updated versions of RFCs, as
appropriate (e.g., RFC 5280 rather than RFC 3280).</t>
          </li>
        </ul>
      </section>
      <section anchor="updates-affecting-tls-12">
        <name>Updates Affecting TLS 1.2</name>
        <t>This document defines several changes that optionally affect
implementations of TLS 1.2, including those which do not also
support TLS 1.3:</t>
        <ul spacing="normal">
          <li>
            <t>A version downgrade protection mechanism is described in <xref target="server-hello"/>.</t>
          </li>
          <li>
            <t>RSASSA-PSS signature schemes are defined in <xref target="signature-algorithms"/>.</t>
          </li>
          <li>
            <t>The "supported_versions" ClientHello extension can be used to negotiate
the version of TLS to use, in preference to the legacy_version field of
the ClientHello.</t>
          </li>
          <li>
            <t>The "signature_algorithms_cert" extension allows a client to indicate
which signature algorithms it can validate in X.509 certificates.</t>
          </li>
          <li>
            <t>The term "master" as applied to secrets has been removed, and the
"extended_master_secret" extension <xref target="RFC7627"/> has been renamed to
"extended_main_secret".</t>
          </li>
        </ul>
        <t>Additionally, this document clarifies some compliance requirements for earlier
versions of TLS; see <xref target="protocol-invariants"/>.</t>
      </section>
    </section>
    <section anchor="protocol-overview">
      <name>Protocol Overview</name>
      <t>The cryptographic parameters used by the secure channel are produced by the
TLS handshake protocol. This sub-protocol of TLS is used by the client
and server when first communicating with each other.
The handshake protocol allows peers to negotiate a protocol version,
select cryptographic algorithms, authenticate each other (with
client authentication being optional), and establish shared secret keying material.
Once the handshake is complete, the peers use the established keys
to protect the application-layer traffic.</t>
      <t>A failure of the handshake or other protocol error triggers the
termination of the connection, optionally preceded by an alert message
(<xref target="alert-protocol"/>).</t>
      <t>TLS supports three basic key exchange modes:</t>
      <ul spacing="normal">
        <li>
          <t>(EC)DHE (Diffie-Hellman over either finite fields or elliptic curves)</t>
        </li>
        <li>
          <t>PSK-only</t>
        </li>
        <li>
          <t>PSK with (EC)DHE</t>
        </li>
      </ul>
      <t><xref target="tls-full"/> below shows the basic full TLS handshake:</t>
      <figure anchor="tls-full">
        <name>Message Flow for Full TLS Handshake</name>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="544" width="624" viewBox="0 0 624 544" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 48,64 L 48,128" fill="none" stroke="black"/>
              <path d="M 48,288 L 48,320" fill="none" stroke="black"/>
              <path d="M 64,80 L 64,128" fill="none" stroke="black"/>
              <path d="M 552,144 L 552,176" fill="none" stroke="black"/>
              <path d="M 552,224 L 552,256" fill="none" stroke="black"/>
              <path d="M 272,128 L 336,128" fill="none" stroke="black"/>
              <path d="M 272,272 L 336,272" fill="none" stroke="black"/>
              <path d="M 272,320 L 336,320" fill="none" stroke="black"/>
              <path d="M 272,336 L 336,336" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="560,256 548,250.4 548,261.6" fill="black" transform="rotate(90,552,256)"/>
              <polygon class="arrowhead" points="560,224 548,218.4 548,229.6" fill="black" transform="rotate(270,552,224)"/>
              <polygon class="arrowhead" points="560,176 548,170.4 548,181.6" fill="black" transform="rotate(90,552,176)"/>
              <polygon class="arrowhead" points="560,144 548,138.4 548,149.6" fill="black" transform="rotate(270,552,144)"/>
              <polygon class="arrowhead" points="344,336 332,330.4 332,341.6" fill="black" transform="rotate(0,336,336)"/>
              <polygon class="arrowhead" points="344,320 332,314.4 332,325.6" fill="black" transform="rotate(0,336,320)"/>
              <polygon class="arrowhead" points="344,128 332,122.4 332,133.6" fill="black" transform="rotate(0,336,128)"/>
              <polygon class="arrowhead" points="280,336 268,330.4 268,341.6" fill="black" transform="rotate(180,272,336)"/>
              <polygon class="arrowhead" points="280,272 268,266.4 268,277.6" fill="black" transform="rotate(180,272,272)"/>
              <polygon class="arrowhead" points="56,320 44,314.4 44,325.6" fill="black" transform="rotate(90,48,320)"/>
              <polygon class="arrowhead" points="56,288 44,282.4 44,293.6" fill="black" transform="rotate(270,48,288)"/>
              <polygon class="arrowhead" points="56,128 44,122.4 44,133.6" fill="black" transform="rotate(90,48,128)"/>
              <polygon class="arrowhead" points="56,64 44,58.4 44,69.6" fill="black" transform="rotate(270,48,64)"/>
              <circle cx="120" cy="416" r="6" class="closeddot" fill="black"/>
              <g class="text">
                <text x="84" y="36">Client</text>
                <text x="500" y="36">Server</text>
                <text x="16" y="68">Key</text>
                <text x="104" y="68">ClientHello</text>
                <text x="20" y="84">Exch</text>
                <text x="116" y="84">key_share*</text>
                <text x="160" y="100">signature_algorithms*</text>
                <text x="168" y="116">psk_key_exchange_modes*</text>
                <text x="136" y="132">pre_shared_key*</text>
                <text x="488" y="148">ServerHello</text>
                <text x="576" y="148">Key</text>
                <text x="440" y="164">+</text>
                <text x="492" y="164">key_share*</text>
                <text x="580" y="164">Exch</text>
                <text x="400" y="180">+</text>
                <text x="472" y="180">pre_shared_key*</text>
                <text x="448" y="196">{EncryptedExtensions}</text>
                <text x="552" y="196">^</text>
                <text x="596" y="196">Server</text>
                <text x="448" y="212">{CertificateRequest*}</text>
                <text x="552" y="212">v</text>
                <text x="596" y="212">Params</text>
                <text x="476" y="228">{Certificate*}</text>
                <text x="452" y="244">{CertificateVerify*}</text>
                <text x="580" y="244">Auth</text>
                <text x="492" y="260">{Finished}</text>
                <text x="428" y="276">[Application</text>
                <text x="508" y="276">Data*]</text>
                <text x="116" y="292">{Certificate*}</text>
                <text x="20" y="308">Auth</text>
                <text x="140" y="308">{CertificateVerify*}</text>
                <text x="100" y="324">{Finished}</text>
                <text x="108" y="340">[Application</text>
                <text x="184" y="340">Data]</text>
                <text x="436" y="340">[Application</text>
                <text x="512" y="340">Data]</text>
                <text x="120" y="372">+</text>
                <text x="176" y="372">Indicates</text>
                <text x="260" y="372">noteworthy</text>
                <text x="348" y="372">extensions</text>
                <text x="412" y="372">sent</text>
                <text x="444" y="372">in</text>
                <text x="472" y="372">the</text>
                <text x="180" y="388">previously</text>
                <text x="248" y="388">noted</text>
                <text x="308" y="388">message.</text>
                <text x="176" y="420">Indicates</text>
                <text x="252" y="420">optional</text>
                <text x="300" y="420">or</text>
                <text x="392" y="420">situation-dependent</text>
                <text x="216" y="436">messages/extensions</text>
                <text x="316" y="436">that</text>
                <text x="352" y="436">are</text>
                <text x="384" y="436">not</text>
                <text x="428" y="436">always</text>
                <text x="480" y="436">sent.</text>
                <text x="124" y="468">{}</text>
                <text x="176" y="468">Indicates</text>
                <text x="252" y="468">messages</text>
                <text x="328" y="468">protected</text>
                <text x="392" y="468">using</text>
                <text x="436" y="468">keys</text>
                <text x="168" y="484">derived</text>
                <text x="220" y="484">from</text>
                <text x="248" y="484">a</text>
                <text x="396" y="484">[sender]_handshake_traffic_secret.</text>
                <text x="124" y="516">[]</text>
                <text x="176" y="516">Indicates</text>
                <text x="252" y="516">messages</text>
                <text x="328" y="516">protected</text>
                <text x="392" y="516">using</text>
                <text x="436" y="516">keys</text>
                <text x="168" y="532">derived</text>
                <text x="220" y="532">from</text>
                <text x="396" y="532">[sender]_application_traffic_secret_N.</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![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>
        </artset>
      </figure>
      <t>The handshake can be thought of as having three phases (indicated
in the diagram above):</t>
      <ul spacing="normal">
        <li>
          <t>Key Exchange: Establish shared keying material and select the
 cryptographic parameters. Everything after this phase is
 encrypted.</t>
        </li>
        <li>
          <t>Server Parameters: Establish other handshake parameters
 (whether the client is authenticated, application-layer protocol support, etc.).</t>
        </li>
        <li>
          <t>Authentication: Authenticate the server (and, optionally, the client)
 and provide key confirmation and handshake integrity.</t>
        </li>
      </ul>
      <t>In the Key Exchange phase, the client sends the ClientHello
(<xref target="client-hello"/>) message, which contains a random nonce
(ClientHello.random); its offered protocol versions; a list of
symmetric cipher/hash pairs; either a list of Diffie-Hellman key shares (in the
"key_share" (<xref target="key-share"/>) extension), a list of pre-shared key labels (in the
"pre_shared_key" (<xref target="pre-shared-key-extension"/>) extension), or both; and
potentially additional extensions.  Additional fields and/or messages
may also be present for middlebox compatibility.</t>
      <t>The server processes the ClientHello and determines the appropriate
cryptographic parameters for the connection. It then responds with its
own ServerHello (<xref target="server-hello"/>), which indicates the negotiated connection
parameters. The combination of the ClientHello
and the ServerHello determines the shared keys. If (EC)DHE
key establishment is in use, then the ServerHello
contains a "key_share" extension with the server's ephemeral
Diffie-Hellman share; the server's share MUST be in the same group as one of the
client's shares. If PSK key establishment is
in use, then the ServerHello contains a "pre_shared_key"
extension indicating which of the client's offered PSKs was selected.
Note that implementations can use (EC)DHE and PSK together, in which
case both extensions will be supplied.</t>
      <t>The server then sends two messages to establish the Server Parameters:</t>
      <dl>
        <dt>EncryptedExtensions:</dt>
        <dd>
          <t>responses to ClientHello extensions that are not required to
determine the cryptographic parameters, other than those
that are specific to individual certificates. [<xref target="encrypted-extensions"/>]</t>
        </dd>
        <dt>CertificateRequest:</dt>
        <dd>
          <t>if certificate-based client authentication is desired, the
desired parameters for that certificate. This message is
omitted if client authentication is not desired. [<xref target="certificate-request"/>]</t>
        </dd>
      </dl>
      <t>Finally, the client and server exchange Authentication messages. TLS
uses the same set of messages every time that certificate-based
authentication is needed.  (PSK-based authentication happens as a side
effect of key exchange.)
Specifically:</t>
      <dl>
        <dt>Certificate:</dt>
        <dd>
          <t>The certificate of the endpoint and any per-certificate extensions.
This message is omitted by the server if not authenticating with a
certificate and by the client if the server did not send
CertificateRequest (thus indicating that the client should not
authenticate with a certificate). Note that if raw
public keys <xref target="RFC7250"/> or the cached information extension
<xref target="RFC7924"/> are in use, then this message will not
contain a certificate but rather some other value corresponding to
the server's long-term key.  [<xref target="certificate"/>]</t>
        </dd>
        <dt>CertificateVerify:</dt>
        <dd>
          <t>A signature over the entire handshake using the private key
corresponding to the public key in the Certificate message. This
message is omitted if the endpoint is not authenticating via a
certificate. [<xref target="certificate-verify"/>]</t>
        </dd>
        <dt>Finished:</dt>
        <dd>
          <t>A MAC (Message Authentication Code) over the entire handshake.
This message provides key confirmation, binds the endpoint's identity
to the exchanged keys, and in PSK mode
also authenticates the handshake. [<xref target="finished"/>]</t>
        </dd>
      </dl>
      <t>Upon receiving the server's messages, the client responds with its Authentication
messages, namely Certificate and CertificateVerify (if requested), and Finished.</t>
      <t>At this point, the handshake is complete, and the client and server
derive the keying material required by the record layer to exchange
application-layer data protected through authenticated encryption.
Application Data MUST NOT be sent prior to sending the Finished message,
except as specified
in <xref target="zero-rtt-data"/>.
Note that while the server may send Application Data prior to receiving
the client's Authentication messages, any data sent at that point is,
of course, being sent to an unauthenticated peer.</t>
      <section anchor="incorrect-dhe-share">
        <name>Incorrect DHE Share</name>
        <t>If the client has not provided a sufficient "key_share" extension (e.g., it
includes only DHE or ECDHE groups unacceptable to or unsupported by the
server), the server corrects the mismatch with a HelloRetryRequest and
the client needs to restart the handshake with an appropriate
"key_share" extension, as shown in Figure 2.
If no common cryptographic parameters can be negotiated,
the server MUST abort the handshake with an appropriate alert.</t>
        <figure anchor="tls-restart">
          <name>Message Flow for a Full Handshake with Mismatched Parameters</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="368" width="480" viewBox="0 0 480 368" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 200,80 L 264,80" fill="none" stroke="black"/>
                <path d="M 200,112 L 264,112" fill="none" stroke="black"/>
                <path d="M 200,144 L 264,144" fill="none" stroke="black"/>
                <path d="M 200,272 L 264,272" fill="none" stroke="black"/>
                <path d="M 200,320 L 264,320" fill="none" stroke="black"/>
                <path d="M 200,336 L 264,336" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="272,336 260,330.4 260,341.6" fill="black" transform="rotate(0,264,336)"/>
                <polygon class="arrowhead" points="272,320 260,314.4 260,325.6" fill="black" transform="rotate(0,264,320)"/>
                <polygon class="arrowhead" points="272,144 260,138.4 260,149.6" fill="black" transform="rotate(0,264,144)"/>
                <polygon class="arrowhead" points="272,80 260,74.4 260,85.6" fill="black" transform="rotate(0,264,80)"/>
                <polygon class="arrowhead" points="208,336 196,330.4 196,341.6" fill="black" transform="rotate(180,200,336)"/>
                <polygon class="arrowhead" points="208,272 196,266.4 196,277.6" fill="black" transform="rotate(180,200,272)"/>
                <polygon class="arrowhead" points="208,112 196,106.4 196,117.6" fill="black" transform="rotate(180,200,112)"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="452" y="36">Server</text>
                  <text x="48" y="68">ClientHello</text>
                  <text x="8" y="84">+</text>
                  <text x="56" y="84">key_share</text>
                  <text x="408" y="100">HelloRetryRequest</text>
                  <text x="392" y="116">+</text>
                  <text x="440" y="116">key_share</text>
                  <text x="48" y="132">ClientHello</text>
                  <text x="8" y="148">+</text>
                  <text x="56" y="148">key_share</text>
                  <text x="432" y="164">ServerHello</text>
                  <text x="392" y="180">+</text>
                  <text x="440" y="180">key_share</text>
                  <text x="392" y="196">{EncryptedExtensions}</text>
                  <text x="392" y="212">{CertificateRequest*}</text>
                  <text x="420" y="228">{Certificate*}</text>
                  <text x="396" y="244">{CertificateVerify*}</text>
                  <text x="436" y="260">{Finished}</text>
                  <text x="372" y="276">[Application</text>
                  <text x="452" y="276">Data*]</text>
                  <text x="60" y="292">{Certificate*}</text>
                  <text x="84" y="308">{CertificateVerify*}</text>
                  <text x="44" y="324">{Finished}</text>
                  <text x="52" y="340">[Application</text>
                  <text x="128" y="340">Data]</text>
                  <text x="380" y="340">[Application</text>
                  <text x="456" y="340">Data]</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![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>
          </artset>
        </figure>
        <t>Note: The handshake transcript incorporates the initial
ClientHello/HelloRetryRequest exchange; it is not reset with the new
ClientHello.</t>
        <t>TLS also allows several optimized variants of the basic handshake, as
described in the following sections.</t>
      </section>
      <section anchor="resumption-and-psk">
        <name>Resumption and Pre-Shared Key (PSK)</name>
        <t>Although TLS PSKs can be established externally,
PSKs can also be established in a previous connection and
then used to establish a new connection ("session resumption" or "resuming" with a PSK).
Once a handshake has completed, the server can
send the client a PSK identity that corresponds to a unique key derived from
the initial handshake (see <xref target="NSTMessage"/>). The client
can then use that PSK identity in future handshakes to negotiate the use
of the associated PSK. If the server accepts the PSK, then the security context of the
new connection is cryptographically tied to the original connection and the key derived
from the initial handshake is used to bootstrap the cryptographic state
instead of a full handshake.
In TLS 1.2 and below, this functionality was provided by "session IDs" and
"session tickets" <xref target="RFC5077"/>. Both mechanisms are obsoleted in TLS 1.3.</t>
        <t>PSKs can be used with (EC)DHE key exchange in order to provide forward
secrecy in combination with shared keys, or can be used alone, at the
cost of losing forward secrecy for the application data.</t>
        <t><xref target="tls-resumption-psk"/> shows a pair of handshakes in which the first handshake establishes
a PSK and the second handshake uses it:</t>
        <figure anchor="tls-resumption-psk">
          <name>Message Flow for Resumption and PSK</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="560" width="536" viewBox="0 0 536 560" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 64,384 L 64,416" fill="none" stroke="black"/>
                <path d="M 272,96 L 336,96" fill="none" stroke="black"/>
                <path d="M 272,224 L 336,224" fill="none" stroke="black"/>
                <path d="M 272,272 L 336,272" fill="none" stroke="black"/>
                <path d="M 272,288 L 336,288" fill="none" stroke="black"/>
                <path d="M 272,304 L 336,304" fill="none" stroke="black"/>
                <path d="M 272,416 L 336,416" fill="none" stroke="black"/>
                <path d="M 272,512 L 336,512" fill="none" stroke="black"/>
                <path d="M 272,528 L 336,528" fill="none" stroke="black"/>
                <path d="M 272,544 L 336,544" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="344,544 332,538.4 332,549.6" fill="black" transform="rotate(0,336,544)"/>
                <polygon class="arrowhead" points="344,528 332,522.4 332,533.6" fill="black" transform="rotate(0,336,528)"/>
                <polygon class="arrowhead" points="344,416 332,410.4 332,421.6" fill="black" transform="rotate(0,336,416)"/>
                <polygon class="arrowhead" points="344,304 332,298.4 332,309.6" fill="black" transform="rotate(0,336,304)"/>
                <polygon class="arrowhead" points="344,272 332,266.4 332,277.6" fill="black" transform="rotate(0,336,272)"/>
                <polygon class="arrowhead" points="344,96 332,90.4 332,101.6" fill="black" transform="rotate(0,336,96)"/>
                <polygon class="arrowhead" points="280,544 268,538.4 268,549.6" fill="black" transform="rotate(180,272,544)"/>
                <polygon class="arrowhead" points="280,512 268,506.4 268,517.6" fill="black" transform="rotate(180,272,512)"/>
                <polygon class="arrowhead" points="280,304 268,298.4 268,309.6" fill="black" transform="rotate(180,272,304)"/>
                <polygon class="arrowhead" points="280,288 268,282.4 268,293.6" fill="black" transform="rotate(180,272,288)"/>
                <polygon class="arrowhead" points="280,224 268,218.4 268,229.6" fill="black" transform="rotate(180,272,224)"/>
                <g class="text">
                  <text x="84" y="36">Client</text>
                  <text x="508" y="36">Server</text>
                  <text x="32" y="68">Initial</text>
                  <text x="108" y="68">Handshake:</text>
                  <text x="104" y="84">ClientHello</text>
                  <text x="64" y="100">+</text>
                  <text x="112" y="100">key_share</text>
                  <text x="488" y="116">ServerHello</text>
                  <text x="448" y="132">+</text>
                  <text x="496" y="132">key_share</text>
                  <text x="448" y="148">{EncryptedExtensions}</text>
                  <text x="448" y="164">{CertificateRequest*}</text>
                  <text x="476" y="180">{Certificate*}</text>
                  <text x="452" y="196">{CertificateVerify*}</text>
                  <text x="492" y="212">{Finished}</text>
                  <text x="428" y="228">[Application</text>
                  <text x="508" y="228">Data*]</text>
                  <text x="116" y="244">{Certificate*}</text>
                  <text x="140" y="260">{CertificateVerify*}</text>
                  <text x="100" y="276">{Finished}</text>
                  <text x="460" y="292">[NewSessionTicket]</text>
                  <text x="108" y="308">[Application</text>
                  <text x="184" y="308">Data]</text>
                  <text x="436" y="308">[Application</text>
                  <text x="512" y="308">Data]</text>
                  <text x="44" y="356">Subsequent</text>
                  <text x="132" y="356">Handshake:</text>
                  <text x="104" y="372">ClientHello</text>
                  <text x="116" y="388">key_share*</text>
                  <text x="164" y="404">psk_key_exchange_modes</text>
                  <text x="132" y="420">pre_shared_key</text>
                  <text x="488" y="436">ServerHello</text>
                  <text x="408" y="452">+</text>
                  <text x="476" y="452">pre_shared_key</text>
                  <text x="492" y="468">key_share*</text>
                  <text x="448" y="484">{EncryptedExtensions}</text>
                  <text x="492" y="500">{Finished}</text>
                  <text x="428" y="516">[Application</text>
                  <text x="508" y="516">Data*]</text>
                  <text x="100" y="532">{Finished}</text>
                  <text x="108" y="548">[Application</text>
                  <text x="184" y="548">Data]</text>
                  <text x="436" y="548">[Application</text>
                  <text x="512" y="548">Data]</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
       Client                                               Server

Initial Handshake:
       ClientHello
       + key_share               -------->
                                                       ServerHello
                                                       + key_share
                                             {EncryptedExtensions}
                                             {CertificateRequest*}
                                                    {Certificate*}
                                              {CertificateVerify*}
                                                        {Finished}
                                 <--------     [Application Data*]
       {Certificate*}
       {CertificateVerify*}
       {Finished}                -------->
                                 <--------      [NewSessionTicket]
       [Application Data]        <------->      [Application Data]


Subsequent Handshake:
       ClientHello
       + key_share*
       + psk_key_exchange_modes
       + pre_shared_key          -------->
                                                       ServerHello
                                                  + pre_shared_key
                                                      + key_share*
                                             {EncryptedExtensions}
                                                        {Finished}
                                 <--------     [Application Data*]
       {Finished}                -------->
       [Application Data]        <------->      [Application Data]
]]></artwork>
          </artset>
        </figure>
        <t>As the server is authenticating via a PSK, it does not send a
Certificate or a CertificateVerify message. When a client offers resumption
via a PSK, it SHOULD also supply a "key_share" extension to the server to
allow the server to decline resumption and fall back
to a full handshake, if needed. The server responds with a "pre_shared_key"
extension to negotiate the use of PSK key establishment and can (as shown here)
respond with a "key_share" extension to do (EC)DHE key establishment, thus
providing forward secrecy.</t>
        <t>When PSKs are provisioned externally, the PSK identity and the KDF hash
algorithm to
be used with the PSK MUST also be provisioned.</t>
        <dl>
          <dt>Note:</dt>
          <dd>
            <t>When using an externally provisioned pre-shared secret, a critical
consideration is using sufficient entropy during the key generation, as
discussed in <xref target="RFC4086"/>. Deriving a shared secret from a password or other
low-entropy sources is not secure. A low-entropy secret, or password, is
subject to dictionary attacks based on the PSK binder.  The specified PSK
authentication is not a strong password-based authenticated key exchange even
when used with Diffie-Hellman key establishment.  Specifically, it does not
prevent an attacker that can observe the handshake from performing
a brute-force attack on the password/pre-shared key.</t>
          </dd>
        </dl>
      </section>
      <section anchor="zero-rtt-data">
        <name>0-RTT Data</name>
        <t>When clients and servers share a PSK (either obtained externally or
via a previous handshake), TLS 1.3 allows clients to send data on the
first flight ("early data"). The client uses the PSK to authenticate
the server and to encrypt the early data.</t>
        <t>As shown in <xref target="tls-0-rtt"/>, the 0-RTT data is just added to the 1-RTT
handshake in the first flight. The rest of the handshake uses the same messages
as for a 1-RTT handshake with PSK resumption.</t>
        <figure anchor="tls-0-rtt">
          <name>Message Flow for a 0-RTT Handshake</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="576" width="488" viewBox="0 0 488 576" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,80 L 8,136" fill="none" stroke="black"/>
                <path d="M 200,144 L 264,144" fill="none" stroke="black"/>
                <path d="M 200,256 L 264,256" fill="none" stroke="black"/>
                <path d="M 200,288 L 264,288" fill="none" stroke="black"/>
                <path d="M 200,304 L 264,304" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="272,304 260,298.4 260,309.6" fill="black" transform="rotate(0,264,304)"/>
                <polygon class="arrowhead" points="272,288 260,282.4 260,293.6" fill="black" transform="rotate(0,264,288)"/>
                <polygon class="arrowhead" points="272,144 260,138.4 260,149.6" fill="black" transform="rotate(0,264,144)"/>
                <polygon class="arrowhead" points="208,304 196,298.4 196,309.6" fill="black" transform="rotate(180,200,304)"/>
                <polygon class="arrowhead" points="208,256 196,250.4 196,261.6" fill="black" transform="rotate(180,200,256)"/>
                <circle cx="56" cy="384" r="6" class="closeddot" fill="black"/>
                <g class="text">
                  <text x="28" y="36">Client</text>
                  <text x="452" y="36">Server</text>
                  <text x="48" y="68">ClientHello</text>
                  <text x="60" y="84">early_data</text>
                  <text x="60" y="100">key_share*</text>
                  <text x="108" y="116">psk_key_exchange_modes</text>
                  <text x="76" y="132">pre_shared_key</text>
                  <text x="52" y="148">(Application</text>
                  <text x="132" y="148">Data*)</text>
                  <text x="432" y="164">ServerHello</text>
                  <text x="352" y="180">+</text>
                  <text x="420" y="180">pre_shared_key</text>
                  <text x="436" y="196">key_share*</text>
                  <text x="392" y="212">{EncryptedExtensions}</text>
                  <text x="376" y="228">+</text>
                  <text x="432" y="228">early_data*</text>
                  <text x="436" y="244">{Finished}</text>
                  <text x="372" y="260">[Application</text>
                  <text x="452" y="260">Data*]</text>
                  <text x="68" y="276">(EndOfEarlyData)</text>
                  <text x="44" y="292">{Finished}</text>
                  <text x="52" y="308">[Application</text>
                  <text x="128" y="308">Data]</text>
                  <text x="380" y="308">[Application</text>
                  <text x="456" y="308">Data]</text>
                  <text x="56" y="340">+</text>
                  <text x="112" y="340">Indicates</text>
                  <text x="196" y="340">noteworthy</text>
                  <text x="284" y="340">extensions</text>
                  <text x="348" y="340">sent</text>
                  <text x="380" y="340">in</text>
                  <text x="408" y="340">the</text>
                  <text x="116" y="356">previously</text>
                  <text x="184" y="356">noted</text>
                  <text x="244" y="356">message.</text>
                  <text x="112" y="388">Indicates</text>
                  <text x="188" y="388">optional</text>
                  <text x="236" y="388">or</text>
                  <text x="328" y="388">situation-dependent</text>
                  <text x="152" y="404">messages/extensions</text>
                  <text x="252" y="404">that</text>
                  <text x="288" y="404">are</text>
                  <text x="320" y="404">not</text>
                  <text x="364" y="404">always</text>
                  <text x="416" y="404">sent.</text>
                  <text x="60" y="436">()</text>
                  <text x="112" y="436">Indicates</text>
                  <text x="188" y="436">messages</text>
                  <text x="264" y="436">protected</text>
                  <text x="328" y="436">using</text>
                  <text x="372" y="436">keys</text>
                  <text x="104" y="452">derived</text>
                  <text x="156" y="452">from</text>
                  <text x="184" y="452">a</text>
                  <text x="308" y="452">client_early_traffic_secret.</text>
                  <text x="60" y="484">{}</text>
                  <text x="112" y="484">Indicates</text>
                  <text x="188" y="484">messages</text>
                  <text x="264" y="484">protected</text>
                  <text x="328" y="484">using</text>
                  <text x="372" y="484">keys</text>
                  <text x="104" y="500">derived</text>
                  <text x="156" y="500">from</text>
                  <text x="184" y="500">a</text>
                  <text x="332" y="500">[sender]_handshake_traffic_secret.</text>
                  <text x="60" y="532">[]</text>
                  <text x="112" y="532">Indicates</text>
                  <text x="188" y="532">messages</text>
                  <text x="264" y="532">protected</text>
                  <text x="328" y="532">using</text>
                  <text x="372" y="532">keys</text>
                  <text x="104" y="548">derived</text>
                  <text x="156" y="548">from</text>
                  <text x="332" y="548">[sender]_application_traffic_secret_N.</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![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>
          </artset>
        </figure>
        <t>IMPORTANT NOTE: The security properties for 0-RTT data are weaker than
those for other kinds of TLS data.  Specifically:</t>
        <ol spacing="normal" type="1"><li>
            <t>The protocol does not provide any forward secrecy guarantees for this data.
The server's behavior determines what forward secrecy guarantees, if any, apply
(see <xref target="single-use-tickets"/>). This behavior is not communicated to the client
as part of the protocol. Therefore, absent out-of-band knowledge of the
server's behavior, the client should assume that this data is not forward
secret.</t>
          </li>
          <li>
            <t>There are no guarantees of non-replay between connections.
Protection against replay for ordinary TLS 1.3 1-RTT data is
provided via the server's Random value, but 0-RTT data does not depend
on the ServerHello and therefore has weaker guarantees.  This is especially
relevant if the data is authenticated either with TLS client
authentication or inside the application protocol. The same warnings
apply to any use of the early_exporter_secret.</t>
          </li>
        </ol>
        <t>0-RTT data cannot be duplicated within a connection (i.e., the server will
not process the same data twice for the same connection), and an
attacker will not be able to make 0-RTT data appear to be 1-RTT data
(because it is protected with different keys). <xref target="replay-0rtt"/>
contains a description of potential attacks, and <xref target="anti-replay"/>
describes mechanisms which the server can use to limit the impact of
replay.</t>
      </section>
    </section>
    <section anchor="presentation-language">
      <name>Presentation Language</name>
      <t>This document deals with the formatting of data in an external representation.
The following very basic and somewhat casually defined presentation syntax will
be used.</t>
      <t>In the definitions below, optional components of this syntax are denoted by
enclosing them in "[[ ]]" (double brackets).</t>
      <section anchor="basic-block-size">
        <name>Basic Block Size</name>
        <t>The representation of all data items is explicitly specified. The basic data
block size is one byte (i.e., 8 bits). Multiple-byte data items are
concatenations of bytes, from left to right, from top to bottom. From the byte
stream, a multi-byte item (a numeric in the following example) is formed (using C
notation) by:</t>
        <artwork><![CDATA[
   value = (byte[0] << 8*(n-1)) | (byte[1] << 8*(n-2)) |
           ... | byte[n-1];
]]></artwork>
        <t>This byte ordering for multi-byte values is the commonplace network byte order
or big-endian format.</t>
      </section>
      <section anchor="miscellaneous">
        <name>Miscellaneous</name>
        <t>Comments begin with "/*" and end with "*/".</t>
        <t>Single-byte entities containing uninterpreted data are of type
opaque.</t>
        <t>A type alias T' for an existing type T is defined by:</t>
        <artwork><![CDATA[
   T T';
]]></artwork>
      </section>
      <section anchor="numbers">
        <name>Numbers</name>
        <t>The basic numeric data type is an unsigned byte (uint8). All larger numeric
data types are constructed from a fixed-length series of bytes concatenated as
described in <xref target="basic-block-size"/> and are also unsigned. The following numeric
types are predefined.</t>
        <artwork><![CDATA[
   uint8 uint16[2];
   uint8 uint24[3];
   uint8 uint32[4];
   uint8 uint64[8];
]]></artwork>
        <t>All values, here and elsewhere in the specification, are transmitted in network byte
(big-endian) order; the uint32 represented by the hex bytes 01 02 03 04 is
equivalent to the decimal value 16909060.</t>
      </section>
      <section anchor="vectors">
        <name>Vectors</name>
        <t>A vector (single-dimensioned array) is a stream of homogeneous data elements.
For presentation purposes, this specification refers to vectors as lists.
The size of the vector may be specified at documentation time or left
unspecified until runtime. In either case, the length declares the number of
bytes, not the number of elements, in the vector. The syntax for specifying a
new type, T', that is a fixed-length vector of type T is</t>
        <artwork><![CDATA[
   T T'[n];
]]></artwork>
        <t>Here, T' occupies n bytes in the data stream, where n is a multiple of the size
of T.  The length of the vector is not included in the encoded stream.</t>
        <t>In the following example, Datum is defined to be three consecutive bytes that
the protocol does not interpret, while Data is three consecutive Datum,
consuming a total of nine bytes.</t>
        <artwork><![CDATA[
   opaque Datum[3];      /* three uninterpreted bytes */
   Datum Data[9];        /* three consecutive 3-byte vectors */
]]></artwork>
        <t>Variable-length vectors are defined by specifying a subrange of legal lengths,
inclusively, using the notation &lt;floor..ceiling&gt;. When these are encoded, the
actual length precedes the vector's contents in the byte stream. The length
will be in the form of a number consuming as many bytes as required to hold the
vector's specified maximum (ceiling) length. A variable-length vector with an
actual length field of zero is referred to as an empty vector.</t>
        <artwork><![CDATA[
   T T'<floor..ceiling>;
]]></artwork>
        <t>In the following example, "mandatory" is a vector that must contain between 300
and 400 bytes of type opaque. It can never be empty. The actual length field
consumes two bytes, a uint16, which is sufficient to represent the value 400
(see <xref target="numbers"/>). Similarly, "longer" can represent up to 800 bytes of
data, or 400 uint16 elements, and it may be empty. Its encoding will include a
two-byte actual length field prepended to the vector. The length of an encoded
vector must be an exact multiple of the length of a single element (e.g.,
a 17-byte vector of uint16 would be illegal).</t>
        <artwork><![CDATA[
   opaque mandatory<300..400>;
         /* length field is two bytes, cannot be empty */
   uint16 longer<0..800>;
         /* zero to 400 16-bit unsigned integers */
]]></artwork>
      </section>
      <section anchor="enumerateds">
        <name>Enumerateds</name>
        <t>An additional sparse data type, called "enum" or
"enumerated", is available. Each definition is a different type. Only enumerateds of
the same type may be assigned or compared.  Every element of an
enumerated must be assigned a value, as demonstrated in the following
example. Since the elements of the enumerated are not ordered, they
can be assigned any unique value, in any order.</t>
        <artwork><![CDATA[
   enum { e1(v1), e2(v2), ... , en(vn) [[, (n)]] } Te;
]]></artwork>
        <t>Future extensions or additions to the protocol may define new values.
Implementations need to be able to parse and ignore unknown values unless the
definition of the field states otherwise.</t>
        <t>An enumerated occupies as much space in the byte stream as would its maximal
defined ordinal value. The following definition would cause one byte to be used
to carry fields of type Color.</t>
        <artwork><![CDATA[
   enum { red(3), blue(5), white(7) } Color;
]]></artwork>
        <t>One may optionally specify a value without its associated tag to force the
width definition without defining a superfluous element.</t>
        <t>In the following example, Taste will consume two bytes in the data stream but
can only assume the values 1, 2, or 4 in the current version of the protocol.</t>
        <artwork><![CDATA[
   enum { sweet(1), sour(2), bitter(4), (32000) } Taste;
]]></artwork>
        <t>The names of the elements of an enumeration are scoped within the defined type.
In the first example, a fully qualified reference to the second element of the
enumeration would be Color.blue. Such qualification is not required if the
target of the assignment is well specified.</t>
        <artwork><![CDATA[
   Color color = Color.blue;     /* overspecified, legal */
   Color color = blue;           /* correct, type implicit */
]]></artwork>
        <t>The names assigned to enumerateds do not need to be unique.  The numerical value
can describe a range over which the same name applies.  The value includes the
minimum and maximum inclusive values in that range, separated by two period
characters. This is principally useful for reserving regions of the space.</t>
        <artwork><![CDATA[
   enum { sad(0), meh(1..254), happy(255) } Mood;
]]></artwork>
      </section>
      <section anchor="constructed-types">
        <name>Constructed Types</name>
        <t>Structure types may be constructed from primitive types for convenience. Each
specification declares a new, unique type. The syntax used for definitions is much
like that of C.</t>
        <artwork><![CDATA[
   struct {
       T1 f1;
       T2 f2;
       ...
       Tn fn;
   } T;
]]></artwork>
        <t>Fixed- and variable-length list (vector) fields are allowed using the standard list
syntax. Structures V1 and V2 in the variants example (<xref target="variants"/>) demonstrate this.</t>
        <t>The fields within a structure may be qualified using the type's name, with a
syntax much like that available for enumerateds. For example, T.f2 refers to
the second field of the previous declaration.</t>
      </section>
      <section anchor="constants">
        <name>Constants</name>
        <t>Fields and variables may be assigned a fixed value using "=", as in:</t>
        <artwork><![CDATA[
   struct {
       T1 f1 = 8;  /* T.f1 must always be 8 */
       T2 f2;
   } T;
]]></artwork>
      </section>
      <section anchor="variants">
        <name>Variants</name>
        <t>Defined structures may have variants based on some knowledge that is
available within the environment. The selector must be an enumerated
type that defines the possible variants the structure defines. Each
arm of the select (below) specifies the type of that variant's field and an
optional field label. The mechanism by which the variant is selected
at runtime is not prescribed by the presentation language.</t>
        <artwork><![CDATA[
   struct {
       T1 f1;
       T2 f2;
       ....
       Tn fn;
       select (E) {
           case e1: Te1 [[fe1]];
           case e2: Te2 [[fe2]];
           ....
           case en: Ten [[fen]];
       };
   } Tv;
]]></artwork>
        <t>For example:</t>
        <artwork><![CDATA[
   enum { apple(0), orange(1) } VariantTag;

   struct {
       uint16 number;
       opaque string<0..10>; /* variable length */
   } V1;

   struct {
       uint32 number;
       opaque string[10];    /* fixed length */
   } V2;

   struct {
       VariantTag type;
       select (VariantRecord.type) {
           case apple:  V1;
           case orange: V2;
       };
   } VariantRecord;
]]></artwork>
      </section>
    </section>
    <section anchor="handshake-protocol">
      <name>Handshake Protocol</name>
      <t>The handshake protocol is used to negotiate the security parameters
of a connection. Handshake messages are supplied to the TLS record layer, where
they are encapsulated within one or more TLSPlaintext or TLSCiphertext structures which are
processed and transmitted as specified by the current active connection state.</t>
      <artwork><![CDATA[
   enum {
       client_hello(1),
       server_hello(2),
       new_session_ticket(4),
       end_of_early_data(5),
       encrypted_extensions(8),
       certificate(11),
       certificate_request(13),
       certificate_verify(15),
       finished(20),
       key_update(24),
       message_hash(254),
       (255)
   } HandshakeType;

   struct {
       HandshakeType msg_type;    /* handshake type */
       uint24 length;             /* remaining bytes in message */
       select (Handshake.msg_type) {
           case client_hello:          ClientHello;
           case server_hello:          ServerHello;
           case end_of_early_data:     EndOfEarlyData;
           case encrypted_extensions:  EncryptedExtensions;
           case certificate_request:   CertificateRequest;
           case certificate:           Certificate;
           case certificate_verify:    CertificateVerify;
           case finished:              Finished;
           case new_session_ticket:    NewSessionTicket;
           case key_update:            KeyUpdate;
       };
   } Handshake;
]]></artwork>
      <t>Protocol messages MUST be sent in the order defined in
<xref target="the-transcript-hash"/> and shown in the diagrams in <xref target="protocol-overview"/>.
A peer which receives a handshake message in an unexpected order
MUST abort the handshake with an "unexpected_message" alert.</t>
      <t>New handshake message types are assigned by IANA as described in
<xref target="iana-considerations"/>.</t>
      <section anchor="key-exchange-messages">
        <name>Key Exchange Messages</name>
        <t>The key exchange messages are used to determine the security capabilities
of the client and the server and to establish shared secrets, including
the traffic keys used to protect the rest of the handshake and the data.</t>
        <section anchor="cryptographic-negotiation">
          <name>Cryptographic Negotiation</name>
          <t>In TLS, the cryptographic negotiation proceeds by the client offering the
following four sets of options in its ClientHello:</t>
          <ul spacing="normal">
            <li>
              <t>A list of cipher suites which indicates the AEAD algorithm/HKDF hash
pairs which the client supports.</t>
            </li>
            <li>
              <t>A "supported_groups" (<xref target="supported-groups"/>) extension which indicates the (EC)DHE groups
which the client supports and a "key_share" (<xref target="key-share"/>) extension which contains
(EC)DHE shares for some or all of these groups.</t>
            </li>
            <li>
              <t>A "signature_algorithms" (<xref target="signature-algorithms"/>) extension which indicates the signature
algorithms which the client can accept. A "signature_algorithms_cert" extension (<xref target="signature-algorithms"/>) may also be
added to indicate certificate-specific signature algorithms.</t>
            </li>
            <li>
              <t>A "pre_shared_key" (<xref target="pre-shared-key-extension"/>) extension which
contains a list of symmetric key identities known to the client and a
"psk_key_exchange_modes" (<xref target="pre-shared-key-exchange-modes"/>)
extension which indicates the key exchange modes that may be used
with PSKs.</t>
            </li>
          </ul>
          <t>If the server does not select a PSK, then the first three of these
options are entirely orthogonal: the server independently selects a
cipher suite, an (EC)DHE group and key share for key establishment,
and a signature algorithm/certificate pair to authenticate itself to
the client. If there is no overlap between the received "supported_groups"
and the groups supported by the server, then the server MUST abort the
handshake with a "handshake_failure" or an "insufficient_security" alert.</t>
          <t>If the server selects a PSK, then it MUST also select a key
establishment mode from the list indicated by the client's
"psk_key_exchange_modes" extension (at present, PSK alone or with (EC)DHE). Note
that if the PSK can be used without (EC)DHE, then non-overlap in the
"supported_groups" parameters need not be fatal, as it is in the
non-PSK case discussed in the previous paragraph.</t>
          <t>If the server selects an (EC)DHE group and the client did not offer a
compatible "key_share" extension in the initial ClientHello, the server MUST
respond with a HelloRetryRequest (<xref target="hello-retry-request"/>) message.</t>
          <t>If the server successfully selects parameters and does not require a
HelloRetryRequest, it indicates the selected parameters in the ServerHello as
follows:</t>
          <ul spacing="normal">
            <li>
              <t>If PSK is being used, then the server will send a
"pre_shared_key" extension indicating the selected key.</t>
            </li>
            <li>
              <t>When (EC)DHE is in use, the server will also provide a "key_share"
extension. If PSK is not being used, then (EC)DHE and certificate-based
authentication are always used.</t>
            </li>
            <li>
              <t>When authenticating via a certificate, the server will send
the Certificate (<xref target="certificate"/>) and CertificateVerify
(<xref target="certificate-verify"/>) messages. In TLS 1.3
as defined by this document, either a PSK or a certificate
is always used, but not both. Future documents may define how
to use them together.</t>
            </li>
          </ul>
          <t>If the server is unable to negotiate a supported set of parameters
(i.e., there is no overlap between the client and server parameters),
it MUST abort the handshake with either
a "handshake_failure" or "insufficient_security" fatal alert
(see <xref target="alert-protocol"/>).</t>
        </section>
        <section anchor="client-hello">
          <name>Client Hello</name>
          <t>When a client first connects to a server, it is REQUIRED to send the
ClientHello as its first TLS message. The client will also send a
ClientHello when the server has responded to its ClientHello with a
HelloRetryRequest. In that case, the client MUST send the same
ClientHello without modification, except as follows:</t>
          <ul spacing="normal">
            <li>
              <t>If a "key_share" extension was supplied in the HelloRetryRequest,
replacing the list of shares with a list containing a single
KeyShareEntry from the indicated group.</t>
            </li>
            <li>
              <t>Removing the "early_data" extension (<xref target="early-data-indication"/>) if one was
present. Early data is not permitted after a HelloRetryRequest.</t>
            </li>
            <li>
              <t>Including a "cookie" extension if one was provided in the
HelloRetryRequest.</t>
            </li>
            <li>
              <t>Updating the "pre_shared_key" extension if present by
recomputing the "obfuscated_ticket_age" and binder values
and (optionally) removing
any PSKs which are incompatible with the server's indicated
cipher suite.</t>
            </li>
            <li>
              <t>Optionally adding, removing, or changing the length of the "padding"
extension <xref target="RFC7685"/>.</t>
            </li>
            <li>
              <t>Other modifications that may be allowed by an extension defined in the
future and present in the HelloRetryRequest.</t>
            </li>
          </ul>
          <t>Because TLS 1.3 forbids renegotiation, if a server has negotiated TLS
1.3 and receives a ClientHello at any other time, it MUST terminate
the connection with an "unexpected_message" alert.</t>
          <t>If a server established a TLS connection with a previous version of TLS
and receives a TLS 1.3 ClientHello in a renegotiation, it MUST retain the
previous protocol version. In particular, it MUST NOT negotiate TLS 1.3.</t>
          <t>Structure of this message:</t>
          <artwork><![CDATA[
   uint16 ProtocolVersion;
   opaque Random[32];

   uint8 CipherSuite[2];    /* Cryptographic suite selector */

   struct {
       ProtocolVersion legacy_version = 0x0303;    /* TLS v1.2 */
       Random random;
       opaque legacy_session_id<0..32>;
       CipherSuite cipher_suites<2..2^16-2>;
       opaque legacy_compression_methods<1..2^8-1>;
       Extension extensions<8..2^16-1>;
   } ClientHello;
]]></artwork>
          <dl>
            <dt>legacy_version:</dt>
            <dd>
              <t>In previous versions of TLS, this field was used for version negotiation
and represented the highest version number supported by the client.
Experience has shown that many servers do not properly implement
version negotiation, leading to "version intolerance" in which
the server rejects an otherwise acceptable ClientHello with a version
number higher than it supports.
In TLS 1.3, the client indicates its version preferences in the
"supported_versions" extension (<xref target="supported-versions"/>) and the legacy_version field MUST
be set to 0x0303, which is the version number for TLS 1.2.
TLS 1.3 ClientHellos are identified as having
a legacy_version of 0x0303 and a supported_versions extension
present with 0x0304 as the highest version indicated therein.
(See <xref target="backward-compatibility"/> for details about backward compatibility.)
A server which receives a legacy_version value not equal to 0x0303 MUST abort
the handshake with an "illegal_parameter" alert.</t>
            </dd>
            <dt>random:</dt>
            <dd>
              <t>32 bytes generated by a secure random number generator.
See <xref target="implementation-notes"/> for additional information.</t>
            </dd>
            <dt>legacy_session_id:</dt>
            <dd>
              <t>Versions of TLS before TLS 1.3 supported a "session resumption"
feature which has been merged with pre-shared keys in this version
(see <xref target="resumption-and-psk"/>). A client which has a cached session ID
set by a pre-TLS 1.3 server SHOULD set this field to that value. In
compatibility mode (see <xref target="middlebox"/>), this field MUST be non-empty,
so a client not offering a pre-TLS 1.3 session MUST generate a
new 32-byte value. This value need not be random but SHOULD be
unpredictable to avoid implementations fixating on a specific value
(also known as ossification).
Otherwise, it MUST be set as a zero-length list (i.e., a
zero-valued single byte length field).</t>
            </dd>
            <dt>cipher_suites:</dt>
            <dd>
              <t>A list of the symmetric cipher options supported by the
client, specifically the record protection algorithm (including
secret key length) and a hash to be used with HKDF, in descending
order of client preference. Values are defined in <xref target="cipher-suites"/>.
If the list contains cipher suites that
the server does not recognize, support, or wish to use, the server
MUST ignore those cipher suites and process the remaining ones as
usual. If the client is
attempting a PSK key establishment, it SHOULD advertise at least one
cipher suite indicating a Hash associated with the PSK.</t>
            </dd>
            <dt>legacy_compression_methods:</dt>
            <dd>
              <t>Versions of TLS before 1.3 supported compression with the list of
supported compression methods being sent in this field. For every TLS 1.3
ClientHello, this list MUST contain exactly one byte, set to
zero, which corresponds to the "null" compression method in
prior versions of TLS. If a TLS 1.3 ClientHello is
received with any other value in this field, the server MUST
abort the handshake with an "illegal_parameter" alert. Note that TLS 1.3
servers might receive TLS 1.2 or prior ClientHellos which contain
other compression methods and (if negotiating such a prior version)
MUST follow the procedures for
the appropriate prior version of TLS.</t>
            </dd>
            <dt>extensions:</dt>
            <dd>
              <t>Clients request extended functionality from servers by sending
data in the extensions field.  The actual "Extension" format is
defined in <xref target="extensions"/>.  In TLS 1.3, the use
of certain extensions is mandatory, as functionality has moved into
extensions to preserve ClientHello compatibility with previous versions of TLS.
Servers MUST ignore unrecognized extensions.</t>
            </dd>
          </dl>
          <t>All versions of TLS allow an extensions field to optionally follow the
compression_methods field. TLS 1.3 ClientHello
messages always contain extensions (minimally "supported_versions", otherwise,
they will be interpreted as TLS 1.2 ClientHello messages).
However, TLS 1.3 servers might receive ClientHello messages without an
extensions field from prior versions of TLS.
The presence of extensions can be detected by determining whether there
are bytes following the compression_methods field at the end of the
ClientHello. Note that this method of detecting optional data differs
from the normal TLS method of having a variable-length field, but it
is used for compatibility with TLS before extensions were defined.
TLS 1.3 servers will need to perform this check first and only
attempt to negotiate TLS 1.3 if the "supported_versions" extension
is present.
If negotiating a version of TLS prior to 1.3, a server MUST check that
the message either contains no data after legacy_compression_methods
or that it contains a valid extensions block with no data following.
If not, then it MUST abort the handshake with a "decode_error" alert.</t>
          <t>In the event that a client requests additional functionality using
extensions and this functionality is not supplied by the server, the
client MAY abort the handshake.</t>
          <t>After sending the ClientHello message, the client waits for a ServerHello
or HelloRetryRequest message. If early data
is in use, the client may transmit early Application Data
(<xref target="zero-rtt-data"/>) while waiting for the next handshake message.</t>
        </section>
        <section anchor="server-hello">
          <name>Server Hello</name>
          <t>The server will send this message in response to a ClientHello message
to proceed with the handshake if it is able to negotiate an acceptable
set of handshake parameters based on the ClientHello.</t>
          <t>Structure of this message:</t>
          <artwork><![CDATA[
   struct {
       ProtocolVersion legacy_version = 0x0303;    /* TLS v1.2 */
       Random random;
       opaque legacy_session_id_echo<0..32>;
       CipherSuite cipher_suite;
       uint8 legacy_compression_method = 0;
       Extension extensions<6..2^16-1>;
   } ServerHello;
]]></artwork>
          <dl>
            <dt>legacy_version:</dt>
            <dd>
              <t>In previous versions of TLS, this field was used for version negotiation
and represented the selected version number for the connection. Unfortunately,
some middleboxes fail when presented with new values.
In TLS 1.3, the TLS server indicates its version using the
"supported_versions" extension (<xref target="supported-versions"/>),
and the legacy_version field MUST
be set to 0x0303, which is the version number for TLS 1.2.
(See <xref target="backward-compatibility"/> for details about backward compatibility.)
A client which receives a TLS 1.3 Server Hello with a legacy_version
value not equal to 0x0303 MUST abort the handshake with an
"illegal_parameter" alert.</t>
            </dd>
            <dt>random:</dt>
            <dd>
              <t>32 bytes generated by a secure random number generator.
See <xref target="implementation-notes"/> for additional information.
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. 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.</t>
            </dd>
            <dt>extensions:</dt>
            <dd>
              <t>A list of extensions.  The ServerHello MUST only include extensions
which are required to establish the cryptographic context and negotiate
the protocol version. All TLS 1.3 ServerHello messages MUST contain the
"supported_versions" extension.  Current ServerHello messages additionally contain
either the "pre_shared_key" extension or the "key_share" extension, or both (when using
a PSK with (EC)DHE key establishment). Other extensions
(see <xref target="extensions"/>) are sent
separately in the EncryptedExtensions message.</t>
            </dd>
          </dl>
          <t>For reasons of backward compatibility with middleboxes
(see <xref target="middlebox"/>), the HelloRetryRequest
message uses the same structure as the ServerHello, but with
Random set to the special value of the SHA-256 of
"HelloRetryRequest":</t>
          <artwork><![CDATA[
  CF 21 AD 74 E5 9A 61 11 BE 1D 8C 02 1E 65 B8 91
  C2 A2 11 16 7A BB 8C 5E 07 9E 09 E2 C8 A8 33 9C
]]></artwork>
          <t>Upon receiving a message with type server_hello, implementations
MUST first examine the Random value and, if it matches
this value, process it as described in <xref target="hello-retry-request"/>).</t>
          <t>TLS 1.3 has a downgrade protection mechanism embedded in the server's
random value. TLS 1.3 servers which negotiate TLS 1.2 or below in
response to a ClientHello MUST set the last 8 bytes of their
Random value specially in their ServerHello.</t>
          <t>If negotiating TLS 1.2, TLS 1.3 servers MUST set the last 8 bytes of their
Random value to the bytes:</t>
          <artwork><![CDATA[
  44 4F 57 4E 47 52 44 01
]]></artwork>
          <t><xref target="RFC8996"/> and <xref target="backward-compatibility-security"/> forbid
the negotiation of TLS versions below 1.2. However, server
implementations which do not follow that guidance MUST
set the last 8 bytes of their ServerHello.random value to the
bytes:</t>
          <artwork><![CDATA[
  44 4F 57 4E 47 52 44 00
]]></artwork>
          <t>TLS 1.3 clients receiving a ServerHello indicating TLS 1.2 or below
MUST check that the last 8 bytes are not equal to either of these values.
TLS 1.2 clients SHOULD also check that the last 8 bytes are not
equal to the second value if the ServerHello indicates TLS 1.1 or
below.  If a match is found, the client MUST abort the handshake
with an "illegal_parameter" alert.  This mechanism provides limited
protection against downgrade attacks over and above what is provided
by the Finished exchange: because the ServerKeyExchange, a message
present in TLS 1.2 and below, includes a signature over both random
values, it is not possible for an active attacker to modify the
random values without detection as long as ephemeral ciphers are used.
It does not provide downgrade protection when static RSA is used.</t>
          <t>Note: This is a change from <xref target="RFC5246"/>, so in practice many TLS 1.2 clients
and servers will not behave as specified above.</t>
          <t>A legacy TLS client performing renegotiation with TLS 1.2 or prior
and which receives a TLS 1.3 ServerHello during renegotiation
MUST abort the handshake with a "protocol_version" alert.
Note that renegotiation is not possible when TLS 1.3 has been
negotiated.</t>
        </section>
        <section anchor="hello-retry-request">
          <name>Hello Retry Request</name>
          <t>The server will send this message in response to a ClientHello message
if it is able to find an acceptable set of parameters but the
ClientHello does not contain sufficient information to proceed with
the handshake. As discussed in <xref target="server-hello"/>, the HelloRetryRequest
has the same format as a ServerHello message, and the
legacy_version, legacy_session_id_echo, cipher_suite, and legacy_compression_method fields have the same meaning. However, for convenience we
discuss "HelloRetryRequest" throughout this document as if it were
a distinct message.</t>
          <t>The server's extensions MUST contain "supported_versions".
Additionally, it SHOULD contain the minimal set of extensions necessary for the
client to generate a correct ClientHello pair. As with the ServerHello, a
HelloRetryRequest MUST NOT contain any extensions that were not first
offered by the client in its ClientHello, with the exception of
optionally the "cookie" (see <xref target="cookie"/>) extension.</t>
          <t>Upon receipt of a HelloRetryRequest, the client MUST check
the legacy_version, legacy_session_id_echo, cipher_suite,
and legacy_compression_method as specified in <xref target="server-hello"/> and then process the
extensions, starting with determining the version using
"supported_versions". Clients MUST abort the handshake with
an "illegal_parameter" alert if the HelloRetryRequest would not result in
any change in the ClientHello. If a client receives a second
HelloRetryRequest in the same connection (i.e., where
the ClientHello was itself in response to a HelloRetryRequest), it
MUST abort the handshake with an "unexpected_message" alert.</t>
          <t>Otherwise, the client MUST process all extensions in the
HelloRetryRequest and send a second updated ClientHello. The
HelloRetryRequest extensions defined in this specification are:</t>
          <ul spacing="normal">
            <li>
              <t>supported_versions (see <xref target="supported-versions"/>)</t>
            </li>
            <li>
              <t>cookie (see <xref target="cookie"/>)</t>
            </li>
            <li>
              <t>key_share (see <xref target="key-share"/>)</t>
            </li>
          </ul>
          <t>A client which receives a cipher suite that was not
offered MUST abort the handshake.  Servers MUST ensure that they
negotiate the same cipher suite when receiving a conformant updated
ClientHello (if the server selects the cipher suite as the first step
in the negotiation, then this will happen automatically). Upon
receiving the ServerHello, clients MUST check that the cipher suite
supplied in the ServerHello is the same as that in the
HelloRetryRequest and otherwise abort the handshake with an
"illegal_parameter" alert.</t>
          <t>In addition, in its updated ClientHello, the client SHOULD NOT offer
any pre-shared keys associated with a hash other than that of the
selected cipher suite. This allows the client to avoid having to
compute partial hash transcripts for multiple hashes in the second
ClientHello.</t>
          <t>The value of selected_version in the HelloRetryRequest "supported_versions"
extension MUST be retained in the ServerHello, and a client MUST abort the
handshake with an "illegal_parameter" alert if the value changes.</t>
        </section>
      </section>
      <section anchor="extensions">
        <name>Extensions</name>
        <t>A number of TLS messages contain tag-length-value encoded extensions structures.</t>
        <artwork><![CDATA[
   struct {
       ExtensionType extension_type;
       opaque extension_data<0..2^16-1>;
   } Extension;

   enum {
       server_name(0),                             /* RFC 6066 */
       max_fragment_length(1),                     /* RFC 6066 */
       status_request(5),                          /* RFC 6066 */
       supported_groups(10),                       /* RFC 8422, 7919 */
       signature_algorithms(13),                   /* RFC 8446 */
       use_srtp(14),                               /* RFC 5764 */
       heartbeat(15),                              /* RFC 6520 */
       application_layer_protocol_negotiation(16), /* RFC 7301 */
       signed_certificate_timestamp(18),           /* RFC 6962 */
       client_certificate_type(19),                /* RFC 7250 */
       server_certificate_type(20),                /* RFC 7250 */
       padding(21),                                /* RFC 7685 */
       pre_shared_key(41),                         /* RFC 8446 */
       early_data(42),                             /* RFC 8446 */
       supported_versions(43),                     /* RFC 8446 */
       cookie(44),                                 /* RFC 8446 */
       psk_key_exchange_modes(45),                 /* RFC 8446 */
       certificate_authorities(47),                /* RFC 8446 */
       oid_filters(48),                            /* RFC 8446 */
       post_handshake_auth(49),                    /* RFC 8446 */
       signature_algorithms_cert(50),              /* RFC 8446 */
       key_share(51),                              /* RFC 8446 */
       (65535)
   } ExtensionType;
]]></artwork>
        <t>Here:</t>
        <ul spacing="normal">
          <li>
            <t>"extension_type" identifies the particular extension type.</t>
          </li>
          <li>
            <t>"extension_data" contains information specific to the particular
extension type.</t>
          </li>
        </ul>
        <t>The contents of the "extension_data" field are typically defined by an
extension-specific structure defined in the TLS presentation language. Unless
otherwise specified, trailing data is forbidden. That is, senders MUST NOT
include data after the structure in the "extension_data" field. When
processing an extension, receivers MUST abort the handshake with a
"decode_error" alert if there is data left over after parsing the structure.
This does not apply if the receiver does not implement or is configured to
ignore an extension.</t>
        <t>The list of extension types is maintained by IANA as described in
<xref target="iana-considerations"/>.</t>
        <t>Extensions are generally structured in a request/response fashion,
though some extensions are just requests with no corresponding
response (i.e., indications). The client sends its extension requests
in the ClientHello message, and the server sends its extension
responses in the ServerHello, EncryptedExtensions, HelloRetryRequest,
and Certificate messages. The server sends extension requests in the
CertificateRequest message which a client MAY respond to with a
Certificate message. The server MAY also send unsolicited extensions
in the NewSessionTicket, though the client does not respond directly
to these.</t>
        <t>Implementations MUST NOT send extension responses
(i.e., in the ServerHello, EncryptedExtensions, HelloRetryRequest,
and Certificate messages)
if the remote endpoint did not send the corresponding extension requests,
with the exception of the "cookie" extension in the HelloRetryRequest.
Upon receiving such an extension, an endpoint MUST abort the handshake with an
"unsupported_extension" alert.</t>
        <t>The table below indicates the messages where a given extension may
appear, using the following notation: CH (ClientHello), SH
(ServerHello), EE (EncryptedExtensions), CT (Certificate), CR
(CertificateRequest), NST (NewSessionTicket), and HRR
(HelloRetryRequest). If an implementation receives an extension which
it recognizes and which is not specified for the message in which it
appears, it MUST abort the handshake with an "illegal_parameter" alert.</t>
        <table anchor="extensions-list">
          <name>TLS Extensions</name>
          <thead>
            <tr>
              <th align="left">Extension</th>
              <th align="right">TLS 1.3</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">server_name <xref target="RFC6066"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">max_fragment_length <xref target="RFC6066"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">status_request <xref target="RFC6066"/></td>
              <td align="right">CH, CR, CT</td>
            </tr>
            <tr>
              <td align="left">supported_groups <xref target="RFC7919"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">signature_algorithms <xref target="RFC8446"/></td>
              <td align="right">CH, CR</td>
            </tr>
            <tr>
              <td align="left">use_srtp <xref target="RFC5764"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">heartbeat <xref target="RFC6520"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">application_layer_protocol_negotiation <xref target="RFC7301"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">signed_certificate_timestamp <xref target="RFC6962"/></td>
              <td align="right">CH, CR, CT</td>
            </tr>
            <tr>
              <td align="left">client_certificate_type <xref target="RFC7250"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">server_certificate_type <xref target="RFC7250"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">padding <xref target="RFC7685"/></td>
              <td align="right">CH</td>
            </tr>
            <tr>
              <td align="left">cached_info <xref target="RFC7924"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">compress_certificate <xref target="RFC8879"/></td>
              <td align="right">CH, CR</td>
            </tr>
            <tr>
              <td align="left">record_size_limit <xref target="RFC8849"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">delegated_credentials <xref target="RFC9345"/></td>
              <td align="right">CH, CR, CT</td>
            </tr>
            <tr>
              <td align="left">supported_ekt_ciphers <xref target="RFC8870"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">pre_shared_key <xref target="RFC8446"/></td>
              <td align="right">CH, SH</td>
            </tr>
            <tr>
              <td align="left">early_data <xref target="RFC8446"/></td>
              <td align="right">CH, EE, NST</td>
            </tr>
            <tr>
              <td align="left">psk_key_exchange_modes <xref target="RFC8446"/></td>
              <td align="right">CH</td>
            </tr>
            <tr>
              <td align="left">cookie <xref target="RFC8446"/></td>
              <td align="right">CH, HRR</td>
            </tr>
            <tr>
              <td align="left">supported_versions <xref target="RFC8446"/></td>
              <td align="right">CH, SH, HRR</td>
            </tr>
            <tr>
              <td align="left">certificate_authorities <xref target="RFC8446"/></td>
              <td align="right">CH, CR</td>
            </tr>
            <tr>
              <td align="left">oid_filters <xref target="RFC8446"/></td>
              <td align="right">CR</td>
            </tr>
            <tr>
              <td align="left">post_handshake_auth <xref target="RFC8446"/></td>
              <td align="right">CH</td>
            </tr>
            <tr>
              <td align="left">signature_algorithms_cert <xref target="RFC8446"/></td>
              <td align="right">CH, CR</td>
            </tr>
            <tr>
              <td align="left">key_share <xref target="RFC8446"/></td>
              <td align="right">CH, SH, HRR</td>
            </tr>
            <tr>
              <td align="left">transparency_info <xref target="RFC9162"/></td>
              <td align="right">CH, CR, CT</td>
            </tr>
            <tr>
              <td align="left">connection_id <xref target="RFC9146"/></td>
              <td align="right">CH, SH</td>
            </tr>
            <tr>
              <td align="left">external_id_hash <xref target="RFC8844"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">external_session_id <xref target="RFC8844"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">quic_transport_parameters <xref target="RFC9001"/></td>
              <td align="right">CH, EE</td>
            </tr>
            <tr>
              <td align="left">ticket_request <xref target="RFC9149"/></td>
              <td align="right">CH, EE</td>
            </tr>
          </tbody>
        </table>
        <t>Note: this table includes only extensions marked
"Recommended" at the time of this writing.</t>
        <t>When multiple extensions of different types are present, the
extensions MAY appear in any order, with the exception of
"pre_shared_key" (<xref target="pre-shared-key-extension"/>) which MUST be
the last extension in the ClientHello (but can appear anywhere in
the ServerHello extensions block).
There MUST NOT be more than one extension of the same type in a given
extension block.</t>
        <t>In TLS 1.3, unlike TLS 1.2, extensions are negotiated for each
handshake even when in resumption-PSK mode. However, 0-RTT parameters are
those negotiated in the previous handshake; mismatches may require
rejecting 0-RTT (see <xref target="early-data-indication"/>).</t>
        <t>There are subtle (and not so subtle) interactions that may occur in this
protocol between new features and existing features which may result in a
significant reduction in overall security. The following considerations should
be taken into account when designing new extensions:</t>
        <ul spacing="normal">
          <li>
            <t>Some cases where a server does not agree to an extension are error
conditions (e.g., the handshake cannot continue), and some are
simply refusals to support particular features. In general, error
alerts should be used for the former and a field in the server
extension response for the latter.</t>
          </li>
          <li>
            <t>Extensions should, as far as possible, be designed to prevent any attack that
forces use (or non-use) of a particular feature by manipulation of handshake
messages. This principle should be followed regardless of whether the feature
is believed to cause a security problem.
Often the fact that the extension fields are included in the inputs to the
Finished message hashes will be sufficient, but extreme care is needed when
the extension changes the meaning of messages sent in the handshake phase.
Designers and implementors should be aware of the fact that until the
handshake has been authenticated, active attackers can modify messages and
insert, remove, or replace extensions.</t>
          </li>
        </ul>
        <section anchor="supported-versions">
          <name>Supported Versions</name>
          <artwork><![CDATA[
   struct {
       select (Handshake.msg_type) {
           case client_hello:
                ProtocolVersion versions<2..254>;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

   opaque PskBinderEntry<32..255>;

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

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

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

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

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

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

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

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

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

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

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

    Where HkdfLabel is specified as:

    struct {
        uint16 length = Length;
        opaque label<7..255> = "tls13 " + Label;
        opaque context<0..255> = Context;
    } HkdfLabel;

    Derive-Secret(Secret, Label, Messages) =
         HKDF-Expand-Label(Secret, Label,
                           Transcript-Hash(Messages), Hash.length)
]]></artwork>
        <t>The Hash function used by Transcript-Hash and HKDF is the cipher suite hash
algorithm.
Hash.length is its output length in bytes. Messages is the concatenation of the
indicated handshake messages, including the handshake message type
and length fields, but not including record layer headers. Note that
in some cases a zero-length Context (indicated by "") is passed to
HKDF-Expand-Label.  The labels specified in this document are all
ASCII strings and do not include a trailing NUL byte.</t>
        <t>Any extensions to TLS which use "HKDF-Expand-Label" use the
HkdfLabel definition associated with the version of TLS with which
they are being used. When used with this specification, that means
using HkdfLabel as defined above; when used with DTLS <xref target="RFC9147"/> that
means using the version defined in <xref section="5.9" sectionFormat="comma" target="RFC9147"/>.</t>
        <t>Note: With common hash functions, any label longer than 12 characters
requires an additional iteration of the hash function to compute.
The labels in this specification have all been chosen to fit within
this limit.</t>
        <t>Keys are derived from two input secrets using
the HKDF-Extract and Derive-Secret functions. The general pattern
for adding a new secret is to use HKDF-Extract with the Salt
being the current secret state and the Input Keying Material (IKM) being the new
secret to be added. In this version of TLS 1.3, the two
input secrets are:</t>
        <ul spacing="normal">
          <li>
            <t>PSK (a pre-shared key established externally or derived from
the resumption_secret value from a previous connection)</t>
          </li>
          <li>
            <t>(EC)DHE shared secret (<xref target="ecdhe-shared-secret-calculation"/>)</t>
          </li>
        </ul>
        <t>This produces a full key derivation schedule shown in the diagram below.
In this diagram, the following formatting conventions apply:</t>
        <ul spacing="normal">
          <li>
            <t>HKDF-Extract is drawn as taking the Salt argument from the top and
the IKM argument from the left, with its output to the bottom and
the name of the output on the right.</t>
          </li>
          <li>
            <t>Derive-Secret's Secret argument is indicated by the incoming
arrow. For instance, the Early Secret is the Secret for
generating the client_early_traffic_secret.</t>
          </li>
          <li>
            <t>"0" indicates a string of Hash.length bytes set to zero.</t>
          </li>
        </ul>
        <t>Note: the key derivation labels use the string "master" even though
the values are referred to as "main" secrets.  This mismatch is a
result of renaming the values while retaining compatibility.</t>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="880" width="544" viewBox="0 0 544 880" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 128,48 L 128,64" fill="none" stroke="black"/>
              <path d="M 128,96 L 128,320" fill="none" stroke="black"/>
              <path d="M 128,352 L 128,368" fill="none" stroke="black"/>
              <path d="M 128,400 L 128,528" fill="none" stroke="black"/>
              <path d="M 128,560 L 128,576" fill="none" stroke="black"/>
              <path d="M 128,608 L 128,816" fill="none" stroke="black"/>
              <path d="M 64,80 L 80,80" fill="none" stroke="black"/>
              <path d="M 128,112 L 176,112" fill="none" stroke="black"/>
              <path d="M 128,208 L 176,208" fill="none" stroke="black"/>
              <path d="M 128,272 L 176,272" fill="none" stroke="black"/>
              <path d="M 72,384 L 88,384" fill="none" stroke="black"/>
              <path d="M 128,416 L 176,416" fill="none" stroke="black"/>
              <path d="M 128,480 L 176,480" fill="none" stroke="black"/>
              <path d="M 72,592 L 88,592" fill="none" stroke="black"/>
              <path d="M 128,624 L 176,624" fill="none" stroke="black"/>
              <path d="M 128,688 L 176,688" fill="none" stroke="black"/>
              <path d="M 128,752 L 176,752" fill="none" stroke="black"/>
              <path d="M 128,816 L 176,816" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="184,816 172,810.4 172,821.6" fill="black" transform="rotate(0,176,816)"/>
              <polygon class="arrowhead" points="184,752 172,746.4 172,757.6" fill="black" transform="rotate(0,176,752)"/>
              <polygon class="arrowhead" points="184,688 172,682.4 172,693.6" fill="black" transform="rotate(0,176,688)"/>
              <polygon class="arrowhead" points="184,624 172,618.4 172,629.6" fill="black" transform="rotate(0,176,624)"/>
              <polygon class="arrowhead" points="184,480 172,474.4 172,485.6" fill="black" transform="rotate(0,176,480)"/>
              <polygon class="arrowhead" points="184,416 172,410.4 172,421.6" fill="black" transform="rotate(0,176,416)"/>
              <polygon class="arrowhead" points="184,272 172,266.4 172,277.6" fill="black" transform="rotate(0,176,272)"/>
              <polygon class="arrowhead" points="184,208 172,202.4 172,213.6" fill="black" transform="rotate(0,176,208)"/>
              <polygon class="arrowhead" points="184,112 172,106.4 172,117.6" fill="black" transform="rotate(0,176,112)"/>
              <polygon class="arrowhead" points="136,576 124,570.4 124,581.6" fill="black" transform="rotate(90,128,576)"/>
              <polygon class="arrowhead" points="136,528 124,522.4 124,533.6" fill="black" transform="rotate(90,128,528)"/>
              <polygon class="arrowhead" points="136,368 124,362.4 124,373.6" fill="black" transform="rotate(90,128,368)"/>
              <polygon class="arrowhead" points="136,320 124,314.4 124,325.6" fill="black" transform="rotate(90,128,320)"/>
              <polygon class="arrowhead" points="136,64 124,58.4 124,69.6" fill="black" transform="rotate(90,128,64)"/>
              <polygon class="arrowhead" points="96,592 84,586.4 84,597.6" fill="black" transform="rotate(0,88,592)"/>
              <polygon class="arrowhead" points="96,384 84,378.4 84,389.6" fill="black" transform="rotate(0,88,384)"/>
              <polygon class="arrowhead" points="88,80 76,74.4 76,85.6" fill="black" transform="rotate(0,80,80)"/>
              <g class="text">
                <text x="128" y="36">0</text>
                <text x="40" y="84">PSK</text>
                <text x="148" y="84">HKDF-Extract</text>
                <text x="208" y="84">=</text>
                <text x="240" y="84">Early</text>
                <text x="292" y="84">Secret</text>
                <text x="252" y="116">Derive-Secret(.,</text>
                <text x="316" y="132">"ext</text>
                <text x="368" y="132">binder"</text>
                <text x="408" y="132">|</text>
                <text x="316" y="148">"res</text>
                <text x="372" y="148">binder",</text>
                <text x="312" y="164">"")</text>
                <text x="248" y="180">=</text>
                <text x="300" y="180">binder_key</text>
                <text x="252" y="212">Derive-Secret(.,</text>
                <text x="332" y="212">"c</text>
                <text x="352" y="212">e</text>
                <text x="400" y="212">traffic",</text>
                <text x="348" y="228">ClientHello)</text>
                <text x="248" y="244">=</text>
                <text x="368" y="244">client_early_traffic_secret</text>
                <text x="252" y="276">Derive-Secret(.,</text>
                <text x="332" y="276">"e</text>
                <text x="360" y="276">exp</text>
                <text x="412" y="276">master",</text>
                <text x="348" y="292">ClientHello)</text>
                <text x="248" y="308">=</text>
                <text x="344" y="308">early_exporter_secret</text>
                <text x="148" y="340">Derive-Secret(.,</text>
                <text x="260" y="340">"derived",</text>
                <text x="320" y="340">"")</text>
                <text x="32" y="388">(EC)DHE</text>
                <text x="148" y="388">HKDF-Extract</text>
                <text x="208" y="388">=</text>
                <text x="256" y="388">Handshake</text>
                <text x="324" y="388">Secret</text>
                <text x="252" y="420">Derive-Secret(.,</text>
                <text x="332" y="420">"c</text>
                <text x="356" y="420">hs</text>
                <text x="408" y="420">traffic",</text>
                <text x="404" y="436">ClientHello...ServerHello)</text>
                <text x="248" y="452">=</text>
                <text x="384" y="452">client_handshake_traffic_secret</text>
                <text x="252" y="484">Derive-Secret(.,</text>
                <text x="332" y="484">"s</text>
                <text x="356" y="484">hs</text>
                <text x="408" y="484">traffic",</text>
                <text x="404" y="500">ClientHello...ServerHello)</text>
                <text x="248" y="516">=</text>
                <text x="384" y="516">server_handshake_traffic_secret</text>
                <text x="148" y="548">Derive-Secret(.,</text>
                <text x="260" y="548">"derived",</text>
                <text x="320" y="548">"")</text>
                <text x="56" y="596">0</text>
                <text x="148" y="596">HKDF-Extract</text>
                <text x="208" y="596">=</text>
                <text x="236" y="596">Main</text>
                <text x="284" y="596">Secret</text>
                <text x="252" y="628">Derive-Secret(.,</text>
                <text x="332" y="628">"c</text>
                <text x="356" y="628">ap</text>
                <text x="408" y="628">traffic",</text>
                <text x="380" y="644">ClientHello...server</text>
                <text x="504" y="644">Finished)</text>
                <text x="248" y="660">=</text>
                <text x="400" y="660">client_application_traffic_secret_0</text>
                <text x="252" y="692">Derive-Secret(.,</text>
                <text x="332" y="692">"s</text>
                <text x="356" y="692">ap</text>
                <text x="408" y="692">traffic",</text>
                <text x="380" y="708">ClientHello...server</text>
                <text x="504" y="708">Finished)</text>
                <text x="248" y="724">=</text>
                <text x="400" y="724">server_application_traffic_secret_0</text>
                <text x="252" y="756">Derive-Secret(.,</text>
                <text x="340" y="756">"exp</text>
                <text x="396" y="756">master",</text>
                <text x="380" y="772">ClientHello...server</text>
                <text x="504" y="772">Finished)</text>
                <text x="248" y="788">=</text>
                <text x="320" y="788">exporter_secret</text>
                <text x="252" y="820">Derive-Secret(.,</text>
                <text x="340" y="820">"res</text>
                <text x="396" y="820">master",</text>
                <text x="380" y="836">ClientHello...client</text>
                <text x="504" y="836">Finished)</text>
                <text x="248" y="852">=</text>
                <text x="328" y="852">resumption_secret</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![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>
        </artset>
        <t>The general pattern here is that the secrets shown down the left side
of the diagram are just raw entropy without context, whereas the
secrets down the right side include Handshake Context and therefore
can be used to derive working keys without additional context.
Note that the different
calls to Derive-Secret may take different Messages arguments,
even with the same secret. In a 0-RTT exchange, Derive-Secret is
called with four distinct transcripts; in a 1-RTT-only exchange,
it is called with three distinct transcripts.</t>
        <t>If a given secret is not available, then the 0-value consisting of
a string of Hash.length bytes set to zeros is used.  Note that this does not mean skipping
rounds, so if PSK is not in use, Early Secret will still be
HKDF-Extract(0, 0). For the computation of the binder_key, the label is
"ext binder" for external PSKs (those provisioned outside of TLS)
and "res binder" for resumption PSKs (those provisioned as the resumption
secret of a previous handshake). The different labels prevent
the substitution of one type of PSK for the other.</t>
        <t>There are multiple potential Early Secret values, depending on
which PSK the server ultimately selects. The client will need to compute
one for each potential PSK; if no PSK is selected, it will then need to
compute the Early Secret corresponding to the zero PSK.</t>
        <t>Once all the values which are to be derived from a given secret have
been computed, that secret SHOULD be erased.</t>
      </section>
      <section anchor="updating-traffic-keys">
        <name>Updating Traffic Secrets</name>
        <t>Once the handshake is complete, it is possible for either side to
update its sending traffic keys using the KeyUpdate handshake message
defined in <xref target="key-update"/>.  The next generation of traffic keys is computed by
generating client_/server_application_traffic_secret_N+1 from
client_/server_application_traffic_secret_N as described in
this section and then re-deriving the traffic keys as described in
<xref target="traffic-key-calculation"/>.</t>
        <t>The next-generation application_traffic_secret is computed as:</t>
        <artwork><![CDATA[
    application_traffic_secret_N+1 =
        HKDF-Expand-Label(application_traffic_secret_N,
                          "traffic upd", "", Hash.length)
]]></artwork>
        <t>Once client_/server_application_traffic_secret_N+1 and its associated
traffic keys have been computed, implementations SHOULD delete
client_/server_application_traffic_secret_N and its associated traffic keys.</t>
      </section>
      <section anchor="traffic-key-calculation">
        <name>Traffic Key Calculation</name>
        <t>The traffic keying material is generated from the following input values:</t>
        <ul spacing="normal">
          <li>
            <t>A secret value</t>
          </li>
          <li>
            <t>A purpose value indicating the specific value being generated</t>
          </li>
          <li>
            <t>The length of the key being generated</t>
          </li>
        </ul>
        <t>The traffic keying material is generated from an input traffic secret value using:</t>
        <artwork><![CDATA[
    [sender]_write_key = HKDF-Expand-Label(Secret, "key", "", key_length)
    [sender]_write_iv  = HKDF-Expand-Label(Secret, "iv", "", iv_length)
]]></artwork>
        <t>[sender] denotes the sending side. The value of Secret for each category
of data is shown in the table below.</t>
        <table anchor="traffic-key-table">
          <name>Secrets for Traffic Keys</name>
          <thead>
            <tr>
              <th align="left">Data Type</th>
              <th align="left">Secret</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0-RTT Application and EndOfEarlyData</td>
              <td align="left">client_early_traffic_secret</td>
            </tr>
            <tr>
              <td align="left">Initial Handshake</td>
              <td align="left">[sender]_handshake_traffic_secret</td>
            </tr>
            <tr>
              <td align="left">Post-Handshake and Application Data</td>
              <td align="left">[sender]_application_traffic_secret_N</td>
            </tr>
          </tbody>
        </table>
        <t>Alerts are sent with the then current sending key (or as
plaintext if no such key has been established.)
All the traffic keying material is recomputed whenever the
underlying Secret changes (e.g., when changing from the handshake to
Application Data keys or upon a key update).</t>
      </section>
      <section anchor="ecdhe-shared-secret-calculation">
        <name>(EC)DHE Shared Secret Calculation</name>
        <section anchor="finite-field-diffie-hellman">
          <name>Finite Field Diffie-Hellman</name>
          <t>For finite field groups, a conventional Diffie-Hellman
<xref target="KEYAGREEMENT"/> computation is performed.
The negotiated key (Z) is converted to a byte string by encoding in big-endian form and
left-padded with zeros up to the size of the prime. This byte string is used as the
shared secret in the key schedule as specified above.</t>
          <t>Note that this construction differs from previous versions of TLS which remove
leading zeros.</t>
        </section>
        <section anchor="elliptic-curve-diffie-hellman">
          <name>Elliptic Curve Diffie-Hellman</name>
          <t>For secp256r1, secp384r1 and secp521r1, ECDH calculations (including key
   generation and shared secret calculation) are performed according to
   Sections 5.6.1.2 and 5.7.1.2 of <xref target="KEYAGREEMENT"/> using the Elliptic Curve
   Cryptography Cofactor Diffie-Hellman Primitive. The shared secret Z is
   the x-coordinate of the ECDH shared secret elliptic curve point represented
   as an octet string. Note that the octet string Z as output by the
   Field-Element-to-Byte String Conversion specified in Appendix C.2 of
   <xref target="KEYAGREEMENT"/> has constant length for any given field; leading zeros
   found in this octet string MUST NOT be truncated. See <xref target="ecdhe-param"/> for
   requirements on public-key validation.</t>
          <t>For X25519 and X448, the ECDH calculations are as follows:</t>
          <ul spacing="normal">
            <li>
              <t>The public key to put into the KeyShareEntry.key_exchange structure is the
result of applying the ECDH scalar multiplication function to the secret key
of appropriate length (into scalar input) and the standard public basepoint
(into u-coordinate point input).</t>
            </li>
            <li>
              <t>The ECDH shared secret is the result of applying the ECDH scalar multiplication
function to the secret key (into scalar input) and the peer's public key
(into u-coordinate point input). The output is used raw, with no processing.</t>
            </li>
          </ul>
          <t>For these curves, implementations SHOULD use the approach specified
in <xref target="RFC7748"/> to calculate the Diffie-Hellman shared secret.
Implementations MUST check whether the computed Diffie-Hellman
shared secret is the all-zero value and abort if so, as described in
Section 6 of <xref target="RFC7748"/>. If implementors use an alternative
implementation of these elliptic curves, they SHOULD perform the
additional checks specified in Section 7 of <xref target="RFC7748"/>.</t>
        </section>
      </section>
      <section anchor="exporters">
        <name>Exporters</name>
        <t><xref target="RFC5705"/> defines keying material exporters for TLS in terms of the TLS
pseudorandom function (PRF). This document replaces the PRF with HKDF, thus
requiring a new construction. The exporter interface remains the same.</t>
        <t>The exporter value is computed as:</t>
        <artwork><![CDATA[
TLS-Exporter(label, context_value, key_length) =
    HKDF-Expand-Label(Derive-Secret(Secret, label, ""),
                      "exporter", Hash(context_value), key_length)
]]></artwork>
        <t>Where Secret is either the early_exporter_secret or the
exporter_secret.  Implementations MUST use the exporter_secret unless
explicitly specified by the application. The early_exporter_secret is
defined for use in settings where an exporter is needed for 0-RTT data.
A separate interface for the early exporter is RECOMMENDED; this avoids
the exporter user accidentally using an early exporter when a regular
one is desired or vice versa.</t>
        <t>If no context is provided, the context_value is zero length. Consequently,
providing no context computes the same value as providing an empty context.
This is a change from previous versions of TLS where an empty context produced a
different output than an absent context. As of this document's publication, no
allocated exporter label is used both with and without a context. Future
specifications MUST NOT define a use of exporters that permit both an empty
context and no context with the same label. New uses of exporters SHOULD provide
a context in all exporter computations, though the value could be empty.</t>
        <t>Requirements for the format of exporter labels are defined in Section 4
of <xref target="RFC5705"/>.</t>
      </section>
    </section>
    <section anchor="anti-replay">
      <name>0-RTT and Anti-Replay</name>
      <t>As noted in <xref target="zero-rtt-data"/> and <xref target="replay-0rtt"/>, TLS does not provide inherent replay
protections for 0-RTT data. There are two potential threats to be
concerned with:</t>
      <ul spacing="normal">
        <li>
          <t>Network attackers who mount a replay attack by simply duplicating a
flight of 0-RTT data.</t>
        </li>
        <li>
          <t>Network attackers who take advantage of client retry behavior
to arrange for the server to receive multiple copies of an application
message. This threat already exists
to some extent because clients that value robustness respond to network errors by
attempting to retry requests. However, 0-RTT adds an additional
dimension for any server system which does not maintain globally
consistent server state. Specifically, if a server system has
multiple zones where tickets from zone A will not be accepted in
zone B, then an attacker can duplicate a ClientHello and early
data intended for A to both A and B. At A, the data will
be accepted in 0-RTT, but at B the server will reject 0-RTT
data and instead force a full handshake. If the attacker blocks
the ServerHello from A, then the client will complete the
handshake with B and probably retry the request, leading to duplication on
the server system as a whole.</t>
        </li>
      </ul>
      <t>The first class of attack can be prevented by sharing state to guarantee that
the 0-RTT data is accepted at most once.  Servers SHOULD provide that level of
replay safety by implementing one of the methods described in this section or
by equivalent means.  It is understood, however, that due to operational
concerns not all deployments will maintain state at that level.  Therefore, in
normal operation, clients will not know which, if any, of these mechanisms
servers actually implement and hence MUST only send early data which they deem
safe to be replayed.</t>
      <t>In addition to the direct effects of replays, there is a class of attacks where
even operations normally considered idempotent could be exploited by a large
number of replays (timing attacks, resource limit exhaustion and others, as
described in <xref target="replay-0rtt"/>).  Those can be mitigated by ensuring that every
0-RTT payload can be replayed only a limited number of times.  The server MUST
ensure that any instance of it (be it a machine, a thread, or any other entity
within the relevant serving infrastructure) would accept 0-RTT for the same
0-RTT handshake at most once; this limits the number of replays to the number of
server instances in the deployment.  Such a guarantee can be accomplished by
locally recording data from recently received ClientHellos and rejecting
repeats, or by any other method that provides the same or a stronger guarantee.
The "at most once per server instance" guarantee is a minimum requirement;
servers SHOULD limit 0-RTT replays further when feasible.</t>
      <t>The second class of attack cannot be prevented at the TLS layer and
MUST be dealt with by any application. Note that any application whose
clients implement any kind of retry behavior already needs to
implement some sort of anti-replay defense.</t>
      <section anchor="single-use-tickets">
        <name>Single-Use Tickets</name>
        <t>The simplest form of anti-replay defense is for the server to only
allow each session ticket to be used once. For instance, the server
can maintain a database of all outstanding valid tickets, deleting each
ticket from the database as it is used. If an unknown ticket is
provided, the server would then fall back to a full handshake.</t>
        <t>If the tickets are not self-contained but rather are database keys,
and the corresponding PSKs are deleted upon use, then connections established
using PSKs enjoy not only anti-replay protection, but also forward secrecy once
all copies of the PSK from the database entry have been deleted.
This mechanism also improves security for PSK usage when PSK is used without
(EC)DHE.</t>
        <t>Because this mechanism requires sharing the session database between
server nodes in environments with multiple distributed servers,
it may be hard to achieve high rates of successful PSK 0-RTT
connections when compared to self-encrypted tickets. Unlike
session databases, session tickets can successfully do PSK-based
session establishment even without consistent storage, though when
0-RTT is allowed they still require consistent storage for anti-replay
of 0-RTT data, as detailed in the following
section.</t>
      </section>
      <section anchor="client-hello-recording">
        <name>Client Hello Recording</name>
        <t>An alternative form of anti-replay is to record a unique value derived
from the ClientHello (generally either the random value or the PSK
binder) and reject duplicates. Recording all ClientHellos causes state
to grow without bound, but a server can instead record ClientHellos within
a given time window and use the "obfuscated_ticket_age" to ensure that
tickets aren't reused outside that window.</t>
        <t>In order to implement this, when a ClientHello is received, the server
first verifies the PSK binder as described in
<xref target="pre-shared-key-extension"/>. It then computes the
expected_arrival_time as described in the next section and rejects
0-RTT if it is outside the recording window, falling back to the
1-RTT handshake.</t>
        <t>If the expected_arrival_time is in the window, then the server
checks to see if it has recorded a matching ClientHello. If one
is found, it either aborts the handshake with an "illegal_parameter" alert
or accepts the PSK but rejects 0-RTT. If no matching ClientHello
is found, then it accepts 0-RTT and then stores the ClientHello for
as long as the expected_arrival_time is inside the window.
Servers MAY also implement data stores with false positives, such as
Bloom filters, in which case they MUST respond to apparent replay by
rejecting 0-RTT but MUST NOT abort the handshake.</t>
        <t>The server MUST derive the storage key only from validated sections
of the ClientHello. If the ClientHello contains multiple
PSK identities, then an attacker can create multiple ClientHellos
with different binder values for the less-preferred identity on the
assumption that the server will not verify it (as recommended
by <xref target="pre-shared-key-extension"/>).
I.e., if the
client sends PSKs A and B but the server prefers A, then the
attacker can change the binder for B without affecting the binder
for A. If the binder for B is part of the storage key,
then this ClientHello will not appear as a duplicate,
which will cause the ClientHello to be accepted, and may
cause side effects such as replay cache pollution, although any
0-RTT data will not be decryptable because it will use different
keys. If the validated binder or the ClientHello.random
is used as the storage key, then this attack is not possible.</t>
        <t>Because this mechanism does not require storing all outstanding
tickets, it may be easier to implement in distributed systems with
high rates of resumption and 0-RTT, at the cost of potentially
weaker anti-replay defense because of the difficulty of reliably
storing and retrieving the received ClientHello messages.
In many such systems, it is impractical to have globally
consistent storage of all the received ClientHellos.
In this case, the best anti-replay protection is provided by
having a single storage zone be
authoritative for a given ticket and refusing 0-RTT for that
ticket in any other zone. This approach prevents simple
replay by the attacker because only one zone will accept
0-RTT data. A weaker design is to implement separate storage for
each zone but allow 0-RTT in any zone. This approach limits
the number of replays to once per zone. Application message
duplication of course remains possible with either design.</t>
        <t>When implementations are freshly started, they SHOULD
reject 0-RTT as long as any portion of their recording window overlaps
the startup time. Otherwise, they run the risk of accepting
replays which were originally sent during that period.</t>
        <t>Note: If the client's clock is running much faster than the server's,
then a ClientHello may be received that is outside the window in the
future, in which case it might be accepted for 1-RTT, causing a client retry,
and then acceptable later for 0-RTT. This is another variant of
the second form of attack described in <xref target="anti-replay"/>.</t>
      </section>
      <section anchor="freshness-checks">
        <name>Freshness Checks</name>
        <t>Because the ClientHello indicates the time at which the client sent
it, it is possible to efficiently determine whether a ClientHello was
likely sent reasonably recently and only accept 0-RTT for such a
ClientHello, otherwise falling back to a 1-RTT handshake.
This is necessary for the ClientHello storage mechanism
described in <xref target="client-hello-recording"/> because otherwise the server
needs to store an unlimited number of ClientHellos, and is a useful optimization for
self-contained single-use tickets because it allows efficient rejection of ClientHellos
which cannot be used for 0-RTT.</t>
        <t>In order to implement this mechanism, a server needs to store the time
that the server generated the session ticket, offset by an estimate of
the round-trip time between client and server. I.e.,</t>
        <artwork><![CDATA[
    adjusted_creation_time = creation_time + estimated_RTT
]]></artwork>
        <t>This value can be encoded in the ticket, thus avoiding the need to
keep state for each outstanding ticket. The server can determine the
client's view of the age of the ticket by subtracting the ticket's
"ticket_age_add" value from the "obfuscated_ticket_age" parameter in
the client's "pre_shared_key" extension. The server can determine the
expected_arrival_time of the ClientHello as:</t>
        <artwork><![CDATA[
    expected_arrival_time = adjusted_creation_time + clients_ticket_age
]]></artwork>
        <t>When a new ClientHello is received, the expected_arrival_time is then
compared against the current server wall clock time and if they differ
by more than a certain amount, 0-RTT is rejected, though the 1-RTT
handshake can be allowed to complete.</t>
        <t>There are several potential sources of error that might cause
mismatches between the expected_arrival_time and the measured
time. Variations in client and server clock
rates are likely to be minimal, though potentially the absolute
times may be off by large values.
Network propagation delays are the most likely causes of
a mismatch in legitimate values for elapsed time.  Both the
NewSessionTicket and ClientHello messages might be retransmitted and
therefore delayed, which might be hidden by TCP. For clients
on the Internet, this implies windows
on the order of ten seconds to account for errors in clocks and
variations in measurements; other deployment scenarios
may have different needs. Clock skew distributions are not
symmetric, so the optimal tradeoff may involve an asymmetric range
of permissible mismatch values.</t>
        <t>Note that freshness checking alone is not sufficient to prevent
replays because it does not detect them during the error window,
which -- depending on bandwidth and system capacity -- could include
billions of replays in real-world settings.  In addition, this
freshness checking is only done at the time the ClientHello is
received, and not when subsequent early Application Data records are
received. After early data is accepted, records may continue to be
streamed to the server over a longer time period.</t>
      </section>
    </section>
    <section anchor="compliance-requirements">
      <name>Compliance Requirements</name>
      <section anchor="mandatory-to-implement-cipher-suites">
        <name>Mandatory-to-Implement Cipher Suites</name>
        <t>In the absence of an application profile standard specifying otherwise:</t>
        <t>A TLS-compliant application MUST implement the TLS_AES_128_GCM_SHA256 <xref target="GCM"/>
cipher suite and SHOULD implement the TLS_AES_256_GCM_SHA384 <xref target="GCM"/> and
TLS_CHACHA20_POLY1305_SHA256 <xref target="RFC8439"/> cipher suites (see
<xref target="cipher-suites"/>).</t>
        <t>A TLS-compliant application MUST support digital signatures with
rsa_pkcs1_sha256 (for certificates), rsa_pss_rsae_sha256 (for
CertificateVerify and certificates), and ecdsa_secp256r1_sha256. A
TLS-compliant application MUST support key exchange with secp256r1
(NIST P-256) and SHOULD support key exchange with X25519 <xref target="RFC7748"/>.</t>
      </section>
      <section anchor="mti-extensions">
        <name>Mandatory-to-Implement Extensions</name>
        <t>In the absence of an application profile standard specifying otherwise, a
TLS-compliant application MUST implement the following TLS extensions:</t>
        <ul spacing="normal">
          <li>
            <t>Supported Versions     ("supported_versions"; <xref target="supported-versions"/>)</t>
          </li>
          <li>
            <t>Cookie                 ("cookie"; <xref target="cookie"/>)</t>
          </li>
          <li>
            <t>Signature Algorithms   ("signature_algorithms"; <xref target="signature-algorithms"/>)</t>
          </li>
          <li>
            <t>Signature Algorithms Certificate  ("signature_algorithms_cert"; <xref target="signature-algorithms"/>)</t>
          </li>
          <li>
            <t>Negotiated Groups      ("supported_groups"; <xref target="supported-groups"/>)</t>
          </li>
          <li>
            <t>Key Share              ("key_share"; <xref target="key-share"/>)</t>
          </li>
          <li>
            <t>Server Name Indication ("server_name"; Section 3 of <xref target="RFC6066"/>)</t>
          </li>
        </ul>
        <t>All implementations MUST send and use these extensions when offering
applicable features:</t>
        <ul spacing="normal">
          <li>
            <t>"supported_versions"   is REQUIRED for all ClientHello, ServerHello, and HelloRetryRequest messages.</t>
          </li>
          <li>
            <t>"signature_algorithms" is REQUIRED for certificate authentication.</t>
          </li>
          <li>
            <t>"supported_groups"     is REQUIRED for ClientHello messages using
                        DHE or ECDHE key exchange.</t>
          </li>
          <li>
            <t>"key_share"            is REQUIRED for DHE or ECDHE key exchange.</t>
          </li>
          <li>
            <t>"pre_shared_key"       is REQUIRED for PSK key agreement.</t>
          </li>
          <li>
            <t>"psk_key_exchange_modes" is REQUIRED for PSK key agreement.</t>
          </li>
        </ul>
        <t>A client is considered to be attempting to negotiate using this
specification if the ClientHello contains a "supported_versions"
extension with 0x0304 contained in its body.
Such a ClientHello message MUST meet the following requirements:</t>
        <ul spacing="normal">
          <li>
            <t>If not containing a "pre_shared_key" extension, it MUST contain both
a "signature_algorithms" extension and a "supported_groups" extension.</t>
          </li>
          <li>
            <t>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.</t>
          </li>
        </ul>
        <t>Servers receiving a ClientHello which does not conform to these
requirements MUST abort the handshake with a "missing_extension"
alert.</t>
        <t>Additionally, all implementations MUST support the use of the "server_name"
extension with applications capable of using it.
Servers MAY require clients to send a valid "server_name" extension.
Servers requiring this extension SHOULD respond to a ClientHello
lacking a "server_name" extension by terminating the connection with a
"missing_extension" alert.</t>
      </section>
      <section anchor="protocol-invariants">
        <name>Protocol Invariants</name>
        <t>This section describes invariants that TLS endpoints and middleboxes MUST
follow. It also applies to earlier versions of TLS.</t>
        <t>TLS is designed to be securely and compatibly extensible. Newer clients or
servers, when communicating with newer peers, should negotiate the
most preferred common parameters. The TLS handshake provides downgrade
protection: Middleboxes passing traffic between a newer client and
newer server without terminating TLS should be unable to influence the
handshake (see <xref target="security-handshake"/>). At the same time, deployments
update at different rates, so a newer client or server MAY continue to
support older parameters, which would allow it to interoperate with
older endpoints.</t>
        <t>For this to work, implementations MUST correctly handle extensible fields:</t>
        <ul spacing="normal">
          <li>
            <t>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.</t>
          </li>
          <li>
            <t>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.</t>
          </li>
          <li>
            <t>A middlebox which terminates a TLS connection MUST behave as a compliant
TLS server (to the original client), including having a certificate
which the client is willing to accept, and also as a compliant TLS client (to the
original server), including verifying the original server's certificate.
In particular, it MUST generate its own ClientHello
containing only parameters it understands, and it MUST generate a fresh
ServerHello random value, rather than forwarding the endpoint's value.  </t>
            <t>
Note that TLS's protocol requirements and security analysis only apply to the
two connections separately. Safely deploying a TLS terminator requires
additional security considerations which are beyond the scope of this document.</t>
          </li>
          <li>
            <t>A middlebox which forwards ClientHello parameters it does not understand MUST
NOT process any messages beyond that ClientHello. It MUST forward all
subsequent traffic unmodified. Otherwise, it may fail to interoperate with
newer clients and servers.  </t>
            <t>
Forwarded ClientHellos may contain advertisements for features not supported
by the middlebox, so the response may include future TLS additions the
middlebox does not recognize. These additions MAY change any message beyond
the ClientHello arbitrarily. In particular, the values sent in the ServerHello
might change, the ServerHello format might change, and the TLSCiphertext format
might change.</t>
          </li>
        </ul>
        <t>The design of TLS 1.3 was constrained by widely deployed non-compliant TLS
middleboxes (see <xref target="middlebox"/>); however, it does not relax the invariants.
Those middleboxes continue to be non-compliant.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Security issues are discussed throughout this memo, especially in
<xref target="implementation-notes"/>, <xref target="backward-compatibility"/>, and <xref target="security-analysis"/>.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document uses several registries that were originally created in
<xref target="RFC4346"/> and updated in <xref target="RFC8446"/> and <xref target="RFC8447"/>. The changes
between <xref target="RFC8446"/> and <xref target="RFC8447"/> this document are described in <xref target="bis-changes"/>.
IANA has updated these to reference this document.</t>
      <t>The registries and their allocation policies are below:</t>
      <ul spacing="normal">
        <li>
          <t>TLS Cipher Suites registry: values with the first byte in the range
0-254 (decimal) are assigned via Specification Required <xref target="RFC8126"/>.
Values with the first byte 255 (decimal) are reserved for Private
Use <xref target="RFC8126"/>.  </t>
          <t>
IANA has added the cipher suites listed in <xref target="cipher-suites"/> to
the registry. The "Value" and "Description" columns are taken from the table.
The "DTLS-OK" and "Recommended" columns are both marked as "Y" for each new
cipher suite.</t>
        </li>
        <li>
          <t>TLS ContentType registry: Future values are allocated via
Standards Action <xref target="RFC8126"/>.</t>
        </li>
        <li>
          <t>TLS Alerts registry: Future values are allocated via Standards
Action <xref target="RFC8126"/>. IANA [is requested to/has] populated this registry
with the values from <xref target="alert-messages-appendix"/>. The
"DTLS-OK" column is marked as "Y" for all such values.
Values marked as "_RESERVED" have comments
 describing their previous usage.</t>
        </li>
        <li>
          <t>TLS HandshakeType registry: Future values are allocated via
Standards Action <xref target="RFC8126"/>. IANA has updated this registry
to rename item 4 from "NewSessionTicket" to "new_session_ticket"
and populated this registry with the values from <xref target="handshake-protocol-appendix"/>.
The "DTLS-OK" column is marked as "Y" for all such values.
Values marked "_RESERVED" have comments describing their previous or
temporary usage.</t>
        </li>
      </ul>
      <t>This document also uses the TLS ExtensionType Values registry originally created in
<xref target="RFC4366"/>. IANA has updated it to reference this document.  Changes to the
registry follow:</t>
      <ul spacing="normal">
        <li>
          <t>IANA has updated the registration policy as follows:  </t>
          <t>
Values with the first byte in the range 0-254 (decimal) are assigned
via Specification Required <xref target="RFC8126"/>.  Values with the first byte
255 (decimal) are reserved for Private Use <xref target="RFC8126"/>.</t>
        </li>
        <li>
          <t>IANA has updated this registry to include the
"key_share", "pre_shared_key", "psk_key_exchange_modes",
"early_data", "cookie", "supported_versions",
"certificate_authorities", "oid_filters", "post_handshake_auth", and "signature_algorithms_cert"  extensions with the values defined in this document and the "Recommended" value of "Y".</t>
        </li>
        <li>
          <t>IANA has updated this registry to include a "TLS
1.3" column which lists the messages in which the extension may
appear. This column has been
initially populated from the table in <xref target="extensions"/>,
with any extension not listed there marked as "-" to indicate that
it is not used by TLS 1.3.</t>
        </li>
      </ul>
      <t>This document updates two entries in the TLS Certificate Types registry
originally created in <xref target="RFC6091"/> and updated in <xref target="RFC8447"/>.  IANA has
updated the entry for value 1 to have the name "OpenPGP_RESERVED",
"Recommended" value "N", and comment "Used in TLS versions prior
to 1.3."  IANA has updated the entry for value 0 to have the name
"X509", "Recommended" value "Y", and comment "Was X.509 before TLS 1.3".</t>
      <t>This document updates an entry in the TLS Certificate Status Types
registry originally created in <xref target="RFC6961"/>.  IANA has updated the entry
for value 2 to have the name "ocsp_multi_RESERVED" and comment "Used
in TLS versions prior to 1.3".</t>
      <t>This document updates two entries in the TLS Supported Groups
registry (created under a different name by <xref target="RFC4492"/>; now maintained
by <xref target="RFC8422"/>) and updated by <xref target="RFC7919"/> and <xref target="RFC8447"/>.  The entries
for values 29 and 30 (x25519 and x448) have been updated to also
refer to this document.</t>
      <t>In addition, this document defines two new registries that are maintained
by IANA:</t>
      <ul spacing="normal">
        <li>
          <t>TLS SignatureScheme registry: Values with the first byte in the range
0-253 (decimal) are assigned via Specification Required <xref target="RFC8126"/>.
Values with the first byte 254 or 255 (decimal) are reserved for Private
Use <xref target="RFC8126"/>. Values with the first byte in the range 0-6 or with the
second byte in the range 0-3 that are not currently allocated are reserved for
backward compatibility.
This registry has a "Recommended" column.
The registry has been initially populated with the values described in
<xref target="signature-algorithms"/>. The following values are marked as
"Recommended": ecdsa_secp256r1_sha256, ecdsa_secp384r1_sha384,
rsa_pss_rsae_sha256, rsa_pss_rsae_sha384, rsa_pss_rsae_sha512,
rsa_pss_pss_sha256, rsa_pss_pss_sha384, rsa_pss_pss_sha512, and ed25519.
The
"Recommended" column is assigned a value of "N" unless explicitly
 requested, and adding a value with a "Recommended" value of "Y"
 requires Standards Action <xref target="RFC8126"/>.  IESG Approval is REQUIRED
 for a Y-&gt;N transition.</t>
        </li>
        <li>
          <t>TLS PskKeyExchangeMode registry: Values in the
range 0-253 (decimal) are assigned via Specification Required
<xref target="RFC8126"/>.  The values 254 and 255 (decimal) are
reserved for Private Use <xref target="RFC8126"/>.  This registry has a
"Recommended" column.  The registry has been initially
populated with psk_ke (0) and psk_dhe_ke (1).  Both are marked as
"Recommended".  The
"Recommended" column is assigned a value of "N" unless explicitly
requested, and adding a value with a "Recommended" value of "Y"
requires Standards Action <xref target="RFC8126"/>.  IESG Approval is REQUIRED
for a Y-&gt;N transition.</t>
        </li>
      </ul>
      <section anchor="bis-changes">
        <name>Changes for this RFC</name>
        <t>IANA [shall update/has updated] the TLS registries to reference this document.</t>
        <t>IANA [shall rename/has renamed] the "extended_master_secret" value
in the TLS ExtensionType Values registry to "extended_main_secret".</t>
        <t>IANA [shall create/has created] a value for the "general_error"
alert in the TLS Alerts Registry with the value given in <xref target="alert-protocol"/>.</t>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2104">
          <front>
            <title>HMAC: Keyed-Hashing for Message Authentication</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="M. Bellare" initials="M." surname="Bellare"/>
            <author fullname="R. Canetti" initials="R." surname="Canetti"/>
            <date month="February" year="1997"/>
            <abstract>
              <t>This document describes HMAC, a mechanism for message authentication using cryptographic hash functions. HMAC can be used with any iterative cryptographic hash function, e.g., MD5, SHA-1, in combination with a secret shared key. The cryptographic strength of HMAC depends on the properties of the underlying hash function. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2104"/>
          <seriesInfo name="DOI" value="10.17487/RFC2104"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications. The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5869"/>
          <seriesInfo name="DOI" value="10.17487/RFC5869"/>
        </reference>
        <reference anchor="RFC6066">
          <front>
            <title>Transport Layer Security (TLS) Extensions: Extension Definitions</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <date month="January" year="2011"/>
            <abstract>
              <t>This document provides specifications for existing TLS extensions. It is a companion document for RFC 5246, "The Transport Layer Security (TLS) Protocol Version 1.2". The extensions specified are server_name, max_fragment_length, client_certificate_url, trusted_ca_keys, truncated_hmac, and status_request. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6066"/>
          <seriesInfo name="DOI" value="10.17487/RFC6066"/>
        </reference>
        <reference anchor="RFC6655">
          <front>
            <title>AES-CCM Cipher Suites for Transport Layer Security (TLS)</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="D. Bailey" initials="D." surname="Bailey"/>
            <date month="July" year="2012"/>
            <abstract>
              <t>This memo describes the use of the Advanced Encryption Standard (AES) in the Counter with Cipher Block Chaining - Message Authentication Code (CBC-MAC) Mode (CCM) of operation within Transport Layer Security (TLS) and Datagram TLS (DTLS) to provide confidentiality and data origin authentication. The AES-CCM algorithm is amenable to compact implementations, making it suitable for constrained environments. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6655"/>
          <seriesInfo name="DOI" value="10.17487/RFC6655"/>
        </reference>
        <reference anchor="RFC8439">
          <front>
            <title>ChaCha20 and Poly1305 for IETF Protocols</title>
            <author fullname="Y. Nir" initials="Y." surname="Nir"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <date month="June" year="2018"/>
            <abstract>
              <t>This document defines the ChaCha20 stream cipher as well as the use of the Poly1305 authenticator, both as stand-alone algorithms and as a "combined mode", or Authenticated Encryption with Associated Data (AEAD) algorithm.</t>
              <t>RFC 7539, the predecessor of this document, was meant to serve as a stable reference and an implementation guide. It was a product of the Crypto Forum Research Group (CFRG). This document merges the errata filed against RFC 7539 and adds a little text to the Security Considerations section.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8439"/>
          <seriesInfo name="DOI" value="10.17487/RFC8439"/>
        </reference>
        <reference anchor="RFC7627">
          <front>
            <title>Transport Layer Security (TLS) Session Hash and Extended Master Secret Extension</title>
            <author fullname="K. Bhargavan" initials="K." role="editor" surname="Bhargavan"/>
            <author fullname="A. Delignat-Lavaud" initials="A." surname="Delignat-Lavaud"/>
            <author fullname="A. Pironti" initials="A." surname="Pironti"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="M. Ray" initials="M." surname="Ray"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>The Transport Layer Security (TLS) master secret is not cryptographically bound to important session parameters such as the server certificate. Consequently, it is possible for an active attacker to set up two sessions, one with a client and another with a server, such that the master secrets on the two sessions are the same. Thereafter, any mechanism that relies on the master secret for authentication, including session resumption, becomes vulnerable to a man-in-the-middle attack, where the attacker can simply forward messages back and forth between the client and server. This specification defines a TLS extension that contextually binds the master secret to a log of the full handshake that computes it, thus preventing such attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7627"/>
          <seriesInfo name="DOI" value="10.17487/RFC7627"/>
        </reference>
        <reference anchor="RFC7748">
          <front>
            <title>Elliptic Curves for Security</title>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="M. Hamburg" initials="M." surname="Hamburg"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="January" year="2016"/>
            <abstract>
              <t>This memo specifies two elliptic curves over prime fields that offer a high level of practical security in cryptographic applications, including Transport Layer Security (TLS). These curves are intended to operate at the ~128-bit and ~224-bit security level, respectively, and are generated deterministically based on a list of required properties.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7748"/>
          <seriesInfo name="DOI" value="10.17487/RFC7748"/>
        </reference>
        <reference anchor="RFC7919">
          <front>
            <title>Negotiated Finite Field Diffie-Hellman Ephemeral Parameters for Transport Layer Security (TLS)</title>
            <author fullname="D. Gillmor" initials="D." surname="Gillmor"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>Traditional finite-field-based Diffie-Hellman (DH) key exchange during the Transport Layer Security (TLS) handshake suffers from a number of security, interoperability, and efficiency shortcomings. These shortcomings arise from lack of clarity about which DH group parameters TLS servers should offer and clients should accept. This document offers a solution to these shortcomings for compatible peers by using a section of the TLS "Supported Groups Registry" (renamed from "EC Named Curve Registry" by this document) to establish common finite field DH parameters with known structure and a mechanism for peers to negotiate support for these groups.</t>
              <t>This document updates TLS versions 1.0 (RFC 2246), 1.1 (RFC 4346), and 1.2 (RFC 5246), as well as the TLS Elliptic Curve Cryptography (ECC) extensions (RFC 4492).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7919"/>
          <seriesInfo name="DOI" value="10.17487/RFC7919"/>
        </reference>
        <reference anchor="RFC8032">
          <front>
            <title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="I. Liusvaara" initials="I." surname="Liusvaara"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document describes elliptic curve signature scheme Edwards-curve Digital Signature Algorithm (EdDSA). The algorithm is instantiated with recommended parameters for the edwards25519 and edwards448 curves. An example implementation and test vectors are provided.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8032"/>
          <seriesInfo name="DOI" value="10.17487/RFC8032"/>
        </reference>
        <reference anchor="RFC8017">
          <front>
            <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson"/>
            <author fullname="A. Rusch" initials="A." surname="Rusch"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t>
              <t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series. By publishing this RFC, change control is transferred to the IETF.</t>
              <t>This document also obsoletes RFC 3447.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8017"/>
          <seriesInfo name="DOI" value="10.17487/RFC8017"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC5116">
          <front>
            <title>An Interface and Algorithms for Authenticated Encryption</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms. The interface and registry can be used as an application-independent set of cryptoalgorithm suites. This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5116"/>
          <seriesInfo name="DOI" value="10.17487/RFC5116"/>
        </reference>
        <reference anchor="X690" target="https://www.itu.int/rec/T-REC-X.690-202102-I/en">
          <front>
            <title>Information technology - ASN.1 encoding Rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)</title>
            <author>
              <organization>ITU-T</organization>
            </author>
            <date year="2021" month="February"/>
          </front>
          <seriesInfo name="ITU-T X.690" value=""/>
        </reference>
        <reference anchor="GCM" target="https://doi.org/10.6028/NIST.SP.800-38D">
          <front>
            <title>Recommendation for Block Cipher Modes of Operation: Galois/Counter Mode (GCM) and GMAC</title>
            <author initials="M." surname="Dworkin">
              <organization/>
            </author>
            <date year="2007" month="November"/>
          </front>
          <seriesInfo name="NIST" value="Special Publication 800-38D"/>
        </reference>
        <reference anchor="RFC8996">
          <front>
            <title>Deprecating TLS 1.0 and TLS 1.1</title>
            <author fullname="K. Moriarty" initials="K." surname="Moriarty"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <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>
              <organization/>
            </author>
            <date year="2015"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.fips.180-4"/>
          <refcontent>National Institute of Standards and Technology (U.S.)</refcontent>
        </reference>
        <reference anchor="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC5756">
          <front>
            <title>Updates for RSAES-OAEP and RSASSA-PSS Algorithm Parameters</title>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <author fullname="D. Brown" initials="D." surname="Brown"/>
            <author fullname="K. Yiu" initials="K." surname="Yiu"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="T. Polk" initials="T." surname="Polk"/>
            <date month="January" year="2010"/>
            <abstract>
              <t>This document updates RFC 4055. It updates the conventions for using the RSA Encryption Scheme - Optimal Asymmetric Encryption Padding (RSAES-OAEP) key transport algorithm in the Internet X.509 Public Key Infrastructure (PKI). Specifically, it updates the conventions for algorithm parameters in an X.509 certificate's subjectPublicKeyInfo field. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5756"/>
          <seriesInfo name="DOI" value="10.17487/RFC5756"/>
        </reference>
        <reference anchor="KEYAGREEMENT">
          <front>
            <title>Recommendation for pair-wise key-establishment schemes using discrete logarithm cryptography</title>
            <author fullname="Elaine Barker" initials="E." surname="Barker">
              <organization/>
            </author>
            <author fullname="Lily Chen" initials="L." surname="Chen">
              <organization/>
            </author>
            <author fullname="Allen Roginsky" initials="A." surname="Roginsky">
              <organization/>
            </author>
            <author fullname="Apostol Vassilev" initials="A." surname="Vassilev">
              <organization/>
            </author>
            <author fullname="Richard Davis" initials="R." surname="Davis">
              <organization/>
            </author>
            <date month="April" year="2018"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-56ar3"/>
          <refcontent>National Institute of Standards and Technology</refcontent>
        </reference>
        <reference anchor="RFC7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl"/>
            <author fullname="A. Popov" initials="A." surname="Popov"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="E. Stephan" initials="E." surname="Stephan"/>
            <date month="July" year="2014"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7301"/>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
        </reference>
        <reference anchor="RFC6962">
          <front>
            <title>Certificate Transparency</title>
            <author fullname="B. Laurie" initials="B." surname="Laurie"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="E. Kasper" initials="E." surname="Kasper"/>
            <date month="June" year="2013"/>
            <abstract>
              <t>This document describes an experimental protocol for publicly logging the existence of Transport Layer Security (TLS) certificates as they are issued or observed, in a manner that allows anyone to audit certificate authority (CA) activity and notice the issuance of suspect certificates as well as to audit the certificate logs themselves. The intent is that eventually clients would refuse to honor certificates that do not appear in a log, effectively forcing CAs to add all issued certificates to the logs.</t>
              <t>Logs are network services that implement the protocol operations for submissions and queries that are defined in this document.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6962"/>
          <seriesInfo name="DOI" value="10.17487/RFC6962"/>
        </reference>
        <reference anchor="RFC6961">
          <front>
            <title>The Transport Layer Security (TLS) Multiple Certificate Status Request Extension</title>
            <author fullname="Y. Pettersen" initials="Y." surname="Pettersen"/>
            <date month="June" year="2013"/>
            <abstract>
              <t>This document defines the Transport Layer Security (TLS) Certificate Status Version 2 Extension to allow clients to specify and support several certificate status methods. (The use of the Certificate Status extension is commonly referred to as "OCSP stapling".) Also defined is a new method based on the Online Certificate Status Protocol (OCSP) that servers can use to provide status information about not only the server's own certificate but also the status of intermediate certificates in the chain.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6961"/>
          <seriesInfo name="DOI" value="10.17487/RFC6961"/>
        </reference>
        <reference anchor="RFC6960">
          <front>
            <title>X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP</title>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="M. Myers" initials="M." surname="Myers"/>
            <author fullname="R. Ankney" initials="R." surname="Ankney"/>
            <author fullname="A. Malpani" initials="A." surname="Malpani"/>
            <author fullname="S. Galperin" initials="S." surname="Galperin"/>
            <author fullname="C. Adams" initials="C." surname="Adams"/>
            <date month="June" year="2013"/>
            <abstract>
              <t>This document specifies a protocol useful in determining the current status of a digital certificate without requiring Certificate Revocation Lists (CRLs). Additional mechanisms addressing PKIX operational requirements are specified in separate documents. This document obsoletes RFCs 2560 and 6277. It also updates RFC 5912.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6960"/>
          <seriesInfo name="DOI" value="10.17487/RFC6960"/>
        </reference>
        <reference anchor="RFC7507">
          <front>
            <title>TLS Fallback Signaling Cipher Suite Value (SCSV) for Preventing Protocol Downgrade Attacks</title>
            <author fullname="B. Moeller" initials="B." surname="Moeller"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <date month="April" year="2015"/>
            <abstract>
              <t>This document defines a Signaling Cipher Suite Value (SCSV) that prevents protocol downgrade attacks on the Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) protocols. It updates RFCs 2246, 4346, 4347, 5246, and 6347. Server update considerations are included.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7507"/>
          <seriesInfo name="DOI" value="10.17487/RFC7507"/>
        </reference>
        <reference anchor="RFC5705">
          <front>
            <title>Keying Material Exporters for Transport Layer Security (TLS)</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="March" year="2010"/>
            <abstract>
              <t>A number of protocols wish to leverage Transport Layer Security (TLS) to perform key establishment but then use some of the keying material for their own purposes. This document describes a general mechanism for allowing that. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5705"/>
          <seriesInfo name="DOI" value="10.17487/RFC5705"/>
        </reference>
        <reference anchor="RFC6979">
          <front>
            <title>Deterministic Usage of the Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)</title>
            <author fullname="T. Pornin" initials="T." surname="Pornin"/>
            <date month="August" year="2013"/>
            <abstract>
              <t>This document defines a deterministic digital signature generation procedure. Such signatures are compatible with standard Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA) digital signatures and can be processed with unmodified verifiers, which need not be aware of the procedure described therein. Deterministic signatures retain the cryptographic security features associated with digital signatures but can be more easily implemented in various environments, since they do not need access to a source of high-quality randomness.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6979"/>
          <seriesInfo name="DOI" value="10.17487/RFC6979"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="J. Schiller" initials="J." surname="Schiller"/>
            <author fullname="S. Crocker" initials="S." surname="Crocker"/>
            <date month="June" year="2005"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="106"/>
          <seriesInfo name="RFC" value="4086"/>
          <seriesInfo name="DOI" value="10.17487/RFC4086"/>
        </reference>
        <reference anchor="RFC4346">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.1</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="April" year="2006"/>
            <abstract>
              <t>This document specifies Version 1.1 of the Transport Layer Security (TLS) protocol. The TLS protocol provides communications security over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4346"/>
          <seriesInfo name="DOI" value="10.17487/RFC4346"/>
        </reference>
        <reference anchor="RFC4366">
          <front>
            <title>Transport Layer Security (TLS) Extensions</title>
            <author fullname="S. Blake-Wilson" initials="S." surname="Blake-Wilson"/>
            <author fullname="M. Nystrom" initials="M." surname="Nystrom"/>
            <author fullname="D. Hopwood" initials="D." surname="Hopwood"/>
            <author fullname="J. Mikkelsen" initials="J." surname="Mikkelsen"/>
            <author fullname="T. Wright" initials="T." surname="Wright"/>
            <date month="April" year="2006"/>
            <abstract>
              <t>This document describes extensions that may be used to add functionality to Transport Layer Security (TLS). It provides both generic extension mechanisms for the TLS handshake client and server hellos, and specific extensions using these generic mechanisms.</t>
              <t>The extensions may be used by TLS clients and servers. The extensions are backwards compatible: communication is possible between TLS clients that support the extensions and TLS servers that do not support the extensions, and vice versa. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4366"/>
          <seriesInfo name="DOI" value="10.17487/RFC4366"/>
        </reference>
        <reference anchor="RFC4492">
          <front>
            <title>Elliptic Curve Cryptography (ECC) Cipher Suites for Transport Layer Security (TLS)</title>
            <author fullname="S. Blake-Wilson" initials="S." surname="Blake-Wilson"/>
            <author fullname="N. Bolyard" initials="N." surname="Bolyard"/>
            <author fullname="V. Gupta" initials="V." surname="Gupta"/>
            <author fullname="C. Hawk" initials="C." surname="Hawk"/>
            <author fullname="B. Moeller" initials="B." surname="Moeller"/>
            <date month="May" year="2006"/>
            <abstract>
              <t>This document describes new key exchange algorithms based on Elliptic Curve Cryptography (ECC) for the Transport Layer Security (TLS) protocol. In particular, it specifies the use of Elliptic Curve Diffie-Hellman (ECDH) key agreement in a TLS handshake and the use of Elliptic Curve Digital Signature Algorithm (ECDSA) as a new authentication mechanism. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4492"/>
          <seriesInfo name="DOI" value="10.17487/RFC4492"/>
        </reference>
        <reference anchor="RFC5077">
          <front>
            <title>Transport Layer Security (TLS) Session Resumption without Server-Side State</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <author fullname="H. Zhou" initials="H." surname="Zhou"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document describes a mechanism that enables the Transport Layer Security (TLS) server to resume sessions and avoid keeping per-client session state. The TLS server encapsulates the session state into a ticket and forwards it to the client. The client can subsequently resume a session using the obtained ticket. This document obsoletes RFC 4507. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5077"/>
          <seriesInfo name="DOI" value="10.17487/RFC5077"/>
        </reference>
        <reference anchor="RFC5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol. The TLS protocol provides communications security over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="RFC5764">
          <front>
            <title>Datagram Transport Layer Security (DTLS) Extension to Establish Keys for the Secure Real-time Transport Protocol (SRTP)</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document describes a Datagram Transport Layer Security (DTLS) extension to establish keys for Secure RTP (SRTP) and Secure RTP Control Protocol (SRTCP) flows. DTLS keying happens on the media path, independent of any out-of-band signalling channel present. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5764"/>
          <seriesInfo name="DOI" value="10.17487/RFC5764"/>
        </reference>
        <reference anchor="RFC5929">
          <front>
            <title>Channel Bindings for TLS</title>
            <author fullname="J. Altman" initials="J." surname="Altman"/>
            <author fullname="N. Williams" initials="N." surname="Williams"/>
            <author fullname="L. Zhu" initials="L." surname="Zhu"/>
            <date month="July" year="2010"/>
            <abstract>
              <t>This document defines three channel binding types for Transport Layer Security (TLS), tls-unique, tls-server-end-point, and tls-unique-for-telnet, in accordance with RFC 5056 (On Channel Binding).</t>
              <t>Note that based on implementation experience, this document changes the original definition of 'tls-unique' channel binding type in the channel binding type IANA registry. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5929"/>
          <seriesInfo name="DOI" value="10.17487/RFC5929"/>
        </reference>
        <reference anchor="RFC6176">
          <front>
            <title>Prohibiting Secure Sockets Layer (SSL) Version 2.0</title>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <author fullname="T. Polk" initials="T." surname="Polk"/>
            <date month="March" year="2011"/>
            <abstract>
              <t>This document requires that when Transport Layer Security (TLS) clients and servers establish connections, they never negotiate the use of Secure Sockets Layer (SSL) version 2.0. This document updates the backward compatibility sections found in the Transport Layer Security (TLS). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6176"/>
          <seriesInfo name="DOI" value="10.17487/RFC6176"/>
        </reference>
        <reference anchor="RFC6091">
          <front>
            <title>Using OpenPGP Keys for Transport Layer Security (TLS) Authentication</title>
            <author fullname="N. Mavrogiannopoulos" initials="N." surname="Mavrogiannopoulos"/>
            <author fullname="D. Gillmor" initials="D." surname="Gillmor"/>
            <date month="February" year="2011"/>
            <abstract>
              <t>This memo defines Transport Layer Security (TLS) extensions and associated semantics that allow clients and servers to negotiate the use of OpenPGP certificates for a TLS session, and specifies how to transport OpenPGP certificates via TLS. It also defines the registry for non-X.509 certificate types. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6091"/>
          <seriesInfo name="DOI" value="10.17487/RFC6091"/>
        </reference>
        <reference anchor="RFC6520">
          <front>
            <title>Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) Heartbeat Extension</title>
            <author fullname="R. Seggelmann" initials="R." surname="Seggelmann"/>
            <author fullname="M. Tuexen" initials="M." surname="Tuexen"/>
            <author fullname="M. Williams" initials="M." surname="Williams"/>
            <date month="February" year="2012"/>
            <abstract>
              <t>This document describes the Heartbeat Extension for the Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) protocols.</t>
              <t>The Heartbeat Extension provides a new protocol for TLS/DTLS allowing the usage of keep-alive functionality without performing a renegotiation and a basis for path MTU (PMTU) discovery for DTLS. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6520"/>
          <seriesInfo name="DOI" value="10.17487/RFC6520"/>
        </reference>
        <reference anchor="RFC8305">
          <front>
            <title>Happy Eyeballs Version 2: Better Connectivity Using Concurrency</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>Many communication protocols operating over the modern Internet use hostnames. These often resolve to multiple IP addresses, each of which may have different performance and connectivity characteristics. Since specific addresses or address families (IPv4 or IPv6) may be blocked, broken, or sub-optimal on a network, clients that attempt multiple connections in parallel have a chance of establishing a connection more quickly. This document specifies requirements for algorithms that reduce this user-visible delay and provides an example algorithm, referred to as "Happy Eyeballs". This document obsoletes the original algorithm description in RFC 6555.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8305"/>
          <seriesInfo name="DOI" value="10.17487/RFC8305"/>
        </reference>
        <reference anchor="RFC7250">
          <front>
            <title>Using Raw Public Keys in Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
            <author fullname="P. Wouters" initials="P." role="editor" surname="Wouters"/>
            <author fullname="H. Tschofenig" initials="H." role="editor" surname="Tschofenig"/>
            <author fullname="J. Gilmore" initials="J." surname="Gilmore"/>
            <author fullname="S. Weiler" initials="S." surname="Weiler"/>
            <author fullname="T. Kivinen" initials="T." surname="Kivinen"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>This document specifies a new certificate type and two TLS extensions for exchanging raw public keys in Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS). The new certificate type allows raw public keys to be used for authentication.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7250"/>
          <seriesInfo name="DOI" value="10.17487/RFC7250"/>
        </reference>
        <reference anchor="RFC7465">
          <front>
            <title>Prohibiting RC4 Cipher Suites</title>
            <author fullname="A. Popov" initials="A." surname="Popov"/>
            <date month="February" year="2015"/>
            <abstract>
              <t>This document requires that Transport Layer Security (TLS) clients and servers never negotiate the use of RC4 cipher suites when they establish connections. This applies to all TLS versions. This document updates RFCs 5246, 4346, and 2246.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7465"/>
          <seriesInfo name="DOI" value="10.17487/RFC7465"/>
        </reference>
        <reference anchor="RFC7568">
          <front>
            <title>Deprecating Secure Sockets Layer Version 3.0</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <author fullname="A. Pironti" initials="A." surname="Pironti"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <date month="June" year="2015"/>
            <abstract>
              <t>The Secure Sockets Layer version 3.0 (SSLv3), as specified in RFC 6101, is not sufficiently secure. This document requires that SSLv3 not be used. The replacement versions, in particular, Transport Layer Security (TLS) 1.2 (RFC 5246), are considerably more secure and capable protocols.</t>
              <t>This document updates the backward compatibility section of RFC 5246 and its predecessors to prohibit fallback to SSLv3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7568"/>
          <seriesInfo name="DOI" value="10.17487/RFC7568"/>
        </reference>
        <reference anchor="RFC7624">
          <front>
            <title>Confidentiality in the Face of Pervasive Surveillance: A Threat Model and Problem Statement</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="B. Schneier" initials="B." surname="Schneier"/>
            <author fullname="C. Jennings" initials="C." surname="Jennings"/>
            <author fullname="T. Hardie" initials="T." surname="Hardie"/>
            <author fullname="B. Trammell" initials="B." surname="Trammell"/>
            <author fullname="C. Huitema" initials="C." surname="Huitema"/>
            <author fullname="D. Borkmann" initials="D." surname="Borkmann"/>
            <date month="August" year="2015"/>
            <abstract>
              <t>Since the initial revelations of pervasive surveillance in 2013, several classes of attacks on Internet communications have been discovered. In this document, we develop a threat model that describes these attacks on Internet confidentiality. We assume an attacker that is interested in undetected, indiscriminate eavesdropping. The threat model is based on published, verified attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7624"/>
          <seriesInfo name="DOI" value="10.17487/RFC7624"/>
        </reference>
        <reference anchor="RFC7685">
          <front>
            <title>A Transport Layer Security (TLS) ClientHello Padding Extension</title>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>This memo describes a Transport Layer Security (TLS) extension that can be used to pad ClientHello messages to a desired size.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7685"/>
          <seriesInfo name="DOI" value="10.17487/RFC7685"/>
        </reference>
        <reference anchor="RFC8937">
          <front>
            <title>Randomness Improvements for Security Protocols</title>
            <author fullname="C. Cremers" initials="C." surname="Cremers"/>
            <author fullname="L. Garratt" initials="L." surname="Garratt"/>
            <author fullname="S. Smyshlyaev" initials="S." surname="Smyshlyaev"/>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <date month="October" year="2020"/>
            <abstract>
              <t>Randomness is a crucial ingredient for Transport Layer Security (TLS) and related security protocols. Weak or predictable "cryptographically secure" pseudorandom number generators (CSPRNGs) can be abused or exploited for malicious purposes. An initial entropy source that seeds a CSPRNG might be weak or broken as well, which can also lead to critical and systemic security problems. This document describes a way for security protocol implementations to augment their CSPRNGs using long-term private keys. This improves randomness from broken or otherwise subverted CSPRNGs.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8937"/>
          <seriesInfo name="DOI" value="10.17487/RFC8937"/>
        </reference>
        <reference anchor="RFC8849">
          <front>
            <title>Mapping RTP Streams to Controlling Multiple Streams for Telepresence (CLUE) Media Captures</title>
            <author fullname="R. Even" initials="R." surname="Even"/>
            <author fullname="J. Lennox" initials="J." surname="Lennox"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document describes how the Real-time Transport Protocol (RTP) is used in the context of the Controlling Multiple Streams for Telepresence (CLUE) protocol. It also describes the mechanisms and recommended practice for mapping RTP media streams, as defined in the Session Description Protocol (SDP), to CLUE Media Captures and defines a new RTP header extension (CaptureID).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8849"/>
          <seriesInfo name="DOI" value="10.17487/RFC8849"/>
        </reference>
        <reference anchor="RFC9345">
          <front>
            <title>Delegated Credentials for TLS and DTLS</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="S. Iyengar" initials="S." surname="Iyengar"/>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="July" year="2023"/>
            <abstract>
              <t>The organizational separation between operators of TLS and DTLS endpoints and the certification authority can create limitations. For example, the lifetime of certificates, how they may be used, and the algorithms they support are ultimately determined by the Certification Authority (CA). This document describes a mechanism to overcome some of these limitations by enabling operators to delegate their own credentials for use in TLS and DTLS without breaking compatibility with peers that do not support this specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9345"/>
          <seriesInfo name="DOI" value="10.17487/RFC9345"/>
        </reference>
        <reference anchor="RFC8870">
          <front>
            <title>Encrypted Key Transport for DTLS and Secure RTP</title>
            <author fullname="C. Jennings" initials="C." surname="Jennings"/>
            <author fullname="J. Mattsson" initials="J." surname="Mattsson"/>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="D. Wing" initials="D." surname="Wing"/>
            <author fullname="F. Andreasen" initials="F." surname="Andreasen"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>Encrypted Key Transport (EKT) is an extension to DTLS (Datagram Transport Layer Security) and the Secure Real-time Transport Protocol (SRTP) that provides for the secure transport of SRTP master keys, rollover counters, and other information within SRTP. This facility enables SRTP for decentralized conferences by distributing a common key to all of the conference endpoints.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8870"/>
          <seriesInfo name="DOI" value="10.17487/RFC8870"/>
        </reference>
        <reference anchor="RFC9112">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns.</t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="RFC9162">
          <front>
            <title>Certificate Transparency Version 2.0</title>
            <author fullname="B. Laurie" initials="B." surname="Laurie"/>
            <author fullname="E. Messeri" initials="E." surname="Messeri"/>
            <author fullname="R. Stradling" initials="R." surname="Stradling"/>
            <date month="December" year="2021"/>
            <abstract>
              <t>This document describes version 2.0 of the Certificate Transparency (CT) protocol for publicly logging the existence of Transport Layer Security (TLS) server certificates as they are issued or observed, in a manner that allows anyone to audit certification 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>This document obsoletes RFC 6962. It also specifies a new TLS extension that is used to send various CT log artifacts.</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="9162"/>
          <seriesInfo name="DOI" value="10.17487/RFC9162"/>
        </reference>
        <reference anchor="RFC9146">
          <front>
            <title>Connection Identifier for DTLS 1.2</title>
            <author fullname="E. Rescorla" initials="E." role="editor" surname="Rescorla"/>
            <author fullname="H. Tschofenig" initials="H." role="editor" surname="Tschofenig"/>
            <author fullname="T. Fossati" initials="T." surname="Fossati"/>
            <author fullname="A. Kraus" initials="A." surname="Kraus"/>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document specifies the Connection ID (CID) construct for the Datagram Transport Layer Security (DTLS) protocol version 1.2.</t>
              <t>A CID is an identifier carried in the record layer header that gives the recipient additional information for selecting the appropriate security association. In "classical" DTLS, selecting a security association of an incoming DTLS record is accomplished with the help of the 5-tuple. If the source IP address and/or source port changes during the lifetime of an ongoing DTLS session, then the receiver will be unable to locate the correct security context.</t>
              <t>The new ciphertext record format with the CID also provides content type encryption and record layer padding.</t>
              <t>This document updates RFC 6347.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9146"/>
          <seriesInfo name="DOI" value="10.17487/RFC9146"/>
        </reference>
        <reference anchor="RFC8844">
          <front>
            <title>Unknown Key-Share Attacks on Uses of TLS with the Session Description Protocol (SDP)</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document describes unknown key-share attacks on the use of Datagram Transport Layer Security for the Secure Real-Time Transport Protocol (DTLS-SRTP). Similar attacks are described on the use of DTLS-SRTP with the identity bindings used in Web Real-Time Communications (WebRTC) and SIP identity. These attacks are difficult to mount, but they cause a victim to be misled about the identity of a communicating peer. This document defines mitigation techniques that implementations of RFC 8122 are encouraged to deploy.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8844"/>
          <seriesInfo name="DOI" value="10.17487/RFC8844"/>
        </reference>
        <reference anchor="RFC9001">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="RFC9149">
          <front>
            <title>TLS Ticket Requests</title>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <author fullname="C.A. Wood" initials="C.A." surname="Wood"/>
            <date month="April" year="2022"/>
            <abstract>
              <t>TLS session tickets enable stateless connection resumption for clients without server-side, per-client state. Servers vend an arbitrary number of session tickets to clients, at their discretion, upon connection establishment. Clients store and use tickets when resuming future connections. This document describes a mechanism by which clients can specify the desired number of tickets needed for future connections. This extension aims to provide a means for servers to determine the number of tickets to generate in order to reduce ticket waste while simultaneously priming clients for future connection attempts.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9149"/>
          <seriesInfo name="DOI" value="10.17487/RFC9149"/>
        </reference>
        <reference anchor="DH76">
          <front>
            <title>New directions in cryptography</title>
            <author fullname="W. Diffie" initials="W." surname="Diffie">
              <organization/>
            </author>
            <author fullname="M. Hellman" initials="M." surname="Hellman">
              <organization/>
            </author>
            <date month="November" year="1976"/>
          </front>
          <seriesInfo name="IEEE Transactions on Information Theory" value="vol. 22, no. 6, pp. 644-654"/>
          <seriesInfo name="DOI" value="10.1109/tit.1976.1055638"/>
          <refcontent>Institute of Electrical and Electronics Engineers (IEEE)</refcontent>
        </reference>
        <reference anchor="SSL2">
          <front>
            <title>The SSL Protocol</title>
            <author initials="K." surname="Hickman" fullname="Kipp Hickman">
              <organization>Netscape Communications Corp.</organization>
            </author>
            <date year="1995" month="February" day="09"/>
          </front>
        </reference>
        <reference anchor="TIMING">
          <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="https://eprint.iacr.org/2024/051.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="2025" month="February"/>
          </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="MM24" target="https://arxiv.org/pdf/2411.09770">
          <front>
            <title>Misbinding Raw Public Keys to Identities in TLS</title>
            <author initials="M." surname="Moustafa">
              <organization/>
            </author>
            <author initials="M." surname="Sethi">
              <organization/>
            </author>
            <author initials="T." surname="Aura">
              <organization/>
            </author>
            <date year="2024"/>
          </front>
        </reference>
        <reference anchor="RSA">
          <front>
            <title>A method for obtaining digital signatures and public-key cryptosystems</title>
            <author fullname="R. L. Rivest" initials="R." surname="Rivest">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <author fullname="A. Shamir" initials="A." surname="Shamir">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <author fullname="L. Adleman" initials="L." surname="Adleman">
              <organization>MIT Lab. for Computer Science and Department of Mathematics, Cambridge, MA</organization>
            </author>
            <date month="February" year="1978"/>
          </front>
          <seriesInfo name="Communications of the ACM" value="vol. 21, no. 2, pp. 120-126"/>
          <seriesInfo name="DOI" value="10.1145/359340.359342"/>
          <refcontent>Association for Computing Machinery (ACM)</refcontent>
        </reference>
        <reference anchor="DSS">
          <front>
            <title>Digital Signature Standard (DSS)</title>
            <author>
              <organization/>
            </author>
            <date month="February" year="2023"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.fips.186-5"/>
          <refcontent>National Institute of Standards and Technology (U.S.)</refcontent>
        </reference>
        <reference anchor="RFC3552">
          <front>
            <title>Guidelines for Writing RFC Text on Security Considerations</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="B. Korver" initials="B." surname="Korver"/>
            <date month="July" year="2003"/>
            <abstract>
              <t>All RFCs are required to have a Security Considerations section. Historically, such sections have been relatively weak. This document provides guidelines to RFC authors on how to write a good Security Considerations section. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="72"/>
          <seriesInfo name="RFC" value="3552"/>
          <seriesInfo name="DOI" value="10.17487/RFC3552"/>
        </reference>
        <reference anchor="RFC9525">
          <front>
            <title>Service Identity in TLS</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <author fullname="R. Salz" initials="R." surname="Salz"/>
            <date month="November" year="2023"/>
            <abstract>
              <t>Many application technologies enable secure communication between two entities by means of Transport Layer Security (TLS) with Internet Public Key Infrastructure using X.509 (PKIX) certificates. This document specifies procedures for representing and verifying the identity of application services in such interactions.</t>
              <t>This document obsoletes RFC 6125.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9525"/>
          <seriesInfo name="DOI" value="10.17487/RFC9525"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC7924">
          <front>
            <title>Transport Layer Security (TLS) Cached Information Extension</title>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="July" year="2016"/>
            <abstract>
              <t>Transport Layer Security (TLS) handshakes often include fairly static information, such as the server certificate and a list of trusted certification authorities (CAs). This information can be of considerable size, particularly if the server certificate is bundled with a complete certificate chain (i.e., the certificates of intermediate CAs up to the root CA).</t>
              <t>This document defines an extension that allows a TLS client to inform a server of cached information, thereby enabling the server to omit already available information.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7924"/>
          <seriesInfo name="DOI" value="10.17487/RFC7924"/>
        </reference>
        <reference anchor="RFC6347">
          <front>
            <title>Datagram Transport Layer Security Version 1.2</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <date month="January" year="2012"/>
            <abstract>
              <t>This document specifies version 1.2 of the Datagram Transport Layer Security (DTLS) protocol. The DTLS protocol provides communications privacy for datagram protocols. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery. The DTLS protocol is based on the Transport Layer Security (TLS) protocol and provides equivalent security guarantees. Datagram semantics of the underlying transport are preserved by the DTLS protocol. This document updates DTLS 1.0 to work with TLS version 1.2. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6347"/>
          <seriesInfo name="DOI" value="10.17487/RFC6347"/>
        </reference>
        <reference anchor="ECDP">
          <front>
            <title>Recommendations for Discrete Logarithm-based Cryptography:: Elliptic Curve Domain Parameters</title>
            <author fullname="Lily Chen" initials="L." surname="Chen">
              <organization/>
            </author>
            <author fullname="Dustin Moody" initials="D." surname="Moody">
              <organization/>
            </author>
            <author fullname="Andrew Regenscheid" initials="A." surname="Regenscheid">
              <organization/>
            </author>
            <author fullname="Angela Robinson" initials="A." surname="Robinson">
              <organization/>
            </author>
            <author fullname="Karen Randall" initials="K." surname="Randall">
              <organization/>
            </author>
            <date month="February" year="2023"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-186"/>
          <refcontent>National Institute of Standards and Technology</refcontent>
        </reference>
        <reference anchor="SLOTH">
          <front>
            <title>Transcript Collision Attacks: Breaking Authentication in TLS, IKE, and SSH</title>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="Gaetan Leurent" initials="G." surname="Leurent">
              <organization/>
            </author>
            <date year="2016"/>
          </front>
          <seriesInfo name="Proceedings 2016 Network and Distributed System Security" value="Symposium"/>
          <seriesInfo name="DOI" value="10.14722/ndss.2016.23418"/>
          <refcontent>Internet Society</refcontent>
        </reference>
        <reference anchor="RFC8422">
          <front>
            <title>Elliptic Curve Cryptography (ECC) Cipher Suites for Transport Layer Security (TLS) Versions 1.2 and Earlier</title>
            <author fullname="Y. Nir" initials="Y." surname="Nir"/>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="M. Pegourie-Gonnard" initials="M." surname="Pegourie-Gonnard"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document describes key exchange algorithms based on Elliptic Curve Cryptography (ECC) for the Transport Layer Security (TLS) protocol. In particular, it specifies the use of Ephemeral Elliptic Curve Diffie-Hellman (ECDHE) key agreement in a TLS handshake and the use of the Elliptic Curve Digital Signature Algorithm (ECDSA) and Edwards-curve Digital Signature Algorithm (EdDSA) as authentication mechanisms.</t>
              <t>This document obsoletes RFC 4492.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8422"/>
          <seriesInfo name="DOI" value="10.17487/RFC8422"/>
        </reference>
        <reference anchor="RFC8449">
          <front>
            <title>Record Size Limit Extension for TLS</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>An extension to Transport Layer Security (TLS) is defined that allows endpoints to negotiate the maximum size of protected records that each will send the other.</t>
              <t>This replaces the maximum fragment length extension defined in RFC 6066.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8449"/>
          <seriesInfo name="DOI" value="10.17487/RFC8449"/>
        </reference>
        <reference anchor="RFC9147">
          <front>
            <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <date month="April" year="2022"/>
            <abstract>
              <t>This document specifies version 1.3 of the Datagram Transport Layer Security (DTLS) protocol. DTLS 1.3 allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>The DTLS 1.3 protocol is based on the Transport Layer Security (TLS) 1.3 protocol and provides equivalent security guarantees with the exception of order protection / non-replayability. Datagram semantics of the underlying transport are preserved by the DTLS protocol.</t>
              <t>This document obsoletes RFC 6347.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9147"/>
          <seriesInfo name="DOI" value="10.17487/RFC9147"/>
        </reference>
        <reference anchor="RFC8447">
          <front>
            <title>IANA Registry Updates for TLS and DTLS</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document describes a number of changes to TLS and DTLS IANA registries that range from adding notes to the registry all the way to changing the registration policy. These changes were mostly motivated by WG review of the TLS- and DTLS-related registries undertaken as part of the TLS 1.3 development process.</t>
              <t>This document updates the following RFCs: 3749, 5077, 4680, 5246, 5705, 5878, 6520, and 7301.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8447"/>
          <seriesInfo name="DOI" value="10.17487/RFC8447"/>
        </reference>
        <reference anchor="RFC8448">
          <front>
            <title>Example Handshake Traces for TLS 1.3</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <date month="January" year="2019"/>
            <abstract>
              <t>This document includes examples of TLS 1.3 handshakes. Private keys and inputs are provided so that these handshakes might be reproduced. Intermediate values, including secrets, traffic keys, and IVs, are shown so that implementations might be checked incrementally against these values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8448"/>
          <seriesInfo name="DOI" value="10.17487/RFC8448"/>
        </reference>
        <reference anchor="CHECKOWAY">
          <front>
            <title>A Systematic Analysis of the Juniper Dual EC Incident</title>
            <author fullname="Stephen Checkoway" initials="S." surname="Checkoway">
              <organization>University of Illinois at Chicago, Chicago, IL, USA</organization>
            </author>
            <author fullname="Jacob Maskiewicz" initials="J." surname="Maskiewicz">
              <organization>UC San Diego, La Jolla, CA, USA</organization>
            </author>
            <author fullname="Christina Garman" initials="C." surname="Garman">
              <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
            </author>
            <author fullname="Joshua Fried" initials="J." surname="Fried">
              <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
            </author>
            <author fullname="Shaanan Cohney" initials="S." surname="Cohney">
              <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
            </author>
            <author fullname="Matthew Green" initials="M." surname="Green">
              <organization>Johns Hopkins University, Baltimore, MD, USA</organization>
            </author>
            <author fullname="Nadia Heninger" initials="N." surname="Heninger">
              <organization>University of Pennsylvania, Philadelphia, PA, USA</organization>
            </author>
            <author fullname="Ralf-Philipp Weinmann" initials="R." surname="Weinmann">
              <organization>Comsecuris, Duisburg, Germany</organization>
            </author>
            <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
              <organization>UC San Diego, La Jolla, CA, USA</organization>
            </author>
            <author fullname="Hovav Shacham" initials="H." surname="Shacham">
              <organization>UC San Diego, La Jolla, CA, USA</organization>
            </author>
            <date month="October" year="2016"/>
          </front>
          <seriesInfo name="Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications Security" value="pp. 468-479"/>
          <seriesInfo name="DOI" value="10.1145/2976749.2978395"/>
          <refcontent>ACM</refcontent>
        </reference>
        <reference anchor="RFC8879">
          <front>
            <title>TLS Certificate Compression</title>
            <author fullname="A. Ghedini" initials="A." surname="Ghedini"/>
            <author fullname="V. Vasiliev" initials="V." surname="Vasiliev"/>
            <date month="December" year="2020"/>
            <abstract>
              <t>In TLS handshakes, certificate chains often take up the majority of the bytes transmitted.</t>
              <t>This document describes how certificate chains can be compressed to reduce the amount of data transmitted and avoid some round trips.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8879"/>
          <seriesInfo name="DOI" value="10.17487/RFC8879"/>
        </reference>
        <reference anchor="I-D.ietf-tls-esni">
          <front>
            <title>TLS Encrypted Client Hello</title>
            <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
              <organization>Independent</organization>
            </author>
            <author fullname="Kazuho Oku" initials="K." surname="Oku">
              <organization>Fastly</organization>
            </author>
            <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
              <organization>Cryptography Consulting LLC</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="15" month="September" year="2024"/>
            <abstract>
              <t>   This document describes a mechanism in Transport Layer Security (TLS)
   for encrypting a ClientHello message under a server public key.

Discussion Venues

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

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

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-22"/>
        </reference>
        <reference anchor="RFC6101">
          <front>
            <title>The Secure Sockets Layer (SSL) Protocol Version 3.0</title>
            <author fullname="A. Freier" initials="A." surname="Freier"/>
            <author fullname="P. Karlton" initials="P." surname="Karlton"/>
            <author fullname="P. Kocher" initials="P." surname="Kocher"/>
            <date month="August" year="2011"/>
            <abstract>
              <t>This document is published as a historical record of the SSL 3.0 protocol. The original Abstract follows.</t>
              <t>This document specifies version 3.0 of the Secure Sockets Layer (SSL 3.0) protocol, a security protocol that provides communications privacy over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery. This document defines a Historic Document for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6101"/>
          <seriesInfo name="DOI" value="10.17487/RFC6101"/>
        </reference>
        <reference anchor="RFC2246">
          <front>
            <title>The TLS Protocol Version 1.0</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks"/>
            <author fullname="C. Allen" initials="C." surname="Allen"/>
            <date month="January" year="1999"/>
            <abstract>
              <t>This document specifies Version 1.0 of the Transport Layer Security (TLS) protocol. The TLS protocol provides communications privacy over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2246"/>
          <seriesInfo name="DOI" value="10.17487/RFC2246"/>
        </reference>
        <reference anchor="CK01">
          <front>
            <title>Analysis of Key-Exchange Protocols and Their Use for Building Secure Channels</title>
            <author fullname="Ran Canetti" initials="R." surname="Canetti">
              <organization/>
            </author>
            <author fullname="Hugo Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2001"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 453-474"/>
          <seriesInfo name="DOI" value="10.1007/3-540-44987-6_28"/>
          <seriesInfo name="ISBN" value="[&quot;9783540420705&quot;, &quot;9783540449874&quot;]"/>
          <refcontent>Springer Berlin Heidelberg</refcontent>
        </reference>
        <reference anchor="BBFGKZ16">
          <front>
            <title>Downgrade Resilience in Key-Exchange Protocols</title>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="Christina Brzuska" initials="C." surname="Brzuska">
              <organization/>
            </author>
            <author fullname="Cedric Fournet" initials="C." surname="Fournet">
              <organization/>
            </author>
            <author fullname="Matthew Green" initials="M." surname="Green">
              <organization/>
            </author>
            <author fullname="Markulf Kohlweiss" initials="M." surname="Kohlweiss">
              <organization/>
            </author>
            <author fullname="Santiago Zanella-Beguelin" initials="S." surname="Zanella-Beguelin">
              <organization/>
            </author>
            <date month="May" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE Symposium on Security and Privacy" value="(SP)"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.37"/>
          <refcontent>IEEE</refcontent>
        </reference>
        <reference anchor="DOW92">
          <front>
            <title>Authentication and authenticated key exchanges</title>
            <author fullname="Whitfield Diffie" initials="W." surname="Diffie">
              <organization/>
            </author>
            <author fullname="Paul C. Van Oorschot" initials="P." surname="Van Oorschot">
              <organization/>
            </author>
            <author fullname="Michael J. Wiener" initials="M." surname="Wiener">
              <organization/>
            </author>
            <date month="June" year="1992"/>
          </front>
          <seriesInfo name="Designs, Codes and Cryptography" value="vol. 2, no. 2, pp. 107-125"/>
          <seriesInfo name="DOI" value="10.1007/bf00124891"/>
          <refcontent>Springer Science and Business Media LLC</refcontent>
        </reference>
        <reference anchor="SIGMA">
          <front>
            <title>SIGMA: The ‘SIGn-and-MAc’ Approach to Authenticated Diffie-Hellman and Its Use in the IKE Protocols</title>
            <author fullname="Hugo Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <date year="2003"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 400-425"/>
          <seriesInfo name="DOI" value="10.1007/978-3-540-45146-4_24"/>
          <seriesInfo name="ISBN" value="[&quot;9783540406747&quot;, &quot;9783540451464&quot;]"/>
          <refcontent>Springer Berlin Heidelberg</refcontent>
        </reference>
        <reference anchor="RFC8773">
          <front>
            <title>TLS 1.3 Extension for Certificate-Based Authentication with an External Pre-Shared Key</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="March" year="2020"/>
            <abstract>
              <t>This document specifies a TLS 1.3 extension that allows a server to authenticate with a combination of a certificate and an external pre-shared key (PSK).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8773"/>
          <seriesInfo name="DOI" value="10.17487/RFC8773"/>
        </reference>
        <reference anchor="CCG16">
          <front>
            <title>On Post-compromise Security</title>
            <author fullname="Katriel Cohn-Gordon" initials="K." surname="Cohn-Gordon">
              <organization/>
            </author>
            <author fullname="Cas Cremers" initials="C." surname="Cremers">
              <organization/>
            </author>
            <author fullname="Luke Garratt" initials="L." surname="Garratt">
              <organization/>
            </author>
            <date month="June" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE 29th Computer Security Foundations Symposium (CSF)" value="pp. 164-178"/>
          <seriesInfo name="DOI" value="10.1109/csf.2016.19"/>
          <refcontent>IEEE</refcontent>
        </reference>
        <reference anchor="CHSV16">
          <front>
            <title>Automated Analysis and Verification of TLS 1.3: 0-RTT, Resumption and Delayed Authentication</title>
            <author fullname="Cas Cremers" initials="C." surname="Cremers">
              <organization/>
            </author>
            <author fullname="Marko Horvat" initials="M." surname="Horvat">
              <organization/>
            </author>
            <author fullname="Sam Scott" initials="S." surname="Scott">
              <organization/>
            </author>
            <author fullname="Thyla van der Merwe" initials="T." surname="van der Merwe">
              <organization/>
            </author>
            <date month="May" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE Symposium on Security and Privacy (SP)" value="pp. 470-485"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.35"/>
          <refcontent>IEEE</refcontent>
        </reference>
        <reference anchor="LXZFH16">
          <front>
            <title>Multiple Handshakes Security of TLS 1.3 Candidates</title>
            <author fullname="Xinyu Li" initials="X." surname="Li">
              <organization/>
            </author>
            <author fullname="Jing Xu" initials="J." surname="Xu">
              <organization/>
            </author>
            <author fullname="Zhenfeng Zhang" initials="Z." surname="Zhang">
              <organization/>
            </author>
            <author fullname="Dengguo Feng" initials="D." surname="Feng">
              <organization/>
            </author>
            <author fullname="Honggang Hu" initials="H." surname="Hu">
              <organization/>
            </author>
            <date month="May" year="2016"/>
          </front>
          <seriesInfo name="2016 IEEE Symposium on Security and Privacy (SP)" value="pp. 486-505"/>
          <seriesInfo name="DOI" value="10.1109/sp.2016.36"/>
          <refcontent>IEEE</refcontent>
        </reference>
        <reference anchor="BBK17">
          <front>
            <title>Verified Models and Reference Implementations for the TLS 1.3 Standard Candidate</title>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization/>
            </author>
            <author fullname="Bruno Blanchet" initials="B." surname="Blanchet">
              <organization/>
            </author>
            <author fullname="Nadim Kobeissi" initials="N." surname="Kobeissi">
              <organization/>
            </author>
            <date month="May" year="2017"/>
          </front>
          <seriesInfo name="2017 IEEE Symposium on Security and Privacy (SP)" value="pp. 483-502"/>
          <seriesInfo name="DOI" value="10.1109/sp.2017.26"/>
          <refcontent>IEEE</refcontent>
        </reference>
        <reference anchor="REKEY">
          <front>
            <title>Increasing the Lifetime of a Key: A Comparative Analysis of the Security of Re-keying Techniques</title>
            <author fullname="Michel Abdalla" initials="M." surname="Abdalla">
              <organization/>
            </author>
            <author fullname="Mihir Bellare" initials="M." surname="Bellare">
              <organization/>
            </author>
            <date year="2000"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 546-559"/>
          <seriesInfo name="DOI" value="10.1007/3-540-44448-3_42"/>
          <seriesInfo name="ISBN" value="[&quot;9783540414049&quot;, &quot;9783540444480&quot;]"/>
          <refcontent>Springer Berlin Heidelberg</refcontent>
        </reference>
        <reference anchor="CLINIC">
          <front>
            <title>I Know Why You Went to the Clinic: Risks and Realization of HTTPS Traffic Analysis</title>
            <author fullname="Brad Miller" initials="B." surname="Miller">
              <organization/>
            </author>
            <author fullname="Ling Huang" initials="L." surname="Huang">
              <organization/>
            </author>
            <author fullname="A. D. Joseph" initials="A." surname="Joseph">
              <organization/>
            </author>
            <author fullname="J. D. Tygar" initials="J." surname="Tygar">
              <organization/>
            </author>
            <date year="2014"/>
          </front>
          <seriesInfo name="Lecture Notes in Computer Science" value="pp. 143-163"/>
          <seriesInfo name="DOI" value="10.1007/978-3-319-08506-7_8"/>
          <seriesInfo name="ISBN" value="[&quot;9783319085050&quot;, &quot;9783319085067&quot;]"/>
          <refcontent>Springer International Publishing</refcontent>
        </reference>
        <reference anchor="HCJC16">
          <front>
            <title>HTTPS traffic analysis and client identification using passive SSL/TLS fingerprinting</title>
            <author fullname="Martin Husák" initials="M." surname="Husák">
              <organization/>
            </author>
            <author fullname="Milan Čermák" initials="M." surname="Čermák">
              <organization/>
            </author>
            <author fullname="Tomáš Jirsík" initials="T." surname="Jirsík">
              <organization/>
            </author>
            <author fullname="Pavel Čeleda" initials="P." surname="Čeleda">
              <organization/>
            </author>
            <date month="February" year="2016"/>
          </front>
          <seriesInfo name="EURASIP Journal on Information Security" value="vol. 2016, no. 1"/>
          <seriesInfo name="DOI" value="10.1186/s13635-016-0030-7"/>
          <refcontent>Springer Science and Business Media LLC</refcontent>
        </reference>
        <reference anchor="RFC5763">
          <front>
            <title>Framework for Establishing a Secure Real-time Transport Protocol (SRTP) Security Context Using Datagram Transport Layer Security (DTLS)</title>
            <author fullname="J. Fischl" initials="J." surname="Fischl"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies how to use the Session Initiation Protocol (SIP) to establish a Secure Real-time Transport Protocol (SRTP) security context using the Datagram Transport Layer Security (DTLS) protocol. It describes a mechanism of transporting a fingerprint attribute in the Session Description Protocol (SDP) that identifies the key that will be presented during the DTLS handshake. The key exchange travels along the media path as opposed to the signaling path. The SIP Identity mechanism can be used to protect the integrity of the fingerprint attribute from modification by intermediate proxies. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5763"/>
          <seriesInfo name="DOI" value="10.17487/RFC5763"/>
        </reference>
        <reference anchor="RFC8444">
          <front>
            <title>OSPFv2 Extensions for Bit Index Explicit Replication (BIER)</title>
            <author fullname="P. Psenak" initials="P." role="editor" surname="Psenak"/>
            <author fullname="N. Kumar" initials="N." surname="Kumar"/>
            <author fullname="IJ. Wijnands" initials="IJ." surname="Wijnands"/>
            <author fullname="A. Dolganow" initials="A." surname="Dolganow"/>
            <author fullname="T. Przygienda" initials="T." surname="Przygienda"/>
            <author fullname="J. Zhang" initials="J." surname="Zhang"/>
            <author fullname="S. Aldrin" initials="S." surname="Aldrin"/>
            <date month="November" year="2018"/>
            <abstract>
              <t>Bit Index Explicit Replication (BIER) is an architecture that provides optimal multicast forwarding through a "BIER domain" without requiring intermediate routers to maintain multicast-related, per- flow state. BIER also does not require an explicit tree-building protocol for its operation. A multicast data packet enters a BIER domain at a Bit-Forwarding Ingress Router (BFIR) and leaves the BIER domain at one or more Bit-Forwarding Egress Routers (BFERs). The BFIR adds a BIER packet header to the packet. The BIER packet header contains a BitString in which each bit represents exactly one BFER to forward the packet to. The set of BFERs to which the multicast packet needs to be forwarded is expressed by the set of bits in the BIER packet header.</t>
              <t>This document describes the OSPF protocol extension (from RFC 2328) that is required for BIER with MPLS encapsulation (which is defined in RFC 8296). Support for other encapsulation types and the use of multiple encapsulation types are outside the scope of this document.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8444"/>
          <seriesInfo name="DOI" value="10.17487/RFC8444"/>
        </reference>
        <reference anchor="JSS15">
          <front>
            <title>On the Security of TLS 1.3 and QUIC Against Weaknesses in PKCS#1 v1.5 Encryption</title>
            <author fullname="Tibor Jager" initials="T." surname="Jager">
              <organization>Horst Görtz Institute, Ruhr University Bochum, Bochum, Germany</organization>
            </author>
            <author fullname="Jörg Schwenk" initials="J." surname="Schwenk">
              <organization>Horst Görtz Institute, Ruhr University Bochum, Bochum, Germany</organization>
            </author>
            <author fullname="Juraj Somorovsky" initials="J." surname="Somorovsky">
              <organization>Horst Görtz Institute, Ruhr University Bochum, Bochum, Germany</organization>
            </author>
            <date month="October" year="2015"/>
          </front>
          <seriesInfo name="Proceedings of the 22nd ACM SIGSAC Conference on Computer and Communications Security" value="pp. 1185-1196"/>
          <seriesInfo name="DOI" value="10.1145/2810103.2813657"/>
          <refcontent>ACM</refcontent>
        </reference>
      </references>
    </references>
    <?line 4990?>

<section anchor="state-machine">
      <name>State Machine</name>
      <t>This appendix provides a summary of the legal state transitions for the
client and server handshakes.  State names (in all capitals, e.g.,
START) have no formal meaning but are provided for ease of
comprehension.  Actions which are taken only in certain circumstances are
indicated in []. The notation "K_{send,recv} = foo" means "set the send/recv
key to the given key".</t>
      <section anchor="client">
        <name>Client</name>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="528" width="552" viewBox="0 0 552 528" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 64,96 L 64,400" fill="none" stroke="black"/>
              <path d="M 152,192 L 152,368" fill="none" stroke="black"/>
              <path d="M 216,376 L 216,480" fill="none" stroke="black"/>
              <path d="M 232,48 L 232,80" fill="none" stroke="black"/>
              <path d="M 232,104 L 232,144" fill="none" stroke="black"/>
              <path d="M 232,168 L 232,192" fill="none" stroke="black"/>
              <path d="M 264,256 L 264,320" fill="none" stroke="black"/>
              <path d="M 296,192 L 296,224" fill="none" stroke="black"/>
              <path d="M 304,32 L 304,96" fill="none" stroke="black"/>
              <path d="M 312,344 L 312,368" fill="none" stroke="black"/>
              <path d="M 328,248 L 328,272" fill="none" stroke="black"/>
              <path d="M 328,296 L 328,320" fill="none" stroke="black"/>
              <path d="M 264,32 L 304,32" fill="none" stroke="black"/>
              <path d="M 64,96 L 80,96" fill="none" stroke="black"/>
              <path d="M 272,96 L 304,96" fill="none" stroke="black"/>
              <path d="M 152,192 L 296,192" fill="none" stroke="black"/>
              <path d="M 152,368 L 168,368" fill="none" stroke="black"/>
              <path d="M 296,368 L 312,368" fill="none" stroke="black"/>
              <path d="M 64,400 L 80,400" fill="none" stroke="black"/>
              <path d="M 96,464 L 112,464" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="336,320 324,314.4 324,325.6" fill="black" transform="rotate(90,328,320)"/>
              <polygon class="arrowhead" points="336,272 324,266.4 324,277.6" fill="black" transform="rotate(90,328,272)"/>
              <polygon class="arrowhead" points="304,368 292,362.4 292,373.6" fill="black" transform="rotate(180,296,368)"/>
              <polygon class="arrowhead" points="304,224 292,218.4 292,229.6" fill="black" transform="rotate(90,296,224)"/>
              <polygon class="arrowhead" points="272,320 260,314.4 260,325.6" fill="black" transform="rotate(90,264,320)"/>
              <polygon class="arrowhead" points="272,32 260,26.4 260,37.6" fill="black" transform="rotate(180,264,32)"/>
              <polygon class="arrowhead" points="240,144 228,138.4 228,149.6" fill="black" transform="rotate(90,232,144)"/>
              <polygon class="arrowhead" points="240,80 228,74.4 228,85.6" fill="black" transform="rotate(90,232,80)"/>
              <polygon class="arrowhead" points="224,480 212,474.4 212,485.6" fill="black" transform="rotate(90,216,480)"/>
              <polygon class="arrowhead" points="176,368 164,362.4 164,373.6" fill="black" transform="rotate(0,168,368)"/>
              <polygon class="arrowhead" points="120,464 108,458.4 108,469.6" fill="black" transform="rotate(0,112,464)"/>
              <polygon class="arrowhead" points="88,400 76,394.4 76,405.6" fill="black" transform="rotate(0,80,400)"/>
              <polygon class="arrowhead" points="88,96 76,90.4 76,101.6" fill="black" transform="rotate(0,80,96)"/>
              <g class="text">
                <text x="232" y="36">START</text>
                <text x="108" y="52">Send</text>
                <text x="176" y="52">ClientHello</text>
                <text x="332" y="52">Recv</text>
                <text x="424" y="52">HelloRetryRequest</text>
                <text x="80" y="68">[K_send</text>
                <text x="120" y="68">=</text>
                <text x="152" y="68">early</text>
                <text x="200" y="68">data]</text>
                <text x="232" y="100">WAIT_SH</text>
                <text x="260" y="116">Recv</text>
                <text x="328" y="116">ServerHello</text>
                <text x="268" y="132">K_recv</text>
                <text x="304" y="132">=</text>
                <text x="352" y="132">handshake</text>
                <text x="40" y="148">Can</text>
                <text x="36" y="164">send</text>
                <text x="232" y="164">WAIT_EE</text>
                <text x="32" y="180">early</text>
                <text x="260" y="180">Recv</text>
                <text x="360" y="180">EncryptedExtensions</text>
                <text x="36" y="196">data</text>
                <text x="120" y="212">Using</text>
                <text x="328" y="212">Using</text>
                <text x="400" y="212">certificate</text>
                <text x="128" y="228">PSK</text>
                <text x="300" y="244">WAIT_CERT_CR</text>
                <text x="236" y="260">Recv</text>
                <text x="356" y="260">Recv</text>
                <text x="452" y="260">CertificateRequest</text>
                <text x="208" y="276">Certificate</text>
                <text x="336" y="292">WAIT_CERT</text>
                <text x="356" y="308">Recv</text>
                <text x="424" y="308">Certificate</text>
                <text x="296" y="340">WAIT_CV</text>
                <text x="340" y="356">Recv</text>
                <text x="432" y="356">CertificateVerify</text>
                <text x="232" y="372">WAIT_FINISHED</text>
                <text x="244" y="388">Recv</text>
                <text x="300" y="388">Finished</text>
                <text x="248" y="404">[Send</text>
                <text x="336" y="404">EndOfEarlyData]</text>
                <text x="252" y="420">K_send</text>
                <text x="288" y="420">=</text>
                <text x="336" y="420">handshake</text>
                <text x="248" y="436">[Send</text>
                <text x="320" y="436">Certificate</text>
                <text x="380" y="436">[+</text>
                <text x="472" y="436">CertificateVerify]]</text>
                <text x="16" y="452">Can</text>
                <text x="52" y="452">send</text>
                <text x="244" y="452">Send</text>
                <text x="300" y="452">Finished</text>
                <text x="16" y="468">app</text>
                <text x="52" y="468">data</text>
                <text x="252" y="468">K_send</text>
                <text x="288" y="468">=</text>
                <text x="324" y="468">K_recv</text>
                <text x="360" y="468">=</text>
                <text x="416" y="468">application</text>
                <text x="24" y="484">after</text>
                <text x="68" y="484">here</text>
                <text x="216" y="500">CONNECTED</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![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>
        </artset>
        <t>Note that with the transitions as shown above, clients may send alerts
that derive from post-ServerHello messages in the clear or with the
early data keys. If clients need to send such alerts, they SHOULD
first rekey to the handshake keys if possible.</t>
      </section>
      <section anchor="server">
        <name>Server</name>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="672" width="576" viewBox="0 0 576 672" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 184,256 L 184,400" fill="none" stroke="black"/>
              <path d="M 184,432 L 184,592" fill="none" stroke="black"/>
              <path d="M 224,320 L 224,368" fill="none" stroke="black"/>
              <path d="M 256,48 L 256,64" fill="none" stroke="black"/>
              <path d="M 256,96 L 256,112" fill="none" stroke="black"/>
              <path d="M 256,144 L 256,256" fill="none" stroke="black"/>
              <path d="M 256,408 L 256,432" fill="none" stroke="black"/>
              <path d="M 256,600 L 256,640" fill="none" stroke="black"/>
              <path d="M 296,512 L 296,576" fill="none" stroke="black"/>
              <path d="M 328,256 L 328,304" fill="none" stroke="black"/>
              <path d="M 328,328 L 328,368" fill="none" stroke="black"/>
              <path d="M 328,432 L 328,480" fill="none" stroke="black"/>
              <path d="M 336,32 L 336,80" fill="none" stroke="black"/>
              <path d="M 360,512 L 360,528" fill="none" stroke="black"/>
              <path d="M 360,552 L 360,592" fill="none" stroke="black"/>
              <path d="M 392,320 L 392,400" fill="none" stroke="black"/>
              <path d="M 288,32 L 336,32" fill="none" stroke="black"/>
              <path d="M 304,80 L 336,80" fill="none" stroke="black"/>
              <path d="M 72,240 L 88,240" fill="none" stroke="black"/>
              <path d="M 184,256 L 328,256" fill="none" stroke="black"/>
              <path d="M 224,320 L 280,320" fill="none" stroke="black"/>
              <path d="M 376,320 L 392,320" fill="none" stroke="black"/>
              <path d="M 224,368 L 328,368" fill="none" stroke="black"/>
              <path d="M 184,400 L 200,400" fill="none" stroke="black"/>
              <path d="M 320,400 L 392,400" fill="none" stroke="black"/>
              <path d="M 184,432 L 328,432" fill="none" stroke="black"/>
              <path d="M 184,592 L 200,592" fill="none" stroke="black"/>
              <path d="M 328,592 L 360,592" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="368,528 356,522.4 356,533.6" fill="black" transform="rotate(90,360,528)"/>
              <polygon class="arrowhead" points="336,592 324,586.4 324,597.6" fill="black" transform="rotate(180,328,592)"/>
              <polygon class="arrowhead" points="336,480 324,474.4 324,485.6" fill="black" transform="rotate(90,328,480)"/>
              <polygon class="arrowhead" points="328,400 316,394.4 316,405.6" fill="black" transform="rotate(180,320,400)"/>
              <polygon class="arrowhead" points="304,576 292,570.4 292,581.6" fill="black" transform="rotate(90,296,576)"/>
              <polygon class="arrowhead" points="296,32 284,26.4 284,37.6" fill="black" transform="rotate(180,288,32)"/>
              <polygon class="arrowhead" points="288,320 276,314.4 276,325.6" fill="black" transform="rotate(0,280,320)"/>
              <polygon class="arrowhead" points="264,640 252,634.4 252,645.6" fill="black" transform="rotate(90,256,640)"/>
              <polygon class="arrowhead" points="264,112 252,106.4 252,117.6" fill="black" transform="rotate(90,256,112)"/>
              <polygon class="arrowhead" points="264,64 252,58.4 252,69.6" fill="black" transform="rotate(90,256,64)"/>
              <polygon class="arrowhead" points="208,592 196,586.4 196,597.6" fill="black" transform="rotate(0,200,592)"/>
              <polygon class="arrowhead" points="208,400 196,394.4 196,405.6" fill="black" transform="rotate(0,200,400)"/>
              <polygon class="arrowhead" points="96,240 84,234.4 84,245.6" fill="black" transform="rotate(0,88,240)"/>
              <g class="text">
                <text x="256" y="36">START</text>
                <text x="132" y="52">Recv</text>
                <text x="200" y="52">ClientHello</text>
                <text x="364" y="52">Send</text>
                <text x="456" y="52">HelloRetryRequest</text>
                <text x="260" y="84">RECVD_CH</text>
                <text x="292" y="100">Select</text>
                <text x="364" y="100">parameters</text>
                <text x="268" y="132">NEGOTIATED</text>
                <text x="284" y="148">Send</text>
                <text x="352" y="148">ServerHello</text>
                <text x="292" y="164">K_send</text>
                <text x="328" y="164">=</text>
                <text x="376" y="164">handshake</text>
                <text x="284" y="180">Send</text>
                <text x="384" y="180">EncryptedExtensions</text>
                <text x="288" y="196">[Send</text>
                <text x="392" y="196">CertificateRequest]</text>
                <text x="16" y="212">Can</text>
                <text x="52" y="212">send</text>
                <text x="288" y="212">[Send</text>
                <text x="360" y="212">Certificate</text>
                <text x="416" y="212">+</text>
                <text x="500" y="212">CertificateVerify]</text>
                <text x="16" y="228">app</text>
                <text x="52" y="228">data</text>
                <text x="284" y="228">Send</text>
                <text x="340" y="228">Finished</text>
                <text x="24" y="244">after</text>
                <text x="292" y="244">K_send</text>
                <text x="328" y="244">=</text>
                <text x="384" y="244">application</text>
                <text x="20" y="260">here</text>
                <text x="116" y="276">No</text>
                <text x="152" y="276">0-RTT</text>
                <text x="360" y="276">0-RTT</text>
                <text x="44" y="308">K_recv</text>
                <text x="80" y="308">=</text>
                <text x="128" y="308">handshake</text>
                <text x="364" y="308">K_recv</text>
                <text x="400" y="308">=</text>
                <text x="432" y="308">early</text>
                <text x="476" y="308">data</text>
                <text x="24" y="324">[Skip</text>
                <text x="80" y="324">decrypt</text>
                <text x="144" y="324">errors]</text>
                <text x="328" y="324">WAIT_EOED</text>
                <text x="300" y="340">Recv</text>
                <text x="420" y="340">Recv</text>
                <text x="500" y="340">EndOfEarlyData</text>
                <text x="256" y="356">early</text>
                <text x="300" y="356">data</text>
                <text x="428" y="356">K_recv</text>
                <text x="464" y="356">=</text>
                <text x="512" y="356">handshake</text>
                <text x="260" y="404">WAIT_FLIGHT2</text>
                <text x="124" y="452">No</text>
                <text x="156" y="452">auth</text>
                <text x="380" y="452">Cert-based</text>
                <text x="452" y="452">client</text>
                <text x="500" y="452">auth</text>
                <text x="328" y="500">WAIT_CERT</text>
                <text x="268" y="516">Recv</text>
                <text x="388" y="516">Recv</text>
                <text x="456" y="516">Certificate</text>
                <text x="264" y="532">empty</text>
                <text x="240" y="548">Certificate</text>
                <text x="360" y="548">WAIT_CV</text>
                <text x="388" y="564">Recv</text>
                <text x="440" y="580">CertificateVerify</text>
                <text x="264" y="596">WAIT_FINISHED</text>
                <text x="284" y="612">Recv</text>
                <text x="340" y="612">Finished</text>
                <text x="292" y="628">K_recv</text>
                <text x="328" y="628">=</text>
                <text x="384" y="628">application</text>
                <text x="256" y="660">CONNECTED</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![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>
        </artset>
      </section>
    </section>
    <section anchor="protocol-data-structures-and-constant-values">
      <name>Protocol Data Structures and Constant Values</name>
      <t>This appendix provides the normative protocol types and the definitions
for constants.  Values listed as
"_RESERVED" were used in previous versions of TLS and are listed here
for completeness. TLS 1.3 implementations MUST NOT send them but
might receive them from older TLS implementations.</t>
      <section anchor="record-layer-1">
        <name>Record Layer</name>
        <artwork><![CDATA[
   enum {
       invalid(0),
       change_cipher_spec(20),
       alert(21),
       handshake(22),
       application_data(23),
       (255)
   } ContentType;

   struct {
       ContentType type;
       ProtocolVersion legacy_record_version;
       uint16 length;
       opaque fragment[TLSPlaintext.length];
   } TLSPlaintext;

   struct {
       opaque content[TLSPlaintext.length];
       ContentType type;
       uint8 zeros[length_of_padding];
   } TLSInnerPlaintext;

   struct {
       ContentType opaque_type = application_data; /* 23 */
       ProtocolVersion legacy_record_version = 0x0303; /* TLS v1.2 */
       uint16 length;
       opaque encrypted_record[TLSCiphertext.length];
   } TLSCiphertext;
]]></artwork>
      </section>
      <section anchor="alert-messages-appendix">
        <name>Alert Messages</name>
        <artwork><![CDATA[
   enum { warning(1), fatal(2), (255) } AlertLevel;

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

   struct {
       AlertLevel level;
       AlertDescription description;
   } Alert;
]]></artwork>
      </section>
      <section anchor="handshake-protocol-appendix">
        <name>Handshake Protocol</name>
        <artwork><![CDATA[
   enum {
       hello_request_RESERVED(0),
       client_hello(1),
       server_hello(2),
       hello_verify_request_RESERVED(3),
       new_session_ticket(4),
       end_of_early_data(5),
       hello_retry_request_RESERVED(6),
       encrypted_extensions(8),
       certificate(11),
       server_key_exchange_RESERVED(12),
       certificate_request(13),
       server_hello_done_RESERVED(14),
       certificate_verify(15),
       client_key_exchange_RESERVED(16),
       finished(20),
       certificate_url_RESERVED(21),
       certificate_status_RESERVED(22),
       supplemental_data_RESERVED(23),
       key_update(24),
       message_hash(254),
       (255)
   } HandshakeType;

   struct {
       HandshakeType msg_type;    /* handshake type */
       uint24 length;             /* remaining bytes in message */
       select (Handshake.msg_type) {
           case client_hello:          ClientHello;
           case server_hello:          ServerHello;
           case end_of_early_data:     EndOfEarlyData;
           case encrypted_extensions:  EncryptedExtensions;
           case certificate_request:   CertificateRequest;
           case certificate:           Certificate;
           case certificate_verify:    CertificateVerify;
           case finished:              Finished;
           case new_session_ticket:    NewSessionTicket;
           case key_update:            KeyUpdate;
       };
   } Handshake;
]]></artwork>
        <section anchor="key-exchange-messages-1">
          <name>Key Exchange Messages</name>
          <artwork><![CDATA[
   uint16 ProtocolVersion;
   opaque Random[32];

   uint8 CipherSuite[2];    /* Cryptographic suite selector */

   struct {
       ProtocolVersion legacy_version = 0x0303;    /* TLS v1.2 */
       Random random;
       opaque legacy_session_id<0..32>;
       CipherSuite cipher_suites<2..2^16-2>;
       opaque legacy_compression_methods<1..2^8-1>;
       Extension extensions<8..2^16-1>;
   } ClientHello;

   struct {
       ProtocolVersion legacy_version = 0x0303;    /* TLS v1.2 */
       Random random;
       opaque legacy_session_id_echo<0..32>;
       CipherSuite cipher_suite;
       uint8 legacy_compression_method = 0;
       Extension extensions<6..2^16-1>;
   } ServerHello;

   struct {
       ExtensionType extension_type;
       opaque extension_data<0..2^16-1>;
   } Extension;

   enum {
       server_name(0),                             /* RFC 6066 */
       max_fragment_length(1),                     /* RFC 6066 */
       status_request(5),                          /* RFC 6066 */
       supported_groups(10),                       /* RFC 8422, 7919 */
       signature_algorithms(13),                   /* RFC 8446 */
       use_srtp(14),                               /* RFC 5764 */
       heartbeat(15),                              /* RFC 6520 */
       application_layer_protocol_negotiation(16), /* RFC 7301 */
       signed_certificate_timestamp(18),           /* RFC 6962 */
       client_certificate_type(19),                /* RFC 7250 */
       server_certificate_type(20),                /* RFC 7250 */
       padding(21),                                /* RFC 7685 */
       pre_shared_key(41),                         /* RFC 8446 */
       early_data(42),                             /* RFC 8446 */
       supported_versions(43),                     /* RFC 8446 */
       cookie(44),                                 /* RFC 8446 */
       psk_key_exchange_modes(45),                 /* RFC 8446 */
       certificate_authorities(47),                /* RFC 8446 */
       oid_filters(48),                            /* RFC 8446 */
       post_handshake_auth(49),                    /* RFC 8446 */
       signature_algorithms_cert(50),              /* RFC 8446 */
       key_share(51),                              /* RFC 8446 */
       (65535)
   } ExtensionType;

   struct {
       NamedGroup group;
       opaque key_exchange<1..2^16-1>;
   } KeyShareEntry;

   struct {
       KeyShareEntry client_shares<0..2^16-1>;
   } KeyShareClientHello;

   struct {
       NamedGroup selected_group;
   } KeyShareHelloRetryRequest;

   struct {
       KeyShareEntry server_share;
   } KeyShareServerHello;

   struct {
       uint8 legacy_form = 4;
       opaque X[coordinate_length];
       opaque Y[coordinate_length];
   } UncompressedPointRepresentation;

   enum { psk_ke(0), psk_dhe_ke(1), (255) } PskKeyExchangeMode;

   struct {
       PskKeyExchangeMode ke_modes<1..255>;
   } PskKeyExchangeModes;

   struct {} Empty;

   struct {
       select (Handshake.msg_type) {
           case new_session_ticket:   uint32 max_early_data_size;
           case client_hello:         Empty;
           case encrypted_extensions: Empty;
       };
   } EarlyDataIndication;

   struct {
       opaque identity<1..2^16-1>;
       uint32 obfuscated_ticket_age;
   } PskIdentity;

   opaque PskBinderEntry<32..255>;

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

   struct {
       select (Handshake.msg_type) {
           case client_hello: OfferedPsks;
           case server_hello: uint16 selected_identity;
       };
   } PreSharedKeyExtension;
]]></artwork>
          <section anchor="version-extension">
            <name>Version Extension</name>
            <artwork><![CDATA[
   struct {
       select (Handshake.msg_type) {
           case client_hello:
                ProtocolVersion versions<2..254>;

           case server_hello: /* and HelloRetryRequest */
                ProtocolVersion selected_version;
       };
   } SupportedVersions;
]]></artwork>
          </section>
          <section anchor="cookie-extension">
            <name>Cookie Extension</name>
            <artwork><![CDATA[
   struct {
       opaque cookie<1..2^16-1>;
   } Cookie;
]]></artwork>
          </section>
          <section anchor="signature-algorithm-extension">
            <name>Signature Algorithm Extension</name>
            <artwork><![CDATA[
   enum {
       /* RSASSA-PKCS1-v1_5 algorithms */
       rsa_pkcs1_sha256(0x0401),
       rsa_pkcs1_sha384(0x0501),
       rsa_pkcs1_sha512(0x0601),

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

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

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

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

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

       /* Reserved Code Points */
       obsolete_RESERVED(0x0000..0x0200),
       dsa_sha1_RESERVED(0x0202),
       obsolete_RESERVED(0x0204..0x0400),
       dsa_sha256_RESERVED(0x0402),
       obsolete_RESERVED(0x0404..0x0500),
       dsa_sha384_RESERVED(0x0502),
       obsolete_RESERVED(0x0504..0x0600),
       dsa_sha512_RESERVED(0x0602),
       obsolete_RESERVED(0x0604..0x06FF),
       private_use(0xFE00..0xFFFF),
       (0xFFFF)
   } SignatureScheme;

   struct {
       SignatureScheme supported_signature_algorithms<2..2^16-2>;
   } SignatureSchemeList;
]]></artwork>
          </section>
          <section anchor="supported-groups-extension">
            <name>Supported Groups Extension</name>
            <artwork><![CDATA[
   enum {
       unallocated_RESERVED(0x0000),

       /* Elliptic Curve Groups (ECDHE) */
       obsolete_RESERVED(0x0001..0x0016),
       secp256r1(0x0017), secp384r1(0x0018), secp521r1(0x0019),
       obsolete_RESERVED(0x001A..0x001C),
       x25519(0x001D), x448(0x001E),

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

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

   struct {
       NamedGroup named_group_list<2..2^16-1>;
   } NamedGroupList;
]]></artwork>
            <t>Values within "obsolete_RESERVED" ranges are used in previous versions
of TLS and MUST NOT be offered or negotiated by TLS 1.3 implementations.
The obsolete curves have various known/theoretical weaknesses or have
had very little usage, in some cases only due to unintentional
server configuration issues. They are no longer considered appropriate
for general use and should be assumed to be potentially unsafe. The set
of curves specified here is sufficient for interoperability with all
currently deployed and properly configured TLS implementations.</t>
          </section>
        </section>
        <section anchor="server-parameters-messages">
          <name>Server Parameters Messages</name>
          <artwork><![CDATA[
   opaque DistinguishedName<1..2^16-1>;

   struct {
       DistinguishedName authorities<3..2^16-1>;
   } CertificateAuthoritiesExtension;

   struct {
       opaque certificate_extension_oid<1..2^8-1>;
       opaque certificate_extension_values<0..2^16-1>;
   } OIDFilter;

   struct {
       OIDFilter filters<0..2^16-1>;
   } OIDFilterExtension;

   struct {} PostHandshakeAuth;

   struct {
       Extension extensions<0..2^16-1>;
   } EncryptedExtensions;

   struct {
       opaque certificate_request_context<0..2^8-1>;
       Extension extensions<0..2^16-1>;
   } CertificateRequest;
]]></artwork>
        </section>
        <section anchor="authentication-messages-1">
          <name>Authentication Messages</name>
          <artwork><![CDATA[
   enum {
       X509(0),
       OpenPGP_RESERVED(1),
       RawPublicKey(2),
       (255)
   } CertificateType;

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

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

   struct {
       opaque certificate_request_context<0..2^8-1>;
       CertificateEntry certificate_list<0..2^24-1>;
   } Certificate;

   struct {
       SignatureScheme algorithm;
       opaque signature<0..2^16-1>;
   } CertificateVerify;

   struct {
       opaque verify_data[Hash.length];
   } Finished;
]]></artwork>
        </section>
        <section anchor="ticket-establishment">
          <name>Ticket Establishment</name>
          <artwork><![CDATA[
   struct {
       uint32 ticket_lifetime;
       uint32 ticket_age_add;
       opaque ticket_nonce<0..255>;
       opaque ticket<1..2^16-1>;
       Extension extensions<0..2^16-1>;
   } NewSessionTicket;
]]></artwork>
        </section>
        <section anchor="updating-keys">
          <name>Updating Keys</name>
          <artwork><![CDATA[
   struct {} EndOfEarlyData;

   enum {
       update_not_requested(0), update_requested(1), (255)
   } KeyUpdateRequest;

   struct {
       KeyUpdateRequest request_update;
   } KeyUpdate;
]]></artwork>
        </section>
      </section>
      <section anchor="cipher-suites">
        <name>Cipher Suites</name>
        <t>A cipher suite defines the pair of the AEAD algorithm and hash
algorithm to be used with HKDF.
Cipher suite names follow the naming convention:</t>
        <artwork><![CDATA[
   CipherSuite TLS_AEAD_HASH = VALUE;
]]></artwork>
        <table anchor="cs-components">
          <name>Cipher Suite Name Structure</name>
          <thead>
            <tr>
              <th align="left">Component</th>
              <th align="left">Contents</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">TLS</td>
              <td align="left">The string "TLS"</td>
            </tr>
            <tr>
              <td align="left">AEAD</td>
              <td align="left">The AEAD algorithm used for record protection</td>
            </tr>
            <tr>
              <td align="left">HASH</td>
              <td align="left">The hash algorithm used with HKDF</td>
            </tr>
            <tr>
              <td align="left">VALUE</td>
              <td align="left">The two byte ID assigned for this cipher suite</td>
            </tr>
          </tbody>
        </table>
        <t>This specification defines the following cipher suites for use with TLS 1.3.</t>
        <table anchor="cs-list">
          <name>Cipher Suite List</name>
          <thead>
            <tr>
              <th align="left">Description</th>
              <th align="left">Value</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">TLS_AES_128_GCM_SHA256</td>
              <td align="left">{0x13,0x01}</td>
            </tr>
            <tr>
              <td align="left">TLS_AES_256_GCM_SHA384</td>
              <td align="left">{0x13,0x02}</td>
            </tr>
            <tr>
              <td align="left">TLS_CHACHA20_POLY1305_SHA256</td>
              <td align="left">{0x13,0x03}</td>
            </tr>
            <tr>
              <td align="left">TLS_AES_128_CCM_SHA256</td>
              <td align="left">{0x13,0x04}</td>
            </tr>
            <tr>
              <td align="left">TLS_AES_128_CCM_8_SHA256</td>
              <td align="left">{0x13,0x05}</td>
            </tr>
          </tbody>
        </table>
        <t>The corresponding AEAD algorithms AEAD_AES_128_GCM, AEAD_AES_256_GCM, and
AEAD_AES_128_CCM are defined in <xref target="RFC5116"/>. AEAD_CHACHA20_POLY1305 is defined
in <xref target="RFC8439"/>. AEAD_AES_128_CCM_8 is defined in <xref target="RFC6655"/>. The corresponding
hash algorithms are defined in <xref target="SHS"/>.</t>
        <t>Although TLS 1.3 uses the same cipher suite space as previous versions
of TLS, TLS 1.3 cipher suites are defined differently, only specifying
the symmetric ciphers, and cannot be used for TLS 1.2. Similarly,
cipher suites for TLS 1.2 and lower cannot be used with TLS 1.3.</t>
        <t>New cipher suite values are assigned by IANA as described in
<xref target="iana-considerations"/>.</t>
      </section>
    </section>
    <section anchor="implementation-notes">
      <name>Implementation Notes</name>
      <t>The TLS protocol cannot prevent many common security mistakes. This appendix
provides several recommendations to assist implementors.
<xref target="RFC8448"/> provides test vectors for TLS 1.3 handshakes.</t>
      <section anchor="random-number-generation-and-seeding">
        <name>Random Number Generation and Seeding</name>
        <t>TLS requires a cryptographically secure pseudorandom number generator (CSPRNG).
A performant and appropriately-secure CSPRNG is provided by most operating
systems or can be sourced from a cryptographic library.
It is RECOMMENDED to use an existing CSPRNG implementation in
preference to crafting a new one. Many adequate cryptographic libraries
are already available under favorable license terms.  Should those prove
unsatisfactory, <xref target="RFC4086"/> provides guidance on the generation of random values.</t>
        <t>TLS uses random values (1) in public protocol fields such as the
public Random values in the ClientHello and ServerHello and (2) to
generate keying material. With a properly functioning CSPRNG, this
does not present a security problem, as it is not feasible to determine
the CSPRNG state from its output. However, with a broken CSPRNG, it
may be possible for an attacker to use the public output to determine
the CSPRNG internal state and thereby predict the keying material, as
documented in <xref target="CHECKOWAY"/> and
<xref target="DSA-1571-1"/>.</t>
        <t>Implementations can provide extra security against
this form of attack by using separate CSPRNGs to generate public and
private values.</t>
        <t><xref target="RFC8937"/> describes a way for security protocol implementations
to augment their (pseudo)random number generators using a long-term private key
and a deterministic signature function. This improves randomness from broken or
otherwise subverted random number generators.</t>
      </section>
      <section anchor="certificates-and-authentication">
        <name>Certificates and Authentication</name>
        <t>Implementations are responsible for verifying the integrity of certificates and
should generally support certificate revocation messages. Absent a specific
indication from an application profile, certificates should
always be verified to ensure proper signing by a trusted certificate authority
(CA). The selection and addition of trust anchors should be done very carefully.
Users should be able to view information about the certificate and trust anchor.
Applications SHOULD also enforce minimum and maximum key sizes. For example,
certification paths containing keys or signatures weaker than 2048-bit RSA or
224-bit ECDSA are not appropriate for secure applications.</t>
        <t>Note that it is common practice in some protocols to use the same
certificate in both client and server modes. This setting has not been
extensively analyzed and it is the responsibility of the higher level
protocol to ensure there is no ambiguity in this case about the
higher-level semantics.</t>
      </section>
      <section anchor="implementation-pitfalls">
        <name>Implementation Pitfalls</name>
        <t>Implementation experience has shown that certain parts of earlier TLS
specifications are not easy to understand and have been a source of
interoperability and security problems. Many of these areas have been clarified
in this document but this appendix contains a short list of the most important
things that require special attention from implementors.</t>
        <t>TLS protocol issues:</t>
        <ul spacing="normal">
          <li>
            <t>Do you correctly handle handshake messages that are fragmented to
multiple TLS records (see <xref target="record-layer"/>)? Do you correctly handle
corner cases like a ClientHello that is split into several small fragments? Do
you fragment handshake messages that exceed the maximum fragment
size? In particular, the Certificate and CertificateRequest
handshake messages can be large enough to require fragmentation.
Certificate compression as defined in <xref target="RFC8879"/> can be used
to reduce the risk of fragmentation.</t>
          </li>
          <li>
            <t>Do you ignore the TLS record layer version number in all unencrypted TLS
records (see <xref target="backward-compatibility"/>)?</t>
          </li>
          <li>
            <t>Have you ensured that all support for SSL, RC4, EXPORT ciphers, and
MD5 (via the "signature_algorithms" extension) is completely removed from
all possible configurations that support TLS 1.3 or later, and that
attempts to use these obsolete capabilities fail correctly?
(see <xref target="backward-compatibility"/>)?</t>
          </li>
          <li>
            <t>Do you handle TLS extensions in ClientHellos correctly, including
unknown extensions?</t>
          </li>
          <li>
            <t>When the server has requested a client certificate but no
suitable certificate is available, do you correctly send an empty
Certificate message, instead of omitting the whole message (see
<xref target="certificate"/>)?</t>
          </li>
          <li>
            <t>When processing the plaintext fragment produced by AEAD-Decrypt and
scanning from the end for the ContentType, do you avoid scanning
past the start of the cleartext in the event that the peer has sent
a malformed plaintext of all zeros?</t>
          </li>
          <li>
            <t>Do you properly ignore unrecognized cipher suites
(<xref target="client-hello"/>), hello extensions (<xref target="extensions"/>), named groups
(<xref target="supported-groups"/>), key shares (<xref target="key-share"/>),
supported versions (<xref target="supported-versions"/>),
and signature algorithms (<xref target="signature-algorithms"/>) in the
ClientHello?</t>
          </li>
          <li>
            <t>As a server, do you send a HelloRetryRequest to clients which
support a compatible (EC)DHE group but do not predict it in the
"key_share" extension? As a client, do you correctly handle a
HelloRetryRequest from the server?</t>
          </li>
        </ul>
        <t>Cryptographic details:</t>
        <ul spacing="normal">
          <li>
            <t>What countermeasures do you use to prevent timing attacks <xref target="TIMING"/>?</t>
          </li>
          <li>
            <t>When using Diffie-Hellman key exchange, do you correctly preserve
leading zero bytes in the negotiated key (see <xref target="finite-field-diffie-hellman"/>)?</t>
          </li>
          <li>
            <t>Does your TLS client check that the Diffie-Hellman parameters sent
by the server are acceptable (see <xref target="ffdhe-param"/>)?</t>
          </li>
          <li>
            <t>Do you use a strong and, most importantly, properly seeded random number
generator (see <xref target="random-number-generation-and-seeding"/>) when generating Diffie-Hellman
private values, the ECDSA "k" parameter, and other security-critical values?
It is RECOMMENDED that implementations implement "deterministic ECDSA"
as specified in <xref target="RFC6979"/>. Note that purely deterministic ECC signatures such as
deterministic ECDSA and EdDSA may be vulnerable to certain side-channel and fault
injection attacks in easily accessible IoT devices.</t>
          </li>
          <li>
            <t>Do you zero-pad Diffie-Hellman public key values and shared
secrets to the group size (see <xref target="ffdhe-param"/> and <xref target="finite-field-diffie-hellman"/>)?</t>
          </li>
          <li>
            <t>Do you verify signatures after making them, to protect against RSA-CRT
key leaks <xref target="FW15"/>?</t>
          </li>
        </ul>
      </section>
      <section anchor="client-tracking">
        <name>Client and Server Tracking Prevention</name>
        <t>Clients 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="RFC9112"/> might open six connections to a server. Servers SHOULD
issue new tickets with every connection. This ensures that clients are
always able to use a new ticket when creating a new connection.</t>
        <t>Offering a ticket to a server additionally allows the server to correlate
different connections. This is possible independent of ticket reuse. Client
applications SHOULD NOT offer tickets across connections that are meant to be
uncorrelated. For example, <xref target="FETCH"/> defines network partition keys to separate
cache lookups in web browsers.</t>
        <t>Clients and Servers SHOULD NOT reuse a key share for multiple connections. Reuse
of a key share allows passive observers to correlate different connections. Reuse
of a client key share to the same server additionally allows the server to correlate different connections.</t>
        <t>It is RECOMMENDED that the labels for external identities be selected so that they
do not provide additional information about the identity of the
user. For instance, if the label includes an e-mail address, then
this trivially identifies the user to a passive attacker,
unlike the client's Certificate, which is encrypted. There are a number of potential
ways to avoid this risk, including (1) using random identity labels
(2) pre-encrypting the identity under a key known to the server or (3)
using the Encrypted Client Hello <xref target="I-D.ietf-tls-esni"/> extension.</t>
        <t>If an external PSK identity is used for multiple connections, then it
will generally be possible for an external observer to track
clients and/or servers across connections. Use of the
Encrypted Client Hello <xref target="I-D.ietf-tls-esni"/> extension can
mitigate this risk, as can mechanisms external to TLS that
rotate or encrypt the PSK identity.</t>
      </section>
      <section anchor="unauthenticated-operation">
        <name>Unauthenticated Operation</name>
        <t>Previous versions of TLS offered explicitly unauthenticated cipher suites based
on anonymous Diffie-Hellman. These modes have been deprecated in TLS 1.3.
However, it is still possible to negotiate parameters that do not provide
verifiable server authentication by several methods, including:</t>
        <ul spacing="normal">
          <li>
            <t>Raw public keys <xref target="RFC7250"/>.</t>
          </li>
          <li>
            <t>Using a public key contained in a certificate but without
validation of the certificate chain or any of its contents.</t>
          </li>
        </ul>
        <t>Either technique used alone is vulnerable to man-in-the-middle attacks
and therefore unsafe for general use. However, it is also possible to
bind such connections to an external authentication mechanism via
out-of-band validation of the server's public key, trust on first
use, or a mechanism such as channel bindings (though the
channel bindings described in <xref target="RFC5929"/> are not defined for
TLS 1.3). If no such mechanism is used, then the connection has no protection
against active man-in-the-middle attack; applications MUST NOT use TLS
in such a way absent explicit configuration or a specific application
profile.</t>
      </section>
    </section>
    <section anchor="update-tls12">
      <name>Updates to TLS 1.2</name>
      <t>To align with the names used this document, the following terms from
<xref target="RFC5246"/> are renamed:</t>
      <ul spacing="normal">
        <li>
          <t>The master secret, computed in Section 8.1 of <xref target="RFC5246"/>, is renamed to
the main secret. It is referred to as main_secret in formulas and
structures, instead of master_secret. However, the label parameter to the PRF
function is left unchanged for compatibility.</t>
        </li>
        <li>
          <t>The premaster secret is renamed to the preliminary secret. It is referred to
as preliminary_secret in formulas and structures, instead of
pre_master_secret.</t>
        </li>
        <li>
          <t>The PreMasterSecret and EncryptedPreMasterSecret structures, defined in
Section 7.4.7.1 of <xref target="RFC5246"/>, are renamed to PreliminarySecret and
EncryptedPreliminarySecret, respectively.</t>
        </li>
      </ul>
      <t>Correspondingly, the extension defined in <xref target="RFC7627"/> is renamed to the
"Extended Main Secret" extension. The extension code point is renamed to
"extended_main_secret". The label parameter to the PRF function in Section 4 of
<xref target="RFC7627"/> is left unchanged for compatibility.</t>
    </section>
    <section anchor="backward-compatibility">
      <name>Backward Compatibility</name>
      <t>The TLS protocol provides a built-in mechanism for version negotiation between
endpoints potentially supporting different versions of TLS.</t>
      <t>TLS 1.x and SSL 3.0 use compatible ClientHello messages. Servers can also handle
clients trying to use future versions of TLS as long as the ClientHello format
remains compatible and there is at least one protocol version supported by
both the client and the server.</t>
      <t>Prior versions of TLS used the record layer version number
(TLSPlaintext.legacy_record_version and
TLSCiphertext.legacy_record_version) for various purposes.
As of TLS 1.3, this field is deprecated. The value of
TLSPlaintext.legacy_record_version MUST be ignored by all implementations.
The value of TLSCiphertext.legacy_record_version is included in the
additional data for deprotection but MAY otherwise be ignored
or MAY be validated to match the fixed constant value.
Version negotiation is performed using only the handshake versions
(ClientHello.legacy_version and ServerHello.legacy_version, as well as the
ClientHello, HelloRetryRequest, and ServerHello "supported_versions" extensions).
In order to maximize interoperability with older endpoints, implementations
that negotiate the use of TLS 1.0-1.2 SHOULD set the record layer
version number to the negotiated version for the ServerHello and all
records thereafter.</t>
      <t>For maximum compatibility with previously non-standard behavior and misconfigured
deployments, all implementations SHOULD support validation of certification paths
based on the expectations in this document, even when handling prior TLS versions'
handshakes (see <xref target="certificate-selection"/>).</t>
      <t>TLS 1.2 and prior supported an "Extended Main Secret" <xref target="RFC7627"/> extension
which digested large parts of the handshake transcript into the secret and
derived keys. Note this extension was renamed in <xref target="update-tls12"/>. Because TLS
1.3 always hashes in the transcript up to the server Finished, implementations
which support both TLS 1.3 and earlier versions SHOULD indicate the use of the
Extended Main Secret extension in their APIs whenever TLS 1.3 is used.</t>
      <section anchor="negotiating-with-an-older-server">
        <name>Negotiating with an Older Server</name>
        <t>A TLS 1.3 client who wishes to negotiate with servers that do not
support TLS 1.3 will send a
normal TLS 1.3 ClientHello containing 0x0303 (TLS 1.2) in
ClientHello.legacy_version but with the correct version(s) in the
"supported_versions" extension. If the server does not support TLS 1.3, it
will respond with a ServerHello containing an older version number. If the
client agrees to use this version, the negotiation will proceed as appropriate
for the negotiated protocol. A client using a ticket for resumption SHOULD initiate the
connection using the version that was previously negotiated.</t>
        <t>Note that 0-RTT data is not compatible with older servers and SHOULD NOT
be sent absent knowledge that the server supports TLS 1.3.
See <xref target="zero-rtt-backwards-compatibility"/>.</t>
        <t>If the version chosen by the server is not supported by the client (or is not
acceptable), the client MUST abort the handshake with a "protocol_version" alert.</t>
        <t>Some legacy server implementations are known to not implement the TLS
specification properly and might abort connections upon encountering
TLS extensions or versions which they are not aware of. Interoperability
with buggy servers is a complex topic beyond the scope of this document.
Multiple connection attempts may be required in order to negotiate
a backward-compatible connection; however, this practice is vulnerable
to downgrade attacks and is NOT RECOMMENDED.</t>
      </section>
      <section anchor="negotiating-with-an-older-client">
        <name>Negotiating with an Older Client</name>
        <t>A TLS server can also receive a ClientHello indicating a version number smaller
than its highest supported version. If the "supported_versions" extension
is present, the server MUST negotiate using that extension as described in
<xref target="supported-versions"/>. If the "supported_versions" extension is not
present, the server MUST negotiate the minimum of ClientHello.legacy_version
and TLS 1.2. For example, if the server supports TLS 1.0, 1.1, and 1.2,
and legacy_version is TLS 1.0, the server will proceed with a TLS 1.0 ServerHello.
If the "supported_versions" extension is absent and the server only supports
versions greater than ClientHello.legacy_version, the server MUST abort the handshake
with a "protocol_version" alert.</t>
        <t>Note that earlier versions of TLS did not clearly specify the record layer
version number value in all cases (TLSPlaintext.legacy_record_version). Servers
will receive various TLS 1.x versions in this field, but its value
MUST always be ignored.</t>
      </section>
      <section anchor="zero-rtt-backwards-compatibility">
        <name>0-RTT Backward Compatibility</name>
        <t>0-RTT data is not compatible with older servers. An older server will respond
to the ClientHello with an older ServerHello, but it will not correctly skip
the 0-RTT data and will fail to complete the handshake. This can cause issues when
a client attempts to use 0-RTT, particularly against multi-server deployments. For
example, a deployment could deploy TLS 1.3 gradually with some servers
implementing TLS 1.3 and some implementing TLS 1.2, or a TLS 1.3 deployment
could be downgraded to TLS 1.2.</t>
        <t>A client that attempts to send 0-RTT data MUST fail a connection if it receives
a ServerHello with TLS 1.2 or older.  It can then retry
the connection with 0-RTT disabled.  To avoid a downgrade attack, the
client SHOULD NOT disable TLS 1.3, only 0-RTT.</t>
        <t>To avoid this error condition, multi-server deployments SHOULD ensure a uniform
and stable deployment of TLS 1.3 without 0-RTT prior to enabling 0-RTT.</t>
      </section>
      <section anchor="middlebox">
        <name>Middlebox Compatibility Mode</name>
        <t>Field measurements
<xref target="Ben17a"/> <xref target="Ben17b"/> <xref target="Res17a"/> <xref target="Res17b"/> have found that a significant number of middleboxes
misbehave when a TLS client/server pair negotiates TLS 1.3. Implementations
can increase the chance of making connections through those middleboxes
by making the TLS 1.3 handshake look more like a TLS 1.2 handshake:</t>
        <ul spacing="normal">
          <li>
            <t>The client always provides a non-empty session ID in the ClientHello,
as described in the legacy_session_id section of <xref target="client-hello"/>.</t>
          </li>
          <li>
            <t>If not offering early data, the client sends a dummy
change_cipher_spec record (see the third paragraph of <xref target="record-protocol"/>)
immediately before its second flight. This
may either be before its second ClientHello or before its encrypted
handshake flight. If offering early data, the record is placed
immediately after the first ClientHello.</t>
          </li>
          <li>
            <t>The server sends a dummy change_cipher_spec record immediately
after its first handshake message. This may either be after a
ServerHello or a HelloRetryRequest.</t>
          </li>
        </ul>
        <t>When put together, these changes make the TLS 1.3 handshake resemble
TLS 1.2 session resumption, which improves the chance of successfully
connecting through middleboxes. This "compatibility mode" is partially
negotiated: the client can opt to provide a session ID or not,
and the server has to echo it. Either side can send change_cipher_spec
at any time during the handshake, as they must be ignored by the peer,
but if the client sends a non-empty session ID, the server MUST send
the change_cipher_spec as described in this appendix.</t>
      </section>
      <section anchor="backward-compatibility-security">
        <name>Security Restrictions Related to Backward Compatibility</name>
        <t>Implementations negotiating the use of older versions of TLS SHOULD prefer
forward secret and AEAD cipher suites, when available.</t>
        <t>The security of RC4 cipher suites is considered insufficient for the reasons
cited in <xref target="RFC7465"/>. Implementations MUST NOT offer or negotiate RC4 cipher suites
for any version of TLS for any reason.</t>
        <t>Old versions of TLS permitted the use of very low strength ciphers.
Ciphers with a strength less than 112 bits MUST NOT be offered or
negotiated for any version of TLS for any reason.</t>
        <t>The security of SSL 2.0 <xref target="SSL2"/>, SSL 3.0 <xref target="RFC6101"/>, TLS 1.0
<xref target="RFC2246"/>, and TLS 1.1 <xref target="RFC4346"/> are considered insufficient for
the reasons enumerated in <xref target="RFC6176"/>, <xref target="RFC7568"/>, and <xref target="RFC8996"/>
and they MUST NOT be negotiated for any reason.</t>
        <t>Implementations MUST NOT send an SSL version 2.0 compatible CLIENT-HELLO.
Implementations MUST NOT negotiate TLS 1.3 or later using an SSL version 2.0 compatible
CLIENT-HELLO. Implementations are NOT RECOMMENDED to accept an SSL version 2.0 compatible
CLIENT-HELLO in order to negotiate older versions of TLS.</t>
        <t>Implementations MUST NOT send a ClientHello.legacy_version or ServerHello.legacy_version
set to 0x0300 or less. Any endpoint receiving a Hello message with
ClientHello.legacy_version or ServerHello.legacy_version set to 0x0300 MUST
abort the handshake with a "protocol_version" alert.</t>
        <t>Implementations MUST NOT send any records with a version less than 0x0300.
Implementations SHOULD NOT accept any records with a version less than 0x0300
(but may inadvertently do so if the record version number is ignored completely).</t>
        <t>Implementations MUST NOT use the Truncated HMAC extension, defined in
Section 7 of <xref target="RFC6066"/>, as it is not applicable to AEAD algorithms and has
been shown to be insecure in some scenarios.</t>
      </section>
    </section>
    <section anchor="security-analysis">
      <name>Overview of Security Properties</name>
      <t>A complete security analysis of TLS is outside the scope of this document.
In this appendix, we provide an informal description of the desired properties
as well as references to more detailed work in the research literature
which provides more formal definitions.</t>
      <t>We cover properties of the handshake separately from those of the record layer.</t>
      <section anchor="security-handshake">
        <name>Handshake</name>
        <t>The TLS handshake is an Authenticated Key Exchange (AKE) protocol which
is intended to provide both one-way authenticated (server-only) and
mutually authenticated (client and server) functionality. At the completion
of the handshake, each side outputs its view of the following values:</t>
        <ul spacing="normal">
          <li>
            <t>A set of "session keys" (the various secrets derived from the main secret)
from which can be derived a set of working keys.</t>
          </li>
          <li>
            <t>A set of cryptographic parameters (algorithms, etc.).</t>
          </li>
          <li>
            <t>The identities of the communicating parties.</t>
          </li>
        </ul>
        <t>We assume the attacker to be an active network attacker, which means it
has complete control over the network used to communicate between the parties <xref target="RFC3552"/>.
Even under these conditions, the handshake should provide the properties listed below.
Note that these properties are not necessarily independent, but reflect
the protocol consumers' needs.</t>
        <dl>
          <dt>Establishing the same session keys:</dt>
          <dd>
            <t>The handshake needs to output the same set of session keys on both sides of
the handshake, provided that it completes successfully on each endpoint
(see <xref target="CK01"/>, Definition 1, part 1).</t>
          </dd>
          <dt>Secrecy of the session keys:</dt>
          <dd>
            <t>The shared session keys should be known only to the communicating
parties and not to the attacker (see <xref target="CK01"/>; Definition 1, part 2).
Note that in a unilaterally authenticated connection, the attacker can establish
its own session keys with the server, but those session keys are distinct from
those established by the client.</t>
          </dd>
          <dt>Peer Authentication:</dt>
          <dd>
            <t>The client's view of the peer identity should reflect the server's
identity. If the client is authenticated, the server's view of the
peer identity should match the client's identity.</t>
          </dd>
          <dt>Uniqueness of the session keys:</dt>
          <dd>
            <t>Any two distinct handshakes should produce distinct, unrelated session
keys. Individual session keys produced by a handshake should also be distinct
and independent.</t>
          </dd>
          <dt>Downgrade Protection:</dt>
          <dd>
            <t>The cryptographic parameters should be the same on both sides and
should be the same as if the peers had been communicating in the
absence of an attack (see <xref target="BBFGKZ16"/>; Definitions 8 and 9).</t>
          </dd>
          <dt>Forward secret with respect to long-term keys:</dt>
          <dd>
            <t>If the long-term keying material (in this case the signature keys in
certificate-based authentication modes or the external/resumption
PSK in PSK with (EC)DHE modes) is compromised after the handshake is
complete, this does not compromise the security of the session key
(see <xref target="DOW92"/>), as long as the session key
itself (and all material that could be used to recreate the session
key) has been erased. In particular, private keys corresponding to key
shares, shared secrets, and keys derived in the TLS Key Schedule
other than <tt>binder_key</tt>, <tt>resumption_secret</tt>, and PSKs derived from
the <tt>resumption_secret</tt> also need to be erased.  The forward secrecy
property is not satisfied when PSK is used in the "psk_ke"
PskKeyExchangeMode.  Failing to erase keys or secrets intended to be
ephemeral or connection-specific in effect creates additional
long-term keys that must be protected. Compromise of those long-term
keys (even after the handshake is complete) can result in loss of
protection for the connection's traffic.</t>
          </dd>
          <dt>Key Compromise Impersonation (KCI) resistance:</dt>
          <dd>
            <t>In a mutually authenticated connection with certificates, compromising the long-term
secret of one actor should not break that actor’s authentication of their peer in
the given connection (see <xref target="HGFS15"/>). For example, if a client's signature key is
compromised, it should not be possible to impersonate arbitrary servers to that client
in subsequent handshakes.</t>
          </dd>
          <dt>Protection of endpoint identities:</dt>
          <dd>
            <t>The server's identity (certificate) should be protected against passive
attackers. The client's identity (certificate) should be protected against
both passive and active attackers. This property does not hold for cipher
suites without confidentiality; while this specification does not define any such cipher suites,
other documents may do so.</t>
          </dd>
        </dl>
        <t>Informally, the signature-based modes of TLS 1.3 provide for the
establishment of a unique, secret, shared key established by an
(EC)DHE key exchange and authenticated by the server's signature over
the handshake transcript, as well as tied to the server's identity by
a MAC. If the client is authenticated by a certificate, it also signs
over the handshake transcript and provides a MAC tied to both
identities. <xref target="SIGMA"/> describes the design and analysis of this type of key
exchange protocol. If fresh (EC)DHE keys are used for each connection,
then the output keys are forward secret.</t>
        <t>The external PSK and resumption PSK bootstrap from a long-term shared
secret into a unique per-connection set of short-term session keys. This
secret may have been established in a previous handshake. If
PSK with (EC)DHE key establishment is used, these session keys will also be forward
secret. The resumption PSK has been designed so that the
resumption secret computed by connection N and needed to form
connection N+1 is separate from the traffic keys used by connection N,
thus providing forward secrecy between the connections.
In addition, if multiple tickets are established on the same
connection, they are associated with different keys, so compromise of
the PSK associated with one ticket does not lead to the compromise of
connections established with PSKs associated with other tickets.
This property is most interesting if tickets are stored in a database
(and so can be deleted) rather than if they are self-encrypted.</t>
        <t>Forward secrecy limits the effect of key leakage in one direction
(compromise of a key at time T2 does not compromise some key at time
T1 where T1 &lt; T2). Protection in the other direction (compromise at
time T1 does not compromise keys at time T2) can be achieved by
rerunning (EC)DHE. If a long-term authentication key has been
compromised, a full handshake with (EC)DHE gives protection against
passive attackers. If the resumption_secret has been
compromised, a resumption handshake with (EC)DHE gives protection
against passive attackers and a full handshake with (EC)DHE gives
protection against active attackers. If a traffic secret has been
compromised, any handshake with (EC)DHE gives protection against
active attackers. Using the terms in <xref target="RFC7624"/>, forward secrecy
without rerunning (EC)DHE does not stop an attacker from doing static
key exfiltration. After key exfiltration of
application_traffic_secret_N, an attacker can e.g., passively
eavesdrop on all future data sent on the connection including data
encrypted with application_traffic_secret_N+1,
application_traffic_secret_N+2, etc. Frequently rerunning (EC)DHE
forces an attacker to do dynamic key exfiltration (or content
exfiltration).</t>
        <t>The PSK binder value forms a binding between a PSK
and the current handshake, as well as between the session where the
PSK was established and the current session. This binding
transitively includes the original handshake transcript, because that
transcript is digested into the values which produce the resumption
secret. This requires that both the KDF used to produce the
resumption secret and the MAC used to compute the binder be collision
resistant. See <xref target="key-derivation-and-hkdf"/> for more on this.
Note: The binder does not cover the binder values from other
PSKs, though they are included in the Finished MAC.</t>
        <t>Note: This specification does not currently permit the server to send a certificate_request
message in non-certificate-based handshakes (e.g., PSK).
If this restriction were to be relaxed in future, the
client's signature would not cover the server's certificate directly.
However, if the PSK was established through a NewSessionTicket, the client's
signature would transitively cover the server's certificate through
the PSK binder. <xref target="PSK-FINISHED"/>
describes a concrete attack on constructions that do not bind to
the server's certificate (see also <xref target="Kraw16"/>). It is unsafe to use certificate-based client
authentication when the client might potentially share the same
PSK/key-id pair with two different endpoints.  In the absence
of some other specification to the contrary, implementations MUST
NOT combine external PSKs with certificate-based authentication of
either the client or server. <xref target="RFC8773"/> provides an extension
to permit this, but has not received the level of analysis as this
specification.</t>
        <t>If an exporter is used, then it produces values which are unique
and secret (because they are generated from a unique session key).
Exporters computed with different labels and contexts are computationally
independent, so it is not feasible to compute one from another or
the session secret from the exported value.
Note: Exporters can
produce arbitrary-length values; if exporters are to be
used as channel bindings, the exported value MUST be large
enough to provide collision resistance. The exporters provided in
TLS 1.3 are derived from the same Handshake Contexts as the
early traffic keys and the application traffic keys, respectively,
and thus have similar security properties. Note that they do
not include the client's certificate; future applications
which wish to bind to the client's certificate may need
to define a new exporter that includes the full handshake
transcript.</t>
        <t>For all handshake modes, the Finished MAC (and, where present, the
signature) prevents downgrade attacks. In addition, the use of
certain bytes in the random nonces as described in <xref target="server-hello"/>
allows the detection of downgrade to previous TLS versions.
See <xref target="BBFGKZ16"/> for more details on TLS 1.3 and downgrade.</t>
        <t>As soon as the client and the server have exchanged enough information
to establish shared keys, the remainder of the handshake is encrypted,
thus providing protection against passive attackers, even if the
computed shared key is not authenticated. Because the server
authenticates before the client, the client can ensure that if it
authenticates to the server, it only
reveals its identity to an authenticated server. Note that implementations
must use the provided record-padding mechanism during the handshake
to avoid leaking information about the identities due to length.
The client's proposed PSK identities are not encrypted, nor is the
one that the server selects.</t>
        <section anchor="key-derivation-and-hkdf">
          <name>Key Derivation and HKDF</name>
          <t>Key derivation in TLS 1.3 uses  HKDF as defined in <xref target="RFC5869"/> and
its two components, HKDF-Extract and HKDF-Expand. The full rationale for the HKDF
construction can be found in <xref target="Kraw10"/> and the rationale for the way it is used
in TLS 1.3 in <xref target="KW16"/>.  Throughout this document, each
application of HKDF-Extract is followed by one or more invocations of
HKDF-Expand. This ordering should always be followed (including in future
revisions of this document); in particular, one SHOULD NOT use an output of
HKDF-Extract as an input to another application of HKDF-Extract without an
HKDF-Expand in between. Multiple applications of HKDF-Expand to some of
the same inputs are allowed as
long as these are differentiated via the key and/or the labels.</t>
          <t>Note that HKDF-Expand implements a pseudorandom function (PRF) with both inputs and
outputs of variable length. In some of the uses of HKDF in this document
(e.g., for generating exporters and the resumption_secret), it is necessary
that the application of HKDF-Expand be collision resistant; namely, it should
be infeasible to find two different inputs to HKDF-Expand that output the same
value. This requires the underlying hash function to be collision resistant
and the output length from HKDF-Expand to be of size at least 256 bits (or as
much as needed for the hash function to prevent finding collisions).</t>
        </section>
        <section anchor="certificate-based-client-authentication">
          <name>Certificate-Based Client Authentication</name>
          <t>A client that has sent certificate-based authentication data to a server, either during
the handshake or in post-handshake authentication, cannot be sure whether
the server afterwards considers the client to be authenticated or not.
If the client needs to determine if the server considers the
connection to be unilaterally or mutually authenticated, this has to
be provisioned by the application layer. See <xref target="CHHSV17"/> for details.
In addition, the analysis of post-handshake authentication from
<xref target="Kraw16"/> shows that the client identified by the certificate sent in
the post-handshake phase possesses the traffic key. This party is
therefore the client that participated in the original handshake or
one to whom the original client delegated the traffic key (assuming
that the traffic key has not been compromised).</t>
        </section>
        <section anchor="rtt">
          <name>0-RTT</name>
          <t>The 0-RTT mode of operation generally provides security
properties similar to those of 1-RTT data, with the two exceptions that the 0-RTT
encryption keys do not provide full forward secrecy and that the
server is not able to guarantee uniqueness of the handshake
(non-replayability) without keeping potentially undue amounts of
state. See <xref target="anti-replay"/> for mechanisms to limit
the exposure to replay.</t>
        </section>
        <section anchor="exporter-independence">
          <name>Exporter Independence</name>
          <t>The exporter_secret and early_exporter_secret are
derived to be independent of the traffic keys and therefore do
not represent a threat to the security of traffic encrypted with
those keys. However, because these secrets can be used to
compute any exporter value, they SHOULD be erased as soon as
possible. If the total set of exporter labels is known, then
implementations SHOULD pre-compute the inner Derive-Secret
stage of the exporter computation for all those labels,
then erase the [early_]exporter_secret, followed by
each inner values as soon as it is known that it will not be
needed again.</t>
        </section>
        <section anchor="post-compromise-security">
          <name>Post-Compromise Security</name>
          <t>TLS does not provide security for handshakes which take place after the peer's
long-term secret (signature key or external PSK) is compromised. It therefore
does not provide post-compromise security <xref target="CCG16"/>, sometimes also referred to
as backwards or future secrecy. This is in contrast to KCI resistance, which
describes the security guarantees that a party has after its own long-term
secret has been compromised.</t>
        </section>
        <section anchor="external-references">
          <name>External References</name>
          <t>The reader should refer to the following references for analysis of the
TLS handshake: <xref target="DFGS15"/>, <xref target="CHSV16"/>, <xref target="DFGS16"/>, <xref target="KW16"/>, <xref target="Kraw16"/>, <xref target="FGSW16"/>,
<xref target="LXZFH16"/>, <xref target="FG17"/>, and <xref target="BBK17"/>.</t>
        </section>
      </section>
      <section anchor="security-record-layer">
        <name>Record Layer</name>
        <t>The record layer depends on the handshake producing strong traffic secrets
which can be used to derive bidirectional encryption keys and nonces.
Assuming that is true, and the keys are used for no more data than
indicated in <xref target="limits-on-key-usage"/>, then the record layer should provide the following
guarantees:</t>
        <dl>
          <dt>Confidentiality:</dt>
          <dd>
            <t>An attacker should not be able to determine the plaintext contents
of a given record.
</t>
          </dd>
          <dt>Integrity:</dt>
          <dd>
            <t>An attacker should not be able to craft a new record which is
different from an existing record which will be accepted by the receiver.
</t>
          </dd>
          <dt>Order protection/non-replayability:</dt>
          <dd>
            <t>An attacker should not be able to cause the receiver to accept a
record which it has already accepted or cause the receiver to accept
record N+1 without having first processed record N.</t>
          </dd>
          <dt>Length concealment:</dt>
          <dd>
            <t>Given a record with a given external length, the attacker should not be able
to determine the amount of the record that is content versus padding.</t>
          </dd>
          <dt>Forward secrecy after key change:</dt>
          <dd>
            <t>If the traffic key update mechanism described in <xref target="key-update"/> has been
used and the previous generation key is deleted, an attacker who compromises
the endpoint should not be able to decrypt traffic encrypted with the old key.</t>
          </dd>
        </dl>
        <t>Informally, TLS 1.3 provides these properties by AEAD-protecting the
plaintext with a strong key. AEAD encryption <xref target="RFC5116"/> provides confidentiality
and integrity for the data. Non-replayability is provided by using
a separate nonce for each record, with the nonce being derived from
the record sequence number (<xref target="nonce"/>), with the sequence
number being maintained independently at both sides; thus records which
are delivered out of order result in AEAD deprotection failures.
In order to prevent mass cryptanalysis when the same plaintext is
repeatedly encrypted by different users under the same key
(as is commonly the case for HTTP), the nonce is formed by mixing
the sequence number with a secret per-connection initialization
vector derived along with the traffic keys.
See <xref target="BT16"/> for analysis of this construction.</t>
        <t>The rekeying technique in TLS 1.3 (see <xref target="updating-traffic-keys"/>) follows the
construction of the serial generator as discussed in <xref target="REKEY"/>, which shows that rekeying can
allow keys to be used for a larger number of encryptions than without
rekeying. This relies on the security of the HKDF-Expand-Label function as a
pseudorandom function (PRF).  In addition, as long as this function is truly
one way, it is not possible to compute traffic keys from prior to a key change
(forward secrecy).</t>
        <t>TLS does not provide security for data which is communicated on a connection
after a traffic secret of that connection is compromised. That is, TLS does not
provide post-compromise security/future secrecy/backward secrecy with respect
to the traffic secret. Indeed, an attacker who learns a traffic secret can
compute all future traffic secrets on that connection.  Systems which want such
guarantees need to do a fresh handshake and establish a new connection with an
(EC)DHE exchange.</t>
        <section anchor="external-references-1">
          <name>External References</name>
          <t>The reader should refer to the following references for analysis of the TLS record layer:
<xref target="BMMRT15"/>, <xref target="BT16"/>, <xref target="BDFKPPRSZZ16"/>, <xref target="BBK17"/>, and <xref target="PS18"/>.</t>
        </section>
      </section>
      <section anchor="traffic-analysis">
        <name>Traffic Analysis</name>
        <t>TLS is susceptible to a variety of traffic analysis attacks based on
observing the length and timing of encrypted packets
<xref target="CLINIC"/>
          <xref target="HCJC16"/>.
This is particularly easy when there is a small
set of possible messages to be distinguished, such as for a video
server hosting a fixed corpus of content, but still provides usable
information even in more complicated scenarios.</t>
        <t>TLS does not provide any specific defenses against this form of attack
but does include a padding mechanism for use by applications: The
plaintext protected by the AEAD function consists of content plus
variable-length padding, which allows the application to produce
arbitrary-length encrypted records as well as padding-only cover traffic to
conceal the difference between periods of transmission and periods
of silence. Because the
padding is encrypted alongside the actual content, an attacker cannot
directly determine the length of the padding, but may be able to
measure it indirectly by the use of timing channels exposed during
record processing (i.e., seeing how long it takes to process a
record or trickling in records to see which ones elicit a response
from the server). In general, it is not known how to remove all of
these channels because even a constant-time padding removal function will
likely feed the content into data-dependent functions.
At minimum, a fully constant-time server or client would require close
cooperation with the application-layer protocol implementation, including
making that higher-level protocol constant time.</t>
        <t>Note: Robust
traffic analysis defenses will likely lead to inferior performance
due to delays in transmitting packets and increased traffic volume.</t>
      </section>
      <section anchor="side-channel-attacks">
        <name>Side Channel Attacks</name>
        <t>In general, TLS does not have specific defenses against side-channel
attacks (i.e., those which attack the communications via secondary
channels such as timing), leaving those to the implementation of the relevant
cryptographic primitives. However, certain features of TLS are
designed to make it easier to write side-channel resistant code:</t>
        <ul spacing="normal">
          <li>
            <t>Unlike previous versions of TLS which used a composite
MAC-then-encrypt structure, TLS 1.3 only uses AEAD algorithms,
allowing implementations to use self-contained constant-time
implementations of those primitives.</t>
          </li>
          <li>
            <t>TLS uses a uniform "bad_record_mac" alert for all decryption
errors, which is intended to prevent an attacker from gaining
piecewise insight into portions of the message.  Additional resistance
is provided by terminating the connection on such errors; a new
connection will have different cryptographic material, preventing
attacks against the cryptographic primitives that require multiple
trials.</t>
          </li>
        </ul>
        <t>Information leakage through side channels can occur at layers above
TLS, in application protocols and the applications that use
them. Resistance to side-channel attacks depends on applications and
application protocols separately ensuring that confidential
information is not inadvertently leaked.</t>
      </section>
      <section anchor="replay-0rtt">
        <name>Replay Attacks on 0-RTT</name>
        <t>Replayable 0-RTT data presents a number of security threats to
TLS-using applications, unless those applications are specifically
engineered to be safe under replay
(minimally, this means idempotent, but in many cases may
also require other stronger conditions, such as constant-time
response). Potential attacks include:</t>
        <ul spacing="normal">
          <li>
            <t>Duplication of actions which cause side effects (e.g., purchasing an
item or transferring money) to be duplicated, thus harming the site or
the user.</t>
          </li>
          <li>
            <t>Attackers can store and replay 0-RTT messages in order to
reorder them with respect to other messages (e.g., moving
a delete to after a create).</t>
          </li>
          <li>
            <t>Amplifying existing information leaks caused by side effects like
caching. An attacker could learn information about the content of a
0-RTT message by replaying it to some cache node that has not cached
some resource of interest, and then using a separate connection to check
whether that resource has been added to the cache. This could be repeated
with different cache nodes as often as the 0-RTT message is replayable.</t>
          </li>
        </ul>
        <t>If data can be replayed a large number of times, additional attacks
become possible, such as making repeated measurements of the
speed of cryptographic operations. In addition, they may
be able to overload rate-limiting systems. For a further description of
these attacks, see <xref target="Mac17"/>.</t>
        <t>Ultimately, servers have the responsibility to protect themselves
against attacks employing 0-RTT data replication. The mechanisms
described in <xref target="anti-replay"/> are intended to
prevent replay at the TLS layer but do not provide complete protection
against receiving multiple copies of client data.
TLS 1.3 falls back to the 1-RTT
handshake when the server does not have any information about the
client, e.g., because it is in a different cluster which does not
share state or because the ticket has been deleted as described in
<xref target="single-use-tickets"/>. If the application-layer protocol retransmits
data in this setting, then it is possible for an attacker to induce
message duplication by sending the ClientHello to both the original cluster
(which processes the data immediately) and another cluster which will
fall back to 1-RTT and process the data upon application-layer
replay. The scale of this attack is limited by the client's
willingness to retry transactions and therefore only allows a limited amount
of duplication, with each copy appearing as a new connection at
the server.</t>
        <t>If implemented correctly, the mechanisms described in
<xref target="single-use-tickets"/> and <xref target="client-hello-recording"/> prevent a
replayed ClientHello and its associated 0-RTT data from being accepted
multiple times by any cluster with consistent state; for servers
which limit the use of 0-RTT to one cluster for a single ticket, then a given
ClientHello and its associated 0-RTT data will only be accepted once.
However, if state is not completely consistent,
then an attacker might be able to have multiple copies of the data be
accepted during the replication window.
Because clients do not know the exact details of server behavior, they
MUST NOT send messages in early data which are not safe to have
replayed and which they would not be willing to retry across multiple
1-RTT connections.</t>
        <t>Application protocols MUST NOT use 0-RTT data without a profile that
defines its use. That profile needs to identify which messages or
interactions are safe to use with 0-RTT and how to handle the
situation when the server rejects 0-RTT and falls back to 1-RTT.</t>
        <t>In addition, to avoid accidental misuse, TLS implementations MUST NOT
enable 0-RTT (either sending or accepting) unless specifically
requested by the application and MUST NOT automatically resend 0-RTT
data if it is rejected by the server unless instructed by the
application. Server-side applications may wish to implement special
processing for 0-RTT data for some kinds of application traffic (e.g.,
abort the connection, request that data be resent at the application
layer, or delay processing until the handshake completes). In order to
allow applications to implement this kind of processing, TLS
implementations MUST provide a way for the application to determine if
the handshake has completed.</t>
        <section anchor="replay-and-exporters">
          <name>Replay and Exporters</name>
          <t>Replays of the ClientHello produce the same early exporter, thus
requiring additional care by applications which use these exporters.
In particular, if these exporters are used as an authentication
channel binding (e.g., by signing the output of the exporter)
an attacker who compromises the PSK can transplant authenticators
between connections without compromising the authentication key.</t>
          <t>In addition, the early exporter SHOULD NOT be used to generate
server-to-client encryption keys because that would entail
the reuse of those keys. This parallels the use of the early
application traffic keys only in the client-to-server direction.</t>
        </section>
      </section>
      <section anchor="psk-identity-exposure">
        <name>PSK Identity Exposure</name>
        <t>Because implementations respond to an invalid PSK binder by aborting
the handshake, it may be possible for an attacker to verify whether
a given PSK identity is valid. Specifically, if a server accepts
both external-PSK and certificate-based handshakes, a valid PSK identity
will result in a failed handshake, whereas an invalid identity will
just be skipped and result in a successful certificate handshake.
Servers which solely support PSK handshakes may be able to resist
this form of attack by treating the cases where there is no
valid PSK identity and where there is an identity but it has an
invalid binder identically.</t>
      </section>
      <section anchor="sharing-psks">
        <name>Sharing PSKs</name>
        <t>TLS 1.3 takes a conservative approach to PSKs by binding them to a
specific KDF.  By contrast, TLS 1.2 allows PSKs to be used with any
hash function and the TLS 1.2 PRF.  Thus, any PSK which is used with
both TLS 1.2 and TLS 1.3 must be used with only one hash in TLS 1.3,
which is less than optimal if users want to provision a single PSK.
The constructions in TLS 1.2 and TLS 1.3 are different, although they
are both based on HMAC.  While there is no known way in which the
same PSK might produce related output in both versions, only limited
analysis has been done.  Implementations can ensure safety from
cross-protocol related output by not reusing PSKs between TLS 1.3 and
TLS 1.2.</t>
      </section>
      <section anchor="misbinding-when-using-self-signed-certificates-or-raw-public-keys">
        <name>Misbinding when using Self-Signed Certificates or Raw Public Keys</name>
        <t>When TLS 1.3 is used with self-signed certificates without useful
identities (as in DTLS-SRTP <xref target="RFC5763"/>) or raw public keys
<xref target="RFC7250"/> or for peer authentication, it may be vulnerable to
misbinding attacks <xref target="MM24"/>. This risk can be mitigated by using
the "external_id_hash" extension <xref target="RFC8444"/> or, if only
the server is being authenticated, by the server verifying
that the "server_name" extension matches its expected identity.</t>
      </section>
      <section anchor="attacks-on-static-rsa">
        <name>Attacks on Static RSA</name>
        <t>Although TLS 1.3 does not use RSA key transport and so is not
directly susceptible to Bleichenbacher-type attacks <xref target="Blei98"/> if TLS 1.3
servers also support static RSA in the context of previous
versions of TLS, then it may be possible to impersonate the server
for TLS 1.3 connections <xref target="JSS15"/>. TLS
1.3 implementations can prevent this attack by disabling support
for static RSA across all versions of TLS. In principle, implementations
might also be able to separate certificates with different keyUsage
bits for static RSA decryption and RSA signature, but this technique
relies on clients refusing to accept signatures using keys
in certificates that do not have the digitalSignature bit set,
and many clients do not enforce this restriction.</t>
      </section>
    </section>
    <section anchor="change-log">
      <name>Change Log</name>
      <t>[[RFC EDITOR: Please remove in final RFC.]]
Since -06
- Updated text about differences from RFC 8446.
- Clarify which parts of IANA considerations are new to this document.
- Upgrade the requirement to initiate key update before exceeding
  key usage limits to MUST.
- Add some text around use of the same cert for client and server.</t>
      <t>Since -05</t>
      <ul spacing="normal">
        <li>
          <t>Port in text on key update limits from RFC 9147 (Issue 1257)</t>
        </li>
        <li>
          <t>Clarify that you need to ignore NST if you don't do resumption
(Issue 1280)</t>
        </li>
        <li>
          <t>Discuss the privacy implications of external key reuse (Issue 1287)</t>
        </li>
        <li>
          <t>Advice on key deletion (PR 1282)</t>
        </li>
        <li>
          <t>Clarify what unsolicited extensions means (PR 1275)</t>
        </li>
        <li>
          <t>close_notify should be warning (PR 1290)</t>
        </li>
        <li>
          <t>Reference RFC 8773 (PR 1296)</t>
        </li>
        <li>
          <t>Add some more information about application bindings and cite
RFC 9525 (PR 1297)</t>
        </li>
      </ul>
      <t>Since -04</t>
      <ul spacing="normal">
        <li>
          <t>Update the extension table (Issue 1241)</t>
        </li>
        <li>
          <t>Clarify user_canceled (Issue 1208)</t>
        </li>
        <li>
          <t>Clarify 0-RTT cache side channels (Issue 1225)</t>
        </li>
        <li>
          <t>Require that message reinjection be done with the current hash.
Potentially a clarification and potentially a wire format
change depending on previous interpretation (Issue 1227)</t>
        </li>
      </ul>
      <t>Changelog not updated between -00 and -03</t>
      <t>Since -00</t>
      <ul spacing="normal">
        <li>
          <t>Update TLS 1.2 terminology</t>
        </li>
        <li>
          <t>Specify "certificate-based" client authentication</t>
        </li>
        <li>
          <t>Clarify that privacy guarantees don't apply when you have null encryption</t>
        </li>
        <li>
          <t>Shorten some names</t>
        </li>
        <li>
          <t>Address tracking implications of resumption</t>
        </li>
      </ul>
    </section>
    <section numbered="false" anchor="contributors">
      <name>Contributors</name>
      <artwork><![CDATA[
      Martin Abadi
      University of California, Santa Cruz
      abadi@cs.ucsc.edu

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

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

      Richard Barnes
      Cisco
      rlb@ipv.sx

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

      David Benjamin
      Google
      davidben@google.com

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

      Karthikeyan Bhargavan
      (editor of [RFC7627])
      INRIA
      karthikeyan.bhargavan@inria.fr

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

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

      Ran Canetti
      IBM
      canetti@watson.ibm.com

      Matt Caswell
      OpenSSL
      matt@openssl.org

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

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

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

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

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

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

      Roelof DuToit
      Symantec Corporation
      roelof_dutoit@symantec.com

      Taher Elgamal
      Securify
      taher@securify.com

      Pasi Eronen
      Nokia
      pasi.eronen@nokia.com

      Cedric Fournet
      Microsoft
      fournet@microsoft.com

      Anil Gangolli
      anil@busybuddha.org

      David M. Garrett
      dave@nulldereference.com

      Illya Gerasymchuk
      Independent
      illya@iluxonchik.me

      Alessandro Ghedini
      Cloudflare Inc.
      alessandro@cloudflare.com

      Daniel Kahn Gillmor
      ACLU
      dkg@fifthhorseman.net

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

      Jens Guballa
      ETAS
      jens.guballa@etas.com

      Felix Guenther
      TU Darmstadt
      mail@felixguenther.info

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

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

      Kipp Hickman

      Alfred Hoenes

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

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

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

      Subodh Iyengar
      Facebook
      subodh@fb.com

      Benjamin Kaduk
      Akamai Technologies
      kaduk@mit.edu

      Hubert Kario
      Red Hat Inc.
      hkario@redhat.com

      Phil Karlton
      (co-author of SSL 3.0)

      Leon Klingele
      Independent
      mail@leonklingele.de

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

      Hugo Krawczyk
      IBM
      hugokraw@us.ibm.com

      Adam Langley
      (co-author of [RFC7627])
      Google
      agl@google.com

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

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

      Ilari Liusvaara
      Independent
      ilariliusvaara@welho.com

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

      Colm MacCarthaigh
      Amazon Web Services
      colm@allcosts.net

      Carl Mehner
      USAA
      carl.mehner@usaa.com

      Jan Mikkelsen
      Transactionware
      janm@transactionware.com

      Bodo Moeller
      (co-author of [RFC4492])
      Google
      bodo@acm.org

      Kyle Nekritz
      Facebook
      knekritz@fb.com

      Erik Nygren
      Akamai Technologies
      erik+ietf@nygren.org

      Magnus Nystrom
      Microsoft
      mnystrom@microsoft.com

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

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

      Christopher Patton
      University of Florida
      cjpatton@ufl.edu

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

      Andrei Popov
      Microsoft
      andrei.popov@microsoft.com

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

      Marsh Ray
      (co-author of [RFC7627])
      Microsoft
      maray@microsoft.com

      Robert Relyea
      Netscape Communications
      relyea@netscape.com

      Kyle Rose
      Akamai Technologies
      krose@krose.org

      Jim Roskind
      Amazon
      jroskind@amazon.com

      Michael Sabin

      Joe Salowey
      Tableau Software
      joe@salowey.net

      Rich Salz
      Akamai
      rsalz@akamai.com

      David Schinazi
      Apple Inc.
      dschinazi@apple.com

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

      Thomas Shrimpton
      University of Florida
      teshrim@ufl.edu

      Dan Simon
      Microsoft, Inc.
      dansimon@microsoft.com

      Brian Smith
      Independent
      brian@briansmith.org

      Ben Smyth
      Ampersand
      www.bensmyth.com

      Brian Sniffen
      Akamai Technologies
      ietf@bts.evenmere.org

      Nick Sullivan
      Cloudflare Inc.
      nick@cloudflare.com

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

      Tim Taubert
      Mozilla
      ttaubert@mozilla.com

      Martin Thomson
      Mozilla
      mt@mozilla.com

      Hannes Tschofenig
      Arm Limited
      Hannes.Tschofenig@arm.com

      Sean Turner
      sn3rd
      sean@sn3rd.com

      Steven Valdez
      Google
      svaldez@google.com

      Filippo Valsorda
      Cloudflare Inc.
      filippo@cloudflare.com

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

      Victor Vasiliev
      Google
      vasilvv@google.com

      Loganaden Velvindron
      cyberstorm.mu
      logan@cyberstorm.mu

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

      Tom Weinstein

      David Wong
      NCC Group
      david.wong@nccgroup.trust

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

      Tim Wright
      Vodafone
      timothy.wright@vodafone.com

      Peter Wu
      Independent
      peter@lekensteyn.nl

      Kazu Yamamoto
      Internet Initiative Japan Inc.
      kazu@iij.ad.jp
]]></artwork>
    </section>
  </back>
  <!-- ##markdown-source:
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
DPpH/f5R5/zNcb/Xue9d7cVeLKksUrUCQAs0+92tqhfWNto52MVGe2sb7fW2
sdE+NaqM7vT4pH+0ekTN2ZM8roqRuDmhkke3sunedm8WjnGnPkZdwX7fDpRz
4RYD0LwIOvvD2QlOW0yYSFoNixumdeIXD7Z2G5YuzPTkdnvr28kMDrb2G1Z5
tH6VOeGTX6+4x9LR7u4BPzn4V5bGtGxeF5+tyl971jxdn8DKzZK1zdyiDOpj
f0tS1SNPQw+72a6SuRCSe9xEPJqyeYyizDlDHleUF6zElNoAA+gM/nS71GnV
gS5fDFpvb1W8K419bm/tUp+7K/rEYiW2/e6jet2VXvdW9ApbFbTfe1Sve9Lr
/opeYWeD9vuP6nVfe335shpMQMm0V4sSpNlPL0959V++rLZryY/mXgjxAtYL
DVVwAa/PN2mNTcbh2gffZuXc3BQVTIjHXROL3CXoV4mwgZmMx+iaHsbHCyBs
/U6LKhhsPo60e7QJW1UHpOPz1Aod9bHj5/zTgfxEfJt/evaIbd/qHckXj8PW
nxzj2+qdQN+fhNlt9U7rE0dHzTyF/6Rjt7ythklfX4MeBGeNeqIAD/5pZ+vp
Nv/U0592t57t808V6qWn+73dXX66oy8c9J5JH7v/FK+hTq5Cat/qvTym5elV
qR34W621Oxun1dZNS//yJW82/Hf7ayfJa+eP1uIpkZlV+CsMdnUnJhCn/Avu
sEQG/yLLsZxjZewbnOHP+A4rA24jE3Drwma5jB4VyyhmHhTeQg/VQ2Uxs1YH
gcAZ9/BpSv5FYFH8JAXEPJnfpsUs5ULbWAkaI3mx1t6MGke3yQjHtozH2Xw+
ThkhjQr5lsUkJflZC5AxHOkizyiYkkCDI60rWOTX2c1CUMgYeZRyf5cC7aFF
v0xZEBMlRaHGEnVD5RUoD9rByyfQ38Sh89uyhIu8TK5TLYc5x8WVlZBaIhLL
jHn3pmwcfs6j+jJ6iGT9j8eRByFx+K8EW0Ctx0s3Wfh9VQyzJoLF5x7luO4B
Fbn+BEgsy28W5NNFygtE/HV0XXszNgbRvzRqq8bzfOTbNjiJ1ikiQUShuqCK
bLTCxbj2NUaxaDbXgRj4kmy064flmsVi0f1Kb2tmC1pwUc6dzopL9EiXnfUC
NjvimkIVvnG1NTiJwq0/zflDj3PpNo6pKfxBvPdHQXmkBuqtCwUI4lUNAavi
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
uSh+13kEAA==

-->

</rfc>
