<?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.17 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-tls-esni-15" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.0 -->
  <front>
    <title abbrev="TLS Encrypted Client Hello">TLS Encrypted Client Hello</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-15"/>
    <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="2022" month="October" day="03"/>
    <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="24" month="May" year="2022"/>
            <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 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-10"/>
        </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-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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
NdiP2WTMw2PEEx89hTP1/wFBMsDpiVYBAA==

-->

</rfc>
