<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.17 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-unprompted-auth-08" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.22.0 -->
  <front>
    <title>The Concealed HTTP Authentication Scheme</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-unprompted-auth-08"/>
    <author initials="D." surname="Schinazi" fullname="David Schinazi">
      <organization>Google LLC</organization>
      <address>
        <postal>
          <street>1600 Amphitheatre Parkway</street>
          <city>Mountain View</city>
          <region>CA</region>
          <code>94043</code>
          <country>United States of America</country>
        </postal>
        <email>dschinazi.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="D." surname="Oliver" fullname="David M. Oliver">
      <organization>Guardian Project</organization>
      <address>
        <email>david@guardianproject.info</email>
        <uri>https://guardianproject.info</uri>
      </address>
    </author>
    <author initials="J." surname="Hoyland" fullname="Jonathan Hoyland">
      <organization>Cloudflare Inc.</organization>
      <address>
        <email>jonathan.hoyland@gmail.com</email>
      </address>
    </author>
    <date year="2024" month="July" day="05"/>
    <area>Web and Internet Transport</area>
    <workgroup>HTTPBIS</workgroup>
    <keyword>secure</keyword>
    <keyword>tunnels</keyword>
    <keyword>masque</keyword>
    <keyword>http-ng</keyword>
    <abstract>
      <?line 93?>

<t>Most HTTP authentication schemes are probeable in the sense that it is possible
for an unauthenticated client to probe whether an origin serves resources that
require authentication. It is possible for an origin to hide the fact that it
requires authentication by not generating Unauthorized status codes, however
that only works with non-cryptographic authentication schemes: cryptographic
signatures require a fresh nonce to be signed. At the time of writing, there
was no existing way for the origin to share such a nonce without exposing the
fact that it serves resources that require authentication. This document
proposes a new non-probeable cryptographic authentication scheme.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://httpwg.org/http-extensions/draft-ietf-httpbis-unprompted-auth.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-unprompted-auth/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTP Working Group mailing list (<eref target="mailto:ietf-http-wg@w3.org"/>),
        which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/"/>.
        Working Group information can be found at <eref target="https://httpwg.org/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/httpwg/http-extensions/labels/unprompted-auth"/>.</t>
    </note>
  </front>
  <middle>
    <?line 105?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>HTTP authentication schemes (see <xref section="11" sectionFormat="of" target="HTTP"/>) allow origins
to restrict access for some resources to only authenticated requests. While
these schemes commonly involve a challenge where the origin asks the client to
provide authentication information, it is possible for clients to send such
information unprompted. This is particularly useful in cases where an origin
wants to offer a service or capability only to "those who know" while all
others are given no indication the service or capability exists. Such designs
rely on an externally-defined mechanism by which keys are distributed. For
example, a company might offer remote employee access to company services
directly via its website using their employee credentials, or offer access to
limited special capabilities for specific employees, while making discovering
(or probing for) such capabilities difficult. Members of less well-defined
communities might use more ephemeral keys to acquire access to geography- or
capability-specific resources, as issued by an entity whose user base is larger
than the available resources can support (by having that entity metering the
availability of keys temporally or geographically).</t>
      <t>While digital-signature-based HTTP authentication schemes already exist (e.g.,
<xref target="HOBA"/>), they rely on the origin explicitly sending a fresh
challenge to the client, to ensure that the signature input is fresh. That
makes the origin probeable as it sends the challenge to unauthenticated
clients. This document defines a new signature-based authentication scheme that
is not probeable.</t>
      <section anchor="conventions">
        <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 the notation from <xref section="1.3" sectionFormat="of" target="QUIC"/>.</t>
      </section>
    </section>
    <section anchor="the-concealed-authentication-scheme">
      <name>The Concealed Authentication Scheme</name>
      <t>This document defines the "Concealed" HTTP authentication scheme. It uses
asymmetric cryptography. Clients possess a key ID and a public/private key
pair, and origin servers maintain a mapping of authorized key IDs to their
associated public keys.</t>
      <t>The client uses a TLS keying material exporter to generate data to be signed
(see <xref target="client"/>) then sends the signature using the Authorization or
Proxy-Authorization header field. The signature and additional information are
exchanged using authentication parameters (see <xref target="auth-params"/>).</t>
    </section>
    <section anchor="client">
      <name>Client Handling</name>
      <t>When a client wishes to uses the Concealed HTTP authentication scheme with a
