<?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.26 (Ruby 3.3.6) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-tls-esni-24" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.28.0 -->
  <front>
    <title abbrev="TLS Encrypted Client Hello">TLS Encrypted Client Hello</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-24"/>
    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>Independent</organization>
      <address>
        <email>ekr@rtfm.com</email>
      </address>
    </author>
    <author initials="K." surname="Oku" fullname="Kazuho Oku">
      <organization>Fastly</organization>
      <address>
        <email>kazuhooku@gmail.com</email>
      </address>
    </author>
    <author initials="N." surname="Sullivan" fullname="Nick Sullivan">
      <organization>Cryptography Consulting LLC</organization>
      <address>
        <email>nicholas.sullivan+ietf@gmail.com</email>
      </address>
    </author>
    <author initials="C. A." surname="Wood" fullname="Christopher A. Wood">
      <organization>Cloudflare</organization>
      <address>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2025" month="March" day="20"/>
    <area>SEC</area>
    <workgroup>tls</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 67?>

<t>This document describes a mechanism in Transport Layer Security (TLS) for
encrypting a ClientHello message under a server public key.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/tlswg/draft-ietf-tls-esni">https://github.com/tlswg/draft-ietf-tls-esni</eref>.</t>
    </note>
  </front>
  <middle>
    <?line 72?>

<section anchor="intro">
      <name>Introduction</name>
      <t>Although TLS 1.3 <xref target="RFC8446"/> encrypts most of the handshake, including the
server certificate, there are several ways in which an on-path attacker can
learn private information about the connection. The plaintext Server Name
Indication (SNI) extension in ClientHello messages, which leaks the target
domain for a given connection, is perhaps the most sensitive information
left unencrypted in TLS 1.3.</t>
      <t>This document specifies a new TLS extension, called Encrypted Client Hello
(ECH), that allows clients to encrypt their ClientHello to the TLS server.
This protects the SNI and other potentially sensitive fields, such as the
Application Layer Protocol Negotiation (ALPN)
list <xref target="RFC7301"/>. Co-located servers with consistent externally visible TLS
configurations and behavior, including supported versions and cipher suites and
how they respond to incoming client connections, form an anonymity set. (Note
that implementation-specific choices, such as extension ordering within TLS
messages or division of data into record-layer boundaries, can result in
different externally visible behavior, even for servers with consistent TLS
configurations.) Usage of this mechanism reveals that a client is connecting
to a particular service provider, but does not reveal which server from the
anonymity set terminates the connection. Deployment implications of this
feature are discussed in <xref target="deployment"/>.</t>
      <t>ECH is not in itself sufficient to protect the identity of the server.
The target domain may also be visible through other channels, such as
plaintext client DNS queries or visible server IP addresses. However,
encrypted DNS mechanisms such as
DNS over HTTPS <xref target="RFC8484"/>, DNS over TLS/DTLS <xref target="RFC7858"/> <xref target="RFC8094"/>, and
DNS over QUIC <xref target="RFC9250"/>
provide mechanisms for clients to conceal
DNS lookups from network inspection, and many TLS servers host multiple domains
on the same IP address. Private origins may also be deployed behind a common
provider, such as a reverse proxy. In such environments, the SNI remains the
primary explicit signal available to observers to determine the
server's identity.</t>
      <t>ECH is supported in TLS 1.3 <xref target="RFC8446"/>, DTLS 1.3 <xref target="RFC9147"/>, and
newer versions of the TLS and DTLS protocols.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</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. All TLS
notation comes from <xref section="3" sectionFormat="comma" target="RFC8446"/>.</t>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>This protocol is designed to operate in one of two topologies illustrated below,
which we call "Shared Mode" and "Split Mode". These modes are described in the
following section.</t>
      <section anchor="topologies">
        <name>Topologies</name>
        <figure anchor="shared-mode">
          <name>Shared Mode Topology</name>
          <artwork><![CDATA[
                +---------------------+
                |                     |
                |   2001:DB8::1111    |
                |                     |
Client <----->  | private.example.org |
                |                     |
                | public.example.com  |
                |                     |
                +---------------------+
                        Server
          (Client-Facing and Backend Combined)
]]></artwork>
        </figure>
        <t>In Shared Mode, the provider is the origin server for all the domains whose DNS
records point to it. In this mode, the TLS connection is terminated by the
provider.</t>
        <figure anchor="split-mode">
          <name>Split Mode Topology</name>
          <artwork><![CDATA[
           +--------------------+     +---------------------+
           |                    |     |                     |
           |   2001:DB8::1111   |     |   2001:DB8::EEEE    |
Client <----------------------------->|                     |
           | public.example.com |     | private.example.org |
           |                    |     |                     |
           +--------------------+     +---------------------+
            Client-Facing Server            Backend Server
]]></artwork>
        </figure>
        <t>In Split Mode, the provider is not the origin server for private domains.
Rather, the DNS records for private domains point to the provider, and the
provider's server relays the connection back to the origin server, who
terminates the TLS connection with the client. Importantly, the service provider
does not have access to the plaintext of the connection beyond the unencrypted
portions of the handshake.</t>
        <t>In the remainder of this document, we will refer to the ECH-service provider as
the "client-facing server" and to the TLS terminator as the "backend server".
These are the same entity in Shared Mode, but in Split Mode, the client-facing
and backend servers are physically separated.</t>
        <t>See <xref target="security-considerations"/> for more discussion about the ECH threat model
and how it relates to the client, client-facing server, and backend server.</t>
      </section>
      <section anchor="encrypted-clienthello-ech">
        <name>Encrypted ClientHello (ECH)</name>
        <t>A client-facing server enables ECH by publishing an ECH configuration, which
is an encryption public key and associated metadata. Domains which wish to
use ECH must publish this configuration, using the key associated
with the client-facing server. This document
defines the ECH configuration's format, but delegates DNS publication details
to <xref target="RFC9460"/>. See
<xref target="ECH-IN-DNS"/> for specifics about how ECH
configurations are advertised in HTTPS records. Other delivery mechanisms are
also possible. For example, the client may have the ECH configuration
preconfigured.</t>
        <t>When a client wants to establish a TLS session with some backend server, it
constructs a private ClientHello, referred to as the ClientHelloInner.
The client then constructs a public ClientHello, referred to as the
ClientHelloOuter. The ClientHelloOuter contains innocuous values for
sensitive extensions and an "encrypted_client_hello" extension
(<xref target="encrypted-client-hello"/>), which carries the encrypted ClientHelloInner.
Finally, the client sends ClientHelloOuter to the server.</t>
        <t>The server takes one of the following actions:</t>
        <ol spacing="normal" type="1"><li>
            <t>If it does not support ECH or cannot decrypt the extension, it completes
the handshake with ClientHelloOuter. This is referred to as rejecting ECH.</t>
          </li>
          <li>
            <t>If it successfully decrypts the extension, it forwards the ClientHelloInner
to the backend server, which completes the handshake. This is referred to
as accepting ECH.</t>
          </li>
        </ol>
        <t>Upon receiving the server's response, the client determines whether or not ECH
was accepted (<xref target="determining-ech-acceptance"/>) and proceeds with the handshake
accordingly. When ECH is rejected, the resulting connection is not usable by
the client for application data. Instead, ECH rejection allows the client to
retry with up-to-date configuration (<xref target="rejected-ech"/>).</t>
        <t>The primary goal of ECH is to ensure that connections to servers in the same
anonymity set are indistinguishable from one another. Moreover, it should
achieve this goal without affecting any existing security properties of TLS 1.3.
See <xref target="goals"/> for more details about the ECH security and privacy goals.</t>
      </section>
    </section>
    <section anchor="ech-configuration">
      <name>Encrypted ClientHello Configuration</name>
      <t>ECH uses HPKE for public key encryption <xref target="HPKE"/>.
The ECH configuration is defined by the following <tt>ECHConfig</tt> structure.</t>
      <artwork><![CDATA[
    opaque HpkePublicKey<1..2^16-1>;
    uint16 HpkeKemId;              // Defined in RFC9180
    uint16 HpkeKdfId;              // Defined in RFC9180
    uint16 HpkeAeadId;             // Defined in RFC9180
    uint16 ECHConfigExtensionType; // Defined in Section 11.3

    struct {
        HpkeKdfId kdf_id;
        HpkeAeadId aead_id;
    } HpkeSymmetricCipherSuite;

    struct {
        uint8 config_id;
        HpkeKemId kem_id;
        HpkePublicKey public_key;
        HpkeSymmetricCipherSuite cipher_suites<4..2^16-4>;
    } HpkeKeyConfig;

    struct {
        ECHConfigExtensionType type;
        opaque data<0..2^16-1>;
    } ECHConfigExtension;

    struct {
        HpkeKeyConfig key_config;
        uint8 maximum_name_length;
        opaque public_name<1..255>;
        ECHConfigExtension extensions<0..2^16-1>;
    } ECHConfigContents;

    struct {
        uint16 version;
        uint16 length;
        select (ECHConfig.version) {
          case 0xfe0d: ECHConfigContents contents;
        }
    } ECHConfig;
]]></artwork>
      <t>The structure contains the following fields:</t>
      <dl>
        <dt>version</dt>
        <dd>
          <t>The version of ECH for which this configuration is used. The version
is the same as the code point for the
"encrypted_client_hello" extension. Clients MUST ignore any <tt>ECHConfig</tt>
structure with a version they do not support.</t>
        </dd>
        <dt>length</dt>
        <dd>
          <t>The length, in bytes, of the next field. This length field allows
implementations to skip over the elements in such a list where they cannot
parse the specific version of ECHConfig.</t>
        </dd>
        <dt>contents</dt>
        <dd>
          <t>An opaque byte string whose contents depend on the version. For this
specification, the contents are an <tt>ECHConfigContents</tt> structure.</t>
        </dd>
      </dl>
      <t>The <tt>ECHConfigContents</tt> structure contains the following fields:</t>
      <dl>
        <dt>key_config</dt>
        <dd>
          <t>A <tt>HpkeKeyConfig</tt> structure carrying the configuration information
associated with the HPKE public key (an "ECH key"). Note that this
structure contains the <tt>config_id</tt> field, which applies to the entire
ECHConfigContents.</t>
        </dd>
        <dt>maximum_name_length</dt>
        <dd>
          <t>The longest name of a backend server, if known. If not known, this value can
be set to zero. It is used to compute padding (<xref target="padding"/>) and does not
constrain server name lengths. Names may exceed this length if, e.g.,
the server uses wildcard names or added new names to the anonymity set.</t>
        </dd>
        <dt>public_name</dt>
        <dd>
          <t>The DNS name of the client-facing server, i.e., the entity trusted
to update the ECH configuration. This is used to correct misconfigured clients,
as described in <xref target="rejected-ech"/>.</t>
        </dd>
        <dt/>
        <dd>
          <t>See <xref target="auth-public-name"/> for how the client interprets and validates the
public_name.</t>
        </dd>
        <dt>extensions</dt>
        <dd>
          <t>A list of ECHConfigExtension values that the client must take into
consideration when generating a ClientHello message. Each ECHConfigExtension
has a 2-octet type and opaque data value, where the data value is encoded
with a 2-octet integer representing the length of the data, in network byte
order. ECHConfigExtension values are described below (<xref target="config-extensions"/>).</t>
        </dd>
      </dl>
      <t>The <tt>HpkeKeyConfig</tt> structure contains the following fields:</t>
      <dl>
        <dt>config_id</dt>
        <dd>
          <t>A one-byte identifier for the given HPKE key configuration. This is used by
clients to indicate the key used for ClientHello encryption. <xref target="config-ids"/>
describes how client-facing servers allocate this value.</t>
        </dd>
        <dt>kem_id</dt>
        <dd>
          <t>The HPKE KEM identifier corresponding to <tt>public_key</tt>. Clients MUST ignore any
<tt>ECHConfig</tt> structure with a key using a KEM they do not support.</t>
        </dd>
        <dt>public_key</dt>
        <dd>
          <t>The HPKE public key used by the client to encrypt ClientHelloInner.</t>
        </dd>
        <dt>cipher_suites</dt>
        <dd>
          <t>The list of HPKE KDF and AEAD identifier pairs clients can use for encrypting
ClientHelloInner. See <xref target="real-ech"/> for how clients choose from this list.</t>
        </dd>
      </dl>
      <t>The client-facing server advertises a sequence of ECH configurations to clients,
serialized as follows.</t>
      <artwork><![CDATA[
    ECHConfig ECHConfigList<4..2^16-1>;
]]></artwork>
      <t>The <tt>ECHConfigList</tt> structure contains one or more <tt>ECHConfig</tt> structures in
decreasing order of preference. This allows a server to support multiple
versions of ECH and multiple sets of ECH parameters.</t>
      <section anchor="config-ids">
        <name>Configuration Identifiers</name>
        <t>A client-facing server has a set of known ECHConfig values, with corresponding
private keys. This set SHOULD contain the currently published values, as well as
previous values that may still be in use, since clients may cache DNS records
up to a TTL or longer.</t>
        <t><xref target="client-facing-server"/> describes a trial decryption process for decrypting the
ClientHello. This can impact performance when the client-facing server maintains
many known ECHConfig values. To avoid this, the client-facing server SHOULD
allocate distinct <tt>config_id</tt> values for each ECHConfig in its known set. The
RECOMMENDED strategy is via rejection sampling, i.e., to randomly select
<tt>config_id</tt> repeatedly until it does not match any known ECHConfig.</t>
        <t>It is not necessary for <tt>config_id</tt> values across different client-facing
servers to be distinct. A backend server may be hosted behind two different
client-facing servers with colliding <tt>config_id</tt> values without any performance
impact. Values may also be reused if the previous ECHConfig is no longer in the
known set.</t>
      </section>
      <section anchor="config-extensions">
        <name>Configuration Extensions</name>
        <t>ECH configuration extensions are used to provide room for additional
functionality as needed. See <xref target="config-extensions-guidance"/> for guidance on
which types of extensions are appropriate for this structure.</t>
        <t>The format is as defined in <xref target="ech-configuration"/> and mirrors
<xref section="4.2" sectionFormat="of" target="RFC8446"/>. However, ECH configuration extension types are
maintained by IANA as described in <xref target="config-extensions-iana"/>.
ECH configuration extensions follow the same interpretation rules as TLS
extensions: extensions MAY appear in any order, but there MUST NOT be more
than one extension of the same type in the extensions block. Unlike TLS
extensions, an extension can be tagged as mandatory by using an extension type
codepoint with the high order bit set to 1.</t>
        <t>Clients MUST parse the extension list and check for unsupported mandatory
