<?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.39 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-ohai-ohttp-10" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.0 -->
  <front>
    <title>Oblivious HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-ohai-ohttp-10"/>
    <author initials="M." surname="Thomson" fullname="Martin Thomson">
      <organization>Mozilla</organization>
      <address>
        <email>mt@lowentropy.net</email>
      </address>
    </author>
    <author initials="C. A." surname="Wood" fullname="Christopher A. Wood">
      <organization>Cloudflare</organization>
      <address>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2023" month="August" day="25"/>
    <area>Security</area>
    <workgroup>Oblivious HTTP Application Intermediation</workgroup>
    <abstract>
      <?line 105?>

<t>This document describes Oblivious HTTP, a protocol for forwarding encrypted HTTP messages.
Oblivious HTTP allows a client to make multiple requests to an origin server without that server
being able to link those requests to the client or to identify the requests as having come from the
same client, while placing only limited trust in the nodes used to forward the messages.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://ietf-wg-ohai.github.io/oblivious-http/draft-ietf-ohai-ohttp.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-ohai-ohttp/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Oblivious HTTP Application Intermediation Working Group mailing list (<eref target="mailto:ohai@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/ohai/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/ohai/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-ohai/oblivious-http"/>.</t>
    </note>
  </front>
  <middle>
    <?line 113?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>HTTP requests reveal information about client identities to servers. While the
actual content of the request message is under the control of the client, other
information that is more difficult to control can still be used to identify the
client.</t>
      <t>In particular, the source IP address of the underlying connection reveals
identifying information that the client has only limited control over. While
client-configured HTTP proxies can provide a degree of protection against IP
address tracking, they present an unfortunate tradeoff: if they are used without
TLS, the contents of communication are revealed to the proxy; if they are used
with TLS, a new connection needs to be used for each request to assure that the
origin server cannot use the connection as a way to correlate requests,
incurring significant performance overheads.</t>
      <t>To overcome these limitations, this document defines Oblivious HTTP, a protocol
for encrypting and sending HTTP messages from a client to a gateway. This uses a
trusted relay service in a manner that mitigates the use of metadata such as IP
address and connection information for client identification, with reasonable
performance characteristics.  This document describes:</t>
      <ol spacing="normal" type="1"><li>an algorithm for encapsulating binary HTTP messages <xref target="BINARY"/> using Hybrid
Public Key Encryption (HPKE; <xref target="HPKE"/>) to protect their contents,</li>
        <li>a method for forwarding these encapsulated messages between clients and an
<iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> through a trusted <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> using
HTTP, and</li>
        <li>requirements for how the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> handles encapsulated HTTP
messages and produces encapsulated responses for the client.</li>
      </ol>
      <t>The combination of encapsulation and relaying ensures that <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>
never sees the client's IP address and the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> never sees
plaintext HTTP message content.</t>
      <t>Oblivious HTTP allows connection reuse between the client and <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay
Resource</xref>, as well as between that relay and the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>, so this
scheme represents a performance improvement over using just one request in each
connection.  With limited trust placed in the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> (see
<xref target="security"/>), <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> are assured that requests are not uniquely attributed to
them or linked to other requests.</t>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>An Oblivious HTTP <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> must initially know the following:</t>
      <ul spacing="normal">
        <li>The identity of an <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>.  This might include some
information about what Target Resources the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>
supports.</li>
        <li>The details of an HPKE public key for the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>,
including an identifier for that key and the HPKE algorithms that are used
with that key.</li>
        <li>The identity of an <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> that will accept relay requests
carrying an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> as its content and forward the content in
these requests to a particular <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>.  Oblivious HTTP
uses a one-to-one mapping between <iref item="Oblivious Relay and Gateway Resources"/><xref target="dfn-relay" format="none">Oblivious Relay and Gateway Resources</xref>; see
<xref target="proxy-state"/> for more details.</li>
      </ul>
      <t>This information allows the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> to send HTTP requests to the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious
Gateway Resource</xref> for forwarding to a <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>.  The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway
Resource</xref> does not learn the client's IP address or any other identifying
information that might be revealed from the client at the transport layer, nor
does the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> learn which of the requests it receives are
from the same <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>.</t>
      <figure anchor="fig-overview">
        <name>Overview of Oblivious HTTP</name>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="480" width="560" viewBox="0 0 560 480" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,48 L 8,96" fill="none" stroke="black"/>
              <path d="M 48,96 L 48,464" fill="none" stroke="black"/>
              <path d="M 88,48 L 88,96" fill="none" stroke="black"/>
              <path d="M 152,48 L 152,96" fill="none" stroke="black"/>
              <path d="M 192,96 L 192,464" fill="none" stroke="black"/>
              <path d="M 240,48 L 240,96" fill="none" stroke="black"/>
              <path d="M 288,48 L 288,96" fill="none" stroke="black"/>
              <path d="M 312,48 L 312,96" fill="none" stroke="black"/>
              <path d="M 360,96 L 360,464" fill="none" stroke="black"/>
              <path d="M 400,48 L 400,96" fill="none" stroke="black"/>
              <path d="M 440,48 L 440,96" fill="none" stroke="black"/>
              <path d="M 480,96 L 480,464" fill="none" stroke="black"/>
              <path d="M 528,48 L 528,96" fill="none" stroke="black"/>
              <path d="M 552,48 L 552,96" fill="none" stroke="black"/>
              <path d="M 304,32 L 536,32" fill="none" stroke="black"/>
              <path d="M 8,48 L 88,48" fill="none" stroke="black"/>
              <path d="M 152,48 L 240,48" fill="none" stroke="black"/>
              <path d="M 312,48 L 400,48" fill="none" stroke="black"/>
              <path d="M 440,48 L 528,48" fill="none" stroke="black"/>
              <path d="M 8,96 L 88,96" fill="none" stroke="black"/>
              <path d="M 152,96 L 240,96" fill="none" stroke="black"/>
              <path d="M 312,96 L 400,96" fill="none" stroke="black"/>
              <path d="M 440,96 L 528,96" fill="none" stroke="black"/>
              <path d="M 304,112 L 352,112" fill="none" stroke="black"/>
              <path d="M 368,112 L 472,112" fill="none" stroke="black"/>
              <path d="M 488,112 L 536,112" fill="none" stroke="black"/>
              <path d="M 48,192 L 184,192" fill="none" stroke="black"/>
              <path d="M 192,256 L 352,256" fill="none" stroke="black"/>
              <path d="M 360,272 L 472,272" fill="none" stroke="black"/>
              <path d="M 368,320 L 480,320" fill="none" stroke="black"/>
              <path d="M 200,384 L 360,384" fill="none" stroke="black"/>
              <path d="M 56,448 L 192,448" fill="none" stroke="black"/>
              <path d="M 304,32 C 295.16936,32 288,39.16936 288,48" fill="none" stroke="black"/>
              <path d="M 536,32 C 544.83064,32 552,39.16936 552,48" fill="none" stroke="black"/>
              <path d="M 304,112 C 295.16936,112 288,104.83064 288,96" fill="none" stroke="black"/>
              <path d="M 536,112 C 544.83064,112 552,104.83064 552,96" fill="none" stroke="black"/>
              <polygon class="arrowhead" points="480,272 468,266.4 468,277.6" fill="black" transform="rotate(0,472,272)"/>
              <polygon class="arrowhead" points="376,320 364,314.4 364,325.6" fill="black" transform="rotate(180,368,320)"/>
              <polygon class="arrowhead" points="360,256 348,250.4 348,261.6" fill="black" transform="rotate(0,352,256)"/>
              <polygon class="arrowhead" points="208,384 196,378.4 196,389.6" fill="black" transform="rotate(180,200,384)"/>
              <polygon class="arrowhead" points="192,192 180,186.4 180,197.6" fill="black" transform="rotate(0,184,192)"/>
              <polygon class="arrowhead" points="64,448 52,442.4 52,453.6" fill="black" transform="rotate(180,56,448)"/>
              <g class="text">
                <text x="44" y="68">Client</text>
                <text x="184" y="68">Relay</text>
                <text x="352" y="68">Gateway</text>
                <text x="476" y="68">Target</text>
                <text x="196" y="84">Resource</text>
                <text x="356" y="84">Resource</text>
                <text x="484" y="84">Resource</text>
                <text x="80" y="132">Relay</text>
                <text x="88" y="148">Request</text>
                <text x="68" y="164">[+</text>
                <text x="132" y="164">Encapsulated</text>
                <text x="112" y="180">Request</text>
                <text x="152" y="180">]</text>
                <text x="232" y="196">Gateway</text>
                <text x="232" y="212">Request</text>
                <text x="212" y="228">[+</text>
                <text x="276" y="228">Encapsulated</text>
                <text x="256" y="244">Request</text>
                <text x="296" y="244">]</text>
                <text x="400" y="260">Request</text>
                <text x="436" y="308">Response</text>
                <text x="320" y="324">Gateway</text>
                <text x="316" y="340">Response</text>
                <text x="236" y="356">[+</text>
                <text x="300" y="356">Encapsulated</text>
                <text x="300" y="372">Response</text>
                <text x="344" y="372">]</text>
                <text x="160" y="388">Relay</text>
                <text x="148" y="404">Response</text>
                <text x="68" y="420">[+</text>
                <text x="132" y="420">Encapsulated</text>
                <text x="132" y="436">Response</text>
                <text x="176" y="436">]</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
                                    .------------------------------.