request, it <bcp14>SHALL</bcp14> compute the authentication proof using a TLS keying material
exporter <xref target="KEY-EXPORT"/> with the following parameters:</t>
      <ul spacing="normal">
        <li>
          <t>the label is set to "EXPORTER-HTTP-Concealed-Authentication"</t>
        </li>
        <li>
          <t>the context is set to the structure described in <xref target="context"/></t>
        </li>
        <li>
          <t>the exporter output length is set to 48 bytes (see <xref target="output"/>)</t>
        </li>
      </ul>
      <section anchor="context">
        <name>Key Exporter Context</name>
        <t>The TLS key exporter context is described in <xref target="fig-context"/>:</t>
        <figure anchor="fig-context">
          <name>Key Exporter Context Format</name>
          <artwork><![CDATA[
  Signature Algorithm (16),
  Key ID Length (i),
  Key ID (..),
  Public Key Length (i),
  Public Key (..),
  Scheme Length (i),
  Scheme (..),
  Host Length (i),
  Host (..),
  Port (16),
  Realm Length (i),
  Realm (..),
]]></artwork>
        </figure>
        <t>The key exporter context contains the following fields:</t>
        <dl>
          <dt>Signature Algorithm:</dt>
          <dd>
            <t>The signature scheme sent in the <tt>s</tt> Parameter (see <xref target="parameter-s"/>).</t>
          </dd>
          <dt>Key ID:</dt>
          <dd>
            <t>The key ID sent in the <tt>k</tt> Parameter (see <xref target="parameter-k"/>).</t>
          </dd>
          <dt>Public Key:</dt>
          <dd>
            <t>The public key used by the server to validate the signature provided by the
client. Its encoding is described in <xref target="public-key-encoding"/>.</t>
          </dd>
          <dt>Scheme:</dt>
          <dd>
            <t>The scheme for this request, encoded using the format of the scheme portion
of a URI as defined in <xref section="3.1" sectionFormat="of" target="URI"/>.</t>
          </dd>
          <dt>Host:</dt>
          <dd>
            <t>The host for this request, encoded using the format of the host portion of a
URI as defined in <xref section="3.2.2" sectionFormat="of" target="URI"/>.</t>
          </dd>
          <dt>Port:</dt>
          <dd>
            <t>The port for this request, encoded in network byte order. Note that the port
is either included in the URI, or is the default port for the scheme in use;
see <xref section="3.2.3" sectionFormat="of" target="URI"/>.</t>
          </dd>
          <dt>Realm:</dt>
          <dd>
            <t>The realm of authentication that is sent in the realm authentication
parameter (<xref section="11.5" sectionFormat="of" target="HTTP"/>). If the realm authentication parameter is
not present, this <bcp14>SHALL</bcp14> be empty. This document does not define a means for the
origin to communicate a realm to the client. If a client is not configured to
use a specific realm, it <bcp14>SHALL</bcp14> use an empty realm and <bcp14>SHALL NOT</bcp14> send the realm
authentication parameter.</t>
          </dd>
        </dl>
        <t>The Signature Algorithm and Port fields are encoded as unsigned 16-bit integers
in network byte order. The Key ID, Public Key, Scheme, Host, and Realm fields
are length prefixed strings; they are preceded by a Length field that
represents their length in bytes. These length fields are encoded using the
variable-length integer encoding from <xref section="16" sectionFormat="of" target="QUIC"/> and <bcp14>MUST</bcp14> be
encoded in the minimum number of bytes necessary.</t>
        <section anchor="public-key-encoding">
          <name>Public Key Encoding</name>
          <t>Both the "Public Key" field of the TLS key exporter context (see above) and the
<tt>a</tt> Parameter (see <xref target="parameter-a"/>) carry the same public key. The encoding of
the public key is determined by the Signature Algorithm in use as follows:</t>
          <dl>
            <dt>RSASSA-PSS algorithms:</dt>
            <dd>
              <t>The public key is an RSAPublicKey structure <xref target="PKCS1"/> encoded in DER
<xref target="X.690"/>. BER encodings which are not DER <bcp14>MUST</bcp14> be rejected.</t>
            </dd>
            <dt>ECDSA algorithms:</dt>
            <dd>
              <t>The public key is a UncompressedPointRepresentation structure defined in
<xref section="4.2.8.2" sectionFormat="of" target="TLS"/>, using the curve specified by the SignatureScheme.</t>
            </dd>
            <dt>EdDSA algorithms:</dt>
            <dd>
              <t>The public key is the byte string encoding defined in <xref target="EdDSA"/>.</t>
            </dd>
          </dl>
          <t>This document does not define the public key encodings for other algorithms. In
order for a SignatureScheme to be usable with the Concealed HTTP authentication
scheme, its public key encoding needs to be defined in a corresponding document.</t>
        </section>
      </section>
      <section anchor="output">
        <name>Key Exporter Output</name>
        <t>The key exporter output is 48 bytes long. Of those, the first 32 bytes are part