extensions. If an unsupported mandatory extension is present, clients MUST
ignore the <tt>ECHConfig</tt>.</t>
      </section>
    </section>
    <section anchor="encrypted-client-hello">
      <name>The "encrypted_client_hello" Extension</name>
      <t>To offer ECH, the client sends an "encrypted_client_hello" extension in the
ClientHelloOuter. When it does, it MUST also send the extension in
ClientHelloInner.</t>
      <artwork><![CDATA[
    enum {
       encrypted_client_hello(0xfe0d), (65535)
    } ExtensionType;
]]></artwork>
      <t>The payload of the extension has the following structure:</t>
      <artwork><![CDATA[
    enum { outer(0), inner(1) } ECHClientHelloType;

    struct {
       ECHClientHelloType type;
       select (ECHClientHello.type) {
           case outer:
               HpkeSymmetricCipherSuite cipher_suite;
               uint8 config_id;
               opaque enc<0..2^16-1>;
               opaque payload<1..2^16-1>;
           case inner:
               Empty;
       };
    } ECHClientHello;
]]></artwork>
      <t>The outer extension uses the <tt>outer</tt> variant and the inner extension uses the
<tt>inner</tt> variant. The inner extension has an empty payload, which is included
because TLS servers are not allowed to provide extensions in ServerHello
which were not included in ClientHello. The outer extension has the following
fields:</t>
      <dl>
        <dt>config_id</dt>
        <dd>
          <t>The ECHConfigContents.key_config.config_id for the chosen ECHConfig.</t>
        </dd>
        <dt>cipher_suite</dt>
        <dd>
          <t>The cipher suite used to encrypt ClientHelloInner. This MUST match a value
provided in the corresponding <tt>ECHConfigContents.cipher_suites</tt> list.</t>
        </dd>
        <dt>enc</dt>
        <dd>
          <t>The HPKE encapsulated key, used by servers to decrypt the corresponding
<tt>payload</tt> field. This field is empty in a ClientHelloOuter sent in response to
HelloRetryRequest.</t>
        </dd>
        <dt>payload</dt>
        <dd>
          <t>The serialized and encrypted EncodedClientHelloInner structure, encrypted
using HPKE as described in <xref target="real-ech"/>.</t>
        </dd>
      </dl>
      <t>When a client offers the <tt>outer</tt> version of an "encrypted_client_hello"
extension, the server MAY include an "encrypted_client_hello" extension in its
EncryptedExtensions message, as described in <xref target="client-facing-server"/>, with the
following payload:</t>
      <artwork><![CDATA[
    struct {
       ECHConfigList retry_configs;
    } ECHEncryptedExtensions;
]]></artwork>
      <t>The response is valid only when the server used the ClientHelloOuter. If the
server sent this extension in response to the <tt>inner</tt> variant, then the client
MUST abort with an "unsupported_extension" alert.</t>
      <dl>
        <dt>retry_configs</dt>
        <dd>
          <t>An ECHConfigList structure containing one or more ECHConfig structures, in
decreasing order of preference, to be used by the client as described in
<xref target="rejected-ech"/>. These are known as the server's "retry configurations".</t>
        </dd>
      </dl>
      <t>Finally, when the client offers the "encrypted_client_hello", if the payload is
the <tt>inner</tt> variant and the server responds with HelloRetryRequest, it MUST
include an "encrypted_client_hello" extension with the following payload:</t>
      <artwork><![CDATA[
    struct {
       opaque confirmation[8];
    } ECHHelloRetryRequest;
]]></artwork>
      <t>The value of ECHHelloRetryRequest.confirmation is set to
<tt>hrr_accept_confirmation</tt> as described in <xref target="backend-server-hrr"/>.</t>
      <t>This document also defines the "ech_required" alert, which the client MUST send
when it offered an "encrypted_client_hello" extension that was not accepted by
the server. (See <xref target="alerts"/>.)</t>
      <section anchor="encoding-inner">
        <name>Encoding the ClientHelloInner</name>
        <t>Before encrypting, the client pads and optionally compresses ClientHelloInner
into a EncodedClientHelloInner structure, defined below:</t>
        <artwork><![CDATA[
    struct {
        ClientHello client_hello;
        uint8 zeros[length_of_padding];
    } EncodedClientHelloInner;
]]></artwork>
        <t>The <tt>client_hello</tt> field is computed by first making a copy of ClientHelloInner
and setting the <tt>legacy_session_id</tt> field to the empty string. In TLS, this
field uses the ClientHello structure defined in <xref section="4.1.2" sectionFormat="of" target="RFC8446"/>.
In DTLS, it uses the ClientHello structured defined in
<xref section="5.3" sectionFormat="of" target="RFC9147"/>. This does not include Handshake structure's
four-byte header in TLS, nor twelve-byte header in DTLS. The <tt>zeros</tt> field MUST
be all zeroes of length <tt>length_of_padding</tt> (see <xref target="padding"/>).</t>
        <t>Repeating large extensions, such as "key_share" with post-quantum algorithms,
between ClientHelloInner and ClientHelloOuter can lead to excessive size. To
reduce the size impact, the client MAY substitute extensions which it knows
will be duplicated in ClientHelloOuter. It does so by removing and replacing
extensions from EncodedClientHelloInner with a single "ech_outer_extensions"
extension, defined as follows:</t>
        <artwork><![CDATA[
    enum {
       ech_outer_extensions(0xfd00), (65535)
    } ExtensionType;

    ExtensionType OuterExtensions<2..254>;
]]></artwork>
        <t>OuterExtensions contains the removed ExtensionType values. Each value references
the matching extension in ClientHelloOuter. The values MUST be ordered
contiguously in ClientHelloInner, and the "ech_outer_extensions" extension MUST
be inserted in the corresponding position in EncodedClientHelloInner.
Additionally, the extensions MUST appear in ClientHelloOuter in the same
relative order. However, there is no requirement that they be contiguous. For
example, OuterExtensions may contain extensions A, B, C, while ClientHelloOuter
contains extensions A, D, B, C, E, F.</t>
        <t>The "ech_outer_extensions" extension can only be included in
EncodedClientHelloInner, and MUST NOT appear in either ClientHelloOuter or
ClientHelloInner.</t>
        <t>Finally, the client pads the message by setting the <tt>zeros</tt> field to a byte
string whose contents are all zeros and whose length is the amount of padding
to add. <xref target="padding"/> describes a recommended padding scheme.</t>
        <t>The client-facing server computes ClientHelloInner by reversing this process.
First it parses EncodedClientHelloInner, interpreting all bytes after
<tt>client_hello</tt> as padding. If any padding byte is non-zero, the server MUST
abort the connection with an "illegal_parameter" alert.</t>
        <t>Next it makes a copy of the <tt>client_hello</tt> field and copies the
<tt>legacy_session_id</tt> field from ClientHelloOuter. It then looks for an
"ech_outer_extensions" extension. If found, it replaces the extension with the
corresponding sequence of extensions in the ClientHelloOuter. The server MUST
abort the connection with an "illegal_parameter" alert if any of the following
are true:</t>
        <ul spacing="normal">
          <li>
            <t>Any referenced extension is missing in ClientHelloOuter.</t>
          </li>
          <li>
            <t>Any extension is referenced in OuterExtensions more than once.</t>
          </li>
          <li>
            <t>"encrypted_client_hello" is referenced in OuterExtensions.</t>
          </li>
          <li>
            <t>The extensions in ClientHelloOuter corresponding to those in OuterExtensions
do not occur in the same order.</t>
          </li>
        </ul>
        <t>These requirements prevent an attacker from performing a packet amplification
attack, by crafting a ClientHelloOuter which decompresses to a much larger
ClientHelloInner. This is discussed further in <xref target="decompression-amp"/>.</t>
        <t>Implementations SHOULD construct the ClientHelloInner in linear
time. Quadratic time implementations (such as may happen via naive
copying) create a denial of service risk.
<xref target="linear-outer-extensions"/> describes a linear-time procedure that may be used
for this purpose.</t>
      </section>
      <section anchor="authenticating-outer">
        <name>Authenticating the ClientHelloOuter</name>
        <t>To prevent a network attacker from modifying the <tt>ClientHelloOuter</tt>
while keeping the same encrypted <tt>ClientHelloInner</tt>
(see <xref target="flow-clienthello-malleability"/>), ECH authenticates ClientHelloOuter
by passing ClientHelloOuterAAD as the associated data for HPKE sealing
and opening operations. The ClientHelloOuterAAD is a serialized
ClientHello structure, defined in <xref section="4.1.2" sectionFormat="of" target="RFC8446"/> for TLS and
<xref section="5.3" sectionFormat="of" target="RFC9147"/> for DTLS, which matches the ClientHelloOuter except
that the <tt>payload</tt> field of the "encrypted_client_hello" is replaced with a byte
string of the same length but whose contents are zeros. This value does not
include Handshake structure's four-byte header in TLS nor twelve-byte header in
DTLS.</t>
      </section>
    </section>
    <section anchor="client-behavior">
      <name>Client Behavior</name>
      <t>Clients that implement the ECH extension behave in one of two ways: either they
offer a real ECH extension, as described in <xref target="real-ech"/>; or they send a
Generate Random Extensions And Sustain Extensibility (GREASE) <xref target="RFC8701"/>
ECH extension, as described in <xref target="grease-ech"/>. Clients of the latter type do not
negotiate ECH. Instead, they generate a dummy ECH extension that is ignored by
the server. (See <xref target="dont-stick-out"/> for an explanation.) The client offers ECH
if it is in possession of a compatible ECH configuration and sends GREASE ECH
otherwise.</t>
      <section anchor="real-ech">
        <name>Offering ECH</name>
        <t>To offer ECH, the client first chooses a suitable ECHConfig from the server's
ECHConfigList. To determine if a given <tt>ECHConfig</tt> is suitable, it checks that
it supports the KEM algorithm identified by <tt>ECHConfig.contents.kem_id</tt>, at
least one KDF/AEAD algorithm identified by <tt>ECHConfig.contents.cipher_suites</tt>,
and the version of ECH indicated by <tt>ECHConfig.contents.version</tt>. Once a
suitable configuration is found, the client selects the cipher suite it will
use for encryption. It MUST NOT choose a cipher suite or version not advertised
by the configuration. If no compatible configuration is found, then the client
SHOULD proceed as described in <xref target="grease-ech"/>.</t>
        <t>Next, the client constructs the ClientHelloInner message just as it does a
standard ClientHello, with the exception of the following rules:</t>
        <ol spacing="normal" type="1"><li>
            <t>It MUST NOT offer to negotiate TLS 1.2 or below. This is necessary to ensure
the backend server does not negotiate a TLS version that is incompatible with
ECH.</t>
          </li>
          <li>
            <t>It MUST NOT offer to resume any session for TLS 1.2 and below.</t>
          </li>
          <li>
            <t>If it intends to compress any extensions (see <xref target="encoding-inner"/>), it MUST
order those extensions consecutively.</t>
          </li>
          <li>
            <t>It MUST include the "encrypted_client_hello" extension of type <tt>inner</tt> as
described in <xref target="encrypted-client-hello"/>. (This requirement is not applicable
when the "encrypted_client_hello" extension is generated as described in
<xref target="grease-ech"/>.)</t>
          </li>
        </ol>
        <t>The client then constructs EncodedClientHelloInner as described in
<xref target="encoding-inner"/>. It also computes an HPKE encryption context and <tt>enc</tt> value
as:</t>
        <artwork><![CDATA[
    pkR = DeserializePublicKey(ECHConfig.contents.public_key)
    enc, context = SetupBaseS(pkR,
                              "tls ech" || 0x00 || ECHConfig)
]]></artwork>
        <t>Next, it constructs a partial ClientHelloOuterAAD as it does a standard
ClientHello, with the exception of the following rules:</t>
        <ol spacing="normal" type="1"><li>
            <t>It MUST offer to negotiate TLS 1.3 or above.</t>
          </li>
          <li>
            <t>If it compressed any extensions in EncodedClientHelloInner, it MUST copy the
corresponding extensions from ClientHelloInner. The copied extensions
additionally MUST be in the same relative order as in ClientHelloInner.</t>
          </li>
          <li>
            <t>It MUST copy the legacy_session_id field from ClientHelloInner. This
allows the server to echo the correct session ID for TLS 1.3's compatibility
mode (see <xref section="D.4" sectionFormat="of" target="RFC8446"/>) when ECH is negotiated.</t>
          </li>
          <li>
            <t>It MAY copy any other field from the ClientHelloInner except
ClientHelloInner.random. Instead, It MUST generate a fresh
ClientHelloOuter.random using a secure random number generator. (See
<xref target="flow-client-reaction"/>.)</t>
          </li>
          <li>
            <t>It SHOULD place the value of <tt>ECHConfig.contents.public_name</tt> in the
"server_name" extension. Clients that do not follow this step, or place a
different value in the "server_name" extension, risk breaking the retry
mechanism described in <xref target="rejected-ech"/> or failing to interoperate with
servers that require this step to be done; see <xref target="client-facing-server"/>.</t>
          </li>
          <li>
            <t>When the client offers the "pre_shared_key" extension in ClientHelloInner, it
SHOULD also include a GREASE "pre_shared_key" extension in ClientHelloOuter,
generated in the manner described in <xref target="grease-psk"/>. The client MUST NOT use
this extension to advertise a PSK to the client-facing server. (See
<xref target="flow-clienthello-malleability"/>.) When the client includes a GREASE
"pre_shared_key" extension, it MUST also copy the "psk_key_exchange_modes"
from the ClientHelloInner into the ClientHelloOuter.</t>
          </li>
          <li>
            <t>When the client offers the "early_data" extension in ClientHelloInner, it
MUST also include the "early_data" extension in ClientHelloOuter. This
allows servers that reject ECH and use ClientHelloOuter to safely ignore any
early data sent by the client per <xref section="4.2.10" sectionFormat="comma" target="RFC8446"/>.</t>
          </li>
        </ol>
        <t>Note that these rules may change in the presence of an application profile
specifying otherwise.</t>
        <t>The client might duplicate non-sensitive extensions in both messages. However,
implementations need to take care to ensure that sensitive extensions are not
offered in the ClientHelloOuter. See <xref target="outer-clienthello"/> for additional
guidance.</t>
        <t>Finally, the client encrypts the EncodedClientHelloInner with the above values,
as described in <xref target="encrypting-clienthello"/>, to construct a ClientHelloOuter. It
sends this to the server, and processes the response as described in
<xref target="determining-ech-acceptance"/>.</t>
        <section anchor="encrypting-clienthello">
          <name>Encrypting the ClientHello</name>
          <t>Given an EncodedClientHelloInner, an HPKE encryption context and <tt>enc</tt> value,
