<?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.6.27 (Ruby 3.1.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-tls-esni-16" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.0 -->
  <front>
    <title abbrev="TLS Encrypted Client Hello">TLS Encrypted Client Hello</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-16"/>
    <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="April" day="06"/>
    <area>General</area>
    <workgroup>tls</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document describes a mechanism in Transport Layer Security (TLS) for
encrypting a ClientHello message under a server public key.</t>
    </abstract>
    <note 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>
    <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 only supported with (D)TLS 1.3 <xref target="RFC8446"/> and newer versions of the
protocol.</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>If it does not support ECH or cannot decrypt the extension, it completes
the handshake with ClientHelloOuter. This is referred to as rejecting ECH.</li>
          <li>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.</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="I-D.irtf-cfrg-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 I-D.irtf-cfrg-hpke
    uint16 HpkeKdfId;  // Defined in I-D.irtf-cfrg-hpke
    uint16 HpkeAeadId; // Defined in I-D.irtf-cfrg-hpke

    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>Any referenced extension is missing in ClientHelloOuter.</li>
          <li>Any extension is referenced in OuterExtensions more than once.</li>
          <li>"encrypted_client_hello" is referenced in OuterExtensions.</li>
          <li>The extensions in ClientHelloOuter corresponding to those in OuterExtensions
do not occur in the same order.</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>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.</li>
          <li>It MUST NOT offer to resume any session for TLS 1.2 and below.</li>
          <li>If it intends to compress any extensions (see <xref target="encoding-inner"/>), it MUST
order those extensions consecutively.</li>
          <li>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"/>.)</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>It MUST offer to negotiate TLS 1.3 or above.</li>
          <li>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.</li>
          <li>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.</li>
          <li>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"/>.)</li>
          <li>The value of <tt>ECHConfig.contents.public_name</tt> MUST be placed in the
"server_name" extension.</li>
          <li>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.</li>
          <li>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"/>.</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>
              <tt>config_id</tt>, the identifier corresponding to the chosen ECHConfig structure;</li>
            <li>
              <tt>cipher_suite</tt>, the client's chosen cipher suite;</li>
            <li>
              <tt>enc</tt>, as given above; and</li>
            <li>
              <tt>payload</tt>, a placeholder byte string containing L zeros.</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>If the ClientHelloInner contained a "server_name" extension with a name of
length D, add max(0, L - D) bytes of padding.</li>
            <li>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.</li>
          </ol>
          <t>Finally, the client SHOULD pad the entire message as follows:</t>
          <ol spacing="normal" type="1"><li>Let L be the length of the EncodedClientHelloInner with all the padding
computed so far.</li>
            <li>Let N = 31 - ((L - 1) % 32) and add N bytes of padding.</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>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.</li>
            <li>It constructs EncodedClientHelloInner as described in <xref target="encoding-inner"/>.</li>
            <li>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.</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>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.</li>
            <li>If the server requests a client certificate, the client MUST respond with an
empty Certificate message, denoting no client certificate.</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>Set the <tt>config_id</tt> field to a random byte.</li>
          <li>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.</li>
          <li>Set the <tt>enc</tt> field to a randomly-generated valid encapsulated public key
output by the HPKE KEM.</li>
          <li>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"/>.</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_config"
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>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.</li>
        <li>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"/>.</li>
        <li>Otherwise, if <tt>ECHClientHello.type</tt> is not a valid <tt>ECHClientHelloType</tt>, then
the server MUST abort with an "illegal_parameter" alert.</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>Compare ECHClientHello.config_id against identifiers of each known ECHConfig
and select the ones that match, if any, as candidates.</li>
          <li>Collect all known ECHConfig values as candidates, with trial decryption
below determining the final selection.</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>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.</li>
          <li>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.</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>KEM: DHKEM(X25519, HKDF-SHA256) (see <xref section="7.1" sectionFormat="comma" target="I-D.irtf-cfrg-hpke"/>)</li>
        <li>KDF: HKDF-SHA256 (see <xref section="7.2" sectionFormat="comma" target="I-D.irtf-cfrg-hpke"/>)</li>
        <li>AEAD: AES-128-GCM (see <xref section="7.3" sectionFormat="comma" target="I-D.irtf-cfrg-hpke"/>)</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>Security preservation. Use of ECH does not weaken the security properties of
TLS without ECH.</li>
          <li>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.)</li>
          <li>Downgrade resistance. An attacker cannot downgrade a connection that