of the input to the signature and the next 16 bytes are sent alongside the
signature. This allows the recipient to confirm that the exporter produces the
right values. This is described in <xref target="fig-output"/>:</t>
        <figure anchor="fig-output">
          <name>Key Exporter Output Format</name>
          <artwork><![CDATA[
  Signature Input (256),
  Verification (128),
]]></artwork>
        </figure>
        <t>The key exporter context contains the following fields:</t>
        <dl>
          <dt>Signature Input:</dt>
          <dd>
            <t>This is part of the data signed using the client's chosen asymmetric private
key (see <xref target="computation"/>).</t>
          </dd>
          <dt>Verification:</dt>
          <dd>
            <t>The verification is transmitted to the server using the <tt>v</tt> Parameter (see
<xref target="parameter-v"/>).</t>
          </dd>
        </dl>
      </section>
      <section anchor="computation">
        <name>Signature Computation</name>
        <t>Once the Signature Input has been extracted from the key exporter output (see
<xref target="output"/>), it is prefixed with static data before being signed to mitigate
issues caused by key reuse. The signature is computed over the concatenation of:</t>
        <ul spacing="normal">
          <li>
            <t>A string that consists of octet 32 (0x20) repeated 64 times</t>
          </li>
          <li>
            <t>The context string "HTTP Concealed Authentication"</t>
          </li>
          <li>
            <t>A single 0 byte which serves as a separator</t>
          </li>
          <li>
            <t>The Signature Input extracted from the key exporter output (see <xref target="output"/>)</t>
          </li>
        </ul>
        <t>For example, if the Signature Input has all its 32 bytes set to 01, the content
covered by the signature (in hexadecimal format) would be:</t>
        <figure anchor="fig-sig-example">
          <name>Example Content Covered by Signature</name>
          <artwork><![CDATA[
2020202020202020202020202020202020202020202020202020202020202020
2020202020202020202020202020202020202020202020202020202020202020
48545450205369676E61747572652041757468656E7469636174696F6E
00
0101010101010101010101010101010101010101010101010101010101010101
]]></artwork>
        </figure>
        <t>This construction mirrors that of the TLS 1.3 CertificateVerify message
defined in <xref section="4.4.3" sectionFormat="of" target="TLS"/>.</t>
        <t>The resulting signature is then transmitted to the server using the <tt>p</tt>
Parameter (see <xref target="parameter-p"/>).</t>
      </section>
    </section>
    <section anchor="auth-params">
      <name>Authentication Parameters</name>
      <t>This specification defines the following authentication parameters.</t>
      <t>All of the byte sequences below are encoded using base64url (see <xref section="5" sectionFormat="of" target="BASE64"/>) without quotes and without padding. In other words, the
values of these byte-sequence authentication parameters <bcp14>MUST NOT</bcp14> include any
characters other then ASCII letters, digits, dash and underscore.</t>
      <t>The integer below is encoded without a minus and without leading zeroes. In
other words, the value of this integer authentication parameter <bcp14>MUST NOT</bcp14>
include any characters other than digits, and <bcp14>MUST NOT</bcp14> start with a zero unless
the full value is "0".</t>
      <t>Using the syntax from <xref target="ABNF"/>:</t>
      <figure anchor="fig-param">
        <name>Authentication Parameter Value ABNF</name>
        <artwork><![CDATA[
concealed-byte-sequence-param-value = *( ALPHA / DIGIT / "-" / "_" )
concealed-integer-param-value =  %x31-39 1*4( DIGIT ) / "0"
]]></artwork>
      </figure>
      <section anchor="parameter-k">
        <name>The k Parameter</name>
        <t>The <bcp14>REQUIRED</bcp14> "k" (key ID) Parameter is a byte sequence that identifies which
key the client wishes to use to authenticate. This can, for example, be used to
point to an entry in a server-side database of known keys.</t>
      </section>
      <section anchor="parameter-a">
        <name>The a Parameter</name>
        <t>The <bcp14>REQUIRED</bcp14> "a" (public key) Parameter is a byte sequence that specifies the
public key used by the server to validate the signature provided by the client.
This avoids key confusion issues (see <xref target="SEEMS-LEGIT"/>). The encoding of the
public key is described in <xref target="public-key-encoding"/>.</t>
      </section>
      <section anchor="parameter-p">
        <name>The p Parameter</name>
        <t>The <bcp14>REQUIRED</bcp14> "p" (proof) Parameter is a byte sequence that specifies the proof
that the client provides to attest to possessing the credential that matches
its key ID.</t>
      </section>
      <section anchor="parameter-s">
        <name>The s Parameter</name>
        <t>The <bcp14>REQUIRED</bcp14> "s" (signature) Parameter is an integer that specifies the