and a partial ClientHelloOuterAAD, the client constructs a ClientHelloOuter as
follows.</t>
          <t>First, the client determines the length L of encrypting EncodedClientHelloInner
with the selected HPKE AEAD. This is typically the sum of the plaintext length
and the AEAD tag length. The client then completes the ClientHelloOuterAAD with
an "encrypted_client_hello" extension. This extension value contains the outer
variant of ECHClientHello with the following fields:</t>
          <ul spacing="normal">
            <li>
              <t><tt>config_id</tt>, the identifier corresponding to the chosen ECHConfig structure;</t>
            </li>
            <li>
              <t><tt>cipher_suite</tt>, the client's chosen cipher suite;</t>
            </li>
            <li>
              <t><tt>enc</tt>, as given above; and</t>
            </li>
            <li>
              <t><tt>payload</tt>, a placeholder byte string containing L zeros.</t>
            </li>
          </ul>
          <t>If configuration identifiers (see <xref target="ignored-configs"/>) are to be
ignored, <tt>config_id</tt> SHOULD be set to a randomly generated byte in the
first ClientHelloOuter and, in the event of a HelloRetryRequest (HRR),
MUST be left unchanged for the second ClientHelloOuter.</t>
          <t>The client serializes this structure to construct the ClientHelloOuterAAD.
It then computes the final payload as:</t>
          <artwork><![CDATA[
    final_payload = context.Seal(ClientHelloOuterAAD,
                                 EncodedClientHelloInner)
]]></artwork>
          <t>Including <tt>ClientHelloOuterAAD</tt> as the HPKE AAD binds the <tt>ClientHelloOuter</tt>
to the <tt>ClientHelloInner</tt>, thus preventing attackers from modifying
<tt>ClientHelloOuter</tt> while keeping the same <tt>ClientHelloInner</tt>, as described in
<xref target="flow-clienthello-malleability"/>.</t>
          <t>Finally, the client replaces <tt>payload</tt> with <tt>final_payload</tt> to obtain
ClientHelloOuter. The two values have the same length, so it is not necessary
to recompute length prefixes in the serialized structure.</t>
          <t>Note this construction requires the "encrypted_client_hello" be computed after
all other extensions. This is possible because the ClientHelloOuter's
"pre_shared_key" extension is either omitted, or uses a random binder
(<xref target="grease-psk"/>).</t>
        </section>
        <section anchor="grease-psk">
          <name>GREASE PSK</name>
          <t>When offering ECH, the client is not permitted to advertise PSK identities in
the ClientHelloOuter. However, the client can send a "pre_shared_key" extension
in the ClientHelloInner. In this case, when resuming a session with the client,
the backend server sends a "pre_shared_key" extension in its ServerHello. This
would appear to a network observer as if the server were sending this
extension without solicitation, which would violate the extension rules
described in <xref target="RFC8446"/>. When offering a PSK in ClientHelloInner,
clients SHOULD send a GREASE "pre_shared_key" extension in the
ClientHelloOuter to make it appear to the network as if the extension were
negotiated properly.</t>
          <t>The client generates the extension payload by constructing an <tt>OfferedPsks</tt>
structure (see <xref section="4.2.11" sectionFormat="comma" target="RFC8446"/>) as follows. For each PSK identity
advertised in the ClientHelloInner, the client generates a random PSK identity
with the same length. It also generates a random, 32-bit, unsigned integer to
use as the <tt>obfuscated_ticket_age</tt>. Likewise, for each inner PSK binder, the
client generates a random string of the same length.</t>
          <t>Per the rules of <xref target="real-ech"/>, the server is not permitted to resume a
connection in the outer handshake. If ECH is rejected and the client-facing
server replies with a "pre_shared_key" extension in its ServerHello, then the
client MUST abort the handshake with an "illegal_parameter" alert.</t>
        </section>
        <section anchor="padding">
          <name>Recommended Padding Scheme</name>
          <t>If the ClientHelloInner is encrypted without padding, then the length of
the <tt>ClientHelloOuter.payload</tt> can leak information about <tt>ClientHelloInner</tt>.
In order to prevent this the <tt>EncodedClientHelloInner</tt> structure
has a padding field. This section describes a deterministic mechanism for
computing the required amount of padding based on the following
observation: individual extensions can reveal sensitive information through
their length. Thus, each extension in the inner ClientHello may require
different amounts of padding. This padding may be fully determined by the
client's configuration or may require server input.</t>
          <t>By way of example, clients typically support a small number of application
profiles. For instance, a browser might support HTTP with ALPN values
["http/1.1", "h2"] and WebRTC media with ALPNs ["webrtc", "c-webrtc"]. Clients
SHOULD pad this extension by rounding up to the total size of the longest ALPN
extension across all application profiles. The target padding length of most
ClientHello extensions can be computed in this way.</t>
          <t>In contrast, clients do not know the longest SNI value in the client-facing
server's anonymity set without server input. Clients SHOULD use the ECHConfig's
<tt>maximum_name_length</tt> field as follows, where L is the <tt>maximum_name_length</tt>
value.</t>
          <ol spacing="normal" type="1"><li>
              <t>If the ClientHelloInner contained a "server_name" extension with a name of
length D, add max(0, L - D) bytes of padding.</t>
            </li>
            <li>
              <t>If the ClientHelloInner did not contain a "server_name" extension (e.g., if
the client is connecting to an IP address), add L + 9 bytes of padding. This
is the length of a "server_name" extension with an L-byte name.</t>
            </li>
          </ol>
          <t>Finally, the client SHOULD pad the entire message as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let L be the length of the EncodedClientHelloInner with all the padding
computed so far.</t>
            </li>
            <li>
              <t>Let N = 31 - ((L - 1) % 32) and add N bytes of padding.</t>
            </li>
          </ol>
          <t>This rounds the length of EncodedClientHelloInner up to a multiple of 32 bytes,
reducing the set of possible lengths across all clients.</t>
          <t>In addition to padding ClientHelloInner, clients and servers will also need to
pad all other handshake messages that have sensitive-length fields. For example,
if a client proposes ALPN values in ClientHelloInner, the server-selected value
will be returned in an EncryptedExtension, so that handshake message also needs
to be padded using TLS record layer padding.</t>
        </section>
        <section anchor="determining-ech-acceptance">
          <name>Determining ECH Acceptance</name>
          <t>As described in <xref target="server-behavior"/>, the server may either accept ECH and use
ClientHelloInner or reject it and use ClientHelloOuter. This is determined by
the server's initial message.</t>
          <t>If the message does not negotiate TLS 1.3 or higher, the server has rejected
ECH. Otherwise, it is either a ServerHello or HelloRetryRequest.</t>
          <t>If the message is a ServerHello, the client computes <tt>accept_confirmation</tt> as
described in <xref target="backend-server"/>. If this value matches the last 8 bytes of
<tt>ServerHello.random</tt>, the server has accepted ECH. Otherwise, it has rejected
ECH.</t>
          <t>If the message is a HelloRetryRequest, the client checks for the
"encrypted_client_hello" extension. If none is found, the server has rejected
ECH. Otherwise, if it has a length other than 8, the client aborts the handshake
with a "decode_error" alert. Otherwise, the client computes
<tt>hrr_accept_confirmation</tt> as described in <xref target="backend-server-hrr"/>. If this value
matches the extension payload, the server has accepted ECH. Otherwise, it has
rejected ECH.</t>
          <t>If the server accepts ECH, the client handshakes with ClientHelloInner as
described in <xref target="accepted-ech"/>. Otherwise, the client handshakes with
ClientHelloOuter as described in <xref target="rejected-ech"/>.</t>
        </section>
        <section anchor="accepted-ech">
          <name>Handshaking with ClientHelloInner</name>
          <t>If the server accepts ECH, the client proceeds with the connection as in
<xref target="RFC8446"/>, with the following modifications:</t>
          <t>The client behaves as if it had sent ClientHelloInner as the ClientHello. That
is, it evaluates the handshake using the ClientHelloInner's preferences, and,
when computing the transcript hash (<xref section="4.4.1" sectionFormat="of" target="RFC8446"/>), it uses
ClientHelloInner as the first ClientHello.</t>
          <t>If the server responds with a HelloRetryRequest, the client computes the updated
ClientHello message as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>It computes a second ClientHelloInner based on the first ClientHelloInner, as
in <xref section="4.1.4" sectionFormat="of" target="RFC8446"/>. The ClientHelloInner's
"encrypted_client_hello" extension is left unmodified.</t>
            </li>
            <li>
              <t>It constructs EncodedClientHelloInner as described in <xref target="encoding-inner"/>.</t>
            </li>
            <li>
              <t>It constructs a second partial ClientHelloOuterAAD message. This message MUST
be syntactically valid. The extensions MAY be copied from the original
ClientHelloOuter unmodified, or omitted. If not sensitive, the client MAY
copy updated extensions from the second ClientHelloInner for compression.</t>
            </li>
            <li>
              <t>It encrypts EncodedClientHelloInner as described in
<xref target="encrypting-clienthello"/>, using the second partial ClientHelloOuterAAD, to
obtain a second ClientHelloOuter. It reuses the original HPKE encryption
context computed in <xref target="real-ech"/> and uses the empty string for <tt>enc</tt>.  </t>
              <t>
The HPKE context maintains a sequence number, so this operation internally
uses a fresh nonce for each AEAD operation. Reusing the HPKE context avoids
an attack described in <xref target="flow-hrr-hijack"/>.</t>
            </li>
          </ol>
          <t>The client then sends the second ClientHelloOuter to the server. However, as
above, it uses the second ClientHelloInner for preferences, and both the
ClientHelloInner messages for the transcript hash. Additionally, it checks the
resulting ServerHello for ECH acceptance as in <xref target="determining-ech-acceptance"/>.
If the ServerHello does not also indicate ECH acceptance, the client MUST
terminate the connection with an "illegal_parameter" alert.</t>
        </section>
        <section anchor="rejected-ech">
          <name>Handshaking with ClientHelloOuter</name>
          <t>If the server rejects ECH, the client proceeds with the handshake,
authenticating for ECHConfig.contents.public_name as described in
<xref target="auth-public-name"/>. If authentication or the handshake fails, the client MUST
return a failure to the calling application. It MUST NOT use the retry
configurations. It MUST NOT treat this as a secure signal to
disable ECH.</t>
          <t>If the server supplied an "encrypted_client_hello" extension in its
EncryptedExtensions message, the client MUST check that it is syntactically
valid and the client MUST abort the connection with a "decode_error" alert
otherwise. If an earlier TLS version was negotiated, the client MUST NOT enable
the False Start optimization <xref target="RFC7918"/> for this handshake. If both
authentication and the handshake complete successfully, the client MUST perform
the processing described below then abort the connection with an "ech_required"
alert before sending any application data to the server.</t>
          <t>If the server provided "retry_configs" and if at least one of the
values contains a version supported by the client, the client can
regard the ECH configuration as securely replaced by the server. It
SHOULD retry the handshake with a new transport connection, using the
retry configurations supplied by the server.</t>
          <t>Clients can implement a new transport connection in a way that best
suits their deployment. For example, clients can reuse the same IP address
when establishing the new transport connection or they can choose to use a
different IP address if provided with options from DNS. ECH does not mandate
any specific implementation choices when establishing this new connection.</t>
          <t>The retry configurations are meant to be used for retried connections. Further
use of retry configurations could yield a tracking vector. In settings where
the client will otherwise already let the server track the client, e.g.,
because the client will send cookies to the server in parallel connections,
using the retry configurations for these parallel connections does not
introduce a new tracking vector.</t>
          <t>If none of the values provided in "retry_configs" contains a supported
version, the server did not supply an "encrypted_client_hello"
extension in its EncryptedExtensions message, or an earlier TLS
version was negotiated, the client can regard ECH as securely disabled
by the server, and it SHOULD retry the handshake with a new transport
connection and ECH disabled.</t>
          <t>Clients SHOULD NOT accept "retry_config" in response to a connection
initiated in response to a "retry_config".  Sending a "retry_config"
in this situation is a signal that the server is misconfigured, e.g.,
the server might have multiple inconsistent configurations so that the
client reached a node with configuration A in the first connection and
a node with configuration B in the second. Note that this guidance
does not apply to the cases in the previous paragraph where the server
has securely disabled ECH.</t>
          <t>If a client does not retry, it MUST report an error to the calling
application.</t>
        </section>
        <section anchor="auth-public-name">
          <name>Authenticating for the Public Name</name>
          <t>When the server rejects ECH, it continues with the handshake using the plaintext
"server_name" extension instead (see <xref target="server-behavior"/>). Clients that offer
ECH then authenticate the connection with the public name, as follows:</t>
          <ul spacing="normal">
            <li>
              <t>The client MUST verify that the certificate is valid for
ECHConfig.contents.public_name. If invalid, it MUST abort the connection with
the appropriate alert.</t>
            </li>
            <li>
              <t>If the server requests a client certificate, the client MUST respond with an
empty Certificate message, denoting no client certificate.</t>
            </li>
          </ul>
          <t>In verifying the client-facing server certificate, the client MUST
interpret the public name as a DNS-based reference identity
<xref target="RFC6125"/>. Clients that incorporate DNS names and IP addresses into
the same syntax (e.g. <xref section="7.4" sectionFormat="of" target="RFC3986"/> and <xref target="WHATWG-IPV4"/>)
MUST reject names that would be interpreted as IPv4 addresses.
Clients that enforce this by checking ECHConfig.contents.public_name
do not need to repeat the check at this layer.</t>
          <t>Note that authenticating a connection for the public name does not authenticate
it for the origin. The TLS implementation MUST NOT report such connections as
successful to the application. It additionally MUST ignore all session tickets
and session IDs presented by the server. These connections are only used to
trigger retries, as described in <xref target="rejected-ech"/>. This may be implemented, for
instance, by reporting a failed connection with a dedicated error code.</t>
          <t>Prior to attempting a connection, a client SHOULD validate the <tt>ECHConfig</tt>.
Clients SHOULD ignore any
<tt>ECHConfig</tt> structure with a public_name that is not a valid host name in
preferred name syntax (see <xref section="2" sectionFormat="of" target="DNS-TERMS"/>).  That is, to be
valid, the public_name needs to be a dot-separated sequence of LDH labels, as
defined in <xref section="2.3.1" sectionFormat="of" target="RFC5890"/>, where:</t>
          <ul spacing="normal">
            <li>
              <t>the sequence does not begin or end with an ASCII dot, and</t>
            </li>
            <li>
              <t>all labels are at most 63 octets.</t>
            </li>
          </ul>
          <t>Clients additionally SHOULD ignore the structure if the final LDH
