<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.31 (Ruby 2.6.10) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-ietf-tls-esni-18" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="TLS Encrypted Client Hello">TLS Encrypted Client Hello</title>

    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>Windy Hill Systems, LLC</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="2024" month="March" day="04"/>

    <area>SEC</area>
    <workgroup>tls</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document describes a mechanism in Transport Layer Security (TLS) for
encrypting a ClientHello message under a server public key.</t>



    </abstract>



<note title="Discussion Venues" removeInRFC="true">
<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>


<section anchor="intro"><name>Introduction</name>

<t>DISCLAIMER: This draft is work-in-progress and has not yet seen significant (or
really any) security analysis. It should not be used as a basis for building
production systems. This published version of the draft has been designated
an "implementation draft" for testing and interop purposes.</t>

<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, unencrypted
information 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 such a deployment.
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, DoH <xref target="RFC8484"/>
and DPRIVE <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 title="Shared Mode Topology" anchor="shared-mode"><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 title="Split Mode Topology" anchor="split-mode"><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. The server must publish
this for all the domains it serves via Shared or Split Mode. This document
defines the ECH configuration's format, but delegates DNS publication details
to <xref target="HTTPS-RR"/>. 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>

<t><list style="numbers">
  <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>
  <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>
</list></t>

<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 <spanx style="verb">ECHConfig</spanx> structure.</t>

<figure><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></figure>

<t>The structure contains the following fields:</t>

<dl>
  <dt>version</dt>
  <dd>
    <t>The version of ECH for which this configuration is used. Beginning with
draft-08, the version is the same as the code point for the
"encrypted_client_hello" extension. Clients MUST ignore any <spanx style="verb">ECHConfig</spanx>
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 <spanx style="verb">ECHConfigContents</spanx> structure.</t>
  </dd>
</dl>

<t>The <spanx style="verb">ECHConfigContents</spanx> structure contains the following fields:</t>

<dl>
  <dt>key_config</dt>
  <dd>
    <t>A <spanx style="verb">HpkeKeyConfig</spanx> structure carrying the configuration information associated
with the HPKE public key. Note that this structure contains the <spanx style="verb">config_id</spanx>
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>Clients MUST ignore any <spanx style="verb">ECHConfig</spanx> structure whose public_name is not
parsable as a dot-separated sequence of LDH labels, as defined in
<xref section="2.3.1" sectionFormat="comma" target="RFC5890"/> or which begins or end with an ASCII dot. 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. Additionally, clients MAY ignore the
<spanx style="verb">ECHConfig</spanx> if the length of any label in the DNS name is longer than 63
octets, as this is the maximum length of a DNS label.</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 <spanx style="verb">HpkeKeyConfig</spanx> 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 <spanx style="verb">public_key</spanx>. Clients MUST ignore any
<spanx style="verb">ECHConfig</spanx> 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>

<figure><artwork><![CDATA[
    ECHConfig ECHConfigList<1..2^16-1>;
]]></artwork></figure>

<t>The <spanx style="verb">ECHConfigList</spanx> structure contains one or more <spanx style="verb">ECHConfig</spanx> 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 <spanx style="verb">config_id</spanx> values for each ECHConfig in its known set. The
RECOMMENDED strategy is via rejection sampling, i.e., to randomly select
<spanx style="verb">config_id</spanx> repeatedly until it does not match any known ECHConfig.</t>

<t>It is not necessary for <spanx style="verb">config_id</spanx> values across different client-facing
servers to be distinct. A backend server may be hosted behind two different
client-facing servers with colliding <spanx style="verb">config_id</spanx> 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 <spanx style="verb">ECHConfig</spanx>.</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>

<figure><artwork><![CDATA[
    enum {
       encrypted_client_hello(0xfe0d), (65535)
    } ExtensionType;
]]></artwork></figure>

<t>The payload of the extension has the following structure:</t>

<figure><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></figure>

