<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.1 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-tls-esni-17" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.1 -->
  <front>
    <title abbrev="TLS Encrypted Client Hello">TLS Encrypted Client Hello</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-17"/>
    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>RTFM, Inc.</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>Cloudflare</organization>
      <address>
        <email>nick@cloudflare.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="2023" month="October" day="09"/>
    <area>General</area>
    <workgroup>tls</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 65?>

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

<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>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>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, including supported versions and cipher suites, form an
anonymity set. 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.</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".</t>
      <section anchor="topologies">
        <name>Topologies</name>
        <figure anchor="shared-mode">
          <name>Shared Mode Topology</name>
          <artwork><![CDATA[
                +---------------------+
                |                     |
                |   2001:DB8::1111    |
                |                     |
Client <----->  | private.example.org |
                |                     |
                | public.example.com  |
                |                     |
                +---------------------+
                        Server
          (Client-Facing and Backend Combined)
]]></artwork>
        </figure>
        <t>In Shared Mode, the provider is the origin server for all the domains whose DNS
records point to it. In this mode, the TLS connection is terminated by the
provider.</t>
        <figure anchor="split-mode">
          <name>Split Mode Topology</name>
          <artwork><![CDATA[
           +--------------------+     +---------------------+
           |                    |     |                     |
           |   2001:DB8::1111   |     |   2001:DB8::EEEE    |
Client <----------------------------->|                     |
           | public.example.com |     | private.example.com |
           |                    |     |                     |
           +--------------------+     +---------------------+
            Client-Facing Server            Backend Server
]]></artwork>
        </figure>
        <t>In Split Mode, the provider is not the origin server for private domains.
Rather, the DNS records for private domains point to the provider, and the
provider's server relays the connection back to the origin server, who
terminates the TLS connection with the client. Importantly, the service provider
does not have access to the plaintext of the connection beyond the unencrypted
portions of the handshake.</t>
        <t>In the remainder of this document, we will refer to the ECH-service provider as
the "client-facing server" and to the TLS terminator as the "backend server".
These are the same entity in Shared Mode, but in Split Mode, the client-facing
and backend servers are physically separated.</t>
      </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"/>. Other delivery mechanisms are also
possible. For example, the client may have the ECH configuration preconfigured.</t>
        <t>When a client wants to establish a TLS session with some backend server, it
constructs a private ClientHello, referred to as the ClientHelloInner.
The client then constructs a public ClientHello, referred to as the
ClientHelloOuter. The ClientHelloOuter contains innocuous values for
sensitive extensions and an "encrypted_client_hello" extension
(<xref target="encrypted-client-hello"/>), which carries the encrypted ClientHelloInner.
Finally, the client sends ClientHelloOuter to the server.</t>
        <t>The server takes one of the following actions:</t>
        <ol spacing="normal" type="1"><li>
            <t>If it does not support ECH or cannot decrypt the extension, it completes
the handshake with ClientHelloOuter. This is referred to as rejecting ECH.</t>
          </li>
          <li>
            <t>If it successfully decrypts the extension, it forwards the ClientHelloInner
to the backend server, which completes the handshake. This is referred to
as accepting ECH.</t>
          </li>
        </ol>
        <t>Upon receiving the server's response, the client determines whether or not ECH
was accepted (<xref target="determining-ech-acceptance"/>) and proceeds with the handshake
accordingly. When ECH is rejected, the resulting connection is not usable by
the client for application data. Instead, ECH rejection allows the client to
retry with up-to-date configuration (<xref target="rejected-ech"/>).</t>
        <t>The primary goal of ECH is to ensure that connections to servers in the same
anonymity set are indistinguishable from one another. Moreover, it should
achieve this goal without affecting any existing security properties of TLS 1.3.
See <xref target="goals"/> for more details about the ECH security and privacy goals.</t>
      </section>
    </section>
    <section anchor="ech-configuration">
      <name>Encrypted ClientHello Configuration</name>
      <t>ECH uses HPKE for public key encryption <xref target="HPKE"/>.
The ECH configuration is defined by the following <tt>ECHConfig</tt> structure.</t>
      <artwork><![CDATA[
    opaque HpkePublicKey<1..2^16-1>;
    uint16 HpkeKemId;  // Defined in RFC9180
    uint16 HpkeKdfId;  // Defined in RFC9180
    uint16 HpkeAeadId; // Defined in RFC9180

    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 {
        HpkeKeyConfig key_config;
        uint8 maximum_name_length;
        opaque public_name<1..255>;
        Extension extensions<0..2^16-1>;
    } ECHConfigContents;

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

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

    ExtensionType OuterExtensions<2..254>;
]]></artwork>
        <t>OuterExtensions contains the removed ExtensionType values. Each value references
the matching extension in ClientHelloOuter. The values MUST be ordered
contiguously in ClientHelloInner, and the "ech_outer_extensions" extension MUST
be inserted in the corresponding position in EncodedClientHelloInner.
Additionally, the extensions MUST appear in ClientHelloOuter in the same
relative order. However, there is no requirement that they be contiguous. For
example, OuterExtensions may contain extensions A, B, C, while ClientHelloOuter
contains extensions A, D, B, C, E, F.</t>
        <t>The "ech_outer_extensions" extension can only be included in
EncodedClientHelloInner, and MUST NOT appear in either ClientHelloOuter or
ClientHelloInner.</t>
        <t>Finally, the client pads the message by setting the <tt>zeros</tt> field to a byte
string whose contents are all zeros and whose length is the amount of padding
to add. <xref target="padding"/> describes a recommended padding scheme.</t>
        <t>The client-facing server computes ClientHelloInner by reversing this process.
First it parses EncodedClientHelloInner, interpreting all bytes after
<tt>client_hello</tt> as padding. If any padding byte is non-zero, the server MUST
abort the connection with an "illegal_parameter" alert.</t>
        <t>Next it makes a copy of the <tt>client_hello</tt> field and copies the
<tt>legacy_session_id</tt> field from ClientHelloOuter. It then looks for an
"ech_outer_extensions" extension. If found, it replaces the extension with the
corresponding sequence of extensions in the ClientHelloOuter. The server MUST
abort the connection with an "illegal_parameter" alert if any of the following
are true:</t>
        <ul spacing="normal">
          <li>
            <t>Any referenced extension is missing in ClientHelloOuter.</t>
          </li>
          <li>
            <t>Any extension is referenced in OuterExtensions more than once.</t>
          </li>
          <li>
            <t>"encrypted_client_hello" is referenced in OuterExtensions.</t>
          </li>
          <li>
            <t>The extensions in ClientHelloOuter corresponding to those in OuterExtensions
do not occur in the same order.</t>
          </li>
        </ul>
        <t>These requirements prevent an attacker from performing a packet amplification
attack, by crafting a ClientHelloOuter which decompresses to a much larger
ClientHelloInner. This is discussed further in <xref target="decompression-amp"/>.</t>
        <t>Implementations SHOULD bound the time to compute a ClientHelloInner