label either consists of all ASCII digits (i.e. '0' through '9') or is
"0x" or "0X" followed by some, possibly empty, sequence of ASCII
hexadecimal digits (i.e. '0' through '9', 'a' through 'f', and 'A'
through 'F'). This avoids public_name values that may be interpreted
as IPv4 literals.</t>
        </section>
        <section anchor="impact-of-retry-on-future-connections">
          <name>Impact of Retry on Future Connections</name>
          <t>Clients MAY use information learned from a rejected ECH for future
connections to avoid repeatedly connecting to the same server and
being forced to retry. However, they MUST handle ECH rejection for
those connections as if it were a fresh connection, rather than
enforcing the single retry limit from <xref target="rejected-ech"/>. The reason
for this requirement is that if the server sends a "retry_config"
and then immediately rejects the resulting connection, it is
most likely misconfigured. However, if the server sends a "retry_config"
and then the client tries to use that to connect some time
later, it is possible that the server has been forced to
change its configuration again and is now trying to recover.</t>
          <t>Any persisted information MUST be associated with the ECHConfig source
used to bootstrap the connection, such as a DNS SVCB ServiceMode record
<xref target="ECH-IN-DNS"/>. Clients MUST limit any sharing of persisted ECH-related
state to connections that use the same ECHConfig source. Otherwise, it
might become possible for the client to have the wrong public name for
the server, making recovery impossible.</t>
          <t>ECHConfigs learned from ECH rejection can be used as a tracking
vector. Clients SHOULD impose the same lifetime and scope restrictions
that they apply to other server-based
tracking vectors such as PSKs.</t>
          <t>In general, the safest way for clients to minimize ECH retries is to
comply with any freshness rules (e.g., DNS TTLs) imposed by the ECH
configuration.</t>
        </section>
      </section>
      <section anchor="grease-ech">
        <name>GREASE ECH</name>
        <section anchor="client-greasing">
          <name>Client Greasing</name>
          <t>If the client attempts to connect to a server and does not have an ECHConfig
structure available for the server, it SHOULD send a GREASE <xref target="RFC8701"/>
"encrypted_client_hello" extension in the first ClientHello as follows:</t>
          <ul spacing="normal">
            <li>
              <t>Set the <tt>config_id</tt> field to a random byte.</t>
            </li>
            <li>
              <t>Set the <tt>cipher_suite</tt> field to a supported HpkeSymmetricCipherSuite. The
selection SHOULD vary to exercise all supported configurations, but MAY be
held constant for successive connections to the same server in the same
session.</t>
            </li>
            <li>
              <t>Set the <tt>enc</tt> field to a randomly-generated valid encapsulated public key
output by the HPKE KEM.</t>
            </li>
            <li>
              <t>Set the <tt>payload</tt> field to a randomly-generated string of L+C bytes, where C
is the ciphertext expansion of the selected AEAD scheme and L is the size of
the EncodedClientHelloInner the client would compute when offering ECH, padded
according to <xref target="padding"/>.</t>
            </li>
          </ul>
          <t>If sending a second ClientHello in response to a HelloRetryRequest, the
client copies the entire "encrypted_client_hello" extension from the first
ClientHello. The identical value will reveal to an observer that the value of
"encrypted_client_hello" was fake, but this only occurs if there is a
HelloRetryRequest.</t>
          <t>If the server sends an "encrypted_client_hello" extension in either
HelloRetryRequest or EncryptedExtensions, the client MUST check the extension
syntactically and abort the connection with a "decode_error" alert if it is
invalid. It otherwise ignores the extension. It MUST NOT save the
"retry_configs" value in EncryptedExtensions.</t>
          <t>Offering a GREASE extension is not considered offering an encrypted ClientHello
for purposes of requirements in <xref target="real-ech"/>. In particular, the client
MAY offer to resume sessions established without ECH.</t>
        </section>
        <section anchor="server-greasing">
          <name>Server Greasing</name>
          <t><xref target="config-extensions-iana"/> describes a set of Reserved extensions
which will never be registered. These can be used by servers to
"grease" the contents of the ECH configuration, as inspired by
<xref target="RFC8701"/>. This helps ensure clients process ECH extensions
correctly. When constructing ECH configurations, servers SHOULD
randomly select from reserved values with the high-order bit
clear. Correctly-implemented client will ignore those extensions.</t>
          <t>The reserved values with the high-order bit set are mandatory, as
defined in <xref target="config-extensions"/>. Servers SHOULD randomly select from
these values and include them in extraneous ECH configurations.
Correctly-implemented clients will ignore these configurations because
they do not recognize the mandatory extension.  Servers SHOULD ensure
that any client using these configurations encounters a warning or error
message.  This can be accomplished in several ways, including:</t>
          <ul spacing="normal">
            <li>
              <t>By giving the extraneous configurations distinctive config IDs or
public names, and rejecting the TLS connection or inserting an
application-level warning message when these are observed.</t>
            </li>
            <li>
              <t>By giving the extraneous configurations an invalid public
key and a public name not associated with the server, so that
the initial ClientHelloOuter will not be decryptable and
the server cannot perform the recovery flow described
in <xref target="rejected-ech"/>.</t>
            </li>
          </ul>
        </section>
      </section>
    </section>
    <section anchor="server-behavior">
      <name>Server Behavior</name>
      <t>As described in <xref target="topologies"/>, servers can play two roles, either as
the client-facing server or as the back-end server.
Depending on the server role, the <tt>ECHClientHello</tt> will be different:</t>
      <ul spacing="normal">
        <li>
          <t>A client-facing server expects a <tt>ECHClientHello.type</tt> of <tt>outer</tt>, and
proceeds as described in <xref target="client-facing-server"/> to extract a
ClientHelloInner, if available.</t>
        </li>
        <li>
          <t>A backend server expects a <tt>ECHClientHello.type</tt> of <tt>inner</tt>, and
proceeds as described in <xref target="backend-server"/>.</t>
        </li>
      </ul>
      <t>In split mode, a client-facing server which receives a <tt>ClientHello</tt>
with <tt>ECHClientHello.type</tt> of <tt>inner</tt> MUST abort with an
"illegal_parameter" alert. Similarly, in split mode, a backend server
which receives a <tt>ClientHello</tt> with <tt>ECHClientHello.type</tt> of <tt>outer</tt>
MUST abort with an "illegal_parameter" alert.</t>
      <t>In shared mode, a server plays both roles, first decrypting the
<tt>ClientHelloOuter</tt> and then using the contents of the
<tt>ClientHelloInner</tt>.  A shared mode server which receives a
<tt>ClientHello</tt> with <tt>ECHClientHello.type</tt> of <tt>inner</tt> MUST abort with an
"illegal_parameter" alert, because such a <tt>ClientHello</tt> should never
be received directly from the network.</t>
      <t>If <tt>ECHClientHello.type</tt> is not a valid <tt>ECHClientHelloType</tt>, then
the server MUST abort with an "illegal_parameter" alert.</t>
      <t>If the "encrypted_client_hello" is not present, then the server completes the
handshake normally, as described in <xref target="RFC8446"/>.</t>
      <section anchor="client-facing-server">
        <name>Client-Facing Server</name>
        <t>Upon receiving an "encrypted_client_hello" extension in an initial
ClientHello, the client-facing server determines if it will accept ECH, prior
to negotiating any other TLS parameters. Note that successfully decrypting the
extension will result in a new ClientHello to process, so even the client's TLS
version preferences may have changed.</t>
        <t>First, the server collects a set of candidate ECHConfig values. This list is
determined by one of the two following methods:</t>
        <ol spacing="normal" type="1"><li>
            <t>Compare ECHClientHello.config_id against identifiers of each known ECHConfig
and select the ones that match, if any, as candidates.</t>
          </li>
          <li>
            <t>Collect all known ECHConfig values as candidates, with trial decryption
below determining the final selection.</t>
          </li>
        </ol>
        <t>Some uses of ECH, such as local discovery mode, may randomize the
ECHClientHello.config_id since it can be used as a tracking vector. In such
cases, the second method SHOULD be used for matching the ECHClientHello to a
known ECHConfig. See <xref target="ignored-configs"/>. Unless specified by the application
profile or otherwise externally configured, implementations MUST use the first
method.</t>
        <t>The server then iterates over the candidate ECHConfig values, attempting to
decrypt the "encrypted_client_hello" extension as follows.</t>
        <t>The server verifies that the ECHConfig supports the cipher suite indicated by
the ECHClientHello.cipher_suite and that the version of ECH indicated by the
client matches the ECHConfig.version. If not, the server continues to the next
candidate ECHConfig.</t>
        <t>Next, the server decrypts ECHClientHello.payload, using the private key skR
corresponding to ECHConfig, as follows:</t>
        <artwork><![CDATA[
    context = SetupBaseR(ECHClientHello.enc, skR,
                         "tls ech" || 0x00 || ECHConfig)
    EncodedClientHelloInner = context.Open(ClientHelloOuterAAD,
                                         ECHClientHello.payload)
]]></artwork>
        <t>ClientHelloOuterAAD is computed from ClientHelloOuter as described in
<xref target="authenticating-outer"/>. The <tt>info</tt> parameter to SetupBaseR is the
concatenation "tls ech", a zero byte, and the serialized ECHConfig. If
decryption fails, the server continues to the next candidate ECHConfig.
Otherwise, the server reconstructs ClientHelloInner from
EncodedClientHelloInner, as described in <xref target="encoding-inner"/>. It then stops
iterating over the candidate ECHConfig values.</t>
        <t>Once the server has chosen the correct ECHConfig, it MAY verify that the value
in the ClientHelloOuter "server_name" extension matches the value of
ECHConfig.contents.public_name, and abort with an "illegal_parameter" alert if
these do not match. This optional check allows the server to limit ECH
connections to only use the public SNI values advertised in its ECHConfigs.
The server MUST be careful not to unnecessarily reject connections if the same
ECHConfig id or keypair is used in multiple ECHConfigs with distinct public
names.</t>
        <t>Upon determining the ClientHelloInner, the client-facing server checks that the
message includes a well-formed "encrypted_client_hello" extension of type
<tt>inner</tt> and that it does not offer TLS 1.2 or below. If either of these checks
fails, the client-facing server MUST abort with an "illegal_parameter" alert.</t>
        <t>If these checks succeed, the client-facing server then forwards the
ClientHelloInner to the appropriate backend server, which proceeds as in
<xref target="backend-server"/>. If the backend server responds with a HelloRetryRequest, the
client-facing server forwards it, decrypts the client's second ClientHelloOuter
using the procedure in <xref target="client-facing-server-hrr"/>, and forwards the resulting
second ClientHelloInner. The client-facing server forwards all other TLS
messages between the client and backend server unmodified.</t>
        <t>Otherwise, if all candidate ECHConfig values fail to decrypt the extension, the
client-facing server MUST ignore the extension and proceed with the connection
using ClientHelloOuter, with the following modifications:</t>
        <ul spacing="normal">
          <li>
            <t>If sending a HelloRetryRequest, the server MAY include an
"encrypted_client_hello" extension with a payload of 8 random bytes; see
<xref target="dont-stick-out"/> for details.</t>
          </li>
          <li>
            <t>If the server is configured with any ECHConfigs, it MUST include the
"encrypted_client_hello" extension in its EncryptedExtensions with the
"retry_configs" field set to one or more ECHConfig structures with up-to-date
keys. Servers MAY supply multiple ECHConfig values of different versions.
This allows a server to support multiple versions at once.</t>
          </li>
        </ul>
        <t>Note that decryption failure could indicate a GREASE ECH extension (see
<xref target="grease-ech"/>), so it is necessary for servers to proceed with the connection
and rely on the client to abort if ECH was required. In particular, the
unrecognized value alone does not indicate a misconfigured ECH advertisement
(<xref target="misconfiguration"/>). Instead, servers can measure occurrences of the
"ech_required" alert to detect this case.</t>
        <section anchor="client-facing-server-hrr">
          <name>Sending HelloRetryRequest</name>
          <t>After sending or forwarding a HelloRetryRequest, the client-facing server does
not repeat the steps in <xref target="client-facing-server"/> with the second
ClientHelloOuter. Instead, it continues with the ECHConfig selection from the
first ClientHelloOuter as follows:</t>
          <t>If the client-facing server accepted ECH, it checks the second ClientHelloOuter
also contains the "encrypted_client_hello" extension. If not, it MUST abort the
handshake with a "missing_extension" alert. Otherwise, it checks that
ECHClientHello.cipher_suite and ECHClientHello.config_id are unchanged, and that
ECHClientHello.enc is empty. If not, it MUST abort the handshake with an
"illegal_parameter" alert.</t>
          <t>Finally, it decrypts the new ECHClientHello.payload as a second message with the
previous HPKE context:</t>
          <artwork><![CDATA[
    EncodedClientHelloInner = context.Open(ClientHelloOuterAAD,
                                         ECHClientHello.payload)
]]></artwork>
          <t>ClientHelloOuterAAD is computed as described in <xref target="authenticating-outer"/>, but
using the second ClientHelloOuter. If decryption fails, the client-facing
server MUST abort the handshake with a "decrypt_error" alert. Otherwise, it
reconstructs the second ClientHelloInner from the new EncodedClientHelloInner
as described in <xref target="encoding-inner"/>, using the second ClientHelloOuter for
any referenced extensions.</t>
          <t>The client-facing server then forwards the resulting ClientHelloInner to the
backend server. It forwards all subsequent TLS messages between the client and
backend server unmodified.</t>
          <t>If the client-facing server rejected ECH, or if the first ClientHello did not
include an "encrypted_client_hello" extension, the client-facing server
proceeds with the connection as usual. The server does not decrypt the
second ClientHello's ECHClientHello.payload value, if there is one.
Moreover, if the server is configured with any ECHConfigs, it MUST include the
"encrypted_client_hello" extension in its EncryptedExtensions with the
"retry_configs" field set to one or more ECHConfig structures with up-to-date
keys, as described in <xref target="client-facing-server"/>.</t>
          <t>Note that a client-facing server that forwards the first ClientHello cannot
include its own "cookie" extension if the backend server sends a
HelloRetryRequest.  This means that the client-facing server either needs to
maintain state for such a connection or it needs to coordinate with the backend
server to include any information it requires to process the second ClientHello.</t>
        </section>
      </section>
      <section anchor="backend-server">
        <name>Backend Server</name>
        <t>Upon receipt of an "encrypted_client_hello" extension of type <tt>inner</tt> in a