<t>The outer extension uses the <spanx style="verb">outer</spanx> variant and the inner extension uses the
<spanx style="verb">inner</spanx> 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 <spanx style="verb">ECHConfigContents.cipher_suites</spanx> list.</t>
  </dd>
  <dt>enc</dt>
  <dd>
    <t>The HPKE encapsulated key, used by servers to decrypt the corresponding
<spanx style="verb">payload</spanx> 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 <spanx style="verb">outer</spanx> 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>

<figure><artwork><![CDATA[
    struct {
       ECHConfigList retry_configs;
    } ECHEncryptedExtensions;
]]></artwork></figure>

<t>The response is valid only when the server used the ClientHelloOuter. If the
server sent this extension in response to the <spanx style="verb">inner</spanx> 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 <spanx style="verb">inner</spanx> variant and the server responds with HelloRetryRequest, it MUST
include an "encrypted_client_hello" extension with the following payload:</t>

<figure><artwork><![CDATA[
    struct {
       opaque confirmation[8];
    } ECHHelloRetryRequest;
]]></artwork></figure>

<t>The value of ECHHelloRetryRequest.confirmation is set to
<spanx style="verb">hrr_accept_confirmation</spanx> 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>

<figure><artwork><![CDATA[
    struct {
        ClientHello client_hello;
        uint8 zeros[length_of_padding];
    } EncodedClientHelloInner;
]]></artwork></figure>

<t>The <spanx style="verb">client_hello</spanx> field is computed by first making a copy of ClientHelloInner
and setting the <spanx style="verb">legacy_session_id</spanx> field to the empty string. Note this field
uses the ClientHello structure, defined in <xref section="4.1.2" sectionFormat="of" target="RFC8446"/> which
does not include the Handshake structure's four byte header. The <spanx style="verb">zeros</spanx> 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>

<figure><artwork><![CDATA[
    enum {
       ech_outer_extensions(0xfd00), (65535)
    } ExtensionType;

    ExtensionType OuterExtensions<2..254>;
]]></artwork></figure>

<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 <spanx style="verb">zeros</spanx> 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
<spanx style="verb">client_hello</spanx> 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 <spanx style="verb">client_hello</spanx> field and copies the
<spanx style="verb">legacy_session_id</spanx> 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>

<t><list style="symbols">
  <t>Any referenced extension is missing in ClientHelloOuter.</t>
  <t>Any extension is referenced in OuterExtensions more than once.</t>
  <t>"encrypted_client_hello" is referenced in OuterExtensions.</t>
  <t>The extensions in ClientHelloOuter corresponding to those in OuterExtensions
do not occur in the same order.</t>
</list></t>