signature scheme used to compute the proof transmitted in the <tt>p</tt> Parameter.
Its value is an integer between 0 and 65535 inclusive from the IANA "TLS
SignatureScheme" registry maintained at
&lt;<eref target="https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-signaturescheme"/>&gt;.</t>
      </section>
      <section anchor="parameter-v">
        <name>The v Parameter</name>
        <t>The <bcp14>REQUIRED</bcp14> "v" (verification) Parameter is a byte sequence that specifies the
verification that the client provides to attest to possessing the key exporter
output (see <xref target="output"/> for details). This avoids issues with signature schemes
where certain keys can generate signatures that are valid for multiple inputs
(see <xref target="SEEMS-LEGIT"/>).</t>
      </section>
    </section>
    <section anchor="example">
      <name>Example</name>
      <t>For example, the key ID "basement" authenticating using Ed25519
<xref target="ED25519"/> could produce the following header field:</t>
      <figure anchor="fig-hdr-example">
        <name>Example Header Field</name>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Authorization: Concealed \
  k=YmFzZW1lbnQ, \
  a=VGhpcyBpcyBh-HB1YmxpYyBrZXkgaW4gdXNl_GhlcmU, \
  s=2055, \
  v=dmVyaWZpY2F0aW9u_zE2Qg, \
  p=SW5zZXJ0_HNpZ25hdHVyZSBvZiBub25jZSBoZXJlIHdo\
    aWNoIHRha2VzIDUxMiBiaXRz-GZvciBFZDI1NTE5IQ
]]></sourcecode>
      </figure>
    </section>
    <section anchor="server-handling">
      <name>Server Handling</name>
      <t>In this section, we subdivide the server role in two:</t>
      <ul spacing="normal">
        <li>
          <t>the "frontend" runs in the HTTP server that terminates the TLS or QUIC
connection created by the client.</t>
        </li>
        <li>
          <t>the "backend" runs in the HTTP server that has access to the database of
accepted key identifiers and public keys.</t>
        </li>
      </ul>
      <t>In most deployments, we expect the frontend and backend roles to both be
implemented in a single HTTP origin server (as defined in <xref section="3.6" sectionFormat="of" target="HTTP"/>). However, these roles can be split such that the frontend is an HTTP
gateway (as defined in <xref section="3.7" sectionFormat="of" target="HTTP"/>) and the backend is an HTTP
origin server.</t>
      <section anchor="frontend-handling">
        <name>Frontend Handling</name>
        <t>If a frontend is configured to check the Concealed authentication scheme, it
will parse the Authorization (or Proxy-Authorization) header field. If the
authentication scheme is set to "Concealed", the frontend <bcp14>MUST</bcp14> validate that
all the required authentication parameters are present and can be parsed
correctly as defined in <xref target="auth-params"/>. If any parameter is missing or fails
to parse, the frontend <bcp14>MUST</bcp14> ignore the entire Authorization (or
Proxy-Authorization) header field.</t>
        <t>The frontend then uses the data from these authentication parameters to compute
the key exporter output, as defined in <xref target="output"/>. The frontend then shares the
header field and the key exporter output with the backend.</t>
      </section>
      <section anchor="communication-between-frontend-and-backend">
        <name>Communication between Frontend and Backend</name>
        <t>If the frontend and backend roles are implemented in the same machine, this can
be handled by a simple function call.</t>
        <t>If the roles are split between two separate HTTP servers, then the backend
won't be able to directly access the TLS keying material exporter from the TLS
connection between the client and frontend, so the frontend needs to explictly
send it. This document defines the "Concealed-Auth-Export" request header field
for this purpose. The Concealed-Auth-Export header field's value is a
Structured Field Byte Sequence (see <xref section="3.3.5" sectionFormat="of" target="STRUCTURED-FIELDS"/>) that contains the 48-byte key exporter output
(see <xref target="output"/>), without any parameters. For example:</t>
        <figure anchor="fig-int-hdr-example">
          <name>Example Concealed-Auth-Export Header Field</name>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Concealed-Auth-Export: :VGhpcyBleGFtcGxlIFRMUyBleHBvcn\
  RlciBvdXRwdXQgaXMgNDggYnl0ZXMgI/+h:
]]></sourcecode>
        </figure>
        <t>The frontend <bcp14>SHALL</bcp14> forward the HTTP request to the backend, including the
original unmodified Authorization (or Proxy-Authorization) header field and the
newly added Concealed-Auth-Export header field.</t>
        <t>Note that, since the security of this mechanism requires the key exporter
output to be correct, backends need to trust frontends to send it truthfully.
This trust relationship is common because the frontend already needs access to
the TLS certificate private key in order to respond to requests. HTTP servers
that parse the Concealed-Auth-Export header field <bcp14>MUST</bcp14> ignore it unless they
have already established that they trust the sender. Similarly, frontends that
send the Concealed-Auth-Export header field <bcp14>MUST</bcp14> ensure that they do not
forward any Concealed-Auth-Export header field received from the client.</t>
      </section>
      <section anchor="backend">
        <name>Backend Handling</name>
        <t>Once the backend receives the Authorization (or Proxy-Authorization) header