ClientHello, if the backend server negotiates TLS 1.3 or higher, then it MUST
confirm ECH acceptance to the client by computing its ServerHello as described
here.</t>
        <t>The backend server embeds in ServerHello.random a string derived from the inner
handshake. It begins by computing its ServerHello as usual, except the last 8
bytes of ServerHello.random are set to zero. It then computes the transcript
hash for ClientHelloInner up to and including the modified ServerHello, as
described in <xref section="4.4.1" sectionFormat="comma" target="RFC8446"/>. Let transcript_ech_conf denote the
output. Finally, the backend server overwrites the last 8 bytes of the
ServerHello.random with the following string:</t>
        <artwork><![CDATA[
   accept_confirmation = HKDF-Expand-Label(
      HKDF-Extract(0, ClientHelloInner.random),
      "ech accept confirmation",
      transcript_ech_conf,
      8)
]]></artwork>
        <t>where HKDF-Expand-Label is defined in <xref section="7.1" sectionFormat="comma" target="RFC8446"/>, "0" indicates a
string of Hash.length bytes set to zero, and Hash is the hash function used to
compute the transcript hash. In DTLS, the modified version of HKDF-Expand-Label
defined in <xref section="5.9" sectionFormat="comma" target="RFC9147"/> is used instead.</t>
        <t>The backend server MUST NOT perform this operation if it negotiated TLS 1.2 or
below. Note that doing so would overwrite the downgrade signal for TLS 1.3 (see
<xref section="4.1.3" sectionFormat="comma" target="RFC8446"/>).</t>
        <section anchor="backend-server-hrr">
          <name>Sending HelloRetryRequest</name>
          <t>When the backend server sends HelloRetryRequest in response to the ClientHello,
it similarly confirms ECH acceptance by adding a confirmation signal to its
HelloRetryRequest. But instead of embedding the signal in the
HelloRetryRequest.random (the value of which is specified by <xref target="RFC8446"/>), it
sends the signal in an extension.</t>
          <t>The backend server begins by computing HelloRetryRequest as usual, except that
it also contains an "encrypted_client_hello" extension with a payload of 8 zero
bytes. It then computes the transcript hash for the first ClientHelloInner,
denoted ClientHelloInner1, up to and including the modified HelloRetryRequest.
Let transcript_hrr_ech_conf denote the output. Finally, the backend server
overwrites the payload of the "encrypted_client_hello" extension with the
following string:</t>
          <artwork><![CDATA[
   hrr_accept_confirmation = HKDF-Expand-Label(
      HKDF-Extract(0, ClientHelloInner1.random),
      "hrr ech accept confirmation",
      transcript_hrr_ech_conf,
      8)
]]></artwork>
          <t>In the subsequent ServerHello message, the backend server sends the
accept_confirmation value as described in <xref target="backend-server"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="deployment">
      <name>Deployment Considerations</name>
      <t>The design of ECH as specified in this document necessarily requires changes
to client, client-facing server, and backend server. Coordination between
client-facing and backend server requires care, as deployment mistakes
can lead to compatibility issues. These are discussed in <xref target="compat-issues"/>.</t>
      <t>Beyond coordination difficulties, ECH deployments may also induce challenges
for use cases of information that ECH protects. In particular,
use cases which depend on this unencrypted information may no longer work
as desired. This is elaborated upon in <xref target="no-sni"/>.</t>
      <section anchor="compat-issues">
        <name>Compatibility Issues</name>
        <t>Unlike most TLS extensions, placing the SNI value in an ECH extension is not
interoperable with existing servers, which expect the value in the existing
plaintext extension. Thus server operators SHOULD ensure servers understand a
given set of ECH keys before advertising them. Additionally, servers SHOULD
retain support for any previously-advertised keys for the duration of their
validity.</t>
        <t>However, in more complex deployment scenarios, this may be difficult to fully
guarantee. Thus this protocol was designed to be robust in case of
inconsistencies between systems that advertise ECH keys and servers, at the cost
of extra round-trips due to a retry. Two specific scenarios are detailed below.</t>
        <section anchor="misconfiguration">
          <name>Misconfiguration and Deployment Concerns</name>
          <t>It is possible for ECH advertisements and servers to become inconsistent. This
may occur, for instance, from DNS misconfiguration, caching issues, or an
incomplete rollout in a multi-server deployment. This may also occur if a server
loses its ECH keys, or if a deployment of ECH must be rolled back on the server.</t>
          <t>The retry mechanism repairs inconsistencies, provided the TLS server
has a certificate for the public name. If server and advertised keys
mismatch, the server will reject ECH and respond with
"retry_configs". If the server does
not understand
the "encrypted_client_hello" extension at all, it will ignore it as required by
<xref section="4.1.2" sectionFormat="of" target="RFC8446"/>. Provided the server can present a certificate
valid for the public name, the client can safely retry with updated settings,
as described in <xref target="rejected-ech"/>.</t>
          <t>Unless ECH is disabled as a result of successfully establishing a connection to
the public name, the client MUST NOT fall back to using unencrypted
ClientHellos, as this allows a network attacker to disclose the contents of this
ClientHello, including the SNI. It MAY attempt to use another server from the
DNS results, if one is provided.</t>
          <t>In order to ensure that the retry mechanism works successfully servers
SHOULD ensure that every endpoint which might receive a TLS connection
is provisioned with an appropriate certificate for the public name.
This is especially important during periods of server reconfiguration
when different endpoints might have different configurations.</t>
        </section>
        <section anchor="middleboxes">
          <name>Middleboxes</name>
          <t>The requirements in <xref section="9.3" sectionFormat="comma" target="RFC8446"/> which require proxies to
act as conforming TLS client and server provide interoperability
with TLS-terminating proxies even in cases where the server supports
ECH but the proxy does not, as detailed below.</t>
          <t>The proxy must ignore unknown parameters, and
generate its own ClientHello containing only parameters it understands. Thus,
when presenting a certificate to the client or sending a ClientHello to the
server, the proxy will act as if connecting to the ClientHelloOuter
server_name, which SHOULD match the public name (see <xref target="real-ech"/>), without
echoing the "encrypted_client_hello" extension.</t>
          <t>Depending on whether the client is configured to accept the proxy's certificate
as authoritative for the public name, this may trigger the retry logic described
in <xref target="rejected-ech"/> or result in a connection failure. A proxy which is not
authoritative for the public name cannot forge a signal to disable ECH.</t>
        </section>
      </section>
      <section anchor="no-sni">
        <name>Deployment Impact</name>
        <t>Some use cases which depend on information ECH encrypts may break with the
deployment of ECH. The extent of breakage depends on a number of external
factors, including, for example, whether ECH can be disabled, whether or not
the party disabling ECH is trusted to do so, and whether or not client
implementations will fall back to TLS without ECH in the event of disablement.</t>
        <t>Depending on implementation details and deployment settings, use cases
which depend on plaintext TLS information may require fundamentally different
approaches to continue working. For example, in managed enterprise settings,
one approach may be to disable ECH entirely via group policy and for
client implementations to honor this action.</t>
        <t>In the context of <xref target="rejected-ech"/>, another approach may be to
intercept and decrypt client TLS connections. The feasibility of alternative
solutions is specific to individual deployments.</t>
      </section>
    </section>
    <section anchor="compliance">
      <name>Compliance Requirements</name>
      <t>In the absence of an application profile standard specifying otherwise,
a compliant ECH application MUST implement the following HPKE cipher suite:</t>
      <ul spacing="normal">
        <li>
          <t>KEM: DHKEM(X25519, HKDF-SHA256) (see <xref section="7.1" sectionFormat="of" target="HPKE"/>)</t>
        </li>
        <li>
          <t>KDF: HKDF-SHA256 (see <xref section="7.2" sectionFormat="of" target="HPKE"/>)</t>
        </li>
        <li>
          <t>AEAD: AES-128-GCM (see <xref section="7.3" sectionFormat="of" target="HPKE"/>)</t>
        </li>
      </ul>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This section contains security considerations for ECH.</t>
      <section anchor="goals">
        <name>Security and Privacy Goals</name>
        <t>ECH considers two types of attackers: passive and active. Passive attackers can
read packets from the network, but they cannot perform any sort of active
behavior such as probing servers or querying DNS. A middlebox that filters based
on plaintext packet contents is one example of a passive attacker. In contrast,
active attackers can also write packets into the network for malicious purposes,
such as interfering with existing connections, probing servers, and querying
DNS. In short, an active attacker corresponds to the conventional threat model
<xref target="RFC3552"/> for TLS 1.3 <xref target="RFC8446"/>.</t>
        <t>Passive and active attackers can exist anywhere in the network, including
between the client and client-facing server, as well as between the
client-facing and backend servers when running ECH in Split Mode. However,
for Split Mode in particular, ECH makes two additional assumptions:</t>
        <ol spacing="normal" type="1"><li>
            <t>The channel between each client-facing and each backend server is
authenticated such that the backend server only accepts messages from trusted
client-facing servers. The exact mechanism for establishing this authenticated
channel is out of scope for this document.</t>
          </li>
          <li>
            <t>The attacker cannot correlate messages between client and client-facing
server with messages between client-facing and backend server. Such correlation
could allow an attacker to link information unique to a backend server, such as
their server name or IP address, with a client's encrypted ClientHelloInner.
Correlation could occur through timing analysis of messages across the
client-facing server, or via examining the contents of messages sent between
client-facing and backend servers. The exact mechanism for preventing this sort
of correlation is out of scope for this document.</t>
          </li>
        </ol>
        <t>Given this threat model, the primary goals of ECH are as follows.</t>
        <ol spacing="normal" type="1"><li>
            <t>Security preservation. Use of ECH does not weaken the security properties of
TLS without ECH.</t>
          </li>
          <li>
            <t>Handshake privacy. TLS connection establishment to a server name
within an anonymity set is indistinguishable from a connection to
any other server name within the anonymity set. (The anonymity set
is defined in <xref target="intro"/>.)</t>
          </li>
          <li>
            <t>Downgrade resistance. An attacker cannot downgrade a connection that
attempts to use ECH to one that does not use ECH.</t>
          </li>
        </ol>
        <t>These properties were formally proven in <xref target="ECH-Analysis"/>.</t>
        <t>With regards to handshake privacy, client-facing server configuration
determines the size of the anonymity set. For example, if a
client-facing server uses distinct ECHConfig values for each server
name, then each anonymity set has size k = 1. Client-facing servers
SHOULD deploy ECH in such a way so as to maximize the size of the
anonymity set where possible. This means client-facing servers should
use the same ECHConfig for as many server names as possible. An
attacker can distinguish two server names that have different
ECHConfig values based on the ECHClientHello.config_id value.</t>
        <t>This also means public information in a TLS handshake should be
consistent across server names. For example, if a client-facing server
services many backend origin server names, only one of which supports some
cipher suite, it may be possible to identify that server name based on the
contents of unencrypted handshake message. Similarly, if a backend
origin reuses KeyShare values, then that provides a unique identifier
for that server.</t>
        <t>Beyond these primary security and privacy goals, ECH also aims to hide, to some
extent, the fact that it is being used at all. Specifically, the GREASE ECH
extension described in <xref target="grease-ech"/> does not change the security properties of
the TLS handshake at all. Its goal is to provide "cover" for the real ECH
protocol (<xref target="real-ech"/>), as a means of addressing the "do not stick out"
requirements of <xref target="RFC8744"/>. See <xref target="dont-stick-out"/> for details.</t>
      </section>
      <section anchor="plaintext-dns">
        <name>Unauthenticated and Plaintext DNS</name>
        <t>In comparison to <xref target="I-D.kazuho-protected-sni"/>, wherein DNS RRs are
signed via a server private key, HTTPS records have no authenticity or
provenance information. This means that any attacker which can inject
DNS responses or poison DNS caches, which is a common scenario in
client access networks, can supply clients with fake HTTPS records (so
that the client encrypts data to them) or strip the ECH record from
the response. However, in the face of an attacker that controls DNS,
no encryption scheme can work because the attacker can replace the IP
address, thus blocking client connections, or substitute a unique IP
address for each DNS name that was looked up.  Thus, allowing the
HTTPS records in the clear does not make the situation significantly
worse.</t>
        <t>Clearly, DNSSEC (if the client validates and hard fails) is a defense
against this form of attack, but encrypted DNS transport is also a
defense against DNS attacks by attackers on the local network, which
is a common case where ClientHello and SNI encryption are
desired. Moreover, as noted in the introduction, SNI encryption is
less useful without encryption of DNS queries in transit mechanisms.</t>
      </section>
      <section anchor="client-tracking">
        <name>Client Tracking</name>
        <t>A malicious client-facing server could distribute unique, per-client ECHConfig
structures as a way of tracking clients across subsequent connections. On-path
adversaries which know about these unique keys could also track clients in this
way by observing TLS connection attempts.</t>
        <t>The cost of this type of attack scales linearly with the desired number of
target clients. Moreover, DNS caching behavior makes targeting individual users
for extended periods of time, e.g., using per-client ECHConfig structures
delivered via HTTPS RRs with high TTLs, challenging. Clients can help mitigate
this problem by flushing any DNS or ECHConfig state upon changing networks
(this may not be possible if clients use the operating system resolver
rather than doing their own resolution).</t>
        <t>ECHConfig rotation rate is also an issue for non-malicious servers,
which may want to rotate keys frequently to limit exposure if the key
is compromised. Rotating too frequently limits the client anonymity
set. In practice, servers which service many server names and thus
have high loads are the best candidates to be client-facing servers
and so anonymity sets will typically involve many connections even
with fairly fast rotation intervals.</t>
      </section>
      <section anchor="ignored-configs">
        <name>Ignored Configuration Identifiers and Trial Decryption</name>
        <t>Ignoring configuration identifiers may be useful in scenarios where clients and
client-facing servers do not want to reveal information about the client-facing
server in the "encrypted_client_hello" extension. In such settings, clients send
a randomly generated config_id in the ECHClientHello. Servers in these settings
must perform trial decryption since they cannot identify the client's chosen ECH
key using the config_id value. As a result, ignoring configuration
identifiers may exacerbate DoS attacks. Specifically, an adversary may send
malicious ClientHello messages, i.e., those which will not decrypt with any
known ECH key, in order to force wasteful decryption. Servers that support this
feature should, for example, implement some form of rate limiting mechanism to
limit the potential damage caused by such attacks.</t>
        <t>Unless specified by the application using (D)TLS or externally configured,
implementations MUST NOT use this mode.</t>
      </section>
      <section anchor="outer-clienthello">
        <name>Outer ClientHello</name>
        <t>Any information that the client includes in the ClientHelloOuter is visible to