+---------+       +----------+     |  +----------+    +----------+  |
| Client  |       | Relay    |     |  | Gateway  |    | Target   |  |
|         |       | Resource |     |  | Resource |    | Resource |  |
+----+----+       +----+-----+     |  +-----+----+    +----+-----+  |
     |                 |            `-------|--------------|-------'
     | Relay           |                    |              |
     | Request         |                    |              |
     | [+ Encapsulated |                    |              |
     |    Request ]    |                    |              |
     +---------------->| Gateway            |              |
     |                 | Request            |              |
     |                 | [+ Encapsulated    |              |
     |                 |    Request ]       |              |
     |                 +------------------->| Request      |
     |                 |                    +------------->|
     |                 |                    |              |
     |                 |                    |     Response |
     |                 |            Gateway |<-------------+
     |                 |           Response |              |
     |                 |    [+ Encapsulated |              |
     |                 |         Response ] |              |
     |           Relay |<-------------------+              |
     |        Response |                    |              |
     | [+ Encapsulated |                    |              |
     |      Response ] |                    |              |
     |<----------------+                    |              |
     |                 |                    |              |
]]></artwork>
        </artset>
      </figure>
      <t>In order to forward a request for a <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> to the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway
Resource</xref>, the following steps occur, as shown in <xref target="fig-overview"/>:</t>
      <ol spacing="normal" type="1"><li>The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> constructs an HTTP request for a <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>.</li>
        <li>The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> encodes the HTTP request in a binary HTTP message and then
encapsulates that message using HPKE and the process from <xref target="request"/>.</li>
        <li>The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> sends a POST request to the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> with the
<iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> as the content of that message.</li>
        <li>The <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> forwards this request to the Oblivious Gateway
resource.</li>
        <li>The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> receives this request and removes
the HPKE protection to obtain an HTTP request.</li>
      </ol>
      <t>The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> then handles the HTTP request. This typically
involves making an HTTP request using the content of the <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>. Once the
<iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> has an HTTP response for this request, the following
steps occur to return this response to the client:</t>
      <ol spacing="normal" type="1"><li>The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> encapsulates the HTTP response following the
process in <xref target="response"/> and sends this in response to the request from the
<iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref>.</li>
        <li>The <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> forwards this response to the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>.</li>
        <li>The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> removes the encapsulation to obtain the response to the original
 request.</li>
      </ol>
      <t>This interaction provides authentication and confidentiality protection between
the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> and the Oblivious Gateway, but importantly not between the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> and
the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>. While the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> is a distinct HTTP resource from
the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>, they are both logically under the control of the
Oblivious Gateway, since the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> can unilaterally dictate
the responses returned from the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> to the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>. This arrangement
is shown in <xref target="fig-overview"/>.</t>
      <section anchor="applicability">
        <name>Applicability</name>
        <t>Oblivious HTTP has limited applicability.  Imporantly, it requires expicit
support from a willing <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> and <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>,
thereby limiting the use of Oblivious HTTP for generic applications;
see <xref target="server-responsibilities"/> for more information.</t>
        <t>Many uses of HTTP benefit from being able to carry state between requests,
such as with cookies (<xref target="COOKIES"/>), authentication (<xref section="11" sectionFormat="of" target="HTTP"/>),
or even alternative services (<xref target="RFC7838"/>).  Oblivious HTTP removes linkage
at the transport layer, which is only useful for an application
that does not carry state between requests.</t>
        <t>Oblivious HTTP is primarily useful where privacy risks associated with possible
stateful treatment of requests are sufficiently large that the cost of deploying
this protocol can be justified.  Oblivious HTTP is simpler and less costly than
more robust systems, like Prio (<xref target="PRIO"/>) or Tor (<xref target="DMS2004"/>), which can
provide stronger guarantees at higher operational costs.</t>
        <t>Oblivious HTTP is more costly than a direct connection to a server.  Some costs,
like those involved with connection setup, can be amortized, but there are
several ways in which Oblivious HTTP is more expensive than a direct request:</t>
        <ul spacing="normal">
          <li>Each request requires at least two regular HTTP requests, which could
increase latency.</li>
          <li>Each request is expanded in size with additional HTTP fields,
encryption-related metadata, and AEAD expansion.</li>
          <li>Deriving cryptographic keys and applying them for request and
response protection takes non-negligible computational resources.</li>
        </ul>
        <t>Examples of where preventing the linking of requests might justify these costs
include:</t>
        <ul spacing="normal">
          <li>DNS queries.  DNS queries made to a recursive resolver reveal information
about the requester, particularly if linked to other queries.</li>
          <li>Telemetry submission.  Applications that submit reports about their usage to
their developers might use Oblivious HTTP for some types of moderately
sensitive data.</li>
        </ul>
        <t>These are examples of requests where there is information in a request that - if
it were connected to the identity of the user - might allow a server to learn
something about that user even if the identity of the user is pseudonymous.
Other examples include the submission of anonymous surveys, making search
queries, or requesting location-specific content (such as retrieving tiles of a
map display).</t>
        <t>In addition to these limitations, <xref target="security"/> describes operational constraints
that are necessary to realize the goals of the protocol.</t>
      </section>
      <section anchor="conventions-and-definitions">
        <name>Conventions and Definitions</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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.</t>
        <?line -18?>

<t>This document uses terminology from <xref target="HTTP"/> and defines several terms as
follows:</t>
        <dl>
          <dt><iref item="Client"/><xref target="dfn-client" format="none">Client</xref>:</dt>
          <dd>
            <t anchor="dfn-client">A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> originates Oblivious HTTP requests.  A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> is also an HTTP client
in two ways: for the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> and for the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay
Resource</xref>. However, when referring to the HTTP definition of client (<xref section="3.3" sectionFormat="of" target="HTTP"/>), the term "HTTP client" is used; see <xref target="http-usage"/>.</t>
          </dd>
          <dt><iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>:</dt>
          <dd>
            <t anchor="dfn-enc-req">An HTTP request that is encapsulated in an HPKE-encrypted message; see
<xref target="request"/>.</t>
          </dd>
          <dt><iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref>:</dt>
          <dd>
            <t anchor="dfn-enc-res">An HTTP response that is encapsulated in an HPKE-encrypted message; see
<xref target="response"/>.</t>
          </dd>
          <dt><iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref>:</dt>
          <dd>
            <t anchor="dfn-relay">An intermediary that forwards Encapsulated Requests and Responses between
<iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> and a single <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>.  In context, this can be
referred to as simply a "relay".</t>
          </dd>
          <dt><iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>:</dt>
          <dd>
            <t anchor="dfn-gateway">A resource that can receive an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>, extract the contents of
that request, forward it to a <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>, receive a response, encapsulate
that response, then return the resulting <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref>.  In context,
this can be referred to as simply a "gateway".</t>
          </dd>
          <dt><iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>:</dt>
          <dd>
            <t anchor="dfn-target">The resource that is the target of an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>.  This resource
logically handles only regular HTTP requests and responses and so might be
ignorant of the use of Oblivious HTTP to reach it.</t>
          </dd>
        </dl>
        <t>This document includes pseudocode that uses the functions and conventions
defined in <xref target="HPKE"/>.</t>
        <t>Encoding an integer to a sequence of bytes in network byte order is described
using the function <tt>encode(n, v)</tt>, where <tt>n</tt> is the number of bytes and <tt>v</tt> is
the integer value.  ASCII <xref target="ASCII"/> encoding of a string <tt>s</tt> is
indicated using the function <tt>encode_str(s)</tt>.</t>
        <t>Formats are described using notation from <xref section="1.3" sectionFormat="of" target="QUIC"/>.  An extension
to that notation expresses the number of bits in a field using a simple
mathematical function.</t>
      </section>
    </section>
    <section anchor="key-configuration">
      <name>Key Configuration</name>
      <t>A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> needs to acquire information about the <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> of the
<iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> in order to send Encapsulated Requests.
In order to ensure that <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> do not encapsulate messages that other entities
can intercept, the <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> <bcp14>MUST</bcp14> be authenticated and have integrity
protection.</t>
      <t>This document does not define how that acquisition occurs. However, in
order to help facilitate interoperability, it does specify a format
for the keys. This ensures that different
<iref item="Client"/><xref target="dfn-client" format="none">Client</xref> implementations can be configured in the same way and also
enables advertising <iref item="key configurations"/><xref target="key-configuration" format="none">key configurations</xref> in a consistent format.  This
format might be used, for example with HTTPS, as part of a system for
configuring or discovering <iref item="key configurations"/><xref target="key-configuration" format="none">key configurations</xref>.  Note however that such
a system needs to consider the potential for <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> to be
used to compromise <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> privacy; see <xref target="privacy"/>.</t>
      <t>A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> might have multiple <iref item="key configurations"/><xref target="key-configuration" format="none">key configurations</xref> to select from when
encapsulating a request. <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> are responsible for selecting a preferred <iref item="key configuration"/><xref target="key-configuration" format="none">key
configuration</xref> from those it supports. <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> need to consider both the key
encapsulation method (KEM) and the combinations of key derivation function
(KDF) and authenticated encryption with associated data (AEAD) in this
decision.</t>
      <section anchor="key-config">
        <name>Key Configuration Encoding</name>
        <t>A single <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> consists of a key identifier, a public key, an
identifier for the KEM that the public key uses, and a set of HPKE symmetric
algorithms. Each symmetric algorithm consists of an identifier for a KDF and an
identifier for an AEAD.</t>
        <t><xref target="format-key-config"/> shows a single <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref>.</t>
        <figure anchor="format-key-config">
          <name>A Single Key Configuration</name>
          <sourcecode type="tls-syntax"><![CDATA[
HPKE Symmetric Algorithms {
  HPKE KDF ID (16),
  HPKE AEAD ID (16),
}

Key Config {
  Key Identifier (8),
  HPKE KEM ID (16),
  HPKE Public Key (Npk * 8),
  HPKE Symmetric Algorithms Length (16) = 4..65532,
  HPKE Symmetric Algorithms (32) ...,
}
]]></sourcecode>
        </figure>
        <t>That is, a <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> consists of the following fields:</t>
        <dl>
          <dt>Key Identifier:</dt>
          <dd>
            <t>An 8 bit value that identifies the key used by the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>.</t>
          </dd>
          <dt>HPKE KEM ID:</dt>
          <dd>
            <t>A 16 bit value that identifies the Key Encapsulation Method (KEM) used for the
identified key as defined in <xref section="7.1" sectionFormat="of" target="HPKE"/> or <eref target="https://www.iana.org/assignments/hpke/hpke.xhtml#hpke-kem-ids">the HPKE KDF IANA
registry</eref>.</t>
          </dd>
          <dt>HPKE Public Key:</dt>
          <dd>
            <t>The public key used by the gateway. The length of the public key is <tt>Npk</tt>, which is
determined by the choice of HPKE KEM as defined in <xref section="4" sectionFormat="of" target="HPKE"/>.</t>
          </dd>
          <dt>HPKE Symmetric Algorithms Length:</dt>
          <dd>
            <t>A 16 bit integer in network byte order that encodes the length, in bytes, of
the HPKE Symmetric Algorithms field that follows.</t>
          </dd>
          <dt>HPKE Symmetric Algorithms:</dt>
          <dd>
            <t>One or more pairs of identifiers for the different combinations of HPKE KDF
and AEAD that the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> supports:</t>
            <dl>
              <dt>HPKE KDF ID:</dt>
              <dd>
                <t>A 16 bit HPKE KDF identifier as defined in <xref section="7.2" sectionFormat="of" target="HPKE"/> or <eref target="https://www.iana.org/assignments/hpke/hpke.xhtml#hpke-kdf-ids">the
HPKE KDF IANA
registry</eref>.</t>
              </dd>
              <dt>HPKE AEAD ID:</dt>
              <dd>
                <t>A 16 bit HPKE AEAD identifier as defined in <xref section="7.3" sectionFormat="of" target="HPKE"/> or <eref target="https://www.iana.org/assignments/hpke/hpke.xhtml#hpke-aead-ids">the
HPKE AEAD IANA
registry</eref>.</t>
              </dd>
            </dl>
          </dd>
        </dl>
      </section>
      <section anchor="ohttp-keys">
        <name>Key Configuration Media Type</name>
        <t>The "application/ohttp-keys" format is a media type that identifies a serialized
collection of <iref item="key configurations"/><xref target="key-configuration" format="none">key configurations</xref>. The content of this media type comprises one
or more <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> encodings (see <xref target="key-config"/>).  Each encoded
configuration is prefixed with a two byte integer in network byte order that
indicates the length of the <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> in bytes.  The length-prefixed
encodings are concatenated to form a list.  See <xref target="iana-keys"/> for a definition
of the media type.</t>
        <t>Evolution of the <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> format is supported through the definition of
new formats that are identified by new media types.</t>
        <t>A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> that receives an "application/ohttp-keys" object with encoding errors
might be able to recover one or more <iref item="key configurations"/><xref target="key-configuration" format="none">key configurations</xref>.  Differences in how <iref item="key configurations"/><xref target="key-configuration" format="none">key
configurations</xref> are recovered might be exploited to segregate <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>, so <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>
          <bcp14>MUST</bcp14> discard incorrectly encoded <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> collections.</t>
      </section>
    </section>
    <section anchor="hpke-encapsulation">
      <name>HPKE Encapsulation</name>
      <t>This document defines how a binary-encoded HTTP message <xref target="BINARY"/> is
encapsulated using HPKE <xref target="HPKE"/>.  Separate media types are defined to
distinguish request and response messages:</t>
      <ul spacing="normal">
        <li>An <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> format defined in <xref target="req-format"/> is identified by the
<xref format="title" target="iana-req">"<tt>message/ohttp-req</tt>" media type</xref>.</li>
        <li>An <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref> format defined in <xref target="res-format"/> is identified by the
<xref target="iana-res">"<tt>message/ohttp-res</tt>" media type</xref>.</li>
      </ul>
      <t>Alternative encapsulations or message formats are indicated using the media
type; see <xref target="req-res-media"/> and <xref target="repurposing"/>.</t>
      <section anchor="req-format">
        <name>Request Format</name>
        <t>A message in "<tt>message/ohttp-req</tt>" format protects a binary HTTP request
message; see <xref target="fig-req-pt"/>.</t>
        <figure anchor="fig-req-pt">
          <name>Plaintext Request Content</name>
          <artwork><![CDATA[
Request {
  Binary HTTP Message (..),
}
]]></artwork>
        </figure>
        <t>This plaintext Request is encapsulated into a message in "<tt>message/ohttp-req</tt>"
form by generating an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>.  An <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> comprises a
key identifier; HPKE parameters for the chosen KEM, KDF, and AEAD; the
encapsulated KEM shared secret (or <tt>enc</tt>); and an HPKE-protected binary HTTP
request message.</t>
        <t>An <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> is shown in <xref target="fig-enc-request"/>. <xref target="request"/> describes
the process for constructing and processing an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>.</t>
        <figure anchor="fig-enc-request">
          <name>Encapsulated Request</name>
          <artwork><![CDATA[
Encapsulated Request {
  Key Identifier (8),
  HPKE KEM ID (16),
  HPKE KDF ID (16),
  HPKE AEAD ID (16),
  Encapsulated KEM Shared Secret (8 * Nenc),
  HPKE-Protected Request (..),
}
]]></artwork>
        </figure>
        <t>That is, an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> comprises a Key Identifier, HPKE KEM ID, HPKE
KDF ID, HPKE AEAD ID, Encapsulated KEM Shared Secret, and HPKE-Protected
Request.  The Key Identifier, HPKE KEM ID, HPKE KDF ID, and HPKE AEAD ID fields
are defined in <xref target="key-config"/>.  The Encapsulated KEM Shared Secret is the output
of the <tt>Encap()</tt> function for the KEM, which is <tt>Nenc</tt> bytes in length, as
defined in <xref section="4" sectionFormat="of" target="HPKE"/>.</t>
      </section>
      <section anchor="res-format">
        <name>Response Format</name>
        <t>A message in "<tt>message/ohttp-res</tt>" format protects a binary HTTP response
message; see <xref target="fig-res-pt"/>.</t>
        <figure anchor="fig-res-pt">
          <name>Plaintext Response Content</name>
          <artwork><![CDATA[
Response {
  Binary HTTP Message (..),
}
]]></artwork>
        </figure>
        <t>This plaintext Response is encapsulated into a message in "<tt>message/ohttp-res</tt>"
form by generating an <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref>.  An <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref> comprises
a nonce and the AEAD-protected binary HTTP response message.</t>
        <t>An <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref> is shown in <xref target="fig-enc-response"/>. <xref target="response"/> describes
the process for constructing and processing an <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref>.</t>
        <figure anchor="fig-enc-response">
          <name>Encapsulated Response</name>
          <artwork><![CDATA[
Encapsulated Response {
  Nonce (8 * max(Nn, Nk)),
  AEAD-Protected Response (..),
}
]]></artwork>
        </figure>
        <t>That is, an <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref> contains a Nonce and an AEAD-Protected
Response.  The Nonce field is either <tt>Nn</tt> or <tt>Nk</tt> bytes long, whichever is
larger.  The <tt>Nn</tt> and <tt>Nk</tt> values correspond to parameters of the AEAD used in
HPKE, which is defined in <xref section="7.3" sectionFormat="of" target="HPKE"/> or <eref target="https://www.iana.org/assignments/hpke/hpke.xhtml#hpke-aead-ids">the HPKE AEAD IANA
registry</eref>.  <tt>Nn</tt>
and <tt>Nk</tt> refer to the size of the AEAD nonce and key respectively, in bytes.</t>
      </section>
      <section anchor="request">
        <name>Encapsulation of Requests</name>
        <t><iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> encapsulate a request, <tt>request</tt>, using values from a <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref>:</t>
        <ul spacing="normal">
          <li>the key identifier from the configuration, <tt>key_id</tt>, with the corresponding KEM
identified by <tt>kem_id</tt>,</li>
          <li>the public key from the configuration, <tt>pkR</tt>, and</li>
          <li>a combination of KDF, identified by <tt>kdf_id</tt>, and AEAD, identified by
<tt>aead_id</tt>, that the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> selects from those in the <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref>.</li>
        </ul>
        <t>The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> then constructs an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>, <tt>enc_request</tt>, from a binary
encoded HTTP request <xref target="BINARY"/>, <tt>request</tt>, as follows:</t>
        <ol spacing="normal" type="1"><li>Construct a message header, <tt>hdr</tt>, by concatenating the values of <tt>key_id</tt>,
<tt>kem_id</tt>, <tt>kdf_id</tt>, and <tt>aead_id</tt>, as one 8-bit integer and three 16-bit
integers, respectively, each in network byte order.</li>
          <li>Build <tt>info</tt> by concatenating the ASCII-encoded string "message/bhttp
request", a zero byte, and the header.  Note: <xref target="repurposing"/> discusses how
alternative message formats might use a different <tt>info</tt> value.</li>
          <li>Create a sending HPKE context by invoking <tt>SetupBaseS()</tt> (<xref section="5.1.1" sectionFormat="of" target="HPKE"/>) with the public key of the receiver <tt>pkR</tt> and <tt>info</tt>.  This yields
the context <tt>sctxt</tt> and an encapsulation key <tt>enc</tt>.</li>
          <li>Encrypt <tt>request</tt> by invoking the <tt>Seal()</tt> method on <tt>sctxt</tt> (<xref section="5.2" sectionFormat="of" target="HPKE"/>) with empty associated data <tt>aad</tt>, yielding ciphertext <tt>ct</tt>.</li>
          <li>Concatenate the values of <tt>hdr</tt>, <tt>enc</tt>, and <tt>ct</tt>, yielding an Encrypted
Request <tt>enc_request</tt>.</li>
        </ol>
        <t>Note that <tt>enc</tt> is of fixed-length, so there is no ambiguity in parsing this
structure.</t>
        <t>In pseudocode, this procedure is as follows:</t>
        <artwork><![CDATA[
hdr = concat(encode(1, key_id),
             encode(2, kem_id),
             encode(2, kdf_id),
             encode(2, aead_id))
info = concat(encode_str("message/bhttp request"),
              encode(1, 0),
              hdr)
enc, sctxt = SetupBaseS(pkR, info)
ct = sctxt.Seal("", request)
enc_request = concat(hdr, enc, ct)
]]></artwork>
        <t>An <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> decrypts an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> by reversing this
process. To decapsulate an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>, <tt>enc_request</tt>:</t>
        <ol spacing="normal" type="1"><li>
            <t>Parses <tt>enc_request</tt> into <tt>key_id</tt>, <tt>kem_id</tt>, <tt>kdf_id</tt>, <tt>aead_id</tt>, <tt>enc</tt>, and
<tt>ct</tt> (indicated using the function <tt>parse()</tt> in pseudocode). The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious
Gateway Resource</xref> is then able to find the HPKE private key, <tt>skR</tt>,
corresponding to <tt>key_id</tt>.  </t>
            <t>
a. If <tt>key_id</tt> does not identify a key matching the type of <tt>kem_id</tt>, the
   <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> returns an error.  </t>
            <t>
b. If <tt>kdf_id</tt> and <tt>aead_id</tt> identify a combination of KDF and AEAD that the
   <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> is unwilling to use with <tt>skR</tt>, the <iref item="Oblivious    Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious
   Gateway Resource</xref> returns an error.</t>
          </li>
          <li>Build <tt>info</tt> by concatenating the ASCII-encoded string "message/bhttp
request", a zero byte, <tt>key_id</tt> as an 8-bit integer, plus <tt>kem_id</tt>, <tt>kdf_id</tt>,
and <tt>aead_id</tt> as three 16-bit integers.</li>
          <li>Create a receiving HPKE context, <tt>rctxt</tt>, by invoking <tt>SetupBaseR()</tt>
(<xref section="5.1.1" sectionFormat="of" target="HPKE"/>) with <tt>skR</tt>, <tt>enc</tt>, and <tt>info</tt>.</li>
          <li>Decrypt <tt>ct</tt> by invoking the <tt>Open()</tt> method on <tt>rctxt</tt> (<xref section="5.2" sectionFormat="of" target="HPKE"/>), with an empty associated data <tt>aad</tt>, yielding <tt>request</tt> or an error
on failure. If decryption fails, the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> returns an
error.</li>
        </ol>
        <t>In pseudocode, this procedure is as follows:</t>
        <artwork><![CDATA[
key_id, kem_id, kdf_id, aead_id, enc, ct = parse(enc_request)
info = concat(encode_str("message/bhttp request"),
              encode(1, 0),
              encode(1, key_id),
              encode(2, kem_id),
              encode(2, kdf_id),
              encode(2, aead_id))
rctxt = SetupBaseR(enc, skR, info)
request, error = rctxt.Open("", ct)
]]></artwork>
        <t>The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> retains the HPKE context, <tt>rctxt</tt>, so that it can
encapsulate a response.</t>
      </section>
      <section anchor="response">
        <name>Encapsulation of Responses</name>
        <t><iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref> generate an <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref>, <tt>enc_response</tt>,
from a binary encoded HTTP response <xref target="BINARY"/>, <tt>response</tt>.  The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious
Gateway Resource</xref> uses the HPKE receiver context, <tt>rctxt</tt>, as the HPKE context,
<tt>context</tt>, as follows:</t>
        <ol spacing="normal" type="1"><li>Export a secret, <tt>secret</tt>, from <tt>context</tt>, using the string "message/bhttp
response" as the <tt>exporter_context</tt> parameter to <tt>context.Export</tt>; see
<xref section="5.3" sectionFormat="of" target="HPKE"/>.  The length of this secret is <tt>max(Nn, Nk)</tt>, where
<tt>Nn</tt> and <tt>Nk</tt> are the length of AEAD key and nonce associated with <tt>context</tt>.
Note: <xref target="repurposing"/> discusses how alternative message formats might use a
different <tt>context</tt> value.</li>
          <li>Generate a random value of length <tt>max(Nn, Nk)</tt> bytes, called
<tt>response_nonce</tt>.</li>
          <li>Extract a pseudorandom key, <tt>prk</tt>, using the <tt>Extract</tt> function provided by
the KDF algorithm associated with <tt>context</tt>. The <tt>ikm</tt> input to this
function is <tt>secret</tt>; the <tt>salt</tt> input is the concatenation of <tt>enc</tt> (from
<tt>enc_request</tt>) and <tt>response_nonce</tt>.</li>
          <li>Use the <tt>Expand</tt> function provided by the same KDF to create an AEAD key,
<tt>key</tt>, of length <tt>Nk</tt> - the length of the keys used by the AEAD associated
with <tt>context</tt>. Generating <tt>aead_key</tt> uses a label of "key".</li>
          <li>Use the same <tt>Expand</tt> function to create a nonce, <tt>nonce</tt>, of length <tt>Nn</tt> -
the length of the nonce used by the AEAD. Generating <tt>aead_nonce</tt> uses a
label of "nonce".</li>
          <li>Encrypt <tt>response</tt>, passing the AEAD function Seal the values of <tt>aead_key</tt>,
<tt>aead_nonce</tt>, an empty <tt>aad</tt>, and a <tt>pt</tt> input of <tt>response</tt>, which yields <tt>ct</tt>.</li>
          <li>Concatenate <tt>response_nonce</tt> and <tt>ct</tt>, yielding an <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref>,
<tt>enc_response</tt>. Note that <tt>response_nonce</tt> is of fixed-length, so there is no
ambiguity in parsing either <tt>response_nonce</tt> or <tt>ct</tt>.</li>
        </ol>
        <t>In pseudocode, this procedure is as follows:</t>
        <artwork><![CDATA[
secret = context.Export("message/bhttp response", max(Nn, Nk))
response_nonce = random(max(Nn, Nk))
salt = concat(enc, response_nonce)
prk = Extract(salt, secret)
aead_key = Expand(prk, "key", Nk)
aead_nonce = Expand(prk, "nonce", Nn)
ct = Seal(aead_key, aead_nonce, "", response)
enc_response = concat(response_nonce, ct)
]]></artwork>
        <t><iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> decrypt an <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref> by reversing this process.  That is,
<iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> first parse <tt>enc_response</tt> into <tt>response_nonce</tt> and <tt>ct</tt>. They then
follow the same process to derive values for <tt>aead_key</tt> and <tt>aead_nonce</tt>, using
their sending HPKE context, <tt>sctxt</tt>, as the HPKE context, <tt>context</tt>.</t>
        <t>The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> uses these values to decrypt <tt>ct</tt> using the Open function provided by
the AEAD. Decrypting might produce an error, as follows:</t>
        <artwork><![CDATA[
response, error = Open(aead_key, aead_nonce, "", ct)
]]></artwork>
      </section>
      <section anchor="req-res-media">
        <name>Request and Response Media Types</name>
        <t>Media types are used to identify Encapsulated Requests and Responses; see
<xref target="iana-req"/> and <xref target="iana-res"/> for definitions of these media types.</t>
        <t>Evolution of the format of Encapsulated Requests and Responses is supported
through the definition of new formats that are identified by new media types.
New media types might be defined to use similar encapsulation with a different
HTTP message format than in <xref target="BINARY"/>; see <xref target="repurposing"/> for guidance on
reusing this encapsulation.  Alternatively, a new encapsulation method might be
defined.</t>
      </section>
      <section anchor="repurposing">
        <name>Repurposing the Encapsulation Format</name>
        <t>The encrypted payload of an Oblivious HTTP request and response is a binary HTTP message
<xref target="BINARY"/>.  The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> and <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> agree on this encrypted
payload type by specifying the media type "message/bhttp" in the HPKE info
string and HPKE export context string for request and response encryption,
respectively.</t>
        <t>Future specifications may repurpose the encapsulation mechanism described in
this document.  This requires that the specification define a new media type.
The encapsulation process for that content type can follow the same process,
using new constant strings for the HPKE info and exporter context inputs.</t>
        <t>For example, a future specification might encapsulate DNS messages, which use
the "application/dns-message" media type <xref target="RFC8484"/>.  In creating a new,
encrypted media types, specifications might define the use of string
"application/dns-message request" (plus a zero byte and the header for the full
value) for request encryption and the string "application/dns-message response"
for response encryption.</t>
      </section>
    </section>
    <section anchor="http-usage">
      <name>HTTP Usage</name>
      <t>A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> interacts with the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> by constructing an
<iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>.  This <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> is included as the content of a
POST request to the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref>.  This request only needs those
fields necessary to carry the <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>: a method of POST, a target
URI of the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref>, a header field containing the content type
(see <xref target="iana-req"/>), and the <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> as the request content. In the
request to the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref>, <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> <bcp14>MAY</bcp14> include additional
fields. However, additional fields <bcp14>MUST</bcp14> be independent of the <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated
Request</xref> and <bcp14>MUST</bcp14> be fields that the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> will remove before
forwarding the <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> towards the target, such as the Connection
or Proxy-Authorization header fields <xref target="HTTP"/>.</t>
      <t>The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> role in this protocol acts as an HTTP client both with respect to the
<iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> and the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>.  For the request, the <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>
makes to the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>, this diverges from typical HTTP assumptions about
the use of a connection (see <xref section="3.3" sectionFormat="of" target="HTTP"/>) in that the request and
response are encrypted rather than sent over a connection.  The <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay
Resource</xref> and the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> also act as HTTP clients toward the
<iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> and <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> respectively.</t>
      <t>In order to achieve the privacy and security goals of the protocol a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> also
needs to observe the guidance in <xref target="sec-client"/>.</t>
      <t>The <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> interacts with the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> as an
HTTP client by constructing a request using the same restrictions as the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>
request, except that the target URI is the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>.  The
content of this request is copied from the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>.  An <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> <bcp14>MAY</bcp14> reject
requests that are obviously invalid, such as a request with no content. The <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay
Resource</xref> <bcp14>MUST NOT</bcp14> add information to the request without the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> being aware of
the type of information that might be added; see <xref target="relay-responsibilities"/> for
more information on relay responsibilities.</t>
      <t>When a response is received from the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>, the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious
Relay Resource</xref> forwards the response according to the rules of an HTTP proxy;
see <xref section="7.6" sectionFormat="of" target="HTTP"/>.  In case of timeout or error, the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay
Resource</xref> can generate a response with an appropriate status code.</t>
      <t>In order to achieve the privacy and security goals of the protocol an <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious
Relay Resource</xref> also needs to observe the guidance in
<xref target="relay-responsibilities"/>.</t>
      <t>An <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> acts as a gateway for requests to the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target
Resource</xref> (see <xref section="7.6" sectionFormat="of" target="HTTP"/>).  The one exception is that any
information it might forward in a response <bcp14>MUST</bcp14> be encapsulated, unless it is
responding to errors that do not relate to processing the contents of the
encapsulated request; see <xref target="errors"/>.</t>
      <t>An <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>, if it receives any response from the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target
Resource</xref>, sends a single 200 response containing the encapsulated response.
Like the request from the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>, this response <bcp14>MUST</bcp14> only contain those fields
necessary to carry the encapsulated response: a 200 status code, a header field
indicating the content type, and the encapsulated response as the response
content.  As with requests, additional fields <bcp14>MAY</bcp14> be used to convey information
that does not reveal information about the encapsulated response.</t>
      <t>An <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> that does not receive a response can itself
generate a response with an appropriate error status code (such as 504 (Gateway
Timeout); see <xref section="15.6.5" sectionFormat="of" target="HTTP"/>), which is then encapsulated in the
same way as a successful response.</t>
      <t>In order to achieve the privacy and security goals of the protocol an <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious
Gateway Resource</xref> also needs to observe the guidance in
<xref target="server-responsibilities"/>.</t>
      <section anchor="informational-responses">
        <name>Informational Responses</name>
        <t>This encapsulation does not permit progressive processing of responses.  Though
the binary HTTP response format does support the inclusion of informational
(1xx) status codes, the AEAD encapsulation cannot be removed until the entire
message is received.</t>
        <t>In particular, the Expect header field with 100-continue (see <xref section="10.1.1" sectionFormat="of" target="HTTP"/>) cannot be used.  <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> <bcp14>MUST NOT</bcp14>
construct a request that includes a 100-continue expectation; the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious
Gateway Resource</xref> <bcp14>MUST</bcp14> generate an error if a 100-continue expectation is
received.</t>
      </section>
      <section anchor="errors">
        <name>Errors</name>
        <t>A server that receives an invalid message for any reason <bcp14>MUST</bcp14> generate an HTTP
response with a 4xx status code.</t>
        <t>Errors detected by the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> and errors detected by the
<iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> before removing protection (including being unable to
remove encapsulation for any reason) result in the status code being sent
without protection in response to the POST request made to that resource.</t>
        <t>Errors detected by the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> after successfully removing
encapsulation and errors detected by the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> <bcp14>MUST</bcp14> be sent in an
<iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref>.  This might be because the <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> is
malformed or the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> does not produce a response.  In either case
the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> can generate a response with an appropriate error
status code (such as 400 (Bad Request) or 504 (Gateway Timeout); see <xref section="15.5.1" sectionFormat="of" target="HTTP"/> and <xref section="15.6.5" sectionFormat="of" target="HTTP"/>, respectively).  This response
is encapsulated in the same way as a successful response.</t>
        <t>Errors in the encapsulation of requests mean that responses cannot be
encapsulated.  This includes cases where the <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> is incorrect or
outdated.  The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> can generate and send a response with
a 4xx status code to the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref>.  This response <bcp14>MAY</bcp14> be
forwarded to the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> or treated by the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> as a failure.
If a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> receives a response that is not an <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref>, this could
indicate that the client configuration used to construct the request is
incorrect or out of date.</t>
      </section>
      <section anchor="ohttp-key-problem">
        <name>Signaling Key Configuration Problems</name>
        <t>The problem type <xref target="PROBLEM"/> of
"https://iana.org/assignments/http-problem-types#ohttp-key" is defined.  An
<iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> <bcp14>MAY</bcp14> use this problem type in a response to indicate
that an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> used an outdated or incorrect <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref>.</t>
        <t><xref target="fig-key-problem"/> shows an example response in HTTP/1.1 format.</t>
        <figure anchor="fig-key-problem">
          <name>Example Rejection of Key Configuration</name>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 400 Bad Request
Date: Mon, 07 Feb 2022 00:28:05 GMT
Content-Type: application/problem+json
Content-Length: 106

{"type":"https://iana.org/assignments/http-problem-types#ohttp-key",
"title": "key identifier unknown"}
]]></sourcecode>
        </figure>
        <t>As this response cannot be encrypted, it might not reach the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>.  A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>
cannot rely on the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> using this problem type.  A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>
might also be configured to disregard responses that are not encapsulated on the
basis that they might be subject to observation or modification by an <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious
Relay Resource</xref>.  A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> might manage the risk of an outdated <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref>
using a heuristic approach whereby it periodically refreshes its <iref item="key configuration"/><xref target="key-configuration" format="none">key
configuration</xref> if it receives a response with an error status code that has not
been encapsulated.</t>
      </section>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>In this design, a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> wishes to make a request to an <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>
that is forwarded to a <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>. The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> wishes to make this request without
linking that request with either:</t>
      <ol spacing="normal" type="1"><li>The identity at the network and transport layer of the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> (that is, the
<iref item="Client"/><xref target="dfn-client" format="none">Client</xref> IP address and TCP or UDP port number the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> uses to create a
connection).</li>
        <li>Any other request the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> might have made in the past or might make in
the future.</li>
      </ol>
      <t>In order to ensure this, the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> selects a relay (that serves the
<iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref>) that it trusts will protect this information
by forwarding the <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> and Response without passing it
to the server (that serves the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>).</t>
      <t>In this section, a deployment where there are three entities is considered:</t>
      <ul spacing="normal">
        <li>A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> makes requests and receives responses</li>
        <li>A relay operates the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref></li>
        <li>A server operates both the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> and the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref></li>
      </ul>
      <t><xref target="separate-target"/> discusses the security implications for a case where
different servers operate the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> and <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>.</t>
      <t>Requests from the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> to <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> and from <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay
Resource</xref> to <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> <bcp14>MUST</bcp14> use HTTPS in order to provide
unlinkability in the presence of a network observer.</t>
      <t>To achieve the stated privacy goals, the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> cannot be
operated by the same entity as the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>. However,
colocation of the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> and <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> simplifies the
interactions between those resources without affecting <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> privacy.</t>
      <t>As a consequence of this configuration, Oblivious HTTP prevents linkability
described above. Informally, this means:</t>
      <ol spacing="normal" type="1"><li>Requests and responses are known only to <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> and <iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref>.
In particular, the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> knows the origin and destination
of an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> and Response, yet does not know the decrypted contents.
Likewise, <iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref> learn only the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> and
the decrypted request.  No entity other than the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> can see the plaintext
request and response and can attribute them to the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>.</li>
        <li>Oblivous Gateway Resources, and therefore Target Resources, cannot link requests
from the same <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> in the absence of unique per-<iref item="Client"/><xref target="dfn-client" format="none">Client</xref> keys.</li>
      </ol>
      <t>Traffic analysis that might affect these properties are outside the scope of
this document; see <xref target="ta"/>.</t>
      <t>A formal analysis of Oblivious HTTP is in <xref target="OHTTP-ANALYSIS"/>.</t>
      <section anchor="sec-client">
        <name>Client Responsibilities</name>
        <t>Because <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> do not authenticate the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> when using Oblivious
HTTP, <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> <bcp14>MUST</bcp14> have some mechanism to authorize an <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway
Resource</xref> for use with a <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>. One possible means of authorization is
an allowlist.  This ensures that <iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref> are not abused to
forward traffic to arbitrary Target Resources. <xref target="server-responsibilities"/>
describes similar responsibilities that apply to <iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref>.</t>
        <t><iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> <bcp14>MUST</bcp14> ensure that the <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> they select for generating
Encapsulated Requests is integrity protected and authenticated so that it can
be attributed to the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>; see <xref target="key-configuration"/>.</t>
        <t>Since <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> connect directly to the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> instead of the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>, application
configurations wherein <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> make policy decisions about target connections,
e.g., to apply certificate pinning, are incompatible with Oblivious HTTP.  In
such cases, alternative technologies such as HTTP CONNECT
(<xref section="9.3.6" sectionFormat="of" target="HTTP"/>) can be used. Applications could implement related
policies on <iref item="key configurations"/><xref target="key-configuration" format="none">key configurations</xref> and relay connections, though these might not
provide the same properties as policies enforced directly on target
connections. When this difference is relevant, applications can instead connect
directly to the target at the cost of either privacy or performance.</t>
        <t><iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> cannot carry connection-level state between requests as they only
establish direct connections to the relay responsible for the Oblivious Relay
resource.  However, the content of requests might be used by a server to
correlate requests.  Cookies <xref target="COOKIES"/> are the most obvious feature
that might be used to correlate requests, but any identity information and
authentication credentials might have the same effect.  <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> also need to
treat information learned from responses with similar care when constructing
subsequent requests, which includes the identity of resources.</t>
        <t><iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> <bcp14>MUST</bcp14> generate a new HPKE context for every request, using a good source
of entropy (<xref target="RANDOM"/>) for generating keys. Key reuse not only risks
requests being linked, reuse could expose request and response contents to the
relay.</t>
        <t>The request the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> sends to the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> only requires
minimal information; see <xref target="http-usage"/>. The request that carries the
<iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> and is sent to the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> <bcp14>MUST NOT</bcp14>
include identifying information unless the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> can trust that this
information is removed by the relay. A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> <bcp14>MAY</bcp14> include information only for
the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> in header fields identified by the Connection
header field if it trusts the relay to remove these as required by <xref section="7.6.1" sectionFormat="of" target="HTTP"/>. The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> needs to trust that the relay does not replicate the
source addressing information in the request it forwards.</t>
        <t><iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> rely on the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> to forward Encapsulated Requests
and responses. However, the relay can only refuse to forward messages, it
cannot inspect or modify the contents of Encapsulated Requests or responses.</t>
      </section>
      <section anchor="relay-responsibilities">
        <name>Relay Responsibilities</name>
        <t>The relay that serves the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> has a very simple function
to perform. For each request it receives, it makes a request of the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious
Gateway Resource</xref> that includes the same content. When it receives a response,
it sends a response to the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> that includes the content of the response
from the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>.</t>
        <t>When forwarding a request, the relay <bcp14>MUST</bcp14> follow the forwarding rules in
<xref section="7.6" sectionFormat="of" target="HTTP"/>.  A generic HTTP intermediary implementation is suitable
for the purposes of serving an <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref>, but additional care is
needed to ensure that <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> privacy is maintained.</t>
        <t>Firstly, a generic implementation will forward unknown fields.  For Oblivious
HTTP, an <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> <bcp14>SHOULD NOT</bcp14> forward unknown fields.  Though
<iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> are not expected to include fields that might contain identifying
information, removing unknown fields removes this privacy risk.</t>
        <t>Secondly, generic implementations are often configured to augment requests with
information about the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>, such as the Via field or the Forwarded field
<xref target="FORWARDED"/>.  A relay <bcp14>MUST NOT</bcp14> add information when forwarding
requests that might be used to identify <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>, except for information that
a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> is aware of; see <xref target="differential"/>.</t>
        <t>Finally, a relay can also generate responses, though it is assumed to not be able
to examine the content of a request (other than to observe the choice of key
identifier, KDF, and AEAD), so it is also assumed that it cannot generate an
<iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref>.</t>
        <section anchor="differential">
          <name>Differential Treatment</name>
          <t>A relay <bcp14>MAY</bcp14> add information to requests if the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> is aware of the nature of
the information that could be added.  Any addition <bcp14>MUST NOT</bcp14> include information
that uniquely and permanently identifies the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>, including any pseudonymous identifier.
Information added by the relay - beyond what is already revealed through
encapsulated requests from <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> - can reduce the size of the anonymity set of
<iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> at a gateway.</t>
          <t>A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> does not need to be aware of the exact value added for each request,
but needs to know the range of possible values the relay might use.  How
a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> might learn about added information is not defined in this document.</t>
          <t>Moreover, relays <bcp14>MAY</bcp14> apply differential treatment to <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> that engage in abusive
behavior, e.g., by sending too many requests in comparison to other <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>,
or as a response to rate limits signalled from the gateway. Any such
differential treatment can reveal information to the gateway that would not
be revealed otherwise and therefore reduce the size of the anonymity set of
<iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> using a gateway. For example, if a relay chooses to rate limit or
block an abusive <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>, this means that any <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> requests which are not
treated this way are known to be non-abusive by the gateway. <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> need to
consider the likelihood of such differential treatment and the privacy
risks when using a relay.</t>
          <t>Some patterns of abuse cannot be detected without access to the request that
is made to the target. This means that only the gateway or target are in a
position to identify abuse. A gateway <bcp14>MAY</bcp14> send signals toward the relay to
provide feedback about specific requests. For example, a gateway could respond
differently to requests it cannot decapsulate, as mentioned in <xref target="errors"/>. A
relay that acts on this feedback could - either inadvertently or by
design - lead to <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> deanonymization.</t>
        </section>
        <section anchor="dos">
          <name>Denial of Service</name>
          <t>As there are privacy benefits from having a large rate of requests forwarded by
the same relay (see <xref target="ta"/>), servers that operate the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>
might need an arrangement with <iref item="Oblivious Relay Resources"/><xref target="dfn-relay" format="none">Oblivious Relay Resources</xref>. This arrangement might
be necessary to prevent having the large volume of requests being classified as
an attack by the server.</t>
          <t>If a server accepts a larger volume of requests from a relay, it needs to
trust that the relay does not allow abusive levels of request volumes from
<iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>. That is, if a server allows requests from the relay to be exempt from
rate limits, the server might want to ensure that the relay applies a rate
limiting policy that is acceptable to the server.</t>
          <t>Servers that enter into an agreement with a relay that enables a higher request
rate might choose to authenticate the relay to enable the higher rate.</t>
        </section>
        <section anchor="ta">
          <name>Traffic Analysis</name>
          <t>Using HTTPS protects information about which resources are the subject of
request and prevents a network observer from being able to trivially correlate
messages on either side of a relay.  However, using HTTPS does not prevent
traffic analysis by such network observers.</t>
          <t>The time at which <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> or response messages are sent can
reveal information to a network observer. Though messages exchanged between the
<iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> and the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> might be sent in a
single connection, traffic analysis could be used to match messages that are
forwarded by the relay.</t>
          <t>A relay could, as part of its function, delay requests before forwarding them.
Delays might increase the anonymity set into which each request is
attributed. Any delay also increases the time that a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> waits for a
response, so delays <bcp14>SHOULD</bcp14> only be added with the consent - or at least
awareness - of <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>.</t>
          <t>A relay that forwards large volumes of exchanges can provide better privacy by
providing larger sets of messages that need to be matched.</t>
          <t>Traffic analysis is not restricted to network observers. A malicious <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> could
use traffic analysis to learn information about otherwise encrypted requests
and responses relayed between <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> and gateways. An <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> terminates
TLS connections from <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>, so they see message boundaries. This privileged
position allows for richer feature extraction from encrypted data, which might
improve traffic analysis.</t>
          <t><iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> and <iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref> can use padding to reduce the
effectiveness of traffic analysis.  Padding is a capability provided by binary
HTTP messages; see <xref section="3.8" sectionFormat="of" target="BINARY"/>.  If the encapsulation method
described in this document is used to protect a different message type (see
<xref target="repurposing"/>), that message format might need to include padding support.
<iref item="Oblivious Relay Resources"/><xref target="dfn-relay" format="none">Oblivious Relay Resources</xref> can also use padding for the same reason, but need to
operate at the HTTP layer since they cannot manipulate binary HTTP messages; for example,
see <xref section="10.7" sectionFormat="of" target="HTTP2"/> or <xref section="10.7" sectionFormat="of" target="HTTP3"/>).</t>
        </section>
      </section>
      <section anchor="server-responsibilities">
        <name>Server Responsibilities</name>
        <t>The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> can be operated by a different entity than the
<iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>.  However, this means that the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> needs to trust the
<iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> not to modify requests or responses.  This analysis
concerns itself with a deployment scenario where a single server provides both
the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> and <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>.</t>
        <t>A server that operates both Oblivious Gateway and Target Resources is
responsible for removing request encryption, generating a response to the
<iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>, and encrypting the response.</t>
        <t>Servers should account for traffic analysis based on response size or generation
time.  Techniques such as padding or timing delays can help protect against such
attacks; see <xref target="ta"/>.</t>
        <t>If separate entities provide the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> and <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>,
these entities might need an arrangement similar to that between server and
relay for managing denial of service; see <xref target="dos"/>. Moreover, the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious
Gateway Resource</xref> <bcp14>SHOULD</bcp14> have some mechanism to ensure that the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway
Resource</xref> is not misused as a relay for HTTP messages to an arbitrary <iref item="Target Resource"/><xref target="dfn-target" format="none">Target
Resource</xref>, such as an allowlist.</t>
        <t>Non-secure requests - such as those with the "http" scheme as opposed to the
"https" scheme - <bcp14>SHOULD NOT</bcp14> be used if the Oblivious Gateway and Target
Resources are not on the same origin.  If messages are forwarded between these
resources without the protections afforded by HTTPS, they could be inspected or
modified by a network attacker.  Note that a request could be forwarded without
protection if the two resources share an origin.</t>
      </section>
      <section anchor="key-management">
        <name>Key Management</name>
        <t>An <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> needs to have a plan for replacing keys. This
might include regular replacement of keys, which can be assigned new key
identifiers. If an <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> receives a request that contains a
key identifier that it does not understand or that corresponds to a key that has
been replaced, the server can respond with an HTTP 422 (Unprocessable Content)
status code.</t>
        <t>A server can also use a 422 status code if the server has a key that corresponds
to the key identifier, but the <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> cannot be successfully
decrypted using the key.</t>
        <t>A server <bcp14>MUST</bcp14> ensure that the HPKE keys it uses are not valid for any other
protocol that uses HPKE with the "message/bhttp request" label.  Designers of
protocols that reuse this encryption format, especially new versions of this
protocol, can ensure key diversity by choosing a different label in their use of
HPKE.  The "message/bhttp response" label was chosen for symmetry only as it
provides key diversity only within the HPKE context created using the
"message/bhttp request" label; see <xref target="repurposing"/>.</t>
      </section>
      <section anchor="replay">
        <name>Replay Attacks</name>
        <t>A server is responsible for either rejecting replayed requests or ensuring that
the effect of replays does not adversely affect <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> or resources.</t>
        <t>Encrypted requests can be copied and replayed by the Oblivious Relay
resource. The threat model for Oblivious HTTP allows the possibility that an
<iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> might replay requests. Furthermore, if a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> sends
an <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> in TLS early data (see <xref section="8" sectionFormat="of" target="TLS"/> and
<xref target="RFC8470"/>), a network-based adversary might be able to cause the request to
be replayed. In both cases, the effect of a replay attack and the mitigations
that might be employed are similar to TLS early data.</t>
        <t>It is the responsibility of the application that uses Oblivious HTTP to either
reject replayed requests or to ensure that replayed requests have no adverse
effects on their operation.  This section describes some approaches that are
universally applicable and suggestions for more targeted techniques.</t>
        <t>A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> or <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> <bcp14>MUST NOT</bcp14> automatically attempt to retry a
failed request unless it receives a positive signal indicating that the request
was not processed or forwarded. The HTTP/2 REFUSED_STREAM error code (<xref section="8.1.4" sectionFormat="of" target="HTTP2"/>), the HTTP/3 H3_REQUEST_REJECTED error code (<xref section="8.1" sectionFormat="of" target="HTTP3"/>), or a GOAWAY frame with a low enough identifier (in either protocol
version) are all sufficient signals that no processing occurred. HTTP/1.1
<xref target="HTTP11"/> provides no equivalent signal.  Connection failures or interruptions
are not sufficient signals that no processing occurred.</t>
        <t>The anti-replay mechanisms described in <xref section="8" sectionFormat="of" target="TLS"/> are generally
applicable to Oblivious HTTP requests. The encapsulated keying material (or
<tt>enc</tt>) can be used in place of a nonce to uniquely identify a request.  This
value is a high-entropy value that is freshly generated for every request, so
two valid requests will have different values with overwhelming probability.</t>
        <t>The mechanism used in TLS for managing differences in <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> and server clocks
cannot be used as it depends on being able to observe previous interactions.
Oblivious HTTP explicitly prevents such linkability.</t>
        <t>The considerations in <xref target="RFC8470"/> as they relate to managing the risk of
replay also apply, though there is no option to delay the processing of a
request.</t>
        <t>Limiting requests to those with safe methods might not be satisfactory for some
applications, particularly those that involve the submission of data to a
server. The use of idempotent methods might be of some use in managing replay
risk, though it is important to recognize that different idempotent requests
can be combined to be not idempotent.</t>
        <t>Even without replay prevention, the server-chosen <tt>response_nonce</tt> field
ensures that responses have unique AEAD keys and nonces even when requests are
replayed.</t>
        <section anchor="use-of-date-for-anti-replay">
          <name>Use of Date for Anti-Replay</name>
          <t><iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> <bcp14>SHOULD</bcp14> include a <tt>Date</tt> header field in Encapsulated Requests, unless
the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> has prior knowledge that indicates that the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway
Resource</xref> does not use <tt>Date</tt> for anti-replay purposes.</t>
          <t>Though HTTP requests often do not include a <tt>Date</tt> header field, the value of
this field might be used by a server to limit the amount of requests it needs to
track if it needs to prevent replay attacks.</t>
          <t>An <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> can maintain state for requests for a small window
of time over which it wishes to accept requests.  The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>
can store all requests it processes within this window.  Storing just the <tt>enc</tt>
field of a request, which should be unique to each request, is sufficient.  The
<iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> can reject any request that is the same as one that
was previously answered within that time window or if the <tt>Date</tt> header field
from the decrypted request is outside of the current time window.</t>
          <t><iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref> might need to allow for the time it takes requests
to arrive from the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>, with a time window that is large enough to allow for
differences in clocks.  Insufficient tolerance of time differences could result
in valid requests being unnecessarily rejected.  Beyond allowing for multiple
round trip times -- to account for retransmission -- network delays are unlikely
to be significant in determining the size of the window, unless all potential
<iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> are known to have excellent time-keeping.  A specific window size might
need to be determined experimentally.</t>
          <t><iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref> <bcp14>MUST NOT</bcp14> treat the time window as secret
information. An attacker can actively probe with different values for the <tt>Date</tt>
field to determine the time window over which the server will accept responses.</t>
        </section>
        <section anchor="date-fix">
          <name>Correcting Clock Differences</name>
          <t>An <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> can reject requests that contain a <tt>Date</tt> value
that is outside of its active window with a 400 series status code.  The problem
type <xref target="PROBLEM"/> of
"https://iana.org/assignments/http-problem-types#date" is defined to allow the
server to signal that the <tt>Date</tt> value in the request was unacceptable.</t>
          <t><xref target="fig-date-reject"/> shows an example response in HTTP/1.1 format.</t>
          <figure anchor="fig-date-reject">
            <name>Example Rejection of Request Date Field</name>
            <sourcecode type="http-message"><![CDATA[
HTTP/1.1 400 Bad Request
Date: Mon, 07 Feb 2022 00:28:05 GMT
Content-Type: application/problem+json
Content-Length: 128

{"type":"https://iana.org/assignments/http-problem-types#date",
"title": "date field in request outside of acceptable range"}
]]></sourcecode>
          </figure>
          <t>Disagreements about time are unlikely if both <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> and <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway
Resource</xref> have a good source of time; see <xref target="NTP"/>. However, clock
differences are known to be commonplace; see Section 7.1 of
<xref target="CLOCKSKEW"/>.</t>
          <t>Including a <tt>Date</tt> header field in the response allows the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> to correct
clock errors by retrying the same request using the value of the <tt>Date</tt> field
provided by the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>.  The value of the <tt>Date</tt> field can
be copied if the response is fresh, with an adjustment based on the <tt>Age</tt> field
otherwise; see <xref section="4.2" sectionFormat="of" target="HTTP-CACHING"/>.  When retrying a request, the
<iref item="Client"/><xref target="dfn-client" format="none">Client</xref> <bcp14>MUST</bcp14> create a fresh encryption of the modified request, using a new HPKE
context.</t>
          <figure anchor="fig-retry-date">
            <name>Retrying with an Updated Date Field</name>
            <artset>
              <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="304" width="464" viewBox="0 0 464 304" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                  <path d="M 8,32 L 8,80" fill="none" stroke="black"/>
                  <path d="M 48,80 L 48,288" fill="none" stroke="black"/>
                  <path d="M 88,32 L 88,80" fill="none" stroke="black"/>
                  <path d="M 152,32 L 152,80" fill="none" stroke="black"/>
                  <path d="M 192,80 L 192,128" fill="none" stroke="black"/>
                  <path d="M 192,160 L 192,192" fill="none" stroke="black"/>
                  <path d="M 192,224 L 192,256" fill="none" stroke="black"/>
                  <path d="M 288,80 L 288,288" fill="none" stroke="black"/>
                  <path d="M 312,32 L 312,80" fill="none" stroke="black"/>
                  <path d="M 368,32 L 368,80" fill="none" stroke="black"/>
                  <path d="M 408,80 L 408,288" fill="none" stroke="black"/>
                  <path d="M 456,32 L 456,80" fill="none" stroke="black"/>
                  <path d="M 8,32 L 88,32" fill="none" stroke="black"/>
                  <path d="M 152,32 L 312,32" fill="none" stroke="black"/>
                  <path d="M 368,32 L 456,32" fill="none" stroke="black"/>
                  <path d="M 8,80 L 88,80" fill="none" stroke="black"/>
                  <path d="M 152,80 L 312,80" fill="none" stroke="black"/>
                  <path d="M 368,80 L 456,80" fill="none" stroke="black"/>
                  <path d="M 48,142 L 280,142" fill="none" stroke="black"/>
                  <path d="M 48,146 L 280,146" fill="none" stroke="black"/>
                  <path d="M 296,144 L 400,144" fill="none" stroke="black"/>
                  <path d="M 56,206 L 288,206" fill="none" stroke="black"/>
                  <path d="M 56,210 L 288,210" fill="none" stroke="black"/>
                  <path d="M 304,208 L 408,208" fill="none" stroke="black"/>
                  <path d="M 48,270 L 280,270" fill="none" stroke="black"/>
                  <path d="M 48,274 L 280,274" fill="none" stroke="black"/>
                  <path d="M 296,272 L 400,272" fill="none" stroke="black"/>
                  <polygon class="arrowhead" points="408,272 396,266.4 396,277.6" fill="black" transform="rotate(0,400,272)"/>
                  <polygon class="arrowhead" points="408,144 396,138.4 396,149.6" fill="black" transform="rotate(0,400,144)"/>
                  <polygon class="arrowhead" points="288,272 276,266.4 276,277.6" fill="black" transform="rotate(0,280,272)"/>
                  <polygon class="arrowhead" points="288,144 276,138.4 276,149.6" fill="black" transform="rotate(0,280,144)"/>
                  <polygon class="arrowhead" points="64,208 52,202.4 52,213.6" fill="black" transform="rotate(180,56,208)"/>
                  <g class="text">
                    <text x="44" y="52">Client</text>
                    <text x="184" y="52">Relay</text>
                    <text x="224" y="52">and</text>
                    <text x="272" y="52">Gateway</text>
                    <text x="404" y="52">Target</text>
                    <text x="232" y="68">Resources</text>
                    <text x="412" y="68">Resource</text>
                    <text x="96" y="132">Request</text>
                    <text x="312" y="180">400</text>
                    <text x="364" y="180">Response</text>
                    <text x="352" y="196">+</text>
                    <text x="380" y="196">Date</text>
                    <text x="296" y="212">&lt;</text>
                    <text x="96" y="244">Request</text>
                    <text x="72" y="260">+</text>
                    <text x="112" y="260">Updated</text>
                    <text x="164" y="260">Date</text>
                    <text x="192" y="292">|</text>
                  </g>
                </svg>
              </artwork>
              <artwork type="ascii-art"><![CDATA[
+---------+       +-------------------+      +----------+
| Client  |       | Relay and Gateway |      | Target   |
|         |       |     Resources     |      | Resource |
+----+----+       +----+-----------+--+      +----+-----+
     |                 |           |              |
     |                 |           |              |
     |  Request        |           |              |
     +============================>+------------->|
     |                 |           |              |
     |                 |           | 400 Response |
     |                 |           |       + Date |
     |<============================+<-------------+
     |                 |           |              |
     |  Request        |           |              |
     |  + Updated Date |           |              |
     +============================>+------------->|
     |                 |           |              |
]]></artwork>
            </artset>
          </figure>
          <t>Retrying immediately allows the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> to measure the round
trip time to the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>. The observed delay might reveal something about the
location of the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>.  <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> could delay retries to add some uncertainty to
any observed delay.</t>
          <t>Intermediaries can sometimes rewrite the <tt>Date</tt> field when forwarding responses.
This might cause problems if the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> and intermediary
clocks differ by enough to cause the retry to be rejected.  Therefore, <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>
            <bcp14>MUST NOT</bcp14> retry a request with an adjusted date more than once.</t>
          <t><iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref> that condition their responses on the <tt>Date</tt> header
field <bcp14>SHOULD</bcp14> either ensure that intermediaries do not cache responses (by
including a <tt>Cache-Control</tt> directive of <tt>no-store</tt>) or designate the response
as conditional on the value of the <tt>Date</tt> request header field (by including the
token "date" in a <tt>Vary</tt> header field).</t>
          <t><iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> <bcp14>MUST NOT</bcp14> use the date provided by the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> for any
other purpose, including future requests to any resource.  Any request that uses
information provided by the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> might be correlated using
that information.</t>
        </section>
      </section>
      <section anchor="forward-secrecy">
        <name>Forward Secrecy</name>
        <t>This document does not provide forward secrecy for either requests or
responses during the lifetime of the <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref>. A measure of
forward secrecy can be provided by generating a new <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref>
then deleting the old keys after a suitable period.</t>
      </section>
      <section anchor="post-compromise-security">
        <name>Post-Compromise Security</name>
        <t>This design does not provide post-compromise security for responses.</t>
        <t>A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> only needs to retain keying material that might be used to compromise
the confidentiality and integrity of a response until that response is consumed,
so there is negligible risk associated with a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> compromise.</t>
        <t>A server retains a secret key that might be used to remove protection from
messages over much longer periods. A server compromise that provided access to
the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> secret key could allow an attacker to recover the
plaintext of all requests sent toward affected keys and all of the responses
that were generated.</t>
        <t>Even if server keys are compromised, an adversary cannot access messages
exchanged by the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> with the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> as messages are
protected by TLS.  Use of a compromised key also requires that the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious
Relay Resource</xref> cooperate with the attacker or that the attacker is able to
compromise these TLS connections.</t>
        <t>The total number of messages affected by server key compromise can be limited by
regular rotation of server keys.</t>
      </section>
      <section anchor="client-clock-exposure">
        <name>Client Clock Exposure</name>
        <t>Including a <tt>Date</tt> field in requests reveals some information about the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>
clock.  This might be used to fingerprint <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> <xref target="UWT"/> or to identify <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>
that are vulnerable to attacks that depend on incorrect clocks.</t>
        <t><iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> can randomize the value that they provide for <tt>Date</tt> to obscure the true
value of their clock and reduce the chance of linking of requests over time.
However, this increases the risk that their request is rejected as outside the
acceptable window.</t>
      </section>
      <section anchor="sec-media">
        <name>Media Type Security</name>
        <t>The <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> media type defined in <xref target="ohttp-keys"/> represents keying
material.  The content of this media type is not active (see <xref section="4.6" sectionFormat="of" target="RFC6838"/>), but it governs how a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> might interact with an <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway
Resource</xref>.  The security implications of processing it are described in
<xref target="sec-client"/>; privacy implications are described in <xref target="privacy"/>.</t>
        <t>The security implications of handling the message media types defined in
<xref target="req-res-media"/> is covered in other parts of this section in more detail.
However, these message media types are also encrypted encapsulations of HTTP
requests and responses.</t>
        <t>HTTP messages contain content, which can use any media type.  In particular,
requests are processed by an Oblivious <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>, which - as an HTTP
resource - defines how content is processed; see <xref section="3.1" sectionFormat="of" target="HTTP"/>.  HTTP
clients can also use resource identity and response content to determine how
content is processed.  Consequently, the security considerations of <xref section="17" sectionFormat="of" target="HTTP"/> also apply to the handling of the content of these media types.</t>
      </section>
      <section anchor="separate-target">
        <name>Separate Gateway and Target</name>
        <t>This document generally assumes that the same entity operates the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious
Gateway Resource</xref> and the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>.  However, as the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway
Resource</xref> performs generic HTTP processing, the use of forwarding cannot be
completely precluded.</t>
        <t>The scheme specified in the <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref> determines the security
requirements for any protocol that is used between the Oblivious Gateway and
Target Resources.  Using HTTPS is <bcp14>RECOMMENDED</bcp14>; see <xref target="server-responsibilities"/>.</t>
        <t>A <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> that is operated on a different server from the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious
Gateway Resource</xref> is an ordinary HTTP resource.  A <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> can privilege
requests that are forwarded by a given <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> if it trusts
the operator of the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> to only forward requests that
meet the expectations of the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>.  Otherwise, the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>
treats requests from an <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> no differently than any
other HTTP client.</t>
        <t>For instance, an <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> might -- possibly with the help of
<iref item="Oblivious Relay Resources"/><xref target="dfn-relay" format="none">Oblivious Relay Resources</xref> -- be trusted not to forward an excessive volume of
requests. This might allow the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> to accept a greater volume of
requests from that <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> relative to other HTTP clients.</t>
        <t>An <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> could implement policies that improve the ability
of the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> to implement policy exemptions, such as only forwarding
requests toward specific Target Resources according to an allowlist; see <xref target="server-responsibilities"/>.</t>
      </section>
    </section>
    <section anchor="privacy">
      <name>Privacy Considerations</name>
      <t>One goal of this design is that independent <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> requests are only linkable by
their content.  However, the choice of <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> configuration might be used to
correlate requests.  A <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> configuration includes the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay
Resource</xref> URI, the Oblivious Gateway <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref>, and <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway
Resource</xref> URI. A configuration is active if <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> can successfully use it for interacting with a target.</t>
      <t><iref item="Oblivious Relay and Gateway Resources"/><xref target="dfn-relay" format="none">Oblivious Relay and Gateway Resources</xref> can identify when requests use the same
configuration by matching the key ID from the <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> or the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious
Gateway Resource</xref> URI.  The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> might use the source
address of requests to correlate requests that use an <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref>
run by the same operator.  If the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> is willing to use
trial decryption, requests can be further separated into smaller groupings based
on the keys that are used.</t>
      <t>Each active <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> configuration partitions the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> anonymity set. In
practice, it is infeasible to reduce the number of active configurations to
one. Enabling diversity in choice of <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> naturally
increases the number of active configurations.  More than one configuration
might need to be active to allow for key rotation and server maintenance.</t>
      <t><iref item="Client"/><xref target="dfn-client" format="none">Client</xref> privacy depends on having each configuration used by many other <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>.
It is critical to prevent the use of unique <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> configurations, which might
be used to track individual <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>, but it is also important to avoid
creating small groupings of <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> that might weaken privacy protections.</t>
      <t>A specific method for a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> to acquire configurations is not included in this
specification.  Applications using this design <bcp14>MUST</bcp14> provide accommodations to
mitigate tracking using <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> configurations.  <xref target="CONSISTENCY"/> provides options
for ensuring that <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> configurations are consistent between <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref>.</t>
      <t>The content of requests or responses, if used in forming new requests, can be
used to correlate requests.  This includes obvious methods of linking requests,
like cookies <xref target="COOKIES"/>, but it also includes any information in either
message that might affect how subsequent requests are formulated. For example,
<xref target="FIELDING"/> describes how interactions that are individually stateless can be
used to build a stateful system when a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> acts on the content of a response.</t>
    </section>
    <section anchor="deployment">
      <name>Operational and Deployment Considerations</name>
      <t>This section discusses various operational and deployment considerations.</t>
      <section anchor="performance-overhead">
        <name>Performance Overhead</name>
        <t>Using Oblivious HTTP adds both cryptographic overhead and latency to requests
relative to a simple HTTP request-response exchange.  Deploying relay services
that are on path between <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> and servers avoids adding significant
additional delay due to network topology.  A study of a similar system
<xref target="ODOH-PETS"/> found that deploying proxies close to servers was most effective
in minimizing additional latency.</t>
      </section>
      <section anchor="proxy-state">
        <name>Resource Mappings</name>
        <t>This protocol assumes a fixed, one-to-one mapping between the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay
Resource</xref> and the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>. This means that any encrypted
request sent to the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> will always be forwarded to the
<iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>. This constraint was imposed to simplify relay
configuration and mitigate against the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> being used as
a generic relay for unknown <iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref>. The relay will only
forward for <iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref> that it has explicitly configured and
allowed.</t>
        <t>It is possible for a server to be configured with multiple <iref item="Oblivious Relay Resources"/><xref target="dfn-relay" format="none">Oblivious Relay
Resources</xref>, each for a different <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> as needed.  If the
goal is to support a large number of <iref item="Oblivious Gateway Resources"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resources</xref>, <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> might
be provided with a URI template <xref target="TEMPLATE"/>, from which multiple
<iref item="Oblivious Relay Resources"/><xref target="dfn-relay" format="none">Oblivious Relay Resources</xref> could be constructed.</t>
      </section>
      <section anchor="network-management">
        <name>Network Management</name>
        <t>Oblivious HTTP might be incompatible with network interception regimes, such as
those that rely on configuring <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> with trust anchors and intercepting TLS
connections.  While TLS might be intercepted successfully, interception
middleboxes devices might not receive updates that would allow Oblivious HTTP to
be correctly identified using the media types defined in <xref target="iana-req"/> and
<xref target="iana-res"/>.</t>
        <t>Oblivious HTTP has a simple key management design that is not trivially altered
to enable interception by intermediaries.  <iref item="Clients"/><xref target="dfn-client" format="none">Clients</xref> that are configured to enable
interception might choose to disable Oblivious HTTP in order to ensure that
content is accessible to middleboxes.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>Please update the "Media Types" registry at
<eref target="https://iana.org/assignments/media-types">https://iana.org/assignments/media-types</eref> for the media types
"application/ohttp-keys" (<xref target="iana-keys"/>), "message/ohttp-req" (<xref target="iana-req"/>),
and "message/ohttp-res" (<xref target="iana-res"/>), following the procedures of
<xref target="RFC6838"/>.</t>
      <t>Please update the "HTTP Problem Types" registry at
<eref target="https://iana.org/assignments/http-problem-types">https://iana.org/assignments/http-problem-types</eref> for the types "date"
(<xref target="iana-problem-date"/>) and "ohttp-key" (<xref target="iana-problem-ohttp-key"/>).</t>
      <section anchor="iana-keys">
        <name>application/ohttp-keys Media Type</name>
        <t>The "application/ohttp-keys" media type identifies a <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> used by
Oblivious HTTP.</t>
        <dl spacing="compact">
          <dt>Type name:</dt>
          <dd>
            <t>application</t>
          </dd>
          <dt>Subtype name:</dt>
          <dd>
            <t>ohttp-keys</t>
          </dd>
          <dt>Required parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Optional parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Encoding considerations:</dt>
          <dd>
            <t>"binary"</t>
          </dd>
          <dt>Security considerations:</dt>
          <dd>
            <t>see <xref target="sec-media"/></t>
          </dd>
          <dt>Interoperability considerations:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Published specification:</dt>
          <dd>
            <t>this specification</t>
          </dd>
          <dt>Applications that use this media type:</dt>
          <dd>
            <t>This type identifies a <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> as used by Oblivious HTTP and
applications that use Oblivious HTTP.</t>
          </dd>
          <dt>Fragment identifier considerations:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Additional information:</dt>
          <dd>
            <dl spacing="compact">
              <dt>Magic number(s):</dt>
              <dd>N/A</dd>
              <dt>Deprecated alias names for this type:</dt>
              <dd>N/A</dd>
              <dt>File extension(s):</dt>
              <dd>N/A</dd>
              <dt>Macintosh file type code(s):</dt>
              <dd>N/A</dd>
            </dl>
          </dd>
          <dt>Person and email address to contact for further information:</dt>
          <dd>
            <t>see Authors' Addresses section</t>
          </dd>
          <dt>Intended usage:</dt>
          <dd>
            <t>COMMON</t>
          </dd>
          <dt>Restrictions on usage:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Author:</dt>
          <dd>
            <t>see Authors' Addresses section</t>
          </dd>
          <dt>Change controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-req">
        <name>message/ohttp-req Media Type</name>
        <t>The "message/ohttp-req" identifies an encrypted binary HTTP request.  This
is a binary format that is defined in <xref target="request"/>.</t>
        <dl spacing="compact">
          <dt>Type name:</dt>
          <dd>
            <t>message</t>
          </dd>
          <dt>Subtype name:</dt>
          <dd>
            <t>ohttp-req</t>
          </dd>
          <dt>Required parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Optional parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Encoding considerations:</dt>
          <dd>
            <t>"binary"</t>
          </dd>
          <dt>Security considerations:</dt>
          <dd>
            <t>see <xref target="sec-media"/></t>
          </dd>
          <dt>Interoperability considerations:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Published specification:</dt>
          <dd>
            <t>this specification</t>
          </dd>
          <dt>Applications that use this media type:</dt>
          <dd>
            <t>Oblivious HTTP and applications that use Oblivious HTTP use this media type to
identify encapsulated binary HTTP requests.</t>
          </dd>
          <dt>Fragment identifier considerations:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Additional information:</dt>
          <dd>
            <dl spacing="compact">
              <dt>Magic number(s):</dt>
              <dd>N/A</dd>
              <dt>Deprecated alias names for this type:</dt>
              <dd>N/A</dd>
              <dt>File extension(s):</dt>
              <dd>N/A</dd>
              <dt>Macintosh file type code(s):</dt>
              <dd>N/A</dd>
            </dl>
          </dd>
          <dt>Person and email address to contact for further information:</dt>
          <dd>
            <t>see Authors' Addresses section</t>
          </dd>
          <dt>Intended usage:</dt>
          <dd>
            <t>COMMON</t>
          </dd>
          <dt>Restrictions on usage:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Author:</dt>
          <dd>
            <t>see Authors' Addresses section</t>
          </dd>
          <dt>Change controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-res">
        <name>message/ohttp-res Media Type</name>
        <t>The "message/ohttp-res" identifies an encrypted binary HTTP response. This
is a binary format that is defined in <xref target="response"/>.</t>
        <dl spacing="compact">
          <dt>Type name:</dt>
          <dd>
            <t>message</t>
          </dd>
          <dt>Subtype name:</dt>
          <dd>
            <t>ohttp-res</t>
          </dd>
          <dt>Required parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Optional parameters:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Encoding considerations:</dt>
          <dd>
            <t>"binary"</t>
          </dd>
          <dt>Security considerations:</dt>
          <dd>
            <t>see <xref target="sec-media"/></t>
          </dd>
          <dt>Interoperability considerations:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Published specification:</dt>
          <dd>
            <t>this specification</t>
          </dd>
          <dt>Applications that use this media type:</dt>
          <dd>
            <t>Oblivious HTTP and applications that use Oblivious HTTP use this media type to
identify encapsulated binary HTTP responses.</t>
          </dd>
          <dt>Fragment identifier considerations:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Additional information:</dt>
          <dd>
            <dl spacing="compact">
              <dt>Magic number(s):</dt>
              <dd>N/A</dd>
              <dt>Deprecated alias names for this type:</dt>
              <dd>N/A</dd>
              <dt>File extension(s):</dt>
              <dd>N/A</dd>
              <dt>Macintosh file type code(s):</dt>
              <dd>N/A</dd>
            </dl>
          </dd>
          <dt>Person and email address to contact for further information:</dt>
          <dd>
            <t>see Authors' Addresses section</t>
          </dd>
          <dt>Intended usage:</dt>
          <dd>
            <t>COMMON</t>
          </dd>
          <dt>Restrictions on usage:</dt>
          <dd>
            <t>N/A</t>
          </dd>
          <dt>Author:</dt>
          <dd>
            <t>see Authors' Addresses section</t>
          </dd>
          <dt>Change controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-problem-date">
        <name>Registration of "date" Problem Type</name>
        <t>IANA are requested to create a new entry in the "HTTP Problem Type" registry
established by <xref target="PROBLEM"/>.</t>
        <dl spacing="compact">
          <dt>Type URI:</dt>
          <dd>
            <t>https://iana.org/assignments/http-problem-types#date</t>
          </dd>
          <dt>Title:</dt>
          <dd>
            <t>Date Not Acceptable</t>
          </dd>
          <dt>Recommended HTTP Status Code:</dt>
          <dd>
            <t>400</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t><xref target="date-fix"/> of this document</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-problem-ohttp-key">
        <name>Registration of "ohttp-key" Problem Type</name>
        <t>IANA are requested to create a new entry in the "HTTP Problem Type" registry
established by <xref target="PROBLEM"/>.</t>
        <dl spacing="compact">
          <dt>Type URI:</dt>
          <dd>
            <t>https://iana.org/assignments/http-problem-types#ohttp-key</t>
          </dd>
          <dt>Title:</dt>
          <dd>
            <t>Oblivious HTTP <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> not acceptable</t>
          </dd>
          <dt>Recommended HTTP Status Code:</dt>
          <dd>
            <t>400</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t><xref target="ohttp-key-problem"/> of this document</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <displayreference target="HTTP11" to="HTTP/1.1"/>
    <displayreference target="HTTP2" to="HTTP/2"/>
    <displayreference target="HTTP3" to="HTTP/3"/>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="BINARY">
          <front>
            <title>Binary Representation of HTTP Messages</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <author fullname="C. A. Wood" initials="C. A." surname="Wood"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document defines a binary format for representing HTTP messages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9292"/>
          <seriesInfo name="DOI" value="10.17487/RFC9292"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="HTTP-CACHING">
          <front>
            <title>HTTP Caching</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
              <t>This document obsoletes RFC 7234.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="98"/>
          <seriesInfo name="RFC" value="9111"/>
          <seriesInfo name="DOI" value="10.17487/RFC9111"/>
        </reference>
        <reference anchor="QUIC">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol. QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances. Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="TLS">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="HPKE">
          <front>
            <title>Hybrid Public Key Encryption</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="K. Bhargavan" initials="K." surname="Bhargavan"/>
            <author fullname="B. Lipp" initials="B." surname="Lipp"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <date month="February" year="2022"/>
            <abstract>
              <t>This document describes a scheme for hybrid public key encryption (HPKE). This scheme provides a variant of public key encryption of arbitrary-sized plaintexts for a recipient public key. It also includes three authenticated variants, including one that authenticates possession of a pre-shared key and two optional ones that authenticate possession of a key encapsulation mechanism (KEM) private key. HPKE works for any combination of an asymmetric KEM, key derivation function (KDF), and authenticated encryption with additional data (AEAD) encryption function. Some authenticated variants may not be supported by all KEMs. We provide instantiations of the scheme using widely used and efficient primitives, such as Elliptic Curve Diffie-Hellman (ECDH) key agreement, HMAC-based key derivation function (HKDF), and SHA2.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9180"/>
          <seriesInfo name="DOI" value="10.17487/RFC9180"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="ASCII">
          <front>
            <title>ASCII format for network interchange</title>
            <author fullname="V.G. Cerf" initials="V.G." surname="Cerf"/>
            <date month="October" year="1969"/>
          </front>
          <seriesInfo name="STD" value="80"/>
          <seriesInfo name="RFC" value="20"/>
          <seriesInfo name="DOI" value="10.17487/RFC0020"/>
        </reference>
        <reference anchor="PROBLEM">
          <front>
            <title>Problem Details for HTTP APIs</title>
            <author fullname="Mark Nottingham" initials="M." surname="Nottingham">
         </author>
            <author fullname="Erik Wilde" initials="E." surname="Wilde">
         </author>
            <author fullname="Sanjay Dalal" initials="S." surname="Dalal">
         </author>
            <date day="28" month="April" year="2023"/>
            <abstract>
              <t>This document defines a "problem detail" to carry machine-readable details of errors in HTTP response content to avoid the need to define new error response formats for HTTP APIs.

 This document obsoletes RFC 7807.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpapi-rfc7807bis-07"/>
        </reference>
        <reference anchor="RFC8470">
          <front>
            <title>Using Early Data in HTTP</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="W. Tarreau" initials="W." surname="Tarreau"/>
            <date month="September" year="2018"/>
            <abstract>
              <t>Using TLS early data creates an exposure to the possibility of a replay attack. This document defines mechanisms that allow clients to communicate with servers about HTTP requests that are sent in early data. Techniques are described that use these mechanisms to mitigate the risk of replay.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8470"/>
          <seriesInfo name="DOI" value="10.17487/RFC8470"/>
        </reference>
        <reference anchor="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols. This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="CONSISTENCY">
          <front>
            <title>Key Consistency and Discovery</title>
            <author fullname="Alex Davidson" initials="A." surname="Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Matthew Finkel" initials="M." surname="Finkel">
              <organization>The Tor Project</organization>
            </author>
            <author fullname="Martin Thomson" initials="M." surname="Thomson">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="10" month="July" year="2023"/>
            <abstract>
              <t>   This document describes the consistency requirements of protocols
   such as Privacy Pass, Oblivious DoH, and Oblivious HTTP for user
   privacy.  It presents definitions for consistency and then surveys
   mechanisms for providing consistency in varying threat models.  In
   concludes with discussion of open problems in this area.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-key-consistency-01"/>
        </reference>
        <reference anchor="HTTP11">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns.</t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="HTTP2">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2). HTTP/2 enables a more efficient use of network resources and a reduced latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t>
              <t>This document obsoletes RFCs 7540 and 8740.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9113"/>
          <seriesInfo name="DOI" value="10.17487/RFC9113"/>
        </reference>
        <reference anchor="HTTP3">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment. This document describes a mapping of HTTP semantics over QUIC. This document also identifies HTTP/2 features that are subsumed by QUIC and describes how HTTP/2 extensions can be ported to HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9114"/>
          <seriesInfo name="DOI" value="10.17487/RFC9114"/>
        </reference>
        <reference anchor="COOKIES">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol. Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet. This document obsoletes RFC 2965. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="DMS2004" target="https://svn.torproject.org/svn/projects/design-paper/tor-design.html">
          <front>
            <title>Tor: The Second-Generation Onion Router</title>
            <author initials="R." surname="Dingledine">
              <organization/>
            </author>
            <author initials="N." surname="Mathewson">
              <organization/>
            </author>
            <author initials="P." surname="Syverson">
              <organization/>
            </author>
            <date year="2004" month="August"/>
          </front>
        </reference>
        <reference anchor="PRIO" target="https://crypto.stanford.edu/prio/paper.pdf">
          <front>
            <title>Prio: Private, Robust, and Scalable Computation of Aggregate Statistics</title>
            <author initials="H." surname="Corrigan-Gibbs">
              <organization/>
            </author>
            <author initials="D." surname="Boneh">
              <organization/>
            </author>
            <date year="2017" month="March" day="14"/>
          </front>
        </reference>
        <reference anchor="ODOH-PETS" target="https://www.petsymposium.org/2021/files/papers/issue4/popets-2021-0085.pdf">
          <front>
            <title>Oblivious DNS over HTTPS (ODoH): A Practical Privacy Enhancement to DNS</title>
            <author fullname="Sudheesh Singanamalla">
              <organization/>
            </author>
            <author fullname="Suphanat Chunhapanya">
              <organization/>
            </author>
            <author fullname="Marek Vavrusa">
              <organization/>
            </author>
            <author fullname="Tanya Verma">
              <organization/>
            </author>
            <author fullname="Peter Wu">
              <organization/>
            </author>
            <author fullname="Marwan Fayed">
              <organization/>
            </author>
            <author fullname="Kurtis Heimerl">
              <organization/>
            </author>
            <author fullname="Nick Sullivan">
              <organization/>
            </author>
            <author fullname="Christopher A. Wood">
              <organization/>
            </author>
            <date year="2021" month="January" day="07"/>
          </front>
        </reference>
        <reference anchor="OHTTP-ANALYSIS" target="https://github.com/cloudflare/ohttp-analysis">
          <front>
            <title>Tamarin Model of Oblivious HTTP</title>
            <author fullname="Jonathan Hoyland">
              <organization/>
            </author>
            <date year="2021" month="August" day="23"/>
          </front>
        </reference>
        <reference anchor="UWT" target="https://www.w3.org/2001/tag/doc/unsanctioned-tracking/">
          <front>
            <title>Unsanctioned Web Tracking</title>
            <author fullname="Mark Nottingham">
              <organization/>
            </author>
            <date year="2015" month="July" day="17"/>
          </front>
        </reference>
        <reference anchor="FIELDING" target="https://www.ics.uci.edu/~fielding/pubs/dissertation/fielding_dissertation.pdf">
          <front>
            <title>Architectural Styles and the Design of Network-based Software Architectures</title>
            <author fullname="Roy Thomas Fielding">
              <organization/>
            </author>
            <date year="2000"/>
          </front>
        </reference>
        <reference anchor="RFC7838">
          <front>
            <title>HTTP Alternative Services</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="P. McManus" initials="P." surname="McManus"/>
            <author fullname="J. Reschke" initials="J." surname="Reschke"/>
            <date month="April" year="2016"/>
            <abstract>
              <t>This document specifies "Alternative Services" for HTTP, which allow an origin's resources to be authoritatively available at a separate network location, possibly accessed with a different protocol configuration.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7838"/>
          <seriesInfo name="DOI" value="10.17487/RFC7838"/>
        </reference>
        <reference anchor="RFC8484">
          <front>
            <title>DNS Queries over HTTPS (DoH)</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="P. McManus" initials="P." surname="McManus"/>
            <date month="October" year="2018"/>
            <abstract>
              <t>This document defines a protocol for sending DNS queries and getting DNS responses over HTTPS. Each DNS query-response pair is mapped into an HTTP exchange.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8484"/>
          <seriesInfo name="DOI" value="10.17487/RFC8484"/>
        </reference>
        <reference anchor="RANDOM">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="J. Schiller" initials="J." surname="Schiller"/>
            <author fullname="S. Crocker" initials="S." surname="Crocker"/>
            <date month="June" year="2005"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. 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="106"/>
          <seriesInfo name="RFC" value="4086"/>
          <seriesInfo name="DOI" value="10.17487/RFC4086"/>
        </reference>
        <reference anchor="FORWARDED">
          <front>
            <title>Forwarded HTTP Extension</title>
            <author fullname="A. Petersson" initials="A." surname="Petersson"/>
            <author fullname="M. Nilsson" initials="M." surname="Nilsson"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>This document defines an HTTP extension header field that allows proxy components to disclose information lost in the proxying process, for example, the originating IP address of a request or IP address of the proxy on the user-agent-facing interface. In a path of proxying components, this makes it possible to arrange it so that each subsequent component will have access to, for example, all IP addresses used in the chain of proxied HTTP requests.</t>
              <t>This document also specifies guidelines for a proxy administrator to anonymize the origin of a request.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7239"/>
          <seriesInfo name="DOI" value="10.17487/RFC7239"/>
        </reference>
        <reference anchor="NTP">
          <front>
            <title>Network Time Protocol Version 4: Protocol and Algorithms Specification</title>
            <author fullname="D. Mills" initials="D." surname="Mills"/>
            <author fullname="J. Martin" initials="J." role="editor" surname="Martin"/>
            <author fullname="J. Burbank" initials="J." surname="Burbank"/>
            <author fullname="W. Kasch" initials="W." surname="Kasch"/>
            <date month="June" year="2010"/>
            <abstract>
              <t>The Network Time Protocol (NTP) is widely used to synchronize computer clocks in the Internet. This document describes NTP version 4 (NTPv4), which is backwards compatible with NTP version 3 (NTPv3), described in RFC 1305, as well as previous versions of the protocol. NTPv4 includes a modified protocol header to accommodate the Internet Protocol version 6 address family. NTPv4 includes fundamental improvements in the mitigation and discipline algorithms that extend the potential accuracy to the tens of microseconds with modern workstations and fast LANs. It includes a dynamic server discovery scheme, so that in many cases, specific server configuration is not required. It corrects certain errors in the NTPv3 design and implementation and includes an optional extension mechanism. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5905"/>
          <seriesInfo name="DOI" value="10.17487/RFC5905"/>
        </reference>
        <reference anchor="CLOCKSKEW">
          <front>
            <title>Where the Wild Warnings Are: Root Causes of Chrome HTTPS Certificate Errors</title>
            <author fullname="Mustafa Emre Acer" initials="M." surname="Acer">
              <organization>Google Inc., Mountain View, CA, USA</organization>
            </author>
            <author fullname="Emily Stark" initials="E." surname="Stark">
              <organization>Google Inc., Mountain View, CA, USA</organization>
            </author>
            <author fullname="Adrienne Porter Felt" initials="A." surname="Felt">
              <organization>Google Inc., Mountain View, CA, USA</organization>
            </author>
            <author fullname="Sascha Fahl" initials="S." surname="Fahl">
              <organization>Leibniz University Hannover, Hannover, Germany</organization>
            </author>
            <author fullname="Radhika Bhargava" initials="R." surname="Bhargava">
              <organization>Purdue University, West Lafayette, IN, USA</organization>
            </author>
            <author fullname="Bhanu Dev" initials="B." surname="Dev">
              <organization>International Institute of Information Technology, Hyderabad, Hyderabad, India</organization>
            </author>
            <author fullname="Matt Braithwaite" initials="M." surname="Braithwaite">
              <organization>Google Inc., Mountain View, CA, USA</organization>
            </author>
            <author fullname="Ryan Sleevi" initials="R." surname="Sleevi">
              <organization>Google Inc., Mountain View, CA, USA</organization>
            </author>
            <author fullname="Parisa Tabriz" initials="P." surname="Tabriz">
              <organization>Google Inc., Mountain View, CA, USA</organization>
            </author>
            <date month="October" year="2017"/>
          </front>
          <seriesInfo name="Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications" value="Security"/>
          <seriesInfo name="DOI" value="10.1145/3133956.3134007"/>
          <refcontent>ACM</refcontent>
        </reference>
        <reference anchor="TEMPLATE">
          <front>
            <title>URI Template</title>
            <author fullname="J. Gregorio" initials="J." surname="Gregorio"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="M. Hadley" initials="M." surname="Hadley"/>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="D. Orchard" initials="D." surname="Orchard"/>
            <date month="March" year="2012"/>
            <abstract>
              <t>A URI Template is a compact sequence of characters for describing a range of Uniform Resource Identifiers through variable expansion. This specification defines the URI Template syntax and the process for expanding a URI Template into a URI reference, along with guidelines for the use of URI Templates on the Internet. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6570"/>
          <seriesInfo name="DOI" value="10.17487/RFC6570"/>
        </reference>
        <reference anchor="X25519">
          <front>
            <title>Elliptic Curves for Security</title>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="M. Hamburg" initials="M." surname="Hamburg"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="January" year="2016"/>
            <abstract>
              <t>This memo specifies two elliptic curves over prime fields that offer a high level of practical security in cryptographic applications, including Transport Layer Security (TLS). These curves are intended to operate at the ~128-bit and ~224-bit security level, respectively, and are generated deterministically based on a list of required properties.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7748"/>
          <seriesInfo name="DOI" value="10.17487/RFC7748"/>
        </reference>
        <reference anchor="ODOH">
          <front>
            <title>Oblivious DNS over HTTPS</title>
            <author fullname="E. Kinnear" initials="E." surname="Kinnear"/>
            <author fullname="P. McManus" initials="P." surname="McManus"/>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <author fullname="T. Verma" initials="T." surname="Verma"/>
            <author fullname="C.A. Wood" initials="C.A." surname="Wood"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This document describes a protocol that allows clients to hide their IP addresses from DNS resolvers via proxying encrypted DNS over HTTPS (DoH) messages. This improves privacy of DNS operations by not allowing any one server entity to be aware of both the client IP address and the content of DNS queries and answers.</t>
              <t>This experimental protocol has been developed outside the IETF and is published here to guide implementation, ensure interoperability among implementations, and enable wide-scale experimentation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9230"/>
          <seriesInfo name="DOI" value="10.17487/RFC9230"/>
        </reference>
      </references>
    </references>
    <?line 1839?>

<section anchor="complete-example-of-a-request-and-response">
      <name>Complete Example of a Request and Response</name>
      <!-- Generated using ohttp (https://github.com/martinthomson/ohttp):
RUST_LOG=ohttp cargo test -\-features nss,client,server -\-no-default-features -p ohttp -\-lib -\- -\-nocapture request_response
Note: "rust-hpke" doesn't log the client/sender keying material.
-->

<t>A single request and response exchange is shown here. Binary values (<iref item="key configuration"/><xref target="key-configuration" format="none">key
configuration</xref>, secret keys, the content of messages, and intermediate values)
are shown in hexadecimal. The request and response here are minimal; the purpose
of this example is to show the cryptographic operations.  In this example, the
<iref item="Client"/><xref target="dfn-client" format="none">Client</xref> is configured with the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> URI of
<tt>https://proxy.example.org/request.example.net/proxy</tt>, and the proxy is
configured to map requests to this URI to the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> URI
<tt>https://example.com/oblivious/request</tt>. The <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref> URI, i.e., the
resource the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> ultimately wishes to query, is <tt>https://example.com</tt>.</t>
      <t>To begin the process, the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> generates a key pair.
In this example the server chooses DHKEM(X25519, HKDF-SHA256) and generates
an X25519 key pair <xref target="X25519"/>. The X25519 secret key is:</t>
      <artwork type="hex-dump"><![CDATA[
3c168975674b2fa8e465970b79c8dcf09f1c741626480bd4c6162fc5b6a98e1a
]]></artwork>
      <t>The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> constructs a <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> that includes the
corresponding public key as follows:</t>
      <artwork type="hex-dump"><![CDATA[
01002031e1f05a740102115220e9af918f738674aec95f54db6e04eb705aae8e
79815500080001000100010003
]]></artwork>
      <t>This <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> is somehow obtained by the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>. Then, when a <iref item="Client"/><xref target="dfn-client" format="none">Client</xref>
wishes to send an HTTP GET request to the target <tt>https://example.com</tt>, it
constructs the following binary HTTP message:</t>
      <artwork type="hex-dump"><![CDATA[
00034745540568747470730b6578616d706c652e636f6d012f
]]></artwork>
      <t>The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> then reads the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> <iref item="key configuration"/><xref target="key-configuration" format="none">key configuration</xref> and
selects a mutually supported KDF and AEAD. In this example, the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> selects
HKDF-SHA256 and AES-128-GCM. The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> then generates an HPKE sending context
that uses the server public key. This context is constructed from the following
ephemeral secret key:</t>
      <artwork type="hex-dump"><![CDATA[
bc51d5e930bda26589890ac7032f70ad12e4ecb37abb1b65b1256c9c48999c73
]]></artwork>
      <t>The corresponding public key is:</t>
      <artwork type="hex-dump"><![CDATA[
4b28f881333e7c164ffc499ad9796f877f4e1051ee6d31bad19dec96c208b472
]]></artwork>
      <t>And an <tt>info</tt> parameter of:</t>
      <artwork type="hex-dump"><![CDATA[
6d6573736167652f626874747020726571756573740001002000010001
]]></artwork>
      <t>Applying the Seal operation from the HPKE context produces an encrypted
message, allowing the <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> to construct the following <iref item="Encapsulated Request"/><xref target="dfn-enc-req" format="none">Encapsulated Request</xref>:</t>
      <artwork type="hex-dump"><![CDATA[
010020000100014b28f881333e7c164ffc499ad9796f877f4e1051ee6d31bad1
9dec96c208b4726374e469135906992e1268c594d2a10c695d858c40a026e796
5e7d86b83dd440b2c0185204b4d63525
]]></artwork>
      <t>The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> then sends this to the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> in a POST request,
which might look like the following HTTP/1.1 request:</t>
      <sourcecode type="http-message"><![CDATA[
POST /request.example.net/proxy HTTP/1.1
Host: proxy.example.org
Content-Type: message/ohttp-req
Content-Length: 78

<content is the Encapsulated Request above>
]]></sourcecode>
      <t>The <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> receives this request and forwards it to the
<iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref>, which might look like:</t>
      <sourcecode type="http-message"><![CDATA[
POST /oblivious/request HTTP/1.1
Host: example.com
Content-Type: message/ohttp-req
Content-Length: 78

<content is the Encapsulated Request above>
]]></sourcecode>
      <t>The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> receives this request, selects the key it
generated previously using the key identifier from the message, and decrypts the
message. As this request is directed to the same server, the <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway
Resource</xref> does not need to initiate an HTTP request to the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>. The
request can be served directly by the <iref item="Target Resource"/><xref target="dfn-target" format="none">Target Resource</xref>, which generates a minimal
response (consisting of just a 200 status code) as follows:</t>
      <artwork type="hex-dump"><![CDATA[
0140c8
]]></artwork>
      <t>The response is constructed by exporting a secret from the HPKE context:</t>
      <!-- ikm for HKDF extract -->
<artwork type="hex-dump"><![CDATA[
62d87a6ba569ee81014c2641f52bea36
]]></artwork>
      <t>The key derivation for the <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref> uses both the encapsulated KEM
key from the request and a randomly selected nonce. This produces a salt of:</t>
      <artwork type="hex-dump"><![CDATA[
4b28f881333e7c164ffc499ad9796f877f4e1051ee6d31bad19dec96c208b472
c789e7151fcba46158ca84b04464910d
]]></artwork>
      <t>The salt and secret are both passed to the Extract function of the selected KDF
(HKDF-SHA256) to produce a pseudorandom key of:</t>
      <artwork type="hex-dump"><![CDATA[
979aaeae066cf211ab407b31ae49767f344e1501e475c84e8aff547cc5a683db
]]></artwork>
      <t>The pseudorandom key is used with the Expand function of the KDF and an info
field of "key" to produce a 16-byte key for the selected AEAD (AES-128-GCM):</t>
      <artwork type="hex-dump"><![CDATA[
5d0172a080e428b16d298c4ea0db620d
]]></artwork>
      <t>With the same KDF and pseudorandom key, an info field of "nonce" is used to
generate a 12-byte nonce:</t>
      <artwork type="hex-dump"><![CDATA[
f6bf1aeb88d6df87007fa263
]]></artwork>
      <t>The AEAD <tt>Seal()</tt> function is then used to encrypt the response, which is added
to the randomized nonce value to produce the <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref>:</t>
      <artwork type="hex-dump"><![CDATA[
c789e7151fcba46158ca84b04464910d86f9013e404feea014e7be4a441f234f
857fbd
]]></artwork>
      <t>The <iref item="Oblivious Gateway Resource"/><xref target="dfn-gateway" format="none">Oblivious Gateway Resource</xref> constructs a response with the same content:</t>
      <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Date: Wed, 27 Jan 2021 04:45:07 GMT
Cache-Control: private, no-store
Content-Type: message/ohttp-res
Content-Length: 38

<content is the Encapsulated Response>
]]></sourcecode>
      <t>The same response might then be generated by the <iref item="Oblivious Relay Resource"/><xref target="dfn-relay" format="none">Oblivious Relay Resource</xref> which
might change as little as the Date header. The <iref item="Client"/><xref target="dfn-client" format="none">Client</xref> is then able to use the
HPKE context it created and the nonce from the <iref item="Encapsulated Response"/><xref target="dfn-enc-res" format="none">Encapsulated Response</xref> to
construct the AEAD key and nonce and decrypt the response.</t>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This design is based on a design for Oblivious DoH, described in
<xref target="ODOH"/>. <contact fullname="David Benjamin"/>, <contact fullname="Mark Nottingham"/>, and <contact fullname="Eric Rescorla"/> made technical contributions.  The authors also thank <contact fullname="Ralph Giles"/>, <contact fullname="Lucas Pardue"/>, and <contact fullname="Tommy Pauly"/> for invaluable assistance.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
do5eDfejn97eGEnU7mMgwSu/e9ZLWeCLvwBztK9JNTUQSA5gMxsIvI1Xf8fx
9YzUXnlFETd+Rucif8iLRywX6Ccce6Cz+cYCtvdkT9PMha6ygyfN/oZO5LMW
4p7T+lkfwsS/0K6nBkb5GlT4Jfug19K0RRCTY3HPH1B711RFo3gtRqxkFdYW
Kv1q364PS1hCOJHlmFFcZc77sXS8u1pwKSWrowhrwDpJifOljpbrDEB+BwYe
eQYIcCeKflY9iJHMXo/WjTBaUPo+BZWrqrk9XlkgzB+lvV5Gek1WJFITvUwn
AIF7DAsBBtYu8do0cbTlgLZ2ShDC3oIASDNKGwomOzivVS08ldqw4tT9/I3t
nUPaCTs+UrwAPccFHjNaMsAb3Sa+/lCEwRNNvDHKKwIm1W7a60dNNCYLLNYi
wBptjOUX7pfMRZK4XL9T2w1JOI+mwJJdJOzNp8qyrGOz1oz/mtOG5PnFOzSF
oIrKvo7Td4h5H87eRTSU1B/3BuIYLheKyilX6rHZ4lDoE5DluVq2083SroLE
KI+LZDTHzmuI9YK+D6SeSxwrhxc0rAa2iLdsq5mOHYv1mvdOOli11v22FWn6
AnBs6pGFrkjRLyLp/+rsQaNl9BzHZBArZpUWCZPNaqP5/6wjNhe7Bh+loZRG
13Pyeyx9CqkCmd/ji+PpMUhHK5izy4RvUJpwFTB7SORRbLQ2kHtsqR59wDDm
/lStJYfwpfdln/YDW9b5CTdch8piyHrDldCkM0IQ389gFVqBdclt+AcX5yMv
AKcfuNh+Xp923HqyYWuHhxCOxUbPNYyriLZr1XB6f6X/Ifi622yBUhXVNg/q
4kv8pFnk1NGTq77bmwcHmkpDh9jSFDGYYabWTWiho36aiTXUkW2u03ESaBGi
yAhYwzB9pWpPuwA1OAGrWUpPtnZwxrPcuNQ4wVYMNl63Y9tBRizdaiio7O2N
AVnYGxoWYh+QYMPF6b0uGaI9BEUqGjF60itROq5Ky10XVhaPio+YfMfUZ4px
hlKdE4g+84f34V21bUiw1iJKb2zDr20RxCcC+irKoOkw8a08Y5xFijlRx6iI
+31hEUJtvrim+UpAJnvRMvUs4TgyDSyxwmlifTK0SnRpAKNNe+v2w20HBQpP
WMOU7bj5bOn76LJQdC1c/IJ3w8cUziC2bK215KW5hkGJ1IsFDSJ1DSe9YHoz
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

-->

</rfc>