field and the key exporter output, it looks up the key ID in its database of
public keys. The backend <bcp14>SHALL</bcp14> then perform the following checks:</t>
        <ul spacing="normal">
          <li>
            <t>validate that all the required authentication parameters are present and can
be parsed correctly as defined in <xref target="auth-params"/></t>
          </li>
          <li>
            <t>ensure the key ID is present in the backend's database and maps to a
corresponding public key</t>
          </li>
          <li>
            <t>validate that the public key from the database is equal to the one in the
Authorization (or Proxy-Authorization) header field</t>
          </li>
          <li>
            <t>validate that the verification field from the Authorization (or
Proxy-Authorization) header field matches the one extracted from the key
exporter output</t>
          </li>
          <li>
            <t>verify the cryptographic signature as defined in <xref target="computation"/></t>
          </li>
        </ul>
        <t>If all of these checks succeed, the backend can consider the request to be
properly authenticated, and can reply accordingly (the backend can also forward
the request to another HTTP server).</t>
        <t>If any of the above checks fail, the backend <bcp14>MUST</bcp14> treat it as if the
Authorization (or Proxy-Authorization) header field was missing.</t>
      </section>
      <section anchor="non-probeable-server-handling">
        <name>Non-Probeable Server Handling</name>
        <t>Servers that wish to introduce resources whose existence cannot be probed need
to ensure that they do not reveal any information about those resources to
unauthenticated clients. In particular, such servers <bcp14>MUST</bcp14> respond to
authentication failures with the exact same response that they would have used
for non-existent resources. For example, this can mean using HTTP status code
404 (Not Found) instead of 401 (Unauthorized).</t>
        <t>The authentication checks described above can take time to compute, and an
attacker could detect use of this mechanism if that time is observable by
comparing the timing of a request for a known non-existent resource to the
timing of a request for a potentially authenticated resource. Servers can
mitigate this observability by slightly delaying responses to some non-existent
resources such that the timing of the authentication verification is not
observable. This delay needs to be carefully considered to avoid having the
delay itself leak the fact that this origin uses this mechanism at all.</t>
        <t>Non-probeable resources also need to be non-discoverable for unauthenticated
users. For example, if a server operator wishes to hide an authenticated
resource by pretending it does not exist to unauthenticated users, then the
server operator needs to ensure there are no unauthenticated pages with links
to that resource, and no other out-of-band ways for unauthenticated users to
discover this resource.</t>
      </section>
    </section>
    <section anchor="requirements-on-tls-usage">
      <name>Requirements on TLS Usage</name>
      <t>This authentication scheme is only defined for uses of HTTP with TLS
<xref target="TLS"/>. This includes any use of HTTP over TLS as typically used for
HTTP/2 <xref target="H2"/>, or HTTP/3 <xref target="H3"/> where the transport protocol uses TLS as its
authentication and key exchange mechanism <xref target="QUIC-TLS"/>.</t>
      <t>Because the TLS keying material exporter is only secure for authentication when
it is uniquely bound to the TLS session <xref target="RFC7627"/>, the Concealed
authentication scheme requires either one of the following properties:</t>
      <ul spacing="normal">
        <li>
          <t>The TLS version in use is greater or equal to 1.3 <xref target="TLS"/>.</t>
        </li>
        <li>
          <t>The TLS version in use is 1.2 and the Extended Master Secret extension
<xref target="RFC7627"/> has been negotiated.</t>
        </li>
      </ul>
      <t>Clients <bcp14>MUST NOT</bcp14> use the Concealed authentication scheme on connections that do
not meet one of the two properties above. If a server receives a request that
uses this authentication scheme on a connection that meets neither of the above
properties, the server <bcp14>MUST</bcp14> treat the request as if the authentication were not
present.</t>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>The Concealed HTTP authentication scheme allows a client to authenticate to an
origin server while guaranteeing freshness and without the need for the server
to transmit a nonce to the client. This allows the server to accept
authenticated clients without revealing that it supports or expects
authentication for some resources. It also allows authentication without the
client leaking the presence of authentication to observers due to clear-text
TLS Client Hello extensions.</t>
      <t>Since the freshness described above is provided by a TLS key exporter, it can
be as old as the underlying TLS connection. Servers can require better
freshness by forcing clients to create new connections using mechanisms such as
the GOAWAY frame (see <xref section="5.2" sectionFormat="of" target="H3"/>).</t>
      <t>The authentication proofs described in this document are not bound to