passive observers. The client SHOULD NOT send values in the ClientHelloOuter
which would reveal a sensitive ClientHelloInner property, such as the true
server name. It MAY send values associated with the public name in the
ClientHelloOuter.</t>
        <t>In particular, some extensions require the client send a server-name-specific
value in the ClientHello. These values may reveal information about the
true server name. For example, the "cached_info" ClientHello extension
<xref target="RFC7924"/> can contain the hash of a previously observed server certificate.
The client SHOULD NOT send values associated with the true server name in the
ClientHelloOuter. It MAY send such values in the ClientHelloInner.</t>
        <t>A client may also use different preferences in different contexts. For example,
it may send different ALPN lists to different servers or in different
application contexts. A client that treats this context as sensitive SHOULD NOT
send context-specific values in ClientHelloOuter.</t>
        <t>Values which are independent of the true server name, or other information the
client wishes to protect, MAY be included in ClientHelloOuter. If they match
the corresponding ClientHelloInner, they MAY be compressed as described in
<xref target="encoding-inner"/>. However, note that the payload length reveals information
about which extensions are compressed, so inner extensions which only sometimes
match the corresponding outer extension SHOULD NOT be compressed.</t>
        <t>Clients MAY include additional extensions in ClientHelloOuter to avoid
signaling unusual behavior to passive observers, provided the choice of value
and value itself are not sensitive. See <xref target="dont-stick-out"/>.</t>
      </section>
      <section anchor="inner-clienthello">
        <name>Inner ClientHello</name>
        <t>Values which depend on the contents of ClientHelloInner, such as the
true server name, can influence how client-facing servers process this message.
In particular, timing side channels can reveal information about the contents
of ClientHelloInner. Implementations should take such side channels into
consideration when reasoning about the privacy properties that ECH provides.</t>
      </section>
      <section anchor="related-privacy-leaks">
        <name>Related Privacy Leaks</name>
        <t>ECH requires encrypted DNS to be an effective privacy protection mechanism.
However, verifying the server's identity from the Certificate message,
particularly when using the X509 CertificateType, may result in additional
network traffic that may reveal the server identity. Examples of this traffic
may include requests for revocation information, such as OCSP or CRL traffic, or
requests for repository information, such as authorityInformationAccess. It may
also include implementation-specific traffic for additional information sources
as part of verification.</t>
        <t>Implementations SHOULD avoid leaking information that may identify the server.
Even when sent over an encrypted transport, such requests may result in indirect
exposure of the server's identity, such as indicating a specific CA or service
being used. To mitigate this risk, servers SHOULD deliver such information
in-band when possible, such as through the use of OCSP stapling, and clients
SHOULD take steps to minimize or protect such requests during certificate
validation.</t>
        <t>Attacks that rely on non-ECH traffic to infer server identity in an ECH
connection are out of scope for this document. For example, a client that
connects to a particular host prior to ECH deployment may later resume a
connection to that same host after ECH deployment. An adversary that observes
this can deduce that the ECH-enabled connection was made to a host that the
client previously connected to and which is within the same anonymity set.</t>
      </section>
      <section anchor="cookies">
        <name>Cookies</name>
        <t><xref section="4.2.2" sectionFormat="of" target="RFC8446"/> defines a cookie value that servers may send in
HelloRetryRequest for clients to echo in the second ClientHello. While ECH
encrypts the cookie in the second ClientHelloInner, the backend server's
HelloRetryRequest is unencrypted.This means differences in cookies between
backend servers, such as lengths or cleartext components, may leak information
about the server identity.</t>
        <t>Backend servers in an anonymity set SHOULD NOT reveal information in the cookie
which identifies the server. This may be done by handling HelloRetryRequest
statefully, thus not sending cookies, or by using the same cookie construction
for all backend servers.</t>
        <t>Note that, if the cookie includes a key name, analogous to <xref section="4" sectionFormat="of" target="RFC5077"/>, this may leak information if different backend servers issue
cookies with different key names at the time of the connection. In particular,
if the deployment operates in Split Mode, the backend servers may not share
cookie encryption keys. Backend servers may mitigate this by either handling
key rotation with trial decryption, or coordinating to match key names.</t>
      </section>
      <section anchor="attacks-exploiting-acceptance-confirmation">
        <name>Attacks Exploiting Acceptance Confirmation</name>
        <t>To signal acceptance, the backend server overwrites 8 bytes of its
ServerHello.random with a value derived from the ClientHelloInner.random. (See
<xref target="backend-server"/> for details.) This behavior increases the likelihood of the
ServerHello.random colliding with the ServerHello.random of a previous session,
potentially reducing the overall security of the protocol. However, the
remaining 24 bytes provide enough entropy to ensure this is not a practical
avenue of attack.</t>
        <t>On the other hand, the probability that two 8-byte strings are the same is
non-negligible. This poses a modest operational risk. Suppose the client-facing
server terminates the connection (i.e., ECH is rejected or bypassed): if the
last 8 bytes of its ServerHello.random coincide with the confirmation signal,
then the client will incorrectly presume acceptance and proceed as if the
backend server terminated the connection. However, the probability of a false
positive occurring for a given connection is only 1 in 2^64. This value is
smaller than the probability of network connection failures in practice.</t>
        <t>Note that the same bytes of the ServerHello.random are used to implement
downgrade protection for TLS 1.3 (see <xref section="4.1.3" sectionFormat="comma" target="RFC8446"/>). These
mechanisms do not interfere because the backend server only signals ECH
acceptance in TLS 1.3 or higher.</t>
      </section>
      <section anchor="comparison-against-criteria">
        <name>Comparison Against Criteria</name>
        <t><xref target="RFC8744"/> lists several requirements for SNI encryption.
In this section, we re-iterate these requirements and assess the ECH design
against them.</t>
        <section anchor="mitigate-cut-and-paste-attacks">
          <name>Mitigate Cut-and-Paste Attacks</name>
          <t>Since servers process either ClientHelloInner or ClientHelloOuter, and because
ClientHelloInner.random is encrypted, it is not possible for an attacker to "cut
and paste" the ECH value in a different Client Hello and learn information from
ClientHelloInner.</t>
        </section>
        <section anchor="avoid-widely-shared-secrets">
          <name>Avoid Widely Shared Secrets</name>
          <t>This design depends upon DNS as a vehicle for semi-static public key
distribution. Server operators may partition their private keys
however they see fit provided each server behind an IP address has the
corresponding private key to decrypt a key. Thus, when one ECH key is
provided, sharing is optimally bound by the number of hosts that share
an IP address. Server operators may further limit sharing of private
keys by publishing different DNS records containing ECHConfig values
with different public keys using a short TTL.</t>
        </section>
        <section anchor="sni-based-denial-of-service-attacks">
          <name>SNI-Based Denial-of-Service Attacks</name>
          <t>This design requires servers to decrypt ClientHello messages with ECHClientHello
extensions carrying valid digests. Thus, it is possible for an attacker to force
decryption operations on the server. This attack is bound by the number of valid
transport connections an attacker can open.</t>
        </section>
        <section anchor="dont-stick-out">
          <name>Do Not Stick Out</name>
          <t>As a means of reducing the impact of network ossification, <xref target="RFC8744"/>
recommends SNI-protection mechanisms be designed in such a way that network
operators do not differentiate connections using the mechanism from connections
not using the mechanism. To that end, ECH is designed to resemble a standard
TLS handshake as much as possible. The most obvious difference is the extension
itself: as long as middleboxes ignore it, as required by <xref target="RFC8446"/>, the rest
of the handshake is designed to look very much as usual.</t>
          <t>The GREASE ECH protocol described in <xref target="grease-ech"/> provides a low-risk way to
evaluate the deployability of ECH. It is designed to mimic the real ECH protocol
(<xref target="real-ech"/>) without changing the security properties of the handshake. The
underlying theory is that if GREASE ECH is deployable without triggering
middlebox misbehavior, and real ECH looks enough like GREASE ECH, then ECH
should be deployable as well. Thus, the strategy for mitigating network
ossification is to deploy GREASE ECH widely enough to disincentivize
differential treatment of the real ECH protocol by the network.</t>
          <t>Ensuring that networks do not differentiate between real ECH and GREASE ECH may
not be feasible for all implementations. While most middleboxes will not treat
them differently, some operators may wish to block real ECH usage but allow
GREASE ECH. This specification aims to provide a baseline security level that
most deployments can achieve easily, while providing implementations enough
flexibility to achieve stronger security where possible. Minimally, real ECH is
designed to be indifferentiable from GREASE ECH for passive adversaries with
following capabilities:</t>
          <ol spacing="normal" type="1"><li>
              <t>The attacker does not know the ECHConfigList used by the server.</t>
            </li>
            <li>
              <t>The attacker keeps per-connection state only. In particular, it does not
track endpoints across connections.</t>
            </li>
          </ol>
          <t>Moreover, real ECH and GREASE ECH are designed so that the following features
do not noticeably vary to the attacker, i.e., they are not distinguishers:</t>
          <ol spacing="normal" type="1"><li>
              <t>the code points of extensions negotiated in the clear, and their order;</t>
            </li>
            <li>
              <t>the length of messages; and</t>
            </li>
            <li>
              <t>the values of plaintext alert messages.</t>
            </li>
          </ol>
          <t>This leaves a variety of practical differentiators out-of-scope. including,
though not limited to, the following:</t>
          <ol spacing="normal" type="1"><li>
              <t>the value of the configuration identifier;</t>
            </li>
            <li>
              <t>the value of the outer SNI;</t>
            </li>
            <li>
              <t>the TLS version negotiated, which may depend on ECH acceptance;</t>
            </li>
            <li>
              <t>client authentication, which may depend on ECH acceptance; and</t>
            </li>
            <li>
              <t>HRR issuance, which may depend on ECH acceptance.</t>
            </li>
          </ol>
          <t>These can be addressed with more sophisticated implementations, but some
mitigations require coordination between the client and server, and even
across different client and server implementations. These mitigations are
out-of-scope for this specification.</t>
        </section>
        <section anchor="maintain-forward-secrecy">
          <name>Maintain Forward Secrecy</name>
          <t>This design does not provide forward secrecy for the inner ClientHello
because the server's ECH key is static.  However, the window of
exposure is bound by the key lifetime. It is RECOMMENDED that servers
rotate keys regularly.</t>
        </section>
        <section anchor="enable-multi-party-security-contexts">
          <name>Enable Multi-party Security Contexts</name>
          <t>This design permits servers operating in Split Mode to forward connections
directly to backend origin servers. The client authenticates the identity of
the backend origin server, thereby allowing the backend origin server
to hide behind the client-facing server without the client-facing
server decrypting and reencrypting the connection.</t>
          <t>Conversely, assuming HTTPS records retrieved from DNS are
authenticated, e.g., via DNSSEC,
spoofing a client-facing server operating in Split Mode is not
possible. See <xref target="plaintext-dns"/> for more details regarding plaintext
DNS.</t>
          <t>Authenticating the ECHConfig structure naturally authenticates the included
public name. This also authenticates any retry signals from the client-facing
server because the client validates the server certificate against the public
name before retrying.</t>
        </section>
        <section anchor="support-multiple-protocols">
          <name>Support Multiple Protocols</name>
          <t>This design has no impact on application layer protocol negotiation. It may
affect connection routing, server certificate selection, and client certificate
verification. Thus, it is compatible with multiple application and transport
protocols. By encrypting the entire ClientHello, this design additionally
supports encrypting the ALPN extension.</t>
        </section>
      </section>
      <section anchor="padding-policy">
        <name>Padding Policy</name>
        <t>Variations in the length of the ClientHelloInner ciphertext could leak
information about the corresponding plaintext. <xref target="padding"/> describes a
RECOMMENDED padding mechanism for clients aimed at reducing potential
information leakage.</t>
      </section>
      <section anchor="active-attack-mitigations">
        <name>Active Attack Mitigations</name>
        <t>This section describes the rationale for ECH properties and mechanics as
defenses against active attacks. In all the attacks below, the attacker is
on-path between the target client and server. The goal of the attacker is to
learn private information about the inner ClientHello, such as the true SNI
value.</t>
        <section anchor="flow-client-reaction">
          <name>Client Reaction Attack Mitigation</name>
          <t>This attack uses the client's reaction to an incorrect certificate as an oracle.
The attacker intercepts a legitimate ClientHello and replies with a ServerHello,
Certificate, CertificateVerify, and Finished messages, wherein the Certificate
message contains a "test" certificate for the domain name it wishes to query. If
the client decrypted the Certificate and failed verification (or leaked
information about its verification process by a timing side channel), the
attacker learns that its test certificate name was incorrect. As an example,
suppose the client's SNI value in its inner ClientHello is "example.com," and
the attacker replied with a Certificate for "test.com". If the client produces a
verification failure alert because of the mismatch faster than it would due to
the Certificate signature validation, information about the name leaks. Note
that the attacker can also withhold the CertificateVerify message. In that
scenario, a client which first verifies the Certificate would then respond
similarly and leak the same information.</t>
          <figure anchor="flow-diagram-client-reaction">
            <name>Client reaction attack</name>
            <artwork><![CDATA[
 Client                         Attacker               Server
   ClientHello
   + key_share
   + ech         ------>      (intercept)     -----> X (drop)

                             ServerHello
                             + key_share
                   {EncryptedExtensions}
                   {CertificateRequest*}
                          {Certificate*}
                    {CertificateVerify*}
                 <------
   Alert
                 ------>
]]></artwork>
          </figure>
          <t>ClientHelloInner.random prevents this attack. In particular, since the attacker
does not have access to this value, it cannot produce the right transcript and
handshake keys needed for encrypting the Certificate message. Thus, the client
will fail to decrypt the Certificate and abort the connection.</t>
        </section>
        <section anchor="flow-hrr-hijack">
          <name>HelloRetryRequest Hijack Mitigation</name>
          <t>This attack aims to exploit server HRR state management to recover information