attempts to use ECH to one that does not use ECH.</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>The attacker does not know the ECHConfigList used by the server.</li>
            <li>The attacker keeps per-connection state only. In particular, it does not
track endpoints across connections.</li>
            <li>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.</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>the value of the configuration identifier;</li>
            <li>the value of the outer SNI;</li>
            <li>the TLS version negotiated, which may depend on ECH acceptance;</li>
            <li>client authentication, which may depend on ECH acceptance; and</li>
            <li>HRR issuance, which may depend on ECH acceptance.</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>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.</li>
            <li>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.</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>encrypted_client_hello(0xfe0d), with "TLS 1.3" column values set to
"CH, HRR, EE", and "Recommended" column set to "Yes".</li>
          <li>ech_outer_extensions(0xfd00), with the "TLS 1.3" column values set to "",
and "Recommended" column set to "Yes".</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>
        <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">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="N. Modadugu" initials="N." surname="Modadugu">
              <organization/>
            </author>
            <author fullname="B. Moeller" initials="B." surname="Moeller">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <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="I-D.irtf-cfrg-hpke">
          <front>
            <title>Hybrid Public Key Encryption</title>
            <author fullname="Richard Barnes" initials="R." surname="Barnes">
              <organization>Cisco</organization>
            </author>
            <author fullname="Karthikeyan Bhargavan" initials="K." surname="Bhargavan">
              <organization>Inria</organization>
            </author>
            <author fullname="Benjamin Lipp" initials="B." surname="Lipp">
              <organization>Inria</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="2" month="September" year="2021"/>
            <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.

 This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-hpke-12"/>
        </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">
              <organization/>
            </author>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document is one of a collection that, together, describe the protocol and usage context for a revision of Internationalized Domain Names for Applications (IDNA), superseding the earlier version.  It describes the document collection and provides definitions and other material that are common to the set.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5890"/>
          <seriesInfo name="DOI" value="10.17487/RFC5890"/>
        </reference>
        <reference anchor="I-D.ietf-tls-exported-authenticator">
          <front>
            <title>Exported Authenticators in TLS</title>
            <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
              <organization>Cloudflare Inc.</organization>
            </author>
            <date day="4" month="March" 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="Internet-Draft" value="draft-ietf-tls-exported-authenticator-15"/>
        </reference>
      </references>
      <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">
              <organization/>
            </author>
            <author fullname="P. McManus" initials="P." surname="McManus">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="L. Zhu" initials="L." surname="Zhu">
              <organization/>
            </author>
            <author fullname="J. Heidemann" initials="J." surname="Heidemann">
              <organization/>
            </author>
            <author fullname="A. Mankin" initials="A." surname="Mankin">
              <organization/>
            </author>
            <author fullname="D. Wessels" initials="D." surname="Wessels">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="D. Wing" initials="D." surname="Wing">
              <organization/>
            </author>
            <author fullname="P. Patil" initials="P." surname="Patil">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="A. Popov" initials="A." surname="Popov">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="E. Stephan" initials="E." surname="Stephan">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="H. Zhou" initials="H." surname="Zhou">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document describes a mechanism that enables the Transport Layer Security (TLS) server to resume sessions and avoid keeping per-client session state.  The TLS server encapsulates the session state into a ticket and forwards it to the client.  The client can subsequently resume a session using the obtained ticket.  This document obsoletes RFC 4507.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5077"/>
          <seriesInfo name="DOI" value="10.17487/RFC5077"/>
        </reference>
      </references>
    </references>
    <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="I-D.ietf-tls-exported-authenticator"/> 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>Let I be zero and N be the number of extensions in ClientHelloOuter.</li>
        <li>
          <t>For each extension type, E, in OuterExtensions:  </t>
          <ul spacing="normal">
            <li>If E is "encrypted_client_hello", abort the connection with an