individual HTTP requests; if the key is used for authentication proofs on
multiple requests on the same connection, they will all be identical. This
allows for better compression when sending over the wire, but implies that
client implementations that multiplex different security contexts over a single
HTTP connection need to ensure that those contexts cannot read each other's
header fields. Otherwise, one context would be able to replay the Authorization
header field of another. This constraint is met by modern Web browsers. If an
attacker were to compromise the browser such that it could access another
context's memory, the attacker might also be able to access the corresponding
key, so binding authentication to requests would not provide much benefit in
practice.</t>
      <t>Key material used for the Concealed HTTP authentication scheme <bcp14>MUST NOT</bcp14> be
reused in other protocols. Doing so can undermine the security guarantees of
the authentication.</t>
      <t>Origins offering this scheme can link requests that use the same key.
However, requests are not linkable across origins if the keys used are specific
to the individual origins using this scheme.</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <section anchor="iana-schemes">
        <name>HTTP Authentication Schemes Registry</name>
        <t>This document, if approved, requests IANA to register the following entry in
the "HTTP Authentication Schemes" Registry maintained at
&lt;<eref target="https://www.iana.org/assignments/http-authschemes"/>&gt;:</t>
        <dl spacing="compact">
          <dt>Authentication Scheme Name:</dt>
          <dd>
            <t>Concealed</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Notes:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-exporter-label">
        <name>TLS Keying Material Exporter Labels</name>
        <t>This document, if approved, requests IANA to register the following entry in
the "TLS Exporter Labels" registry maintained at
&lt;<eref target="https://www.iana.org/assignments/tls-parameters#exporter-labels"/>&gt;:</t>
        <dl spacing="compact">
          <dt>Value:</dt>
          <dd>
            <t>EXPORTER-HTTP-Concealed-Authentication</t>
          </dd>
          <dt>DTLS-OK:</dt>
          <dd>
            <t>N</t>
          </dd>
          <dt>Recommended:</dt>
          <dd>
            <t>Y</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
        </dl>
      </section>
      <section anchor="http-field-name">
        <name>HTTP Field Name</name>
        <t>This document, if approved, requests IANA to register the following entry in