about a legitimate ClientHello using its own attacker-controlled ClientHello.
To begin, the attacker intercepts and forwards a legitimate ClientHello with an
"encrypted_client_hello" (ech) extension to the server, which triggers a
legitimate HelloRetryRequest in return. Rather than forward the retry to the
client, the attacker attempts to generate its own ClientHello in response based
on the contents of the first ClientHello and HelloRetryRequest exchange with the
result that the server encrypts the Certificate to the attacker. If the server
used the SNI from the first ClientHello and the key share from the second
(attacker-controlled) ClientHello, the Certificate produced would leak the
client's chosen SNI to the attacker.</t>
          <figure anchor="flow-diagram-hrr-hijack">
            <name>HelloRetryRequest hijack attack</name>
            <artwork><![CDATA[
 Client                         Attacker                   Server
   ClientHello
   + key_share
   + ech         ------>       (forward)        ------->
                                              HelloRetryRequest
                                                    + key_share
                              (intercept)       <-------

                              ClientHello
                              + key_share'
                              + ech'           ------->
                                                    ServerHello
                                                    + key_share
                                          {EncryptedExtensions}
                                          {CertificateRequest*}
                                                 {Certificate*}
                                           {CertificateVerify*}
                                                     {Finished}
                                                <-------
                         (process server flight)
]]></artwork>
          </figure>
          <t>This attack is mitigated by using the same HPKE context for both ClientHello
messages. The attacker does not possess the context's keys, so it cannot
generate a valid encryption of the second inner ClientHello.</t>
          <t>If the attacker could manipulate the second ClientHello, it might be possible
for the server to act as an oracle if it required parameters from the first
ClientHello to match that of the second ClientHello. For example, imagine the
client's original SNI value in the inner ClientHello is "example.com", and the
attacker's hijacked SNI value in its inner ClientHello is "test.com". A server
which checks these for equality and changes behavior based on the result can be
used as an oracle to learn the client's SNI.</t>
        </section>
        <section anchor="flow-clienthello-malleability">
          <name>ClientHello Malleability Mitigation</name>
          <t>This attack aims to leak information about secret parts of the encrypted
ClientHello by adding attacker-controlled parameters and observing the server's
response. In particular, the compression mechanism described in
<xref target="encoding-inner"/> references parts of a potentially attacker-controlled
ClientHelloOuter to construct ClientHelloInner, or a buggy server may
incorrectly apply parameters from ClientHelloOuter to the handshake.</t>
          <t>To begin, the attacker first interacts with a server to obtain a resumption
ticket for a given test domain, such as "example.com". Later, upon receipt of a
ClientHelloOuter, it modifies it such that the server will process the
resumption ticket with ClientHelloInner. If the server only accepts resumption
PSKs that match the server name, it will fail the PSK binder check with an
alert when ClientHelloInner is for "example.com" but silently ignore the PSK
and continue when ClientHelloInner is for any other name. This introduces an
oracle for testing encrypted SNI values.</t>
          <figure anchor="tls-clienthello-malleability">
            <name>Message flow for malleable ClientHello</name>
            <artwork><![CDATA[
      Client              Attacker                       Server

                                    handshake and ticket
                                       for "example.com"
                                       <-------->

      ClientHello
      + key_share
      + ech
         + ech_outer_extensions(pre_shared_key)
      + pre_shared_key
                  -------->
                        (intercept)
                        ClientHello
                        + key_share
                        + ech
                           + ech_outer_extensions(pre_shared_key)
                        + pre_shared_key'
                                          -------->
                                                         Alert
                                                         -or-
                                                   ServerHello
                                                            ...
                                                      Finished
                                          <--------
]]></artwork>
          </figure>
          <t>This attack may be generalized to any parameter which the server varies by
server name, such as ALPN preferences.</t>
          <t>ECH mitigates this attack by only negotiating TLS parameters from
ClientHelloInner and authenticating all inputs to the ClientHelloInner
(EncodedClientHelloInner and ClientHelloOuter) with the HPKE AEAD. See
<xref target="authenticating-outer"/>. The decompression process in <xref target="encoding-inner"/>
forbids "encrypted_client_hello" in OuterExtensions. This ensures the
unauthenticated portion of ClientHelloOuter is not incorporated into
ClientHelloInner.
An earlier iteration of this specification only
encrypted and authenticated the "server_name" extension, which left the overall
ClientHello vulnerable to an analogue of this attack.</t>
        </section>
        <section anchor="decompression-amp">
          <name>ClientHelloInner Packet Amplification Mitigation</name>
          <t>Client-facing servers must decompress EncodedClientHelloInners. A malicious
attacker may craft a packet which takes excessive resources to decompress
or may be much larger than the incoming packet:</t>
          <ul spacing="normal">
            <li>
              <t>If looking up a ClientHelloOuter extension takes time linear in the number of
extensions, the overall decoding process would take O(M*N) time, where
M is the number of extensions in ClientHelloOuter and N is the
size of OuterExtensions.</t>
            </li>
            <li>
              <t>If the same ClientHelloOuter extension can be copied multiple times,
an attacker could cause the client-facing server to construct a large
ClientHelloInner by including a large extension in ClientHelloOuter,
of length L, and an OuterExtensions list referencing N copies of that
extension. The client-facing server would then use O(N*L) memory in
response to O(N+L) bandwidth from the client. In split-mode, an
O(N*L) sized packet would then be transmitted to the
backend server.</t>
            </li>
          </ul>
          <t>ECH mitigates this attack by requiring that OuterExtensions be referenced in
order, that duplicate references be rejected, and by recommending that
client-facing servers use a linear scan to perform decompression. These
requirements are detailed in <xref target="encoding-inner"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="update-of-the-tls-extensiontype-registry">
        <name>Update of the TLS ExtensionType Registry</name>
        <t>IANA is requested to create the following entries in the existing registry for
ExtensionType (defined in <xref target="RFC8446"/>):</t>
        <ol spacing="normal" type="1"><li>
            <t>encrypted_client_hello(0xfe0d), with "TLS 1.3" column values set to
"CH, HRR, EE", "DTLS-Only" column set to "N", and "Recommended" column set
to "Yes".</t>
          </li>
          <li>
            <t>ech_outer_extensions(0xfd00), with the "TLS 1.3" column values set to "CH",
"DTLS-Only" column set to "N", "Recommended" column set to "Yes", and the
"Comment" column set to "Only appears in inner CH."</t>
          </li>
        </ol>
      </section>
      <section anchor="alerts">
        <name>Update of the TLS Alert Registry</name>
        <t>IANA is requested to create an entry, ech_required(121) in the existing registry
for Alerts (defined in <xref target="RFC8446"/>), with the "DTLS-OK" column set to
"Y".</t>
      </section>
      <section anchor="config-extensions-iana">
        <name>ECH Configuration Extension Registry</name>
        <t>IANA is requested to create a new "ECHConfig Extension" registry in a new
"TLS Encrypted Client Hello (ECH) Configuration Extensions" page. New
registrations need to list the following attributes:</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>The two-byte identifier for the ECHConfigExtension, i.e., the
ECHConfigExtensionType</t>
          </dd>
          <dt>Extension Name:</dt>
          <dd>
            <t>Name of the ECHConfigExtension</t>
          </dd>
          <dt>Recommended:</dt>
          <dd>
            <t>A "Y" or "N" value indicating if the extension is TLS WG recommends that the
extension be supported. This column is assigned a value of "N" unless
explicitly requested. Adding a value with a value of "Y" requires Standards
Action <xref target="RFC8126"/>.</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>The specification where the ECHConfigExtension is defined</t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>Any notes associated with the entry</t>
          </dd>
        </dl>
        <t>New entries in the "ECHConfig Extension" registry are subject to the
Specification Required registration policy (<xref section="4.6" sectionFormat="comma" target="RFC8126"/>), with the policies described in <xref section="17" sectionFormat="comma" target="RFC8447"/>. IANA
[shall add/has added] the following note to the TLS ECHConfig Extension
registry:</t>
        <t>Note:  The role of the designated expert is described in RFC 8447.
      The designated expert <xref target="RFC8126"/> ensures that the specification is
      publicly available.  It is sufficient to have an Internet-Draft
      (that is posted and never published as an RFC) or a document from
      another standards body, industry consortium, university site, etc.
      The expert may provide more in depth reviews, but their approval
      should not be taken as an endorsement of the extension.</t>
        <t>This document defines several Reserved values for ECH configuration extensions
to be used for "greasing" as described in <xref target="server-greasing"/>.</t>
        <t>The initial contents for this registry consists of multiple reserved values,
with the following attributes, which are repeated for each registration:</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>0x0000, 0x1A1A, 0x2A2A, 0x3A3A, 0x4A4A, 0x5A5A, 0x6A6A, 0x7A7A, 0x8A8A,
0x9A9A, 0xAAAA, 0xBABA, 0xCACA, 0xDADA, 0xEAEA, 0xFAFA</t>
          </dd>
          <dt>Extension Name:</dt>
          <dd>
            <t>RESERVED</t>
          </dd>
          <dt>Recommended:</dt>
          <dd>
            <t>Y</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>Grease entries.</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <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="RFC7918">
          <front>
            <title>Transport Layer Security (TLS) False Start</title>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <author fullname="B. Moeller" initials="B." surname="Moeller"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>This document specifies an optional behavior of Transport Layer Security (TLS) client implementations, dubbed "False Start". It affects only protocol timing, not on-the-wire protocol data, and can be implemented unilaterally. A TLS False Start reduces handshake latency to one round trip.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7918"/>
          <seriesInfo name="DOI" value="10.17487/RFC7918"/>
        </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="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="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="RFC9460">
          <front>
            <title>Service Binding and Parameter Specification via the DNS (SVCB and HTTPS Resource Records)</title>
            <author fullname="B. Schwartz" initials="B." surname="Schwartz"/>
            <author fullname="M. Bishop" initials="M." surname="Bishop"/>
            <author fullname="E. Nygren" initials="E." surname="Nygren"/>
            <date month="November" year="2023"/>
            <abstract>
              <t>This document specifies the "SVCB" ("Service Binding") and "HTTPS" DNS resource record (RR) types to facilitate the lookup of information needed to make connections to network services, such as for HTTP origins. SVCB records allow a service to be provided from multiple alternative endpoints, each with associated parameters (such as transport protocol configuration), and are extensible to support future uses (such as keys for encrypting the TLS ClientHello). They also enable aliasing of apex domains, which is not possible with CNAME. The HTTPS RR is a variation of SVCB for use with HTTP (see RFC 9110, "HTTP Semantics"). By providing more information to the client before it attempts to establish a connection, these records offer potential benefits to both performance and privacy.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9460"/>
          <seriesInfo name="DOI" value="10.17487/RFC9460"/>
        </reference>
        <reference anchor="ECH-IN-DNS">
          <front>
            <title>Bootstrapping TLS Encrypted ClientHello with DNS Service Bindings</title>
            <author fullname="Benjamin M. Schwartz" initials="B. M." surname="Schwartz">
              <organization>Meta Platforms, Inc.</organization>
            </author>
            <author fullname="Mike Bishop" initials="M." surname="Bishop">
              <organization>Akamai Technologies</organization>
            </author>
            <author fullname="Erik Nygren" initials="E." surname="Nygren">
              <organization>Akamai Technologies</organization>
            </author>
            <date day="12" month="February" year="2025"/>
            <abstract>
              <t>   To use TLS Encrypted ClientHello (ECH) the client needs to learn the
   ECH configuration for a server before it attempts a connection to the
   server.  This specification provides a mechanism for conveying the
   ECH configuration information via DNS, using a SVCB or HTTPS record.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-svcb-ech-07"/>
        </reference>
        <reference anchor="HPKE">
          <front>
            <title>Hybrid Public Key Encryption</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="K. Bhargavan" initials="K." surname="Bhargavan"/>
            <author fullname="B. Lipp" initials="B." surname="Lipp"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <date month="February" year="2022"/>
            <abstract>
              <t>This document describes a scheme for hybrid public key encryption (HPKE). This scheme provides a variant of public key encryption of arbitrary-sized plaintexts for a recipient public key. It also includes three authenticated variants, including one that authenticates possession of a pre-shared key and two optional ones that authenticate possession of a key encapsulation mechanism (KEM) private key. HPKE works for any combination of an asymmetric KEM, key derivation function (KDF), and authenticated encryption with additional data (AEAD) encryption function. Some authenticated variants may not be supported by all KEMs. We provide instantiations of the scheme using widely used and efficient primitives, such as Elliptic Curve Diffie-Hellman (ECDH) key agreement, HMAC-based key derivation function (HKDF), and SHA2.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9180"/>
          <seriesInfo name="DOI" value="10.17487/RFC9180"/>
        </reference>
        <reference anchor="RFC6125">
          <front>
            <title>Representation and Verification of Domain-Based Application Service Identity within Internet Public Key Infrastructure Using X.509 (PKIX) Certificates in the Context of Transport Layer Security (TLS)</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <author fullname="J. Hodges" initials="J." surname="Hodges"/>
            <date month="March" year="2011"/>
            <abstract>
              <t>Many application technologies enable secure communication between two entities by means of Internet Public Key Infrastructure Using X.509 (PKIX) certificates in the context of Transport Layer Security (TLS). This document specifies procedures for representing and verifying the identity of application services in such interactions. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6125"/>
          <seriesInfo name="DOI" value="10.17487/RFC6125"/>
        </reference>
        <reference anchor="RFC5890">
          <front>
            <title>Internationalized Domain Names for Applications (IDNA): Definitions and Document Framework</title>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document is one of a collection that, together, describe the protocol and usage context for a revision of Internationalized Domain Names for Applications (IDNA), superseding the earlier version. It describes the document collection and provides definitions and other material that are common to the set. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5890"/>
          <seriesInfo name="DOI" value="10.17487/RFC5890"/>
        </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="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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="WHATWG-IPV4" target="https://url.spec.whatwg.org/#concept-ipv4-parser">
          <front>
            <title>URL Living Standard - IPv4 Parser</title>
            <author>
              <organization/>
            </author>
            <date year="2021" month="May"/>
          </front>
        </reference>
        <reference anchor="ECH-Analysis" target="https://www.cs.ox.ac.uk/people/vincent.cheval/publis/BCW-ccs22.pdf">
          <front>
            <title>A Symbolic Analysis of Privacy for TLS 1.3 with Encrypted Client Hello</title>
            <author>
              <organization/>
            </author>
            <date year="2022" month="November"/>
          </front>
        </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="RFC8484">
          <front>
            <title>DNS Queries over HTTPS (DoH)</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="P. McManus" initials="P." surname="McManus"/>
            <date month="October" year="2018"/>
            <abstract>
              <t>This document defines a protocol for sending DNS queries and getting DNS responses over HTTPS. Each DNS query-response pair is mapped into an HTTP exchange.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8484"/>
          <seriesInfo name="DOI" value="10.17487/RFC8484"/>
        </reference>
        <reference anchor="RFC7858">
          <front>
            <title>Specification for DNS over Transport Layer Security (TLS)</title>
            <author fullname="Z. Hu" initials="Z." surname="Hu"/>
            <author fullname="L. Zhu" initials="L." surname="Zhu"/>
            <author fullname="J. Heidemann" initials="J." surname="Heidemann"/>
            <author fullname="A. Mankin" initials="A." surname="Mankin"/>
            <author fullname="D. Wessels" initials="D." surname="Wessels"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="May" year="2016"/>
            <abstract>
              <t>This document describes the use of Transport Layer Security (TLS) to provide privacy for DNS. Encryption provided by TLS eliminates opportunities for eavesdropping and on-path tampering with DNS queries in the network, such as discussed in RFC 7626. In addition, this document specifies two usage profiles for DNS over TLS and provides advice on performance considerations to minimize overhead from using TCP and TLS with DNS.</t>
              <t>This document focuses on securing stub-to-recursive traffic, as per the charter of the DPRIVE Working Group. It does not prevent future applications of the protocol to recursive-to-authoritative traffic.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7858"/>
          <seriesInfo name="DOI" value="10.17487/RFC7858"/>
        </reference>
        <reference anchor="RFC8094">
          <front>
            <title>DNS over Datagram Transport Layer Security (DTLS)</title>
            <author fullname="T. Reddy" initials="T." surname="Reddy"/>
            <author fullname="D. Wing" initials="D." surname="Wing"/>
            <author fullname="P. Patil" initials="P." surname="Patil"/>
            <date month="February" year="2017"/>
            <abstract>
              <t>DNS queries and responses are visible to network elements on the path between the DNS client and its server. These queries and responses can contain privacy-sensitive information, which is valuable to protect.</t>
              <t>This document proposes the use of Datagram Transport Layer Security (DTLS) for DNS, to protect against passive listeners and certain active attacks. As latency is critical for DNS, this proposal also discusses mechanisms to reduce DTLS round trips and reduce the DTLS handshake size. The proposed mechanism runs over port 853.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8094"/>
          <seriesInfo name="DOI" value="10.17487/RFC8094"/>
        </reference>
        <reference anchor="RFC9250">
          <front>
            <title>DNS over Dedicated QUIC Connections</title>
            <author fullname="C. Huitema" initials="C." surname="Huitema"/>
            <author fullname="S. Dickinson" initials="S." surname="Dickinson"/>
            <author fullname="A. Mankin" initials="A." surname="Mankin"/>
            <date month="May" year="2022"/>
            <abstract>
              <t>This document describes the use of QUIC to provide transport confidentiality for DNS. The encryption provided by QUIC has similar properties to those provided by TLS, while QUIC transport eliminates the head-of-line blocking issues inherent with TCP and provides more efficient packet-loss recovery than UDP. DNS over QUIC (DoQ) has privacy properties similar to DNS over TLS (DoT) specified in RFC 7858, and latency characteristics similar to classic DNS over UDP. This specification describes the use of DoQ as a general-purpose transport for DNS and includes the use of DoQ for stub to recursive, recursive to authoritative, and zone transfer scenarios.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9250"/>
          <seriesInfo name="DOI" value="10.17487/RFC9250"/>
        </reference>
        <reference anchor="RFC8701">
          <front>
            <title>Applying Generate Random Extensions And Sustain Extensibility (GREASE) to TLS Extensibility</title>
            <author fullname="D. Benjamin" initials="D." surname="Benjamin"/>
            <date month="January" year="2020"/>
            <abstract>
              <t>This document describes GREASE (Generate Random Extensions And Sustain Extensibility), a mechanism to prevent extensibility failures in the TLS ecosystem. It reserves a set of TLS protocol values that may be advertised to ensure peers correctly handle unknown values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8701"/>
          <seriesInfo name="DOI" value="10.17487/RFC8701"/>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="DNS-TERMS">
          <front>
            <title>DNS Terminology</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="K. Fujiwara" initials="K." surname="Fujiwara"/>
            <date month="March" year="2024"/>
            <abstract>
              <t>The Domain Name System (DNS) is defined in literally dozens of different RFCs. The terminology used by implementers and developers of DNS protocols, and by operators of DNS systems, has changed in the decades since the DNS was first defined. This document gives current definitions for many of the terms used in the DNS in a single document.</t>
              <t>This document updates RFC 2308 by clarifying the definitions of "forwarder" and "QNAME". It obsoletes RFC 8499 by adding multiple terms and clarifications. Comprehensive lists of changed and new definitions can be found in Appendices A and B.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="219"/>
          <seriesInfo name="RFC" value="9499"/>
          <seriesInfo name="DOI" value="10.17487/RFC9499"/>
        </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="RFC8744">
          <front>
            <title>Issues and Requirements for Server Name Identification (SNI) Encryption in TLS</title>
            <author fullname="C. Huitema" initials="C." surname="Huitema"/>
            <date month="July" year="2020"/>
            <abstract>
              <t>This document describes the general problem of encrypting the Server Name Identification (SNI) TLS parameter. The proposed solutions hide a hidden service behind a fronting service, only disclosing the SNI of the fronting service to external observers. This document lists known attacks against SNI encryption, discusses the current "HTTP co-tenancy" solution, and presents requirements for future TLS-layer solutions.</t>
              <t>In practice, it may well be that no solution can meet every requirement and that practical solutions will have to make some compromises.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8744"/>
          <seriesInfo name="DOI" value="10.17487/RFC8744"/>
        </reference>
        <reference anchor="I-D.kazuho-protected-sni">
          <front>
            <title>TLS Extensions for Protecting SNI</title>
            <author fullname="Kazuho Oku" initials="K." surname="Oku">
         </author>
            <date day="18" month="July" year="2017"/>
            <abstract>
              <t>   This memo introduces TLS extensions and a DNS Resource Record Type
   that can be used to protect attackers from obtaining the value of the
   Server Name Indication extension being transmitted over a Transport
   Layer Security (TLS) version 1.3 handshake.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-kazuho-protected-sni-00"/>
        </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="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>
      </references>
    </references>
    <?line 2003?>