proportionally to the ClientHelloOuter size. If the cost is disproportionately
large, a malicious client could exploit this in a denial of service attack.
<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 reconstructed ClientHelloInner
(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 the <tt>payload</tt> field of the "encrypted_client_hello" is replaced with a
byte string of the same length but whose contents are zeros. This value does
not include the four-byte header from the Handshake structure.</t>
        <t>The client follows the procedure in <xref target="encrypting-clienthello"/> to first
construct ClientHelloOuterAAD with a placeholder <tt>payload</tt> field, then replace
the field with the encrypted value to compute ClientHelloOuter.</t>
        <t>The server then receives ClientHelloOuter and computes ClientHelloOuterAAD by
making a copy and replacing the portion corresponding to the <tt>payload</tt> field
with zeros.</t>
        <t>The payload and the placeholder strings have the same length, so it is not
necessary for either side to recompute length prefixes when applying the above
transformations.</t>
        <t>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.</t>
      </section>
    </section>
    <section anchor="client-behavior">
      <name>Client Behavior</name>
      <t>Clients that implement the ECH extension behave in one of two ways: either they
offer a real ECH extension, as described in <xref target="real-ech"/>; or they send a GREASE
ECH extension, as described in <xref target="grease-ech"/>. Clients of the latter type do not
negotiate ECH. Instead, they generate a dummy ECH extension that is ignored by
the server. (See <xref target="dont-stick-out"/> for an explanation.) The client offers ECH
if it is in possession of a compatible ECH configuration and sends GREASE ECH
otherwise.</t>
      <section anchor="real-ech">
        <name>Offering ECH</name>
        <t>To offer ECH, the client first chooses a suitable ECHConfig from the server's
ECHConfigList. To determine if a given <tt>ECHConfig</tt> is suitable, it checks that
it supports the KEM algorithm identified by <tt>ECHConfig.contents.kem_id</tt>, at
least one KDF/AEAD algorithm identified by <tt>ECHConfig.contents.cipher_suites</tt>,
and the version of ECH indicated by <tt>ECHConfig.contents.version</tt>. Once a
suitable configuration is found, the client selects the cipher suite it will
use for encryption. It MUST NOT choose a cipher suite or version not advertised
by the configuration. If no compatible configuration is found, then the client
SHOULD proceed as described in <xref target="grease-ech"/>.</t>
        <t>Next, the client constructs the ClientHelloInner message just as it does a
standard ClientHello, with the exception of the following rules:</t>
        <ol spacing="normal" type="1"><li>
            <t>It MUST NOT offer to negotiate TLS 1.2 or below. This is necessary to ensure
the backend server does not negotiate a TLS version that is incompatible with
ECH.</t>
          </li>
          <li>
            <t>It MUST NOT offer to resume any session for TLS 1.2 and below.</t>
          </li>
          <li>
            <t>If it intends to compress any extensions (see <xref target="encoding-inner"/>), it MUST
order those extensions consecutively.</t>
          </li>
          <li>
            <t>It MUST include the "encrypted_client_hello" extension of type <tt>inner</tt> as
described in <xref target="encrypted-client-hello"/>. (This requirement is not applicable
when the "encrypted_client_hello" extension is generated as described in
<xref target="grease-ech"/>.)</t>
          </li>
        </ol>
        <t>The client then constructs EncodedClientHelloInner as described in
<xref target="encoding-inner"/>. It also computes an HPKE encryption context and <tt>enc</tt> value
as:</t>
        <artwork><![CDATA[
    pkR = DeserializePublicKey(ECHConfig.contents.public_key)
    enc, context = SetupBaseS(pkR,
                              "tls ech" || 0x00 || ECHConfig)
]]></artwork>
        <t>Next, it constructs a partial ClientHelloOuterAAD as it does a standard
ClientHello, with the exception of the following rules:</t>
        <ol spacing="normal" type="1"><li>
            <t>It MUST offer to negotiate TLS 1.3 or above.</t>
          </li>
          <li>
            <t>If it compressed any extensions in EncodedClientHelloInner, it MUST copy the
corresponding extensions from ClientHelloInner. The copied extensions
additionally MUST be in the same relative order as in ClientHelloInner.</t>
          </li>
          <li>
            <t>It MUST copy the legacy_session_id field from ClientHelloInner. This
allows the server to echo the correct session ID for TLS 1.3's compatibility
mode (see Appendix D.4 of <xref target="RFC8446"/>) when ECH is negotiated.</t>
          </li>
          <li>
            <t>It MAY copy any other field from the ClientHelloInner except
ClientHelloInner.random. Instead, It MUST generate a fresh
ClientHelloOuter.random using a secure random number generator. (See
<xref target="flow-client-reaction"/>.)</t>
          </li>
          <li>
            <t>The value of <tt>ECHConfig.contents.public_name</tt> MUST be placed in the
"server_name" extension.</t>
          </li>
          <li>
            <t>When the client offers the "pre_shared_key" extension in ClientHelloInner, it
SHOULD also include a GREASE "pre_shared_key" extension in ClientHelloOuter,
generated in the manner described in <xref target="grease-psk"/>. The client MUST NOT use
this extension to advertise a PSK to the client-facing server. (See
<xref target="flow-clienthello-malleability"/>.) When the client includes a GREASE
"pre_shared_key" extension, it MUST also copy the "psk_key_exchange_modes"
from the ClientHelloInner into the ClientHelloOuter.</t>
          </li>
          <li>
            <t>When the client offers the "early_data" extension in ClientHelloInner, it
MUST also include the "early_data" extension in ClientHelloOuter. This
allows servers that reject ECH and use ClientHelloOuter to safely ignore any
early data sent by the client per <xref section="4.2.10" sectionFormat="comma" target="RFC8446"/>.</t>
          </li>
        </ol>
        <t>Note that these rules may change in the presence of an application profile
specifying otherwise.</t>
        <t>The client might duplicate non-sensitive extensions in both messages. However,
implementations need to take care to ensure that sensitive extensions are not
offered in the ClientHelloOuter. See <xref target="outer-clienthello"/> for additional
guidance.</t>
        <t>Finally, the client encrypts the EncodedClientHelloInner with the above values,
as described in <xref target="encrypting-clienthello"/>, to construct a ClientHelloOuter. It
sends this to the server, and processes the response as described in
<xref target="determining-ech-acceptance"/>.</t>
        <section anchor="encrypting-clienthello">
          <name>Encrypting the ClientHello</name>
          <t>Given an EncodedClientHelloInner, an HPKE encryption context and <tt>enc</tt> value,
and a partial ClientHelloOuterAAD, the client constructs a ClientHelloOuter as
follows.</t>
          <t>First, the client determines the length L of encrypting EncodedClientHelloInner
with the selected HPKE AEAD. This is typically the sum of the plaintext length
and the AEAD tag length. The client then completes the ClientHelloOuterAAD with
an "encrypted_client_hello" extension. This extension value contains the outer
variant of ECHClientHello with the following fields:</t>
          <ul spacing="normal">
            <li>
              <t><tt>config_id</tt>, the identifier corresponding to the chosen ECHConfig structure;</t>
            </li>
            <li>
              <t><tt>cipher_suite</tt>, the client's chosen cipher suite;</t>
            </li>
            <li>
              <t><tt>enc</tt>, as given above; and</t>
            </li>
            <li>
              <t><tt>payload</tt>, a placeholder byte string containing L zeros.</t>
            </li>
          </ul>
          <t>If configuration identifiers (see <xref target="ignored-configs"/>) are to be ignored,
<tt>config_id</tt> SHOULD be set to a randomly generated byte in the first
ClientHelloOuter and, in the event of HRR, MUST be left unchanged for
the second ClientHelloOuter.</t>
          <t>The client serializes this structure to construct the ClientHelloOuterAAD.
It then computes the final payload as:</t>
          <artwork><![CDATA[
    final_payload = context.Seal(ClientHelloOuterAAD,
                                 EncodedClientHelloInner)
]]></artwork>
          <t>Finally, the client replaces <tt>payload</tt> with <tt>final_payload</tt> to obtain
ClientHelloOuter. The two values have the same length, so it is not necessary
to recompute length prefixes in the serialized structure.</t>
          <t>Note this construction requires the "encrypted_client_hello" be computed after
all other extensions. This is possible because the ClientHelloOuter's
"pre_shared_key" extension is either omitted, or uses a random binder
(<xref target="grease-psk"/>).</t>
        </section>
        <section anchor="grease-psk">
          <name>GREASE PSK</name>
          <t>When offering ECH, the client is not permitted to advertise PSK identities in
the ClientHelloOuter. However, the client can send a "pre_shared_key" extension
in the ClientHelloInner. In this case, when resuming a session with the client,
the backend server sends a "pre_shared_key" extension in its ServerHello. This
would appear to a network observer as if the the server were sending this
extension without solicitation, which would violate the extension rules
described in <xref target="RFC8446"/>. Sending a GREASE "pre_shared_key" extension in the
ClientHelloOuter makes it appear to the network as if the extension were
negotiated properly.</t>
          <t>The client generates the extension payload by constructing an <tt>OfferedPsks</tt>
structure (see <xref section="4.2.11" sectionFormat="comma" target="RFC8446"/>) as follows. For each PSK identity
advertised in the ClientHelloInner, the client generates a random PSK identity
with the same length. It also generates a random, 32-bit, unsigned integer to
use as the <tt>obfuscated_ticket_age</tt>. Likewise, for each inner PSK binder, the
client generates a random string of the same length.</t>
          <t>Per the rules of <xref target="real-ech"/>, the server is not permitted to resume a
connection in the outer handshake. If ECH is rejected and the client-facing
server replies with a "pre_shared_key" extension in its ServerHello, then the
client MUST abort the handshake with an "illegal_parameter" alert.</t>
        </section>
        <section anchor="padding">
          <name>Recommended Padding Scheme</name>
          <t>This section describes a deterministic padding mechanism based on the following
observation: individual extensions can reveal sensitive information through
their length. Thus, each extension in the inner ClientHello may require
different amounts of padding. This padding may be fully determined by the
client's configuration or may require server input.</t>
          <t>By way of example, clients typically support a small number of application
profiles. For instance, a browser might support HTTP with ALPN values
["http/1.1", "h2"] and WebRTC media with ALPNs ["webrtc", "c-webrtc"]. Clients
SHOULD pad this extension by rounding up to the total size of the longest ALPN
extension across all application profiles. The target padding length of most
ClientHello extensions can be computed in this way.</t>
          <t>In contrast, clients do not know the longest SNI value in the client-facing
server's anonymity set without server input. Clients SHOULD use the ECHConfig's
<tt>maximum_name_length</tt> field as follows, where L is the <tt>maximum_name_length</tt>
value.</t>
          <ol spacing="normal" type="1"><li>
              <t>If the ClientHelloInner contained a "server_name" extension with a name of
length D, add max(0, L - D) bytes of padding.</t>
            </li>
            <li>
              <t>If the ClientHelloInner did not contain a "server_name" extension (e.g., if
the client is connecting to an IP address), add L + 9 bytes of padding. This
is the length of a "server_name" extension with an L-byte name.</t>
            </li>
          </ol>
          <t>Finally, the client SHOULD pad the entire message as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let L be the length of the EncodedClientHelloInner with all the padding
computed so far.</t>
            </li>
            <li>
              <t>Let N = 31 - ((L - 1) % 32) and add N bytes of padding.</t>
            </li>
          </ol>
          <t>This rounds the length of EncodedClientHelloInner up to a multiple of 32 bytes,
reducing the set of possible lengths across all clients.</t>
          <t>In addition to padding ClientHelloInner, clients and servers will also need to
pad all other handshake messages that have sensitive-length fields. For example,
if a client proposes ALPN values in ClientHelloInner, the server-selected value
will be returned in an EncryptedExtension, so that handshake message also needs
to be padded using TLS record layer padding.</t>
        </section>
        <section anchor="determining-ech-acceptance">
          <name>Determining ECH Acceptance</name>
          <t>As described in <xref target="server-behavior"/>, the server may either accept ECH and use
ClientHelloInner or reject it and use ClientHelloOuter. This is determined by
the server's initial message.</t>
          <t>If the message does not negotiate TLS 1.3 or higher, the server has rejected
ECH. Otherwise, it is either a ServerHello or HelloRetryRequest.</t>
          <t>If the message is a ServerHello, the client computes <tt>accept_confirmation</tt> as
described in <xref target="backend-server"/>. If this value matches the last 8 bytes of
<tt>ServerHello.random</tt>, the server has accepted ECH. Otherwise, it has rejected
ECH.</t>
          <t>If the message is a HelloRetryRequest, the client checks for the
"encrypted_client_hello" extension. If none is found, the server has rejected
ECH. Otherwise, if it has a length other than 8, the client aborts the handshake
with a "decode_error" alert. Otherwise, the client computes
<tt>hrr_accept_confirmation</tt> as described in <xref target="backend-server-hrr"/>. If this value
matches the extension payload, the server has accepted ECH. Otherwise, it has
rejected ECH.</t>
          <t>[[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>
          <ol spacing="normal" type="1"><li>
              <t>It computes a second ClientHelloInner based on the first ClientHelloInner, as
in <xref section="4.1.4" sectionFormat="of" target="RFC8446"/>. The ClientHelloInner's
"encrypted_client_hello" extension is left unmodified.</t>
            </li>
            <li>
              <t>It constructs EncodedClientHelloInner as described in <xref target="encoding-inner"/>.</t>
            </li>
            <li>
              <t>It constructs a second partial ClientHelloOuterAAD message. This message MUST
be syntactically valid. The extensions MAY be copied from the original
ClientHelloOuter unmodified, or omitted. If not sensitive, the client MAY
copy updated extensions from the second ClientHelloInner for compression.</t>
            </li>
            <li>
              <t>It encrypts EncodedClientHelloInner as described in
<xref target="encrypting-clienthello"/>, using the second partial ClientHelloOuterAAD, to
obtain a second ClientHelloOuter. It reuses the original HPKE encryption
context computed in <xref target="real-ech"/> and uses the empty string for <tt>enc</tt>.  </t>
              <t>
The HPKE context maintains a sequence number, so this operation internally
uses a fresh nonce for each AEAD operation. Reusing the HPKE context avoids
an attack described in <xref target="flow-hrr-hijack"/>.</t>
            </li>
          </ol>
          <t>The client then sends the second ClientHelloOuter to the server. However, as
above, it uses the second ClientHelloInner for preferences, and both the
ClientHelloInner messages for the transcript hash. Additionally, it checks the
resulting ServerHello for ECH acceptance as in <xref target="determining-ech-acceptance"/>.
If the ServerHello does not also indicate ECH acceptance, the client MUST
terminate the connection with an "illegal_parameter" alert.</t>
        </section>
        <section anchor="rejected-ech">
          <name>Handshaking with ClientHelloOuter</name>
          <t>If the server rejects ECH, the client proceeds with the handshake,
authenticating for ECHConfig.contents.public_name as described in
<xref target="auth-public-name"/>. If authentication or the handshake fails, the client MUST
return a failure to the calling application. It MUST NOT use the retry
configurations. It MUST NOT treat this as a secure signal to
disable ECH.</t>
          <t>If the server supplied an "encrypted_client_hello" extension in its
EncryptedExtensions message, the client MUST check that it is syntactically
valid and the client MUST abort the connection with a "decode_error" alert
otherwise. If an earlier TLS version was negotiated, the client MUST NOT enable
the False Start optimization <xref target="RFC7918"/> for this handshake. If both
authentication and the handshake complete successfully, the client MUST perform
the processing described below then abort the connection with an "ech_required"
alert before sending any application data to the server.</t>
          <t>If the server provided "retry_configs" and if at least one of the values
contains a version supported by the client, the client can regard the ECH keys
as securely replaced by the server. It SHOULD retry the handshake with a new
transport connection, using the retry configurations supplied by the
server. The retry configurations may only be applied to the retry
connection. The client MUST NOT use retry configurations for connections beyond
the retry. This avoids introducing pinning concerns or a tracking vector,
should a malicious server present client-specific retry configurations in order
to identify the client in a subsequent ECH handshake.</t>
          <t>If none of the values provided in "retry_configs" contains a supported version,
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>
          <ul spacing="normal">
            <li>
              <t>The client MUST verify that the certificate is valid for
ECHConfig.contents.public_name. If invalid, it MUST abort the connection with
the appropriate alert.</t>
            </li>
            <li>
              <t>If the server requests a client certificate, the client MUST respond with an
empty Certificate message, denoting no client certificate.</t>
            </li>
          </ul>
          <t>In verifying the client-facing server certificate, the client MUST interpret
the public name as a DNS-based reference identity. Clients that incorporate DNS
names and IP addresses into the same syntax (e.g. <xref section="7.4" sectionFormat="comma" target="RFC3986"/> and
<xref target="WHATWG-IPV4"/>) MUST reject names that would be interpreted as IPv4 addresses.
Clients that enforce this by checking and rejecting encoded IPv4 addresses
in 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>
        <ul spacing="normal">
          <li>
            <t>Set the <tt>config_id</tt> field to a random byte.</t>
          </li>
          <li>
            <t>Set the <tt>cipher_suite</tt> field to a supported HpkeSymmetricCipherSuite. The
selection SHOULD vary to exercise all supported configurations, but MAY be
held constant for successive connections to the same server in the same
session.</t>
          </li>
          <li>
            <t>Set the <tt>enc</tt> field to a randomly-generated valid encapsulated public key
output by the HPKE KEM.</t>
          </li>
          <li>
            <t>Set the <tt>payload</tt> field to a randomly-generated string of L+C bytes, where C
is the ciphertext expansion of the selected AEAD scheme and L is the size of
the EncodedClientHelloInner the client would compute when offering ECH, padded
according to <xref target="padding"/>.</t>
          </li>
        </ul>
        <t>If sending a second ClientHello in response to a HelloRetryRequest, the
client copies the entire "encrypted_client_hello" extension from the first
ClientHello. The identical value will reveal to an observer that the value of
"encrypted_client_hello" was fake, but this only occurs if there is a
HelloRetryRequest.</t>
        <t>If the server sends an "encrypted_client_hello" extension in either
HelloRetryRequest or EncryptedExtensions, the client MUST check the extension
syntactically and abort the connection with a "decode_error" alert if it is
invalid. It otherwise ignores the extension. It MUST NOT save the
"retry_configs" value in EncryptedExtensions.</t>
        <t>Offering a GREASE extension is not considered offering an encrypted ClientHello
for purposes of requirements in <xref target="real-ech"/>. In particular, the client
MAY offer to resume sessions established without ECH.</t>
      </section>
    </section>
    <section anchor="server-behavior">
      <name>Server Behavior</name>
      <t>Servers that support ECH play one of two roles, depending on the payload of the
"encrypted_client_hello" extension in the initial ClientHello:</t>
      <ul spacing="normal">
        <li>
          <t>If <tt>ECHClientHello.type</tt> is <tt>outer</tt>, then the server acts as a client-facing
server and proceeds as described in <xref target="client-facing-server"/> to extract a
ClientHelloInner, if available.</t>
        </li>
        <li>
          <t>If <tt>ECHClientHello.type</tt> is <tt>inner</tt>, then the server acts as a backend server
and proceeds as described in <xref target="backend-server"/>.</t>
        </li>
        <li>
          <t>Otherwise, if <tt>ECHClientHello.type</tt> is not a valid <tt>ECHClientHelloType</tt>, then
the server MUST abort with an "illegal_parameter" alert.</t>
        </li>
      </ul>
      <t>If the "encrypted_client_hello" is not present, then the server completes the
handshake normally, as described in <xref target="RFC8446"/>.</t>
      <section anchor="client-facing-server">
        <name>Client-Facing Server</name>
        <t>Upon receiving an "encrypted_client_hello" extension in an initial
ClientHello, the client-facing server determines if it will accept ECH, prior
to negotiating any other TLS parameters. Note that successfully decrypting the
extension will result in a new ClientHello to process, so even the client's TLS
version preferences may have changed.</t>
        <t>First, the server collects a set of candidate ECHConfig values. This list is
determined by one of the two following methods:</t>
        <ol spacing="normal" type="1"><li>
            <t>Compare ECHClientHello.config_id against identifiers of each known ECHConfig
and select the ones that match, if any, as candidates.</t>
          </li>
          <li>
            <t>Collect all known ECHConfig values as candidates, with trial decryption
below determining the final selection.</t>
          </li>
        </ol>
        <t>Some uses of ECH, such as local discovery mode, may randomize the
ECHClientHello.config_id since it can be used as a tracking vector. In such
cases, the second method should be used for matching the ECHClientHello to a
known ECHConfig. See <xref target="ignored-configs"/>. Unless specified by the application
profile or otherwise externally configured, implementations MUST use the first
method.</t>
        <t>The server then iterates over the candidate ECHConfig values, attempting to
decrypt the "encrypted_client_hello" extension:</t>
        <t>The server verifies that the ECHConfig supports the cipher suite indicated by
the ECHClientHello.cipher_suite and that the version of ECH indicated by the
client matches the ECHConfig.version. If not, the server continues to the next
candidate ECHConfig.</t>
        <t>Next, the server decrypts ECHClientHello.payload, using the private key skR
corresponding to ECHConfig, as follows:</t>
        <artwork><![CDATA[
    context = SetupBaseR(ECHClientHello.enc, skR,
                         "tls ech" || 0x00 || ECHConfig)
    EncodedClientHelloInner = context.Open(ClientHelloOuterAAD,
                                         ECHClientHello.payload)
]]></artwork>
        <t>ClientHelloOuterAAD is computed from ClientHelloOuter as described in
<xref target="authenticating-outer"/>. The <tt>info</tt> parameter to SetupBaseR is the
concatenation "tls ech", a zero byte, and the serialized ECHConfig. If
decryption fails, the server continues to the next candidate ECHConfig.
Otherwise, the server reconstructs ClientHelloInner from
EncodedClientHelloInner, as described in <xref target="encoding-inner"/>. It then stops
iterating over the candidate ECHConfig values.</t>
        <t>Upon determining the ClientHelloInner, the client-facing server checks that the
message includes a well-formed "encrypted_client_hello" extension of type
<tt>inner</tt> and that it does not offer TLS 1.2 or below. If either of these checks
fails, the client-facing server MUST abort with an "illegal_parameter" alert.</t>
        <t>If these checks succeed, the client-facing server then forwards the
ClientHelloInner to the appropriate backend server, which proceeds as in
<xref target="backend-server"/>. If the backend server responds with a HelloRetryRequest, the
client-facing server forwards it, decrypts the client's second ClientHelloOuter
using the procedure in <xref target="client-facing-server-hrr"/>, and forwards the resulting
second ClientHelloInner. The client-facing server forwards all other TLS
messages between the client and backend server unmodified.</t>
        <t>Otherwise, if all candidate ECHConfig values fail to decrypt the extension, the
client-facing server MUST ignore the extension and proceed with the connection
using ClientHelloOuter, with the following modifications:</t>
        <ul spacing="normal">
          <li>
            <t>If sending a HelloRetryRequest, the server MAY include an
"encrypted_client_hello" extension with a payload of 8 random bytes; see
<xref target="dont-stick-out"/> for details.</t>
          </li>
          <li>
            <t>If the server is configured with any ECHConfigs, it MUST include the
"encrypted_client_hello" extension in its EncryptedExtensions with the
"retry_configs" field set to one or more ECHConfig structures with up-to-date
keys. Servers MAY supply multiple ECHConfig values of different versions.
This allows a server to support multiple versions at once.</t>
          </li>
        </ul>
        <t>Note that decryption failure could indicate a GREASE ECH extension (see
<xref target="grease-ech"/>), so it is necessary for servers to proceed with the connection
and rely on the client to abort if ECH was required. In particular, the
unrecognized value alone does not indicate a misconfigured ECH advertisement
(<xref target="misconfiguration"/>). Instead, servers can measure occurrences of the
"ech_required" alert to detect this case.</t>
        <section anchor="client-facing-server-hrr">
          <name>Sending HelloRetryRequest</name>
          <t>After sending or forwarding a HelloRetryRequest, the client-facing server does
not repeat the steps in <xref target="client-facing-server"/> with the second
ClientHelloOuter. Instead, it continues with the ECHConfig selection from the
first ClientHelloOuter as follows:</t>
          <t>If the client-facing server accepted ECH, it checks the second ClientHelloOuter
also contains the "encrypted_client_hello" extension. If not, it MUST abort the
handshake with a "missing_extension" alert. Otherwise, it checks that
ECHClientHello.cipher_suite and ECHClientHello.config_id are unchanged, and that
ECHClientHello.enc is empty. If not, it MUST abort the handshake with an
"illegal_parameter" alert.</t>
          <t>Finally, it decrypts the new ECHClientHello.payload as a second message with the
previous HPKE context:</t>
          <artwork><![CDATA[
    EncodedClientHelloInner = context.Open(ClientHelloOuterAAD,
                                         ECHClientHello.payload)
]]></artwork>
          <t>ClientHelloOuterAAD is computed as described in <xref target="authenticating-outer"/>, but
using the second ClientHelloOuter. If decryption fails, the client-facing
server MUST abort the handshake with a "decrypt_error" alert. Otherwise, it
reconstructs the second ClientHelloInner from the new EncodedClientHelloInner
as described in <xref target="encoding-inner"/>, using the second ClientHelloOuter for
any referenced extensions.</t>
          <t>The client-facing server then forwards the resulting ClientHelloInner to the
backend server. It forwards all subsequent TLS messages between the client and
backend server unmodified.</t>
          <t>If the client-facing server rejected ECH, or if the first ClientHello did not
include an "encrypted_client_hello" extension, the client-facing server
proceeds with the connection as usual. The server does not decrypt the
second ClientHello's ECHClientHello.payload value, if there is one.
Moreover, if the server is configured with any ECHConfigs, it MUST include the
"encrypted_client_hello" extension in its EncryptedExtensions with the
"retry_configs" field set to one or more ECHConfig structures with up-to-date
keys, as described in <xref target="client-facing-server"/>.</t>
          <t>Note that a client-facing server that forwards the first ClientHello cannot
include its own "cookie" extension if the backend server sends a
HelloRetryRequest.  This means that the client-facing server either needs to
maintain state for such a connection or it needs to coordinate with the backend
server to include any information it requires to process the second ClientHello.</t>
        </section>
      </section>
      <section anchor="backend-server">
        <name>Backend Server</name>
        <t>Upon receipt of an "encrypted_client_hello" extension of type <tt>inner</tt> in a
ClientHello, if the backend server negotiates TLS 1.3 or higher, then it MUST
confirm ECH acceptance to the client by computing its ServerHello as described
here.</t>
        <t>The backend server embeds in ServerHello.random a string derived from the inner
handshake. It begins by computing its ServerHello as usual, except the last 8
bytes of ServerHello.random are set to zero. It then computes the transcript
hash for ClientHelloInner up to and including the modified ServerHello, as
described in <xref section="4.4.1" sectionFormat="comma" target="RFC8446"/>. Let transcript_ech_conf denote the
output. Finally, the backend server overwrites the last 8 bytes of the
ServerHello.random with the following string:</t>
        <artwork><![CDATA[
   accept_confirmation = HKDF-Expand-Label(
      HKDF-Extract(0, ClientHelloInner.random),
      "ech accept confirmation",
      transcript_ech_conf,
      8)
]]></artwork>
        <t>where HKDF-Expand-Label is defined in <xref section="7.1" sectionFormat="comma" target="RFC8446"/>, "0" indicates a
string of Hash.length bytes set to zero, and Hash is the hash function used to
compute the transcript hash.</t>
        <t>The backend server MUST NOT perform this operation if it negotiated TLS 1.2 or
below. Note that doing so would overwrite the downgrade signal for TLS 1.3 (see
<xref section="4.1.3" sectionFormat="comma" target="RFC8446"/>).</t>
        <section anchor="backend-server-hrr">
          <name>Sending HelloRetryRequest</name>
          <t>When the backend server sends HelloRetryRequest in response to the ClientHello,
it similarly confirms ECH acceptance by adding a confirmation signal to its
HelloRetryRequest. But instead of embedding the signal in the
HelloRetryRequest.random (the value of which is specified by <xref target="RFC8446"/>), it
sends the signal in an extension.</t>
          <t>The backend server begins by computing HelloRetryRequest as usual, except that
it also contains an "encrypted_client_hello" extension with a payload of 8 zero
bytes. It then computes the transcript hash for the first ClientHelloInner,
denoted ClientHelloInner1, up to and including the modified HelloRetryRequest.
Let transcript_hrr_ech_conf denote the output. Finally, the backend server
overwrites the payload of the "encrypted_client_hello" extension with the
following string:</t>
          <artwork><![CDATA[
   hrr_accept_confirmation = HKDF-Expand-Label(
      HKDF-Extract(0, ClientHelloInner1.random),
      "hrr ech accept confirmation",
      transcript_hrr_ech_conf,
      8)
]]></artwork>
          <t>In the subsequent ServerHello message, the backend server sends the
accept_confirmation value as described in <xref target="backend-server"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="compatibility-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>
      </section>
      <section anchor="middleboxes">
        <name>Middleboxes</name>
        <t>When connecting through a TLS-terminating proxy that does not support this
extension, <xref section="9.3" sectionFormat="comma" target="RFC8446"/> requires the proxy still act as a
conforming TLS client and server. 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 public name, 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="compliance">
      <name>Compliance Requirements</name>
      <t>In the absence of an application profile standard specifying otherwise,
a compliant ECH application MUST implement the following HPKE cipher suite:</t>
      <ul spacing="normal">
        <li>
          <t>KEM: DHKEM(X25519, HKDF-SHA256) (see <xref section="7.1" sectionFormat="of" target="HPKE"/>)</t>
        </li>
        <li>
          <t>KDF: HKDF-SHA256 (see <xref section="7.2" sectionFormat="of" target="HPKE"/>)</t>
        </li>
        <li>
          <t>AEAD: AES-128-GCM (see <xref section="7.3" sectionFormat="of" target="HPKE"/>)</t>
        </li>
      </ul>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <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>Given these types of attackers, the primary goals of ECH are as follows.</t>
        <ol spacing="normal" type="1"><li>
            <t>Security preservation. Use of ECH does not weaken the security properties of
TLS without ECH.</t>
          </li>
          <li>
            <t>Handshake privacy. TLS connection establishment to a host with a specific
ECHConfig and TLS configuration is indistinguishable from a connection to
any other host with the same ECHConfig and TLS configuration. (The set of
hosts which share the same ECHConfig and TLS configuration is referred to
as the anonymity set.)</t>
          </li>
          <li>
            <t>Downgrade resistance. An attacker cannot downgrade a connection that
attempts to use ECH to one that does not use ECH.</t>
          </li>
        </ol>
        <t>These properties were formally proven in <xref target="ECH-Analysis"/>.</t>
        <t>With regards to handshake privacy, client-facing server configuration
determines the size of the anonymity set. For example, if a client-facing
server uses distinct ECHConfig values for each host, then each anonymity set
has size k = 1. Client-facing servers SHOULD deploy ECH in such a way so as to
maximize the size of the anonymity set where possible. This means client-facing
servers should use the same ECHConfig for as many hosts as possible. An
attacker can distinguish two hosts that have different ECHConfig values based
on the ECHClientHello.config_id value. 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 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="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
TCP 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>
          <ol spacing="normal" type="1"><li>
              <t>The attacker does not know the ECHConfigList used by the server.</t>
            </li>
            <li>
              <t>The attacker keeps per-connection state only. In particular, it does not
track endpoints across connections.</t>
            </li>
            <li>
              <t>ECH and GREASE ECH are designed so that the following features do not vary:
the code points of extensions negotiated in the clear; the length of
messages; and the values of plaintext alert messages.</t>
            </li>
          </ol>
          <t>This leaves a variety of practical differentiators out-of-scope. including,
though not limited to, the following:</t>
          <ol spacing="normal" type="1"><li>
              <t>the value of the configuration identifier;</t>
            </li>
            <li>
              <t>the value of the outer SNI;</t>
            </li>
            <li>
              <t>the TLS version negotiated, which may depend on ECH acceptance;</t>
            </li>
            <li>
              <t>client authentication, which may depend on ECH acceptance; and</t>
            </li>
            <li>
              <t>HRR issuance, which may depend on ECH acceptance.</t>
            </li>
          </ol>
          <t>These can be addressed with more sophisticated implementations, but some
mitigations require coordination between the client and server. 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 anchor="flow-diagram-client-reaction">
            <name>Client reaction attack</name>
            <artwork><![CDATA[
 Client                         Attacker               Server
   ClientHello
   + key_share
   + ech         ------>      (intercept)     -----> X (drop)

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

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

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

      ClientHello
      + key_share
      + ech
      + ech_outer_extensions(pre_shared_key)
      + pre_shared_key
                  -------->
                        (intercept)
                        ClientHello
                        + key_share
                        + ech
                           + ech_outer_extensions(pre_shared_key)
                        + pre_shared_key'
                                          -------->
                                                         Alert
                                                         -or-
                                                   ServerHello
                                                            ...
                                                      Finished
                                          <--------
]]></artwork>
          </figure>
          <t>This attack may be generalized to any parameter which the server varies by
server name, such as ALPN preferences.</t>
          <t>ECH mitigates this attack by only negotiating TLS parameters from
ClientHelloInner and authenticating all inputs to the ClientHelloInner
(EncodedClientHelloInner and ClientHelloOuter) with the HPKE AEAD. See
<xref target="authenticating-outer"/>. An earlier iteration of this specification only
encrypted and authenticated the "server_name" extension, which left the overall
ClientHello vulnerable to an analogue of this attack.</t>
        </section>
        <section anchor="decompression-amp">
          <name>ClientHelloInner Packet Amplification Mitigation</name>
          <t>Client-facing servers must decompress EncodedClientHelloInners. A malicious
attacker may craft a packet which takes excessive resources to decompress
or may be much larger than the incoming packet:</t>
          <ul spacing="normal">
            <li>
              <t>If looking up a ClientHelloOuter extension takes time linear in the number of
extensions, the overall decoding process would take O(M*N) time, where
M is the number of extensions in ClientHelloOuter and N is the
size of OuterExtensions.</t>
            </li>
            <li>
              <t>If the same ClientHelloOuter extension can be copied multiple times,
an attacker could cause the client-facing server to construct a large
ClientHelloInner by including a large extension in ClientHelloOuter,
of length L, and an OuterExtensions list referencing N copies of that
extension. The client-facing server would then use O(N*L) memory in
response to O(N+L) bandwidth from the client. In split-mode, an
O(N*L) sized packet would then be transmitted to the
backend server.</t>
            </li>
          </ul>
          <t>ECH mitigates this attack by requiring that OuterExtensions be referenced in
order, that duplicate references be rejected, and by recommending that
client-facing servers use a linear scan to perform decompression. These
requirements are detailed in <xref target="encoding-inner"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="update-of-the-tls-extensiontype-registry">
        <name>Update of the TLS ExtensionType Registry</name>
        <t>IANA is requested to create the following entries in the existing registry for
ExtensionType (defined in <xref target="RFC8446"/>):</t>
        <ol spacing="normal" type="1"><li>
            <t>encrypted_client_hello(0xfe0d), with "TLS 1.3" column values set to
"CH, HRR, EE", and "Recommended" column set to "Yes".</t>
          </li>
          <li>
            <t>ech_outer_extensions(0xfd00), with the "TLS 1.3" column values set to "",
and "Recommended" column set to "Yes".</t>
          </li>
        </ol>
      </section>
      <section anchor="alerts">
        <name>Update of the TLS Alert Registry</name>
        <t>IANA is requested to create an entry, ech_required(121) in the existing registry
for Alerts (defined in <xref target="RFC8446"/>), with the "DTLS-OK" column set to
"Y".</t>
      </section>
    </section>
    <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>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC7918">
          <front>
            <title>Transport Layer Security (TLS) False Start</title>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <author fullname="B. Moeller" initials="B." surname="Moeller"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>This document specifies an optional behavior of Transport Layer Security (TLS) client implementations, dubbed "False Start". It affects only protocol timing, not on-the-wire protocol data, and can be implemented unilaterally. A TLS False Start reduces handshake latency to one round trip.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7918"/>
          <seriesInfo name="DOI" value="10.17487/RFC7918"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC9147">
          <front>
            <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
            <date month="April" year="2022"/>
            <abstract>
              <t>This document specifies version 1.3 of the Datagram Transport Layer Security (DTLS) protocol. DTLS 1.3 allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>The DTLS 1.3 protocol is based on the Transport Layer Security (TLS) 1.3 protocol and provides equivalent security guarantees with the exception of order protection / non-replayability. Datagram semantics of the underlying transport are preserved by the DTLS protocol.</t>
              <t>This document obsoletes RFC 6347.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9147"/>
          <seriesInfo name="DOI" value="10.17487/RFC9147"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="HTTPS-RR">
          <front>
            <title>Service binding and parameter specification via the DNS (DNS SVCB and HTTPS RRs)</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 "SVCB" and "HTTPS" DNS resource record
   (RR) types to facilitate the lookup of information needed to make
   connections to network services, such as for HTTP origins.  SVCB
   records allow a service to be provided from multiple alternative
   endpoints, each with associated parameters (such as transport
   protocol configuration), and are extensible to support future uses
   (such as keys for encrypting the TLS ClientHello).  They also enable
   aliasing of apex domains, which is not possible with CNAME.  The
   HTTPS RR is a variation of SVCB for use with HTTP [HTTP].  By
   providing more information to the client before it attempts to
   establish a connection, these records offer potential benefits to
   both performance and privacy.

   TO BE REMOVED: This document is being collaborated on in Github at:
   https://github.com/MikeBishop/dns-alt-svc
   (https://github.com/MikeBishop/dns-alt-svc).  The most recent working
   version of the document, open issues, etc. should all be available
   there.  The authors (gratefully) accept pull requests.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-dnsop-svcb-https-12"/>
        </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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="WHATWG-IPV4" target="https://url.spec.whatwg.org/#concept-ipv4-parser">
          <front>
            <title>URL Living Standard - IPv4 Parser</title>
            <author>
              <organization/>
            </author>
            <date year="2021" month="May"/>
          </front>
        </reference>
        <reference anchor="ECH-Analysis">
          <front>
            <title>A Symbolic Analysis of Privacy for TLS 1.3 with Encrypted Client Hello</title>
            <author>
              <organization/>
            </author>
            <date year="2022" month="November"/>
          </front>
        </reference>
        <reference anchor="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="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="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>
        <reference anchor="EXPORTED-AUTHENTICATORS">
          <front>
            <title>Exported Authenticators in TLS</title>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
            <date month="July" year="2022"/>
            <abstract>
              <t>This document describes a mechanism that builds on Transport Layer Security (TLS) or Datagram Transport Layer Security (DTLS) and enables peers to provide proof of ownership of an identity, such as an X.509 certificate. This proof can be exported by one peer, transmitted out of band to the other peer, and verified by the receiving peer.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9261"/>
          <seriesInfo name="DOI" value="10.17487/RFC9261"/>
        </reference>
      </references>
    </references>
    <?line 1709?>

<section anchor="alternative-sni-protection-designs">
      <name>Alternative SNI Protection Designs</name>
      <t>Alternative approaches to encrypted SNI may be implemented at the TLS or
application layer. In this section we describe several alternatives and discuss
drawbacks in comparison to the design in this document.</t>
      <section anchor="tls-layer">
        <name>TLS-layer</name>
        <section anchor="tls-in-early-data">
          <name>TLS in Early Data</name>
          <t>In this variant, TLS Client Hellos are tunneled within early data payloads
belonging to outer TLS connections established with the client-facing server.
This requires clients to have established a previous session -— and obtained
PSKs —- with the server. The client-facing server decrypts early data payloads
to uncover Client Hellos destined for the backend server, and forwards them
onwards as necessary. Afterwards, all records to and from backend servers are
forwarded by the client-facing server -- unmodified. This avoids double
encryption of TLS records.</t>
          <t>Problems with this approach are: (1) servers may not always be able to
distinguish inner Client Hellos from legitimate application data, (2) nested
0-RTT data may not function correctly, (3) 0-RTT data may not be supported --
especially under DoS -- leading to availability concerns, and (4) clients must
bootstrap tunnels (sessions), costing an additional round trip and potentially
revealing the SNI during the initial connection. In contrast, encrypted SNI
protects the SNI in a distinct Client Hello extension and neither abuses early
data nor requires a bootstrapping connection.</t>
        </section>
        <section anchor="combined-tickets">
          <name>Combined Tickets</name>
          <t>In this variant, client-facing and backend servers coordinate to produce
"combined tickets" that are consumable by both. Clients offer combined tickets
to client-facing servers. The latter parse them to determine the correct backend
server to which the Client Hello should be forwarded. This approach is
problematic due to non-trivial coordination between client-facing and backend
servers for ticket construction and consumption. Moreover, it requires a
bootstrapping step similar to that of the previous variant. In contrast,
encrypted SNI requires no such coordination.</t>
        </section>
      </section>
      <section anchor="application-layer">
        <name>Application-layer</name>
        <section anchor="http2-certificate-frames">
          <name>HTTP/2 CERTIFICATE Frames</name>
          <t>In this variant, clients request secondary certificates with CERTIFICATE_REQUEST
HTTP/2 frames after TLS connection completion. In response, servers supply
certificates via TLS exported authenticators
<xref target="EXPORTED-AUTHENTICATORS"/> in CERTIFICATE frames. Clients use a
generic SNI for the underlying client-facing server TLS connection. Problems
with this approach include: (1) one additional round trip before peer
authentication, (2) non-trivial application-layer dependencies and interaction,
and (3) obtaining the generic SNI to bootstrap the connection. In contrast,
encrypted SNI induces no additional round trip and operates below the
application layer.</t>
        </section>
      </section>
    </section>
    <section anchor="linear-outer-extensions">
      <name>Linear-time Outer Extension Processing</name>
      <t>The following procedure processes the "ech_outer_extensions" extension (see
<xref target="encoding-inner"/>) in linear time, ensuring that each referenced extension
in the ClientHelloOuter is included at most once:</t>
      <ol spacing="normal" type="1"><li>
          <t>Let I be zero and N be the number of extensions in ClientHelloOuter.</t>
        </li>
        <li>
          <t>For each extension type, E, in OuterExtensions:  </t>
          <ul spacing="normal">
            <li>
              <t>If E is "encrypted_client_hello", abort the connection with an
"illegal_parameter" alert and terminate this procedure.</t>
            </li>
            <li>
              <t>While I is less than N and the I-th extension of
ClientHelloOuter does not have type E, increment I.</t>
            </li>
            <li>
              <t>If I is equal to N, abort the connection with an "illegal_parameter"
alert and terminate this procedure.</t>
            </li>
            <li>
              <t>Otherwise, the I-th extension of ClientHelloOuter has type E. Copy
it to the EncodedClientHelloInner and increment I.</t>
            </li>
          </ul>
        </li>
      </ol>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>This document draws extensively from ideas in <xref target="I-D.kazuho-protected-sni"/>, but
is a much more limited mechanism because it depends on the DNS for the
protection of the ECH key. Richard Barnes, Christian Huitema, Patrick McManus,
Matthew Prince, Nick Sullivan, Martin Thomson, and David Benjamin also provided
important ideas and contributions.</t>
    </section>
    <section anchor="change-log">
      <name>Change Log</name>
      <ul empty="true">
        <li>
          <t><strong>RFC Editor's Note:</strong> Please remove this section prior to publication of a
final version of this document.</t>
        </li>
      </ul>
      <t>Issue and pull request numbers are listed with a leading octothorp.</t>
      <section anchor="since-draft-ietf-tls-esni-16">
        <name>Since draft-ietf-tls-esni-16</name>
        <ul spacing="normal">
          <li>
            <t>Keep-alive</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-15">
        <name>Since draft-ietf-tls-esni-15</name>
        <ul spacing="normal">
          <li>
            <t>Add CCS2022 reference and summary (#539)</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-14">
        <name>Since draft-ietf-tls-esni-14</name>
        <ul spacing="normal">
          <li>
            <t>Keep-alive</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-13">
        <name>Since draft-ietf-tls-esni-13</name>
        <ul spacing="normal">
          <li>
            <t>Editorial improvements</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-12">
        <name>Since draft-ietf-tls-esni-12</name>
        <ul spacing="normal">
          <li>
            <t>Abort on duplicate OuterExtensions (#514)</t>
          </li>
          <li>
            <t>Improve EncodedClientHelloInner definition (#503)</t>
          </li>
          <li>
            <t>Clarify retry configuration usage (#498)</t>
          </li>
          <li>
            <t>Expand on config_id generation implications (#491)</t>
          </li>
          <li>
            <t>Server-side acceptance signal extension GREASE (#481)</t>
          </li>
          <li>
            <t>Refactor overview, client implementation, and middlebox
sections (#480, #478, #475, #508)</t>
          </li>
          <li>
            <t>Editorial iprovements (#485, #488, #490, #495, #496, #499, #500,
#501, #504, #505, #507, #510, #511)</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-11">
        <name>Since draft-ietf-tls-esni-11</name>
        <ul spacing="normal">
          <li>
            <t>Move ClientHello padding to the encoding (#443)</t>
          </li>
          <li>
            <t>Align codepoints (#464)</t>
          </li>
          <li>
            <t>Relax OuterExtensions checks for alignment with RFC8446 (#467)</t>
          </li>
          <li>
            <t>Clarify HRR acceptance and rejection logic (#470)</t>
          </li>
          <li>
            <t>Editorial improvements (#468, #465, #462, #461)</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-10">
        <name>Since draft-ietf-tls-esni-10</name>
        <ul spacing="normal">
          <li>
            <t>Make HRR confirmation and ECH acceptance explicit (#422, #423)</t>
          </li>
          <li>
            <t>Relax computation of the acceptance signal (#420, #449)</t>
          </li>
          <li>
            <t>Simplify ClientHelloOuterAAD generation (#438, #442)</t>
          </li>
          <li>
            <t>Allow empty enc in ECHClientHello (#444)</t>
          </li>
          <li>
            <t>Authenticate ECHClientHello extensions position in ClientHelloOuterAAD (#410)</t>
          </li>
          <li>
            <t>Allow clients to send a dummy PSK and early_data in ClientHelloOuter when
applicable (#414, #415)</t>
          </li>
          <li>
            <t>Compress ECHConfigContents (#409)</t>
          </li>
          <li>
            <t>Validate ECHConfig.contents.public_name (#413, #456)</t>
          </li>
          <li>
            <t>Validate ClientHelloInner contents (#411)</t>
          </li>
          <li>
            <t>Note split-mode challenges for HRR (#418)</t>
          </li>
          <li>
            <t>Editorial improvements (#428, #432, #439, #445, #458, #455)</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-09">
        <name>Since draft-ietf-tls-esni-09</name>
        <ul spacing="normal">
          <li>
            <t>Finalize HPKE dependency (#390)</t>
          </li>
          <li>
            <t>Move from client-computed to server-chosen, one-byte config
identifier (#376, #381)</t>
          </li>
          <li>
            <t>Rename ECHConfigs to ECHConfigList (#391)</t>
          </li>
          <li>
            <t>Clarify some security and privacy properties (#385, #383)</t>
          </li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA82963LcyLEu+r+eApuKE0Pa3W1SlxmJY3svDklZjNFtkxzP
cnh5S+huNAkLDfQC0KTasnachzhPeJ7k5LUqC0CT1PL6cRSOsdS41SUrr19m
jsdj1+ZtkR0ml68vktNyVm9WbTZPjos8K9vkVVYUlUun0zq7ufOWeTUr0yW8
Zl6ni3acZ+1i3BbNOGvKfHzwg5ulbXZV1ZvDpGnnzuWr+jBp63XTPt7ff7H/
2KV1lh4mf8rKrE4Ld1vVn67qar2Cm4rGfco28Mv8MDkr26wus3Z8gl9xrmnT
cv4hLaoSvrzJGrfKD5O/ttVslDRV3dbZooG/bZb4l785l67b66o+dMnYJfwn
L5vD5HSSnGfNrKqLVH/nuZzW+ax3qaqv0jL/R9rmVXmYnF++fDOCcc0mej1b
pnlxmGSf6n+r28VyMquWrvvFnyfJu0/r+GM/p/9YX1f29/hLL9OmLTadr3yi
h6pP63+7wh8GP/Z2klysiyK/Scv4i2/z2afepfijx0W1ni8K2J3Oh0t49t9m
/urgh48nydEk+bWq5vF3j6/rvGmr1XVWd2944Ndn6e2/XWfpKi+vpnnbTIAk
nHNlVS/hyZsMdjg5f3n8+ODghfz1hxcHzw+B7MqFvefXV0eXv/5pfPb+z0/x
n4mchJ1fzl8nr/MbeHtygRSW1vNknJy9v3mavE/rJqt36O60vsraw+S6bVfN
4e9+t66LSbPKZpPb67S9vZrAXH73aFaVs2wFB2J183S8oofx2Tkch8PkTbpJ
Hu8/PoBfTo9fjY/KtNg0eUNj8YM5Si42y2lVACnqDUm1SN7XsGuzTQITonN5
MHmS3Obt9ZYDSiOWz76tbrLlFBYfvv2YfueDIR9OwjZ6av3pGiabGjLBncLz
WOfp8EN/nsA+ZzdwmB/6xHFMCny/IQHnxuNxkk6btk5nsN+X17ASwHfWS5zl
HI5pnU+zJkmTZTa7BjJqlvDi5LJOy2YF3CB5nW5g0hfZbF3n7SbZhWXbw/Vz
GS8Z7ncqq0aLBi9qmvQqS9blHJ5ME9i9G/jLaj3F7QC2NOFBLfP5vIARPkIO
VVfz9QwJOPnyKMd/fnXu5Ozi+PXR2ZvTc+CiNG5kYAn8BVndOC/Hq7q6quFz
CdBbcp02SVm1wNJa+GZWJk1+VeaLfJbCTHdhxMAti2ID92724AaZUCrkMUnO
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

-->

</rfc>