the "Hypertext Transfer Protocol (HTTP) Field Name" registry maintained at
&lt;<eref target="https://www.iana.org/assignments/http-fields/http-fields.xhtml"/>&gt;:</t>
        <dl spacing="compact">
          <dt>Field Name:</dt>
          <dd>
            <t>Concealed-Auth-Export</t>
          </dd>
          <dt>Template:</dt>
          <dd>
            <t>None</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>permanent</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>This document</t>
          </dd>
          <dt>Comments:</dt>
          <dd>
            <t>None</t>
          </dd>
        </dl>
      </section>
    </section>
  </middle>
  <back>
    <displayreference target="H2" to="HTTP/2"/>
    <displayreference target="H3" to="HTTP/3"/>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="FOLDING">
          <front>
            <title>Handling Long Lines in Content of Internet-Drafts and RFCs</title>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <author fullname="E. Auerswald" initials="E." surname="Auerswald"/>
            <author fullname="A. Farrel" initials="A." surname="Farrel"/>
            <author fullname="Q. Wu" initials="Q." surname="Wu"/>
            <date month="June" year="2020"/>
            <abstract>
              <t>This document defines two strategies for handling long lines in width-bounded text content. One strategy, called the "single backslash" strategy, is based on the historical use of a single backslash ('\') character to indicate where line-folding has occurred, with the continuation occurring with the first character that is not a space character (' ') on the next line. The second strategy, called the "double backslash" strategy, extends the first strategy by adding a second backslash character to identify where the continuation begins and is thereby able to handle cases not supported by the first strategy. Both strategies use a self-describing header enabling automated reconstitution of the original content.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8792"/>
          <seriesInfo name="DOI" value="10.17487/RFC8792"/>
        </reference>
        <reference anchor="X.690">
          <front>
            <title>Information technology - ASN.1 encoding Rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)</title>
            <author>
              <organization>ITU-T</organization>
            </author>
            <date year="2021" month="February"/>
          </front>
          <seriesInfo name="ISO/IEC 8824-1:2021" value=""/>
        </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="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="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="KEY-EXPORT">
          <front>
            <title>Keying Material Exporters for Transport Layer Security (TLS)</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="March" year="2010"/>
            <abstract>
              <t>A number of protocols wish to leverage Transport Layer Security (TLS) to perform key establishment but then use some of the keying material for their own purposes. This document describes a general mechanism for allowing that. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5705"/>
          <seriesInfo name="DOI" value="10.17487/RFC5705"/>
        </reference>
        <reference anchor="URI">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="PKCS1">
          <front>
            <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson"/>
            <author fullname="A. Rusch" initials="A." surname="Rusch"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t>
              <t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series. By publishing this RFC, change control is transferred to the IETF.</t>
              <t>This document also obsoletes RFC 3447.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8017"/>
          <seriesInfo name="DOI" value="10.17487/RFC8017"/>
        </reference>
        <reference anchor="EdDSA">
          <front>
            <title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="I. Liusvaara" initials="I." surname="Liusvaara"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document describes elliptic curve signature scheme Edwards-curve Digital Signature Algorithm (EdDSA). The algorithm is instantiated with recommended parameters for the edwards25519 and edwards448 curves. An example implementation and test vectors are provided.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8032"/>
          <seriesInfo name="DOI" value="10.17487/RFC8032"/>
        </reference>
        <reference anchor="BASE64">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="ABNF">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker"/>
            <author fullname="P. Overell" initials="P." surname="Overell"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax. Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications. The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power. The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges. This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="STRUCTURED-FIELDS">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="P-H. Kamp" surname="P-H. Kamp"/>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8941"/>
          <seriesInfo name="DOI" value="10.17487/RFC8941"/>
        </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="RFC7627">
          <front>
            <title>Transport Layer Security (TLS) Session Hash and Extended Master Secret Extension</title>
            <author fullname="K. Bhargavan" initials="K." role="editor" surname="Bhargavan"/>
            <author fullname="A. Delignat-Lavaud" initials="A." surname="Delignat-Lavaud"/>
            <author fullname="A. Pironti" initials="A." surname="Pironti"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="M. Ray" initials="M." surname="Ray"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>The Transport Layer Security (TLS) master secret is not cryptographically bound to important session parameters such as the server certificate. Consequently, it is possible for an active attacker to set up two sessions, one with a client and another with a server, such that the master secrets on the two sessions are the same. Thereafter, any mechanism that relies on the master secret for authentication, including session resumption, becomes vulnerable to a man-in-the-middle attack, where the attacker can simply forward messages back and forth between the client and server. This specification defines a TLS extension that contextually binds the master secret to a log of the full handshake that computes it, thus preventing such attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7627"/>
          <seriesInfo name="DOI" value="10.17487/RFC7627"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="H2">
          <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="H3">
          <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="SEEMS-LEGIT">
          <front>
            <title>Seems Legit: Automated Analysis of Subtle Attacks on Protocols That Use Signatures</title>
            <author initials="D." surname="Jackson" fullname="Dennis Jackson">
              <organization/>
            </author>
            <author initials="C." surname="Cremers" fullname="Cas Cremers">
              <organization/>
            </author>
            <author initials="K." surname="Cohn-Gordon" fullname="Katriel Cohn-Gordon">
              <organization/>
            </author>
            <author initials="R." surname="Sasse" fullname="Ralf Sasse">
              <organization/>
            </author>
            <date year="2019"/>
          </front>
          <seriesInfo name="DOI" value="10.1145/3319535.3339813"/>
          <refcontent>CCS '19: Proceedings of the 2019 ACM SIGSAC Conference on Computer and Communications Security</refcontent>
          <refcontent>pp. 2165–2180</refcontent>
        </reference>
        <reference anchor="HOBA">
          <front>
            <title>HTTP Origin-Bound Authentication (HOBA)</title>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="M. Thomas" initials="M." surname="Thomas"/>
            <date month="March" year="2015"/>
            <abstract>
              <t>HTTP Origin-Bound Authentication (HOBA) is a digital-signature-based design for an HTTP authentication method. The design can also be used in JavaScript-based authentication embedded in HTML. HOBA is an alternative to HTTP authentication schemes that require passwords and therefore avoids all problems related to passwords, such as leakage of server-side password databases.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7486"/>
          <seriesInfo name="DOI" value="10.17487/RFC7486"/>
        </reference>
        <reference anchor="ED25519">
          <front>
            <title>Algorithm Identifiers for Ed25519, Ed448, X25519, and X448 for Use in the Internet X.509 Public Key Infrastructure</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies algorithm identifiers and ASN.1 encoding formats for elliptic curve constructs using the curve25519 and curve448 curves. The signature algorithms covered are Ed25519 and Ed448. The key agreement algorithms covered are X25519 and X448. The encoding for public key, private key, and Edwards-curve Digital Signature Algorithm (EdDSA) structures is provided.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8410"/>
          <seriesInfo name="DOI" value="10.17487/RFC8410"/>
        </reference>
        <reference anchor="QUIC-TLS">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="MASQUE-ORIGINAL">
          <front>
            <title>The MASQUE Protocol</title>
            <author fullname="David Schinazi" initials="D." surname="Schinazi">
              <organization>Google LLC</organization>
            </author>
            <date day="28" month="February" year="2019"/>
            <abstract>
              <t>   This document describes MASQUE (Multiplexed Application Substrate
   over QUIC Encryption).  MASQUE is a mechanism that allows co-locating
   and obfuscating networking applications behind an HTTPS web server.
   The currently prevalent use-case is to allow running a VPN server
   that is indistinguishable from an HTTPS server to any unauthenticated
   observer.  We do not expect major providers and CDNs to deploy this
   behind their main TLS certificate, as they are not willing to take
   the risk of getting blocked, as shown when domain fronting was
   blocked.  An expected use would be for individuals to enable this
   behind their personal websites via easy to configure open-source
   software.

   This document is a straw-man proposal.  It does not contain enough
   details to implement the protocol, and is currently intended to spark
   discussions on the approach it is taking.  As we have not yet found a
   home for this work, discussion is encouraged to happen on the GitHub
   repository which contains the draft:
   https://github.com/DavidSchinazi/masque-drafts [1].

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-schinazi-masque-00"/>
        </reference>
      </references>
    </references>
    <?line 651?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors would like to thank many members of the IETF community, as this