<section anchor="config-extensions-guidance">
      <name>ECHConfig Extension Guidance</name>
      <t>Any future information or hints that influence ClientHelloOuter SHOULD be
specified as ECHConfig extensions. This is primarily because the outer
ClientHello exists only in support of ECH. Namely, it is both an envelope for
the encrypted inner ClientHello and enabler for authenticated key mismatch
signals (see <xref target="server-behavior"/>). In contrast, the inner ClientHello is the
true ClientHello used upon ECH negotiation.</t>
      <?line 2014?>

</section>
    <section anchor="linear-outer-extensions">
      <name>Linear-time Outer Extension Processing</name>
      <t>The following procedure processes the "ech_outer_extensions" extension (see
<xref target="encoding-inner"/>) in linear time, ensuring that each referenced extension
in the ClientHelloOuter is included at most once:</t>
      <ol spacing="normal" type="1"><li>
          <t>Let I be initialized to zero and N be set to the number of extensions
in ClientHelloOuter.</t>
        </li>
        <li>
          <t>For each extension type, E, in OuterExtensions:  </t>
          <ul spacing="normal">
            <li>
              <t>If E is "encrypted_client_hello", abort the connection with an
"illegal_parameter" alert and terminate this procedure.</t>
            </li>
            <li>
              <t>While I is less than N and the I-th extension of
ClientHelloOuter does not have type E, increment I.</t>
            </li>
            <li>
              <t>If I is equal to N, abort the connection with an "illegal_parameter"
alert and terminate this procedure.</t>
            </li>
            <li>
              <t>Otherwise, the I-th extension of ClientHelloOuter has type E. Copy
it to the EncodedClientHelloInner and increment I.</t>
            </li>
          </ul>
        </li>
      </ol>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>This document draws extensively from ideas in <xref target="I-D.kazuho-protected-sni"/>, but
is a much more limited mechanism because it depends on the DNS for the
protection of the ECH key. Richard Barnes, Christian Huitema, Patrick McManus,
Matthew Prince, Nick Sullivan, Martin Thomson, and David Benjamin also provided
important ideas and contributions.</t>
    </section>
    <section anchor="change-log">
      <name>Change Log</name>
      <ul empty="true">
        <li>
          <t><strong>RFC Editor's Note:</strong> Please remove this section prior to publication of a
final version of this document.</t>
        </li>
      </ul>
      <t>Issue and pull request numbers are listed with a leading octothorp.</t>
      <section anchor="since-draft-ietf-tls-esni-16">
        <name>Since draft-ietf-tls-esni-16</name>
        <ul spacing="normal">
          <li>
            <t>Keep-alive</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-15">
        <name>Since draft-ietf-tls-esni-15</name>
        <ul spacing="normal">
          <li>
            <t>Add CCS2022 reference and summary (#539)</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-14">
        <name>Since draft-ietf-tls-esni-14</name>
        <ul spacing="normal">
          <li>
            <t>Keep-alive</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-13">
        <name>Since draft-ietf-tls-esni-13</name>
        <ul spacing="normal">
          <li>
            <t>Editorial improvements</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-12">
        <name>Since draft-ietf-tls-esni-12</name>
        <ul spacing="normal">
          <li>
            <t>Abort on duplicate OuterExtensions (#514)</t>
          </li>
          <li>
            <t>Improve EncodedClientHelloInner definition (#503)</t>
          </li>
          <li>
            <t>Clarify retry configuration usage (#498)</t>
          </li>
          <li>
            <t>Expand on config_id generation implications (#491)</t>
          </li>
          <li>
            <t>Server-side acceptance signal extension GREASE (#481)</t>
          </li>
          <li>
            <t>Refactor overview, client implementation, and middlebox
sections (#480, #478, #475, #508)</t>
          </li>
          <li>
            <t>Editorial iprovements (#485, #488, #490, #495, #496, #499, #500,
#501, #504, #505, #507, #510, #511)</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-11">
        <name>Since draft-ietf-tls-esni-11</name>
        <ul spacing="normal">
          <li>
            <t>Move ClientHello padding to the encoding (#443)</t>
          </li>
          <li>
            <t>Align codepoints (#464)</t>
          </li>
          <li>
            <t>Relax OuterExtensions checks for alignment with RFC8446 (#467)</t>
          </li>
          <li>
            <t>Clarify HRR acceptance and rejection logic (#470)</t>
          </li>
          <li>
            <t>Editorial improvements (#468, #465, #462, #461)</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-10">
        <name>Since draft-ietf-tls-esni-10</name>
        <ul spacing="normal">
          <li>
            <t>Make HRR confirmation and ECH acceptance explicit (#422, #423)</t>
          </li>
          <li>
            <t>Relax computation of the acceptance signal (#420, #449)</t>
          </li>
          <li>
            <t>Simplify ClientHelloOuterAAD generation (#438, #442)</t>
          </li>
          <li>
            <t>Allow empty enc in ECHClientHello (#444)</t>
          </li>
          <li>
            <t>Authenticate ECHClientHello extensions position in ClientHelloOuterAAD (#410)</t>
          </li>
          <li>
            <t>Allow clients to send a dummy PSK and early_data in ClientHelloOuter when
applicable (#414, #415)</t>
          </li>
          <li>
            <t>Compress ECHConfigContents (#409)</t>
          </li>
          <li>
            <t>Validate ECHConfig.contents.public_name (#413, #456)</t>
          </li>
          <li>
            <t>Validate ClientHelloInner contents (#411)</t>
          </li>
          <li>
            <t>Note split-mode challenges for HRR (#418)</t>
          </li>
          <li>
            <t>Editorial improvements (#428, #432, #439, #445, #458, #455)</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-09">
        <name>Since draft-ietf-tls-esni-09</name>
        <ul spacing="normal">
          <li>
            <t>Finalize HPKE dependency (#390)</t>
          </li>
          <li>
            <t>Move from client-computed to server-chosen, one-byte config
identifier (#376, #381)</t>
          </li>
          <li>
            <t>Rename ECHConfigs to ECHConfigList (#391)</t>
          </li>
          <li>
            <t>Clarify some security and privacy properties (#385, #383)</t>
          </li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA8y9bXfcxpUu+r1+BQ697hKZdLdFWbIlOckZmqItLuvtiHI8
WZkcCexGk4i6gQ6AJtXR6P72u1+rdhUAkk7mw9WaiSwSKNTrrv3y7GdPp1PX
ld2qeJq9e3GWnVTzZrfpikV2vCqLqsueF6tV7fLz86a4uvGRRT2v8jU0s2jy
ZTcti2457VbttGircvrgoZvnXXFRN7unWdstnCs3zdOsa7Zt9+D+/Sf3H7h2
e74u27asq263gWZOT9796PKmyJ9mZyfH7rpuPl409XYDb61a97HYwU8W8FjV
FU1VdNNn+Fnn2i6vFu/zVV1BG7uidZvyafbXrp5PsrZuuqZYtvBfuzX+x9+c
y7fdZd08ddnUZfynrNqn2ckse1u087pZ5fpzHtxJU857v6qbi7wq/5l30Hns
0aLYFPA/VacPFOu8XD3Nio/NfzTdcj2b12uXfvLnWfb64zb+2s/5P7eXtf15
/Kkf87Zb7ZKvfKSX6o/b/7jAHwx+7NUsO9uuVuVVXsVffFXOP/Z+FX/0GFe/
vmjyzeUuO66rdrvqyuoie/HiOOlJVc4v61Xezlpp8Pe4K27o1vEsO5plv9b1
Iu7V8WVTtl29uSya9IGkb6t6u1iuYNskXZnn1/9xWeQb6Oh52bUz2DHOuapu
1vDmVQEbIHv74/GDw8Mn8p/fPTl8/BS2abW0z/z6/Ojdrz9NT9/8+SH+M5OT
s/fL2xfZi/IKp+EMN2DeLLJpdvrm6mH2Jm/aotmjp/PmouieZpddt2mffv31
tlnN2k0xn11f5t31xQzG8vVX87qaFxs4QJurh9MNvYzvLuD4PM1e5rvswf0H
h/CTk+Pn06MqX+3asqW++M4cZWe79Xm9gp2qD2T1MnvTwBLMdxkMiM7x4eyb
7LrsLkcO9B63mXT5+vp6Nm9n9adZPp9tP369KerNqvgaRj6HN2fzy+IqX329
2Z6vyvbrH45/nc7n7YMHs81iSc3xKF7VV8X6HNYShvKAfs7HUMaRhV3hj8YP
l9CR3OxJXHg8a02ZD7/05xlsG+zNnd84jncWP292lHPT6TTLz9uuyeewfd5d
wsSC2NuucdIWIBSa8rxoszxbF/NL2JXtGhrO3jV51W5A9mQv8h0M+qyYb5uy
22X7sAoHuByu4BXA7ZPLItAaQENtm18U2RbESQO/g81wBf9B8zvPQAjOuFPr
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

-->

</rfc>