<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 <spanx style="verb">ClientHelloOuter</spanx>
while keeping the same encrypted <spanx style="verb">ClientHelloInner</spanx>
(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"/>, which
matches the ClientHelloOuter except that the <spanx style="verb">payload</spanx> 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 the
four-byte header from the Handshake structure.</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 <spanx style="verb">ECHConfig</spanx> is suitable, it checks that
it supports the KEM algorithm identified by <spanx style="verb">ECHConfig.contents.kem_id</spanx>, at
least one KDF/AEAD algorithm identified by <spanx style="verb">ECHConfig.contents.cipher_suites</spanx>,
and the version of ECH indicated by <spanx style="verb">ECHConfig.contents.version</spanx>. 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>

<t><list style="numbers">
  <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>
  <t>It MUST NOT offer to resume any session for TLS 1.2 and below.</t>
  <t>If it intends to compress any extensions (see <xref target="encoding-inner"/>), it MUST
order those extensions consecutively.</t>
  <t>It MUST include the "encrypted_client_hello" extension of type <spanx style="verb">inner</spanx> 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>
</list></t>

<t>The client then constructs EncodedClientHelloInner as described in
<xref target="encoding-inner"/>. It also computes an HPKE encryption context and <spanx style="verb">enc</spanx> value
as:</t>

<figure><artwork><![CDATA[
    pkR = DeserializePublicKey(ECHConfig.contents.public_key)
    enc, context = SetupBaseS(pkR,
                              "tls ech" || 0x00 || ECHConfig)
]]></artwork></figure>

<t>Next, it constructs a partial ClientHelloOuterAAD as it does a standard
ClientHello, with the exception of the following rules:</t>

<t><list style="numbers">
  <t>It MUST offer to negotiate TLS 1.3 or above.</t>
  <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>
  <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>
  <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>
  <t>It SHOULD place the value of <spanx style="verb">ECHConfig.contents.public_name</spanx> 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>
  <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>
  <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>
</list></t>

<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 <spanx style="verb">enc</spanx> 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>

<t><list style="symbols">
  <t><spanx style="verb">config_id</spanx>, the identifier corresponding to the chosen ECHConfig structure;</t>
  <t><spanx style="verb">cipher_suite</spanx>, the client's chosen cipher suite;</t>
  <t><spanx style="verb">enc</spanx>, as given above; and</t>
  <t><spanx style="verb">payload</spanx>, a placeholder byte string containing L zeros.</t>
</list></t>

<t>If configuration identifiers (see <xref target="ignored-configs"/>) are to be ignored,
<spanx style="verb">config_id</spanx> 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>

<figure><artwork><![CDATA[
    final_payload = context.Seal(ClientHelloOuterAAD,
                                 EncodedClientHelloInner)
]]></artwork></figure>

<t>Including <spanx style="verb">ClientHelloOuterAAD</spanx> as the HPKE AAD binds the <spanx style="verb">ClientHelloOuter</spanx>
to the <spanx style="verb">ClientHelloInner</spanx>, this preventing attackers from modifying
<spanx style="verb">ClientHelloOuter</spanx> while keeping the same <spanx style="verb">ClientHelloInner</spanx>, as described in
{#flow-clienthello-malleability}.</t>

<t>Finally, the client replaces <spanx style="verb">payload</spanx> with <spanx style="verb">final_payload</spanx> 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 sending 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 <spanx style="verb">OfferedPsks</spanx>
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 <spanx style="verb">obfuscated_ticket_age</spanx>. 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 <spanx style="verb">ClientHelloOuter.payload</spanx> can leak information about <spanx style="verb">ClientHelloInner</spanx>.
In order to prevent this the <spanx style="verb">EncodedClientHelloInner</spanx> 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
<spanx style="verb">maximum_name_length</spanx> field as follows, where L is the <spanx style="verb">maximum_name_length</spanx>
value.</t>

<t><list style="numbers">
  <t>If the ClientHelloInner contained a "server_name" extension with a name of
length D, add max(0, L - D) bytes of padding.</t>
  <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>
</list></t>

<t>Finally, the client SHOULD pad the entire message as follows:</t>

<t><list style="numbers">
  <t>Let L be the length of the EncodedClientHelloInner with all the padding
computed so far.</t>
  <t>Let N = 31 - ((L - 1) % 32) and add N bytes of padding.</t>
</list></t>

<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 <spanx style="verb">accept_confirmation</spanx> as
described in <xref target="backend-server"/>. If this value matches the last 8 bytes of
<spanx style="verb">ServerHello.random</spanx>, 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
<spanx style="verb">hrr_accept_confirmation</spanx> 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>[[OPEN ISSUE: Depending on what we do for issue#450, it may be appropriate to
change the client behavior if the HRR extension is present but with the wrong
value.]]</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>

<t><list style="numbers">
  <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>
  <t>It constructs EncodedClientHelloInner as described in <xref target="encoding-inner"/>.</t>
  <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>
  <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 <spanx style="verb">enc</spanx>.  <vspace blankLines='1'/>
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>
</list></t>

<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 implement a limit on retries caused by receipt of "retry_configs"
or servers which do not acknowledge the "encrypted_client_hello" extension. If
the client does not retry in either scenario, 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>

<t><list style="symbols">
  <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>
  <t>If the server requests a client certificate, the client MUST respond with an
empty Certificate message, denoting no client certificate.</t>
</list></t>

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

</section>
</section>
<section anchor="grease-ech"><name>GREASE ECH</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>

<t><list style="symbols">
  <t>Set the <spanx style="verb">config_id</spanx> field to a random byte.</t>
  <t>Set the <spanx style="verb">cipher_suite</spanx> 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>
  <t>Set the <spanx style="verb">enc</spanx> field to a randomly-generated valid encapsulated public key
output by the HPKE KEM.</t>
  <t>Set the <spanx style="verb">payload</spanx> 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>
</list></t>

<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>
<section anchor="server-behavior"><name>Server Behavior</name>

<t>As described in {#topologies}, servers can play two roles, either as
the client-facing server or as the back-end server.
Depending on the server role, the <spanx style="verb">ECHClientHello</spanx> will be different:</t>

<t><list style="symbols">
  <t>A client-facing server expects a <spanx style="verb">ECHClientHello.type</spanx> of <spanx style="verb">outer</spanx>, and
proceeds as described in <xref target="client-facing-server"/> to extract a
ClientHelloInner, if available.</t>
  <t>A backend server expects a <spanx style="verb">ECHClientHello.type</spanx> of <spanx style="verb">inner</spanx>, and
proceeds as described in <xref target="backend-server"/>.</t>
</list></t>

<t>In split mode, a client-facing server which receives a <spanx style="verb">ClientHello</spanx>
with <spanx style="verb">ECHClientHello.type</spanx> of <spanx style="verb">inner</spanx> MUST abort with an
"illegal_parameter" alert. Similarly, in split mode, a backend server
which receives a <spanx style="verb">ClientHello</spanx> with <spanx style="verb">ECHClientHello.type</spanx> of <spanx style="verb">outer</spanx>
MUST abort with an "illegal_parameter" alert.</t>

<t>In shared mode, a server plays both roles, first decrypting the
<spanx style="verb">ClientHelloOuter</spanx> and then using the contents of the
<spanx style="verb">ClientHelloInner</spanx>.  A shared mode server which receives a
<spanx style="verb">ClientHello</spanx> with <spanx style="verb">ECHClientHello.type</spanx> of <spanx style="verb">outer</spanx> MUST abort with an
"illegal_parameter" alert, because such a <spanx style="verb">ClientHello</spanx> should never
be received directly from the network.</t>

<t>If <spanx style="verb">ECHClientHello.type</spanx> is not a valid <spanx style="verb">ECHClientHelloType</spanx>, 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>

<t><list style="numbers">
  <t>Compare ECHClientHello.config_id against identifiers of each known ECHConfig
and select the ones that match, if any, as candidates.</t>
  <t>Collect all known ECHConfig values as candidates, with trial decryption
below determining the final selection.</t>
</list></t>

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

<figure><artwork><![CDATA[
    context = SetupBaseR(ECHClientHello.enc, skR,
                         "tls ech" || 0x00 || ECHConfig)
    EncodedClientHelloInner = context.Open(ClientHelloOuterAAD,
                                         ECHClientHello.payload)
]]></artwork></figure>

<t>ClientHelloOuterAAD is computed from ClientHelloOuter as described in
<xref target="authenticating-outer"/>. The <spanx style="verb">info</spanx> 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
<spanx style="verb">inner</spanx> 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>

<t><list style="symbols">
  <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>
  <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>
</list></t>

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

<figure><artwork><![CDATA[
    EncodedClientHelloInner = context.Open(ClientHelloOuterAAD,
                                         ECHClientHello.payload)
]]></artwork></figure>

<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 <spanx style="verb">inner</spanx> 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>

<figure><artwork><![CDATA[
   accept_confirmation = HKDF-Expand-Label(
      HKDF-Extract(0, ClientHelloInner.random),
      "ech accept confirmation",
      transcript_ech_conf,
      8)
]]></artwork></figure>

<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.</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>

<figure><artwork><![CDATA[
   hrr_accept_confirmation = HKDF-Expand-Label(
      HKDF-Extract(0, ClientHelloInner1.random),
      "hrr ech accept confirmation",
      transcript_hrr_ech_conf,
      8)
]]></artwork></figure>

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

<t><list style="symbols">
  <t>KEM: DHKEM(X25519, HKDF-SHA256) (see <xref section="7.1" sectionFormat="of" target="HPKE"/>)</t>
  <t>KDF: HKDF-SHA256 (see <xref section="7.2" sectionFormat="of" target="HPKE"/>)</t>
  <t>AEAD: AES-128-GCM (see <xref section="7.3" sectionFormat="of" target="HPKE"/>)</t>
</list></t>

</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>

<t><list style="numbers">
  <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>
  <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>
</list></t>

<t>Given this threat model, the primary goals of ECH are as follows.</t>

<t><list style="numbers">
  <t>Security preservation. Use of ECH does not weaken the security properties of
TLS without ECH.</t>
  <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>
  <t>Downgrade resistance. An attacker cannot downgrade a connection that
attempts to use ECH to one that does not use ECH.</t>
</list></t>

<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. 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 messages.</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 DoH/DPRIVE are also defenses 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 via DoH or DPRIVE
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>

</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 a 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="prevent-sni-based-denial-of-service-attacks"><name>Prevent 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, our 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>

<t><list style="numbers">
  <t>The attacker does not know the ECHConfigList used by the server.</t>
  <t>The attacker keeps per-connection state only. In particular, it does not
track endpoints across connections.</t>
</list></t>

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

<t><list style="numbers">
  <t>the code points of extensions negotiated in the clear, and their order;</t>
  <t>the length of messages; and</t>
  <t>the values of plaintext alert messages.</t>
</list></t>

<t>This leaves a variety of practical differentiators out-of-scope. including,
though not limited to, the following:</t>

<t><list style="numbers">
  <t>the value of the configuration identifier;</t>
  <t>the value of the outer SNI;</t>
  <t>the TLS version negotiated, which may depend on ECH acceptance;</t>
  <t>client authentication, which may depend on ECH acceptance; and</t>
  <t>HRR issuance, which may depend on ECH acceptance.</t>
</list></t>

<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 is not forward secret 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 frequently.</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 avoiding unnecessary MiTM attacks.</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 title="Client reaction attack" anchor="flow-diagram-client-reaction"><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 title="HelloRetryRequest hijack attack" anchor="flow-diagram-hrr-hijack"><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 title="Message flow for malleable ClientHello" anchor="tls-clienthello-malleability"><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>

<t><list style="symbols">
  <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>
  <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>
</list></t>

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

<t><list style="numbers">
  <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>
  <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>
</list></t>

</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 this registry are subject to the Specification Required
registration policy (<xref section="4.6" sectionFormat="comma" target="RFC8126"/>).</t>

<t>The registration policy for for the "ECHConfig Extension Type" registry
is Specification Required <xref target="RFC8126"/>.</t>

<t>This document defines several Reserved values for ECH configuration extensions.
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. These
extraneous ECH configurations SHOULD have invalid keys, and public
names which the server does not respond to. Correctly-implemented
clients will ignore these configurations.</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>None</t>
  </dd>
</dl>

</section>
</section>


  </middle>

  <back>


    <references title='Normative References'>



<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='HTTPS-RR'>
   <front>
      <title>Service Binding and Parameter Specification via the DNS (SVCB and HTTPS Resource Records)</title>
      <author fullname='Benjamin M. Schwartz' initials='B. M.' surname='Schwartz'>
         <organization>Google</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='11' month='March' year='2023'/>
      <abstract>
	 <t>This document specifies the &quot;SVCB&quot; (&quot;Service Binding&quot;) and &quot;HTTPS&quot; 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, &quot;HTTP Semantics&quot;).  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='Internet-Draft' value='draft-ietf-dnsop-svcb-https-12'/>
   
</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>Google</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='26' month='September' year='2023'/>
      <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-00'/>
   
</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>




    </references>

    <references title='Informative References'>

<reference anchor="WHATWG-IPV4" target="https://url.spec.whatwg.org/#concept-ipv4-parser">
  <front>
    <title>URL Living Standard - IPv4 Parser</title>
    <author >
      <organization></organization>
    </author>
    <date year="2021" month="May"/>
  </front>
</reference>
<reference anchor="ECH-Analysis" >
  <front>
    <title>A Symbolic Analysis of Privacy for TLS 1.3 with Encrypted Client Hello</title>
    <author >
      <organization></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='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>


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

</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>

<t><list style="numbers">
  <t>Let I be initialized to zero and N be set to the number of extensions
in ClientHelloOuter.</t>
  <t>For each extension type, E, in OuterExtensions:  <list style="symbols">
      <t>If E is "encrypted_client_hello", abort the connection with an
"illegal_parameter" alert and terminate this procedure.</t>
      <t>While I is less than N and the I-th extension of
ClientHelloOuter does not have type E, increment I.</t>
      <t>If I is equal to N, abort the connection with an "illegal_parameter"
alert and terminate this procedure.</t>
      <t>Otherwise, the I-th extension of ClientHelloOuter has type E. Copy
it to the EncodedClientHelloInner and increment I.</t>
    </list></t>
</list></t>

</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>

<t><list style="symbols">
  <t>Keep-alive</t>
</list></t>

</section>
<section anchor="since-draft-ietf-tls-esni-15"><name>Since draft-ietf-tls-esni-15</name>

<t><list style="symbols">
  <t>Add CCS2022 reference and summary (#539)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-tls-esni-14"><name>Since draft-ietf-tls-esni-14</name>

<t><list style="symbols">
  <t>Keep-alive</t>
</list></t>

</section>
<section anchor="since-draft-ietf-tls-esni-13"><name>Since draft-ietf-tls-esni-13</name>

<t><list style="symbols">
  <t>Editorial improvements</t>
</list></t>

</section>
<section anchor="since-draft-ietf-tls-esni-12"><name>Since draft-ietf-tls-esni-12</name>

<t><list style="symbols">
  <t>Abort on duplicate OuterExtensions (#514)</t>
  <t>Improve EncodedClientHelloInner definition (#503)</t>
  <t>Clarify retry configuration usage (#498)</t>
  <t>Expand on config_id generation implications (#491)</t>
  <t>Server-side acceptance signal extension GREASE (#481)</t>
  <t>Refactor overview, client implementation, and middlebox
sections (#480, #478, #475, #508)</t>
  <t>Editorial iprovements (#485, #488, #490, #495, #496, #499, #500,
#501, #504, #505, #507, #510, #511)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-tls-esni-11"><name>Since draft-ietf-tls-esni-11</name>

<t><list style="symbols">
  <t>Move ClientHello padding to the encoding (#443)</t>
  <t>Align codepoints (#464)</t>
  <t>Relax OuterExtensions checks for alignment with RFC8446 (#467)</t>
  <t>Clarify HRR acceptance and rejection logic (#470)</t>
  <t>Editorial improvements (#468, #465, #462, #461)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-tls-esni-10"><name>Since draft-ietf-tls-esni-10</name>

<t><list style="symbols">
  <t>Make HRR confirmation and ECH acceptance explicit (#422, #423)</t>
  <t>Relax computation of the acceptance signal (#420, #449)</t>
  <t>Simplify ClientHelloOuterAAD generation (#438, #442)</t>
  <t>Allow empty enc in ECHClientHello (#444)</t>
  <t>Authenticate ECHClientHello extensions position in ClientHelloOuterAAD (#410)</t>
  <t>Allow clients to send a dummy PSK and early_data in ClientHelloOuter when
applicable (#414, #415)</t>
  <t>Compress ECHConfigContents (#409)</t>
  <t>Validate ECHConfig.contents.public_name (#413, #456)</t>
  <t>Validate ClientHelloInner contents (#411)</t>
  <t>Note split-mode challenges for HRR (#418)</t>
  <t>Editorial improvements (#428, #432, #439, #445, #458, #455)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-tls-esni-09"><name>Since draft-ietf-tls-esni-09</name>

<t><list style="symbols">
  <t>Finalize HPKE dependency (#390)</t>
  <t>Move from client-computed to server-chosen, one-byte config
identifier (#376, #381)</t>
  <t>Rename ECHConfigs to ECHConfigList (#391)</t>
  <t>Clarify some security and privacy properties (#385, #383)</t>
</list></t>

</section>
</section>


  </back>

<!-- ##markdown-source:
H4sIAH3x5WUAA8296XbcyLEu+j+fAodad4lsV5VJDd2S2vbZbJJtcbWmQ6rd
28vbRwKrUCQsFFAGUKTKsu6z3xgzIzGQbNs/rtbeVovEkMiMjIzhiy+m06lr
87bIXiTvX50nJ+W83q7bbJEcFXlWtsnLrCgql15c1Nn1rZcsqnmZruAxizpd
ttM8a5fTtmimWVPm04Nnbp622WVVb18kTbtwLl/XL5K23jTto/395/uPXLO5
WOVNk1dlu13DY05P3v/o0jpLXyTnJ0fupqo/XdbVZg13FY37lG3hJwu4rGyz
usza6TG+1rmmTcvFh7SoSnjGNmvcOn+R/KWt5pOkqeq2zpYN/Nd2hf/xV+fS
TXtV1S9cMnUJ/8nL5kVyMkvOsmZe1UWqP+ePO6nzee9XVX2Zlvk/0hYG/yL5
JS8X2+RlXhTJ+bZpsxW88NWrI704W6V58SLJPtX/VbfL1WxerVz39T/Nkref
NvGbf0r/sbmq7M/j1/6YNm2x7bzlE91Ufdr81yX+YPBlb2bJ+aYo8uu0jN/4
Jp9/6v0qfukRSkJ1Wafrq21yVJXNpmjz8nLge8t8flUVaTNr5IG/QQm5ZVhH
s+RwlvxSVYt4VEdXdd601foqq7sXdMZWVJvFsgAR6gxlnt7811WWrmGgF3nb
zEB6nHNlVa/gzusMhCE5+/Ho0cHBc/nP754fPHsBIlsu7TW/vDx8/8sfp6fv
/vQE/5nILtr5+exV8iq/xmk4R2FM60UyTU7fXT9J3qV1k9U7dHVaX2bti+Sq
bdfNi9/+dlMXs2adzWc3V2l7czmDb/ntg3lVzrM1bKb19ZPpmm7GexewlV4k
r9Nt8mj/0QH85OTo5fSwTIttkzc0Fj+YQ5DB1UVVgNTqBUm1TN7VsATzbQIf
RHv6YPY4ucnbq5HNTSOW176prrPVBUw+vPsR/Zz3kLw4CcvoZfmHK/jY1AgR
rhRu3TpPh2/60wzWObtOi3vfcRSLAl9vRMC56XSapBdNW6dzWO/3VzAToLM2
K/zKBezoOr/ImiRNVtn8CsSoWcGDk/d1WjZrUBzJq3QLH32ezTd13m6TXZi2
PZw/l/GU4XqnMms0afCgpkkvs2RTLuDONIHVu4b/WG8ucDlAg814UKt8sShg
hA9QmdXVYjNHAU6+PMjxn1+dOz49P3p1ePr65Aw0MI0bdV0C/4FacZqX03UN
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
6v8Dq5AJ2HpyAQA=

-->

</rfc>