document is the fruit of many hallway conversations. In particular, the authors
would like to thank <contact fullname="David Benjamin"/>, <contact fullname="Nick Harper"/>, <contact fullname="Dennis Jackson"/>, <contact fullname="Ilari Liusvaara"/>, <contact fullname="François Michel"/>, <contact fullname="Lucas Pardue"/>,
<contact fullname="Justin Richer"/>, <contact fullname="Ben Schwartz"/>, <contact fullname="Martin Thomson"/>, and
<contact fullname="Chris A. Wood"/> for their reviews and contributions. The mechanism
described in this document was originally part of the first iteration of MASQUE
<xref target="MASQUE-ORIGINAL"/>.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA7Vc63YbuZH+j6fA0GePpSxJi7pZUuIkulrM6OIR5fElycmA
TYjsUbObaXRLpnWcs++wL7D/9j1232SfZOsCoNFNSuOZSY4zEdlsAIVCoeqr
C9DpdEQRF4nek9cTLQ+zNNIq0SN5en39Ru6XxUSnRRypIs5SOYgmeqrFKItS
NYUWo1zdFJ1YFzedSVHMhrHplOksz6azQo86Chp31naEKYfT2BjooJjPoFX/
+PpEpOV0qPM9MVKF3hNRlhqdmtLsySIvtbjbkxsCBtXjLJ/vSVOMxP14j2g6
6A+EyrXak613eihVOpL9tNB5qgt5navUzLK8aIk7nZbQsZTjPCtn3BS+MQXv
svw2TsfyNf4GTycZzganYPZevMC/9+Nulo9fwG9TFSd70s+xcz/+4/0G/gi/
qTyaVO2S2BSmyz++2Ief4jttXrwph0kcvQg7wG5zPcuqpuO4mJTDbpRN7ej0
p6M/FcAVYJx5kaihTsyLBnuhowS4ZArgxhLym5389Hp1J8U0aQmmpwOrVuoO
Db0nm0Pf6vl9lo+Qxx1pdFTmmj4WZZoCqfR5qszfS35MtKRjgW2znFrBf1LG
KSz6URdlK07V55gesngdqbt4VP8BZrUnX2fZONHy7OyQnpki1xo40NteW5P7
09kEiNcKHso3Kr+9V3N6K4oLkKTzrEwLFafy+1jf0/Ncj4E3e/Jwn1/LRjDy
7uba5ob9Dg1QBt+mMUxdDgrkt8xuYCSdw8agtzRLychYWrvI4z+O8Sku6sJk
LxOQjXxhque1X3iupcpHsUrlmzz7UUdFbThs9MexfWPGL3Tj9Cajt8o8DiRs
+VsBWX/qytNsnsCGCuj6U5aqYgLDhz8RYYdJVo5uEtiKsP+ibkjXj7ZRd8KN
AkaINMunoEzuaG+eXJ4d9S9e78mrk8Odl7vr8Oh9d3t3bY96s2qp1QdSqRFo
oEJHkzRLsvEcRGp/cNHtSZ3CmuFuvioTDfMYzHQU3ziVBQt1oEwcyePaa3Ll
4PhqtS0PVZql8G6y8Psh/E7a5Qi2NTwvYzOB9W++dgSvtYhc0mRyfW2911lb
pyeVqHuu9a/fdq5ZakF6tMFlcC/0B5cv+seHcmdnfbPT28OehIjd5Jljp+v8
9ivi2W6vx1I6is0sUXNWcy9w9NONxoubS17ExoPj4/NB5+z4df+6zvaB1lMj
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
L/bPXvU7R1131XqH75jv2MvG/h8wcz0u0GAAAA==

-->

</rfc>
