<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.23 (Ruby 3.3.6) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-tls-esni-23" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.27.0 -->
  <front>
    <title abbrev="TLS Encrypted Client Hello">TLS Encrypted Client Hello</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-23"/>
    <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="February" day="19"/>
    <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 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,
DNS over HTTPS <xref target="RFC8484"/> and DNS over TLS/DTLS <xref target="RFC7858"/>
        <xref target="RFC8094"/> 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 used 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.com |
           |                    |     |                     |
           +--------------------+     +---------------------+
            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. 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.</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 GREASE
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 Appendix D.4 of <xref 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 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>, this 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 keys
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. Clients that incorporate DNS
names and IP addresses into the same syntax (e.g. <xref section="7.4" sectionFormat="comma" 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> to
ensure that the public_name can be authenticated.  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 server is
authoritative 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
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 host within an
anonymity set is indistinguishable from a connection to any other host
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 host, 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 hosts as possible. An
attacker can distinguish two hosts 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 hosts. For example, if a client-facing server
services many backend origin hosts, only one of which supports some
cipher suite, it may be possible to identify that host 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 Resource Records are
signed via a server private key, ECH 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 ECH 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 which is 1:1 with the DNS name that was looked up (modulo DNS
wildcards). Thus, allowing the ECH 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.</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 with high load are the best candidates
to be client-facing servers and so anonymity sets will typically
be large 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 Section 4 of
<xref 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 by publishing different DNS records containing ECHConfig
values with different 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 ECH records retrieved from DNS are authenticated, e.g.,
via DNSSEC or fetched from a trusted Recursive Resolver, 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="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="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="A. Sullivan" initials="A." surname="Sullivan"/>
            <author fullname="K. Fujiwara" initials="K." surname="Fujiwara"/>
            <date month="January" year="2019"/>
            <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 sometimes 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 obsoletes RFC 7719 and updates RFC 2308.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8499"/>
          <seriesInfo name="DOI" value="10.17487/RFC8499"/>
        </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="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 1988?>

<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 1999?>

</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:
H4sIAAAAAAAAA8y9a3fcxpU2+r1+BYZaZ4lMutsiLduSHGeGJmmLy7q9ohxP
ViavCHajSUToRgdAk+ooOr/97GvVrgKapDL5cLRmIosECnXdtS/PfvZ4PHZd
2VXFs+zdi7PsZDltNquumGVHVVksu+x5UVW1yy8umuL61kdm9XSZL6CZWZPP
u3FZdPNxV7Xjol2W44Ov3TTvisu62TzL2m7mXLlqnmVds267g0ePnj46cO36
YlG2bVkvu80Kmjk9efeTy5sif5adnRy5m7r5cNnU6xW8VbXuQ7GBn8zgsWVX
NMuiGx/jZ51ru3w5e59X9RLa2BStW5XPsr909XSUtXXTNcW8hf/aLPA//upc
vu6u6uaZy8Yu4z/lsn2WnUyyt0U7rZsq15/z4E6actr7Vd1c5svyH3kHncce
zYpVAf+z7PSBYpGX1bOs+ND8V9PNF5NpvXDpJ3+ZZK8/rOOv/ZL/Y31V25/H
n/opb7tqk3zlA71Uf1j/1yX+YPBjrybZ2bqqyut8GX/xVTn90PtV/NEjXP36
sslXV5vsqF6266orl5fZixdHSU+W5fSqrvJ20kqDv8ddcUu3jibZ4ST7ra5n
ca+Orpqy7erVVdGkDyR9q+r1bF7Btkm6Ms1v/uuqyFfQ0YuyayewY5xzy7pZ
wJvXBWyA7O1PRwf7+0/lP797uv/kGWzT5dw+89vzw3e//Tw+ffOnx/jPTE7O
zq9vX2QvymuchjPcgHkzy8bZ6Zvrx9mbvGmLZoeezpvLonuWXXXdqn321Vfr
ppq0q2I6ubnKu5vLCYzlqwfTejktVnCAVtePxyt6Gd+dwfF5lr3MN9nBo4N9
+MnJ0fPx4TKvNm3ZUl98Zw6zs83ioq5gp+oDWT3P3jSwBNNNBgOic7w/+Tq7
KburLQd6h9tMunxzczOZtpP64ySfTtYfvloV9aoqvoKRT+HNyfSquM6rr1br
i6psv/rx6LfxdNoeHExWszk1x6N4VV8XiwtYSxjKAf2cj6GMIwu7wh+NH6+g
I7nZk7jweNaaMh9+6U8T2DbYm3u/cRTvLH7e7CjnxuNxll+0XZNPYfu8u4KJ
BbG3XuCkzUAoNOVF0WZ5tiimV7Ar2wU0nL1r8mW7AtmTvcg3MOizYrpuym6T
7cIq7OFyuIJXALdPLotAawANtW1+WWRrECcN/A42wzX8B83vNAMhOOFOLcrZ
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
myNuP4wn+HX02X5m4Si7UvOxLTgXDpJhfp3mKxYO8LuQo+wvNo8lJzSvYuBI
w3iBqdyKf7JhlrSNDwWGDAjgGowvhpSiidKrB2UKDTqmgIUdECiiBJBsUcjO
lJDYtpGZbVDm0OYthLkQ4BjMNZ8U+H9QfWB2N6AINBtfH1AGFlBuoCtqMNsk
niFdAs0oq6NoB/IIhEhGlB5DrG1h/L6iatkwHu57bUqwCCYd93sCWcqvQxWy
QHHApav0cU1bg89c0w1yjVuDrwfvfYnkBJ5KkL6oEFJcZWJ4bxwKZhBkOHrS
XWmPjuK5DRPhaam9t2IAXvr94NOMgAAtx/8adYJrIUkP86h5LyhHAgAgZuim
JhT7a8r3kGF699s64c/fviWPLvsX737R56kKJ5CYBIp8IpLQtl5d4S7iNKdE
vHAmBeWh6f1jEWfTAWJf6/kJJGa8vxBh7OREGZxTj/GsJ+p5FLYL6Du2eyTE
3iKZrOa6FgH5iSuYsBE63SRGqIofFeBS7wSlJz7ts9bKFBzirGPEx2WNZceG
6ySLHVWwV2cg6Op5iO2m1gG+X5VzQuuoJvX25Oj1y5cnr45PjqOolrMg9qa4
ZLiBTMEJRe6yl0T/yfxPlvuFAGDxdKzQ3dYFc0vMGwqCW34KNoVooqw6zlFr
xtAnmaJDwE2bbsfKsw++SqLhYCM0kU2B6To2XWnwWSfJlWrK97yquv+8+rfN
7apGnxAQNIW6ngJiWl2Tzh0ht0kDigDim5GjQ/k/1KJG+jS8rmeB5ZXMeJuA
KPkbDvMxJG8Ki/cVWGp5psn3yt/1FheW7mJMK6yYH2JV13Pq8HDt0W2rm3iU
CDXlPn2Kcx85ukDyRLm6OL+dvCE2bRIj8VH9sviaD0ko2RKvR4oQDGwNgfK5
iOg1ZEfHb3CZL6SoU/+kj6IMrq49zL2kNBP5tOSDxkdoqy4rQzR9HrNkxPch
CPKXWoPzjajXyRG8ooQwb6LHpFZVvmFEMivmeiNxxE7AM4Rysm7opqaqCaOh
MfiCihaQESMqLGImcpQo97rSdvvqorbHpGOoe8On/GK0b5MlJ6ggJrSoFoZA
K3hmckOw7XyCedIIgWItZyJM/RuplPGGeNUQwNeUcqeIQhQ0nqE4m9B8SbAc
7TiMyLptGLrILagHYQL29Yr7QXgFNryxCowV7fJEwmHiE13KBad9e2eOD6pF
namYY1CCmgx5Y/eaOrHLPt9X6BIZgRKUCvTWxuzOqewi9XDachEiyqps/ZGI
uJmY6B7tuaDctkwuOor0XbRCak73i1SLKGnOKA18mVDKuTJEhJYos4I81+r8
HV6v3sXex/mjRuiUj+FBSJ18WzDrXn9ys08P5ug1EVnTyIOflc6Bn19r9NXn
4+iDjJQJEbRY7pBrsAY9uhL0exi2sveR26a4LNGP3PVTUzEn2aMD8qiolDOw
xJHFKP6J0JAsJ34CE7LFWygk5GhmexfjIX3B+FCDJdsBodrtDFIBz2qM7gog
3yK7iWsMIdvOiGi5kyU4aFGYxJ3ILLZWgGW78B08HsRVmm4H1HyipzWIg6rG
EKR2j0PSfvppv6mvCR30lLhnukXjusnbsLKcWbUMWP+2F/992MaVFErKYk2x
yrCtdqSRCUjm0U6mDOS+e7zqyssczRfOPy0Lvhu4zT2YCzOSSVpF86Plodn6
0ztUzqKyrFNOoQZOcU05i5hIrVy6bnRbky4QkHyjLSeXJhMXs+X6UM5b3JHb
nFnyYMhXddXbKLypA3XIqTAEaa6hAfCx7cXlfHgW5PTa/vPgOsY50y3gQi0n
CaZ9MCgBw84gtXFEtmz7c6hDi//wCUZvhjVR4J+/R9PgPQNv6J9YEEf/jOnP
H/kfu1547IVf/jH772x3BqJ/z91e/NaIkNsfTDqU/vk0UDLz8+CDZtoF8PW7
wQcHnt/y4Kfexhh68A88a/iLQ9z3/SdkWmk9Pz3L+CqYlfllky/SKwHESlcV
P+zIsvsf8xbe+ey2BoKF2Uw56xnAkrq6fCJoYLbwJi+xhwg3B3meFO7AlaWF
NJOPPisFxJ1uCl2hhAnhCLJBsaBmwXUFEs1sACRvPd/CMSycwmVlQ31D0j0U
KI4sL7ye+0jK5+Xfhi/oq6YZX9Evk7tZHbsFY8FUd0Z3DHsWmfdXGdTQrruO
M5QENrn1Hua4lZKk6/KMhXOkisn5Jgg4o1JoqcpkbnzmC5YSw9s+62tyb8tp
3gUJsWfSgMQpqbY3i0GJkuCNYL6zpdYdyHMwHd7m3ZVeA+o84HhD512fYqcm
Y7Rcbbeyy9vKehHLVlynYaiQLZVY7HW/+CiESJ7hW0D6Ab7D+yJCAdutmrh0
k6ohjkE9V1wryZuow91T3xBH/P3DjDJ2uwM7aC81puK+ydmeya2lV5NL08Ox
b+k4/le3Ff75N9xY2a7so7341yB6t/Zo8E8fOvxl7/OfO2428ye9av2lMr7j
lk3n6n69eXjnozDFD80P/sVp5D/31gS29ua+02j/3Ftv2Pb+F6oT92jmy96/
n/Jxr5bUOvvy9/023PrErtpEWqumQqVgb1jXCberqjl9ESu/D/pOApxRBPhs
AKXPHOySpowqx0UNYtqeER+R2hJ1RB+nwv+kIZB7XOkKk9BUDwpVTXLBDsWc
S0EQ900zzDNL3BPsRQIVolytK0VS9NNFmCuRtC7DlujUWFaMbK0lTLxbQErq
elCJKbMSXzJWuwy4eM4Omm/pVUoducgvy2UR3xzshM+r2HId9LekluuOD0x6
wxoa5G1SzO5rChtb9lAvW2G4uyo4KQzjS6Sn/n2dV8rUKFUvA07eklBqih7H
1vjyjqYdUTjkc0qt98hxxL18iXhixc1scx2RTjZemEe36Km9HBHWPimM1ZFJ
4JWfwfJXtqDwgCpqNhDOUmDNstEvFyj20nTkq5BAHiHH7sqbzwxTgh9Entlk
goHu9kgcpJQHRxoGErIIE36xvrzUkljkSrcA9pzYCtNzNPSdLkIkuW2KO+t4
pAjk08674sKZri8ofMmsO0zy7hDeV3QRhp18TOw2C57L6DxNshc5wYsJaUvF
u1Zc/KA3TyxwuMwwVWSK+d9tqbyQhs5KMfcwkx7SaAZSyKOSeRF/vBnlm7Nf
xIkWqAqiVHktlMd2IvwW3sgukEui4ePtrRz2TBHwtufVZxLBeK44+F1WhBtS
iJ58gRDUoSDMbW0GEmwTplJmP/KgO5EYJMsLrrgQ8oS9kGsnvmRylg1q27eo
2PhH1Ox7aQIG/IgCmFbyvipEbybv+6KqHKBtRqO0CmRfJSSVNXyC/vme4Bvv
A/IFdJWC35q9hwb2/Lvxzwd6Or5TAzYq/NZn7qOs30fbTQa75YH7Dn/o9fjJ
u+wF++fumbrzzxYv2r17UDe36Kvb//xv7RT9M5lM/sX3VU//gtf9afEKd1e1
W3UF1bpfSgwGFQutCIMPVZFrKFW+JdGWNd+q/IcmcJtrUL1BQUBfMwjwYuMi
ia0XE4VnDf0Rkzt6JT9yZhI9J14RPswtLJ3JLdzzkLJ/MIYcEJx0uVp3vv5M
+pbbPUHlo5gNNpfelHshI46sEKzDpECJ+NNjOpdIAfSO4NJWD9JLlODXqe6D
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

-->

</rfc>