"illegal_parameter" alert and terminate this procedure.</li>
            <li>While I is less than N and the I-th extension of
ClientHelloOuter does not have type E, increment I.</li>
            <li>If I is equal to N, abort the connection with an "illegal_parameter"
alert and terminate this procedure.</li>
            <li>Otherwise, the I-th extension of ClientHelloOuter has type E. Copy
it to the EncodedClientHelloInner and increment I.</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>Keep-alive</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-15">
        <name>Since draft-ietf-tls-esni-15</name>
        <ul spacing="normal">
          <li>Add CCS2022 reference and summary (#539)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-14">
        <name>Since draft-ietf-tls-esni-14</name>
        <ul spacing="normal">
          <li>Keep-alive</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-13">
        <name>Since draft-ietf-tls-esni-13</name>
        <ul spacing="normal">
          <li>Editorial improvements</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-12">
        <name>Since draft-ietf-tls-esni-12</name>
        <ul spacing="normal">
          <li>Abort on duplicate OuterExtensions (#514)</li>
          <li>Improve EncodedClientHelloInner definition (#503)</li>
          <li>Clarify retry configuration usage (#498)</li>
          <li>Expand on config_id generation implications (#491)</li>
          <li>Server-side acceptance signal extension GREASE (#481)</li>
          <li>Refactor overview, client implementation, and middlebox
sections (#480, #478, #475, #508)</li>
          <li>Editorial iprovements (#485, #488, #490, #495, #496, #499, #500,
#501, #504, #505, #507, #510, #511)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-11">
        <name>Since draft-ietf-tls-esni-11</name>
        <ul spacing="normal">
          <li>Move ClientHello padding to the encoding (#443)</li>
          <li>Align codepoints (#464)</li>
          <li>Relax OuterExtensions checks for alignment with RFC8446 (#467)</li>
          <li>Clarify HRR acceptance and rejection logic (#470)</li>
          <li>Editorial improvements (#468, #465, #462, #461)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-10">
        <name>Since draft-ietf-tls-esni-10</name>
        <ul spacing="normal">
          <li>Make HRR confirmation and ECH acceptance explicit (#422, #423)</li>
          <li>Relax computation of the acceptance signal (#420, #449)</li>
          <li>Simplify ClientHelloOuterAAD generation (#438, #442)</li>
          <li>Allow empty enc in ECHClientHello (#444)</li>
          <li>Authenticate ECHClientHello extensions position in ClientHelloOuterAAD (#410)</li>
          <li>Allow clients to send a dummy PSK and early_data in ClientHelloOuter when
applicable (#414, #415)</li>
          <li>Compress ECHConfigContents (#409)</li>
          <li>Validate ECHConfig.contents.public_name (#413, #456)</li>
          <li>Validate ClientHelloInner contents (#411)</li>
          <li>Note split-mode challenges for HRR (#418)</li>
          <li>Editorial improvements (#428, #432, #439, #445, #458, #455)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-tls-esni-09">
        <name>Since draft-ietf-tls-esni-09</name>
        <ul spacing="normal">
          <li>Finalize HPKE dependency (#390)</li>
          <li>Move from client-computed to server-chosen, one-byte config
identifier (#376, #381)</li>
          <li>Rename ECHConfigs to ECHConfigList (#391)</li>
          <li>Clarify some security and privacy properties (#385, #383)</li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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
E04ltQbbN5sEe3iMeOKjp3Cm/j/ypWw7uFYBAA==

-->

</rfc>
