<?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.35 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-unprompted-auth-03" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.3 -->
  <front>
    <title>The Signature HTTP Authentication Scheme</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-unprompted-auth-03"/>
    <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="2023" month="June" day="28"/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTPBIS</workgroup>
    <keyword>secure</keyword>
    <keyword>tunnels</keyword>
    <keyword>masque</keyword>
    <keyword>http-ng</keyword>
    <abstract>
      <?line 82?>

<t>Existing 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, and there is 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>
        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 94?>

<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
(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
(<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 send 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 following terminology from <xref section="3" sectionFormat="of" target="STRUCTURED-FIELDS"/> to specify syntax and parsing: Integer and Byte
Sequence. This document uses the notation from <xref section="1.3" sectionFormat="of" target="QUIC"/>.</t>
      </section>
    </section>
    <section anchor="the-signature-authentication-scheme">
      <name>The Signature Authentication Scheme</name>
      <t>This document defines the "Signature" HTTP authentication scheme. It uses
asymmetric cryptography. User agents 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>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 Signature
authentication scheme requires either one of the following properties:</t>
      <ul spacing="normal">
        <li>The TLS version in use is greater or equal to 1.3 <xref target="TLS"/>.</li>
        <li>The TLS version in use is 1.2 and the Extended Master Secret extension
<xref target="RFC7627"/> has been negotiated.</li>
      </ul>
      <t>Clients <bcp14>MUST NOT</bcp14> use the Signature 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 malformed.</t>
    </section>
    <section anchor="compute-proof">
      <name>Computing the Authentication Proof</name>
      <t>The user agent computes the authentication proof using a TLS keying material
exporter <xref target="KEY-EXPORT"/> with the following parameters:</t>
      <ul spacing="normal">
        <li>the label is set to "EXPORTER-HTTP-Signature-Authentication"</li>
        <li>the context is set to the structure described in <xref target="context"/></li>
        <li>the exporter output length is set to 48 bytes (see <xref target="output"/>)</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 (..),
  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>p</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>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.</t>
          </dd>
          <dt>Realm:</dt>
          <dd>
            <t>The real 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, Scheme, Host, and Real 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>
      <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 v 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>A string that consists of octet 32 (0x20) repeated 64 times</li>
          <li>The context string "HTTP Signature Authentication"</li>
          <li>A single 0 byte which serves as a separator</li>
          <li>The Signature Input extracted from the key exporter output (see <xref target="output"/>)</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>
        <artwork><![CDATA[
2020202020202020202020202020202020202020202020202020202020202020
2020202020202020202020202020202020202020202020202020202020202020
48545450205369676E61747572652041757468656E7469636174696F6E
00
0101010101010101010101010101010101010101010101010101010101010101
]]></artwork>
        <t>This constructions 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="authentication-parameters">
      <name>Authentication Parameters</name>
      <t>This specification defines the following authentication parameters. These
parameters use structured fields (<xref target="STRUCTURED-FIELDS"/>) in their definition,
even though the Authorization field itself does not use structured fields.</t>
      <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 user agent wishes to use to authenticate. This can for example be used to
point to an entry into a server-side database of known keys.</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 user agent 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 "p" directive.
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 user agent provides to attest to possessing the key
exporter output. 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 (lines are folded
to fit):</t>
      <artwork><![CDATA[
Authorization: Signature k=:YmFzZW1lbnQ=:;s=2055;
v=:dmVyaWZpY2F0aW9uXzE2Qg==:;
p=:SW5zZXJ0IHNpZ25hdHVyZSBvZiBub25jZSBoZXJlIHdo
aWNoIHRha2VzIDUxMiBiaXRzIGZvciBFZDI1NTE5IQ==:
]]></artwork>
    </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). Such authentication failures
can be caused for example by:
* absence of the Authorization field
* failure to parse the Authorization field
* use of the Signature authentication scheme with an unknown key ID
* failure to validate the verification parameter
* failure to validate the signature.</t>
      <t>Such servers <bcp14>MUST</bcp14> also ensure that the timing of their request handling does
not leak any information. This can be accomplished by delaying responses to
all non-existent resources such that the timing of the authentication
verification is not observable.</t>
    </section>
    <section anchor="intermediary">
      <name>Intermediary Considerations</name>
      <t>Since the Signature HTTP authentication scheme leverages TLS keying material
exporters, its output cannot be transparently forwarded by HTTP intermediaries.
HTTP intermediaries that support this specification have two options:</t>
      <ul spacing="normal">
        <li>The intermediary can validate the authentication received from the client,
then inform the upstream HTTP server of the presence of valid authentication.</li>
        <li>The intermediary can export the Signature Input and Verification (see
<xref target="output"/>}), and forward it to the upstream HTTP server, then the upstream
server performs the validation.</li>
      </ul>
      <t>The mechanism for the intermediary to communicate this information to the
upstream HTTP server is out of scope for this document.</t>
      <t>Note that both of these mechanisms require the upstream HTTP server to trust
the intermediary. This is usually the case because the intermediary already
needs access to the TLS certificate private key in order to respond to requests.</t>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>The Signature HTTP authentication scheme allows a user agent to authenticate to
an origin server while guaranteeing freshness and without the need for the
server to transmit a nonce to the user agent. 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
user agent leaking the presence of authentication to observers due to
clear-text TLS Client Hello extensions.</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 Signature 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>Signature</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-Signature-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>
  </middle>
  <back>
    <displayreference target="H2" to="HTTP/2"/>
    <displayreference target="H3" to="HTTP/3"/>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <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="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="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="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>
        <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>
      </references>
      <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="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="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="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 461?>

<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="Nick Harper"/>, <contact fullname="Dennis Jackson"/>, <contact fullname="Ilari Liusvaara"/>, <contact fullname="Justin Richer"/>, <contact fullname="Ben Schwartz"/>, <contact fullname="Martin Thomson"/>,
and <contact fullname="Chris 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:
H4sIAAAAAAAAA7Vc63bbyJH+30/RoX+MnCPSom62OPFMZEm2ONbFI8rjGefk
nDSJJokIBBA0QIrWUc6+w77APss+yj7JflXdDYAg5XUuGydHJNCX6rp+VV1M
u90WeZhHuidvp1oOwkms8iLT8vz29oM8LvKpjvNwpPIwieVgNNUzLYJkFKsZ
ZgSZGuftUOfj9jTP02Fo2kWcZskszXXQVpjc3tkTphjOQmOwQL5MMat/dvtW
xMVsqLOeCFSue2KUxEbHpjA9mWeFFvOe3BPYVE+SbNmTJg/EYtJjmt70B0Jl
WvVk6zhNI0eakSoO5I1WUfs2nOmWmOu4wMJSTrKkSO1UfLMUfEqyuzCeyHf0
Dk+nCZ2GjmB6L17Q38Wkk2STF3g3U2HUk+UZ24vJHxd79BLvVDaaVvOi0OSm
Y1++OMarcK7Niw/FEES+qC9Ay2Y6TaqpkzCfFsPOKJm53flPW9/n4Aod70Wk
hjoyLxrsFXZiG+wtdJvH9GRzzJ1eLpIsIGa0pdEjSJc/5kUcY03+PFPmb4V9
zDvHE0Fzk4xn4X9ShjGkc9ohJQhj9SXkh1YPTtU8DFZfgAc9+S5JJpGWFxcn
/MzkmdZ5T3YPd3bk8Sydgnit8FB+UNndQi151CjMIfLLpIhzFcbyl1Av+Hmm
J+BET54c22FJgJ2P9nf299x3TCBl+RiHOLoc5FAfI5MxdtIZ1IRHaSvOwDha
OySXP07oKXF/7bDXEYSYrR31cuWNPWuhsiBUsfyQJX/Vo3xlO5r0x4kbkdoB
nTAeJzyqyMKaKmweVSPrp448T5YRFL5G108J7HaK7euvmLCTKCmCcQSbkf14
1KnT9Vc3qTO1k2qMELRvNoNxzdmMznd7PPN1T968PTnqdi3Xg9CkkVpa+3qx
SwP3GgP3NwykyYOzs8tB++LsXf/WznBuqDXQembkBcQNXYEHSkAFBHocq2hp
QhbpoBhirDzOczW6wxPmep6MksjAjalcfjQ1X2ZavH6l0PSftvtLTA3zUEUs
8PKhKTLHWNohicsXTg10HIOU1ZebljzZsORJBi+amcaSJ8o03mxa7/2m9ZJp
3H4HE18j8z2sK9TRhhGb1r7ZsPZAGaMbq96oaFx7wS5c7u50j5ydjuHO4bjy
ktWydXIykN91j3okp5HWAbwvCxIOgGfK45NLOei/GxyfgNh4rDMdjzQJ9gSu
rMh1xg4eX2ZFXPr8ATkzuItWtVGaduRu9/Dgf/7jP3e7r3bsGwMHoA1ptCfp
9LoPP7TTgXoevNjb6x4d7B109vb2jl5BsYVot9tSDeGvFAxZnN3Ds1O84Jio
VmOi4ZiI+AP7gs0OtRpCM+G46GgU1DQ+QSND/NeINEEgpAEwLpwIvrq2HJR8
FIX4IvPEriUXU43XPDTJwgmWxVkQVgS0OimyETbm1TP9tyIEBavEdWSfdpXN
Xd1S2GUaBkSfFmOctCTUrWaaZx0uZZzkcqJjnSnmyMfYWlX4BcQbuNzCCPLM
ZhtBdaHhIe2iSRwtJaIQjHUBr49l4vYoW6Z5MskUAsHoCbYCGqyMMqVNV0eW
Y3zlJaExOBPYRsN0sM06Q/zTxIU4EdpLEsGGmUFCqrhhpiRFU4ymWNWuR9Qm
RS71PZhIM2kGMUt4ZlmByG8UyO0UlABAFTOSM4SMZYnRItYL5kqlQ9/An45V
1VkYBJEW4hk8fJ4lQTHiMQ/PwtrXRyG+pr9bRmv58ACT4sfdLpnn72jGa+vH
dx4fn0sVRcnCccwIsAzHhouB7qgRzm6YqQZwqs6PxIp/VdOJQZoAk/w0DUE8
3sFUPDUIQTOeFMbzJJqTlEdTbK7jCRtFpuuiU+bO8PfSfATYOCfdbpy2jGpJ
vG1NctU47AJMM2w3YF0QtUk1cOVkSSuoDBsUCLEguDB6XETkAEaKJGuJLY1O
LJRbPxmPybBZf0LyddhdpWoYRvBolmMY1YL6GTpyIu/iZNHCJ3CL5CAS0mzr
eCaI0jHUB9sG/qjW/2xam60AjB+QosNWYSzkUCLalSgl2An3H0XLdqDHISxJ
zjTYj4g3Ix8AEjARsNJujtAOFRgWzJO3SQYrU7M00tskNPBKxUto6GSauyMj
xiW5BgZJo2QJpXOag8P60Y5sIwKY0CgHYfNQQVzgph4awDtw2dlimFULjTId
kKwRzLbpyI7DfnkRhTOGhibVIwyqWILgYBWXXoxhbH5JrGP5PVOcMOCoowRO
DZ/FFlkqPcTM59ZprCwYhOMxaUXekZeakh0OeBHRstBR5FkrRjam8RzLJqiQ
nCXgrE7JGjKQyswGh9TIuZWSZxNtXcSyjSOLSsrt8jClJUIgpK9IFQISI0ka
3MpJoKRj2DaTQygt6TSUeQJ4y5CSNEnNgQzZLVWGPcI7U6RpkuVyCwtOAXNZ
KvB/buWZzplbHGPcGk7Bx+5Q4HWSkbKRyPxpoMR48hz+jb0DmAk0iOSu9P9t
IjT4ekSOkCYGTt3F1sPDj+fXb47Jm73cf3UIb7ZNVC2l1/yaQ4G3R9IWkuaR
G6ADuDAjKjcE5lc+Z5u+UgqbuXjP5ldm02EMEEN85UU6DFIFlEqb+raV7ydB
5dYF8R71TTdjBtMRq7HF6pehSIbQ0mTcRp45AEChMhclMRDCs2eEyuY0wefa
p7R8aL8/PBtVbxFnqJIA4VLAD4xsXX4c3La27V95dc2fb85+/ti/OTulz4Pz
44uL8oNwIwbn1x8vTqtP1cyT68vLs6tTOxlP5coj0bo8/q1lY3/r+sNt//rq
+KJlEVmdP+S6LFpAlNRZmmlipoLT0WYEf4YvmPPm5MN//1d3H5Hxd1Cc3W73
6PHRfXnVfbmPL3Dwsd3Nghz+SoolVJpqldEqkB45B1Jha4UG6CiWFBrA3d//
iTjz5578w3CUdvd/cA/owCsPPc9WHjLP1p+sTbZM3PBowzYlN1eeNzi9Su/x
byvfPd9rD//wYwR9lO3uqx9/EKKhrIVxljBOCGGwx9DZLIyTKJkAqiHm1sDJ
HryH+N3g9ubjye1HMKT9tn92cTog0351tN+FUCh+s/+DAS/jXN2zgBCoKW70
CCbpicsp3ixzLQaERoD3mgCtpAsWYS2lQUq3s8dACZI5YaC0swOgRCbTqKdt
LqU9YbO0Y6uc2/qKm2OIT1QKZZYzuFuAsTpyXHYoF8ZJJ4xrCOxQ4FBsn/1T
5oCSqS1SpVk4h0uhdyJVYebUupZ4IIjNVGgrMwof05REBQbU0gC7snH+McxA
mUkQcMm87Ebs+Tvu8Js9EeX5ZE4egFB4ZmFgL+YGpxG3FwMBY8Qflv3+Pty6
x2XxKCoC8n8xg7JyIsVvmkhmmC9TG2loBG8ibCEDEj7ffXxkGGErFvRkz5q7
A5/IDmPDwS91xQdLoVsbcEU0zkbcJO7oe0JT8OYVrEJ0IhVqu6NAjbqsRm/0
SBXGbkgLYzpxnEoiGWEYyksySo89w2yBz2Z6q7uTZxIW8wJvQN8xepgUFGKS
cn3SDs4d2MW9PNx9SVzI66rcPJWTWJk06pBT1iTWPsOvjJoSHp0R1unB77GJ
0K6kWBaes6hA4QSxm46FY2BdHBQ0kq09PGA8c+Zrs7udXZ/7yTMqogaQ7qUy
tCIsF65elrVVIbFoeVaAGIOYQGhaT5KctRabnbi8wPtl6WVSGfhmruATYmNs
vYXLDYNEUBo90zqvcylfJDX+SDWEpsK8xy5HYOQ80lRUxhOXPvGCwnmpJ42J
VK9GhqWCtkek99KyNPCmoqJiu0wjMIYPn5Ng+KknQZFPiChFYlY9cyUbnyw3
HN+HLMFehBi4rkP5bjJ2mKEoPZV0r60rbJyKp7gUQG2yClFaBdT4/dlv7bNf
P1zf3JJhHbzcOSArJu/RUE2VKYarVjXpJRfUSZ+M5ppMy65zdtMmn9AuZd9e
PWPLz+c62H1eW4G5mWfIyEllVpDGw4Mb/vjo55fHSIqc8CNBQNBdLbf/CkA+
r7J3Ow7QliHbe7iaM7/EiaOFsRpvY3nu2FftVSO6Qd84nLRLGsGkv//971TH
rUJcNEEIyKczudU9fL6Nd+9tkLmwdG+F9YdbnQ5/tZGwMcY99GPOE+jZ6gh+
5N9/4BTEbUq3QLPGaPvMDieyH3ryWe04tvb8urWRY285+W/VcO0ar+gvQmIT
woxDHQWkTht4hKf2yq1KEpy1GtJ/V0D8S/oXuhyxiumlXGpq20DUMDnL0XJF
F9pX1rn76jp3dh3L9YoyS4+tk4XGG/w28hyq8QVVFi5tgcR7ETeRmEQOluCB
/HjTJ0/h4zkrVInnOrbahDFko3tHlJ6BHpJxSc2UBP6P08LTHCUMVMTXKdlF
6MAwDGISSLNKEjjYN0nAINauchQcZOQhUc1r+dyqLpaM1bLp3rxYKGet6nGd
Aw9hSFgUF/7vFapcThubpBLhNkEYcgkmXzYhb5BonuQYRDBPA+j4cqmoyqWj
shqvOSIRJStJsYteripnaSFbgeVB3wl3UOii+FbVKrAIV+Yskfw6toT6syKu
lylOlSLzyyY0KRnRsca7yVfReuw/rLVyXuiVShFUssVk2T1sDwk92dTBiJAg
Qk41bfbBQCoB9mENsPa47bzYNvuq7fKGur6R9egkn3F4zyV0qpaY721lwt4p
IOgHrmLjvRqv4AvNTrjGoW0fJGIbGpgi43fadMjKcuYK0RMZf9uR5c5qR7JD
ayQ/h6SShFsRUul4jBCG1dJOzZHHhbNi5i79aY6NWsAjgJsqW3bW49W1DXkP
z1xM2+B9XVSEXpVxMEriSUdek20kRlv0Mg4zuIC9XTeEmaqyXDgHYUszPjZX
cM7pVUz+HQetJrMBK9rJ+NuTcpozJi6TG6eXozD1lzqs+9msqhCVZ0m5Tm/x
jsi4DDhXUWHlZ8vMG6Kxj/cbgnGfj7W1e2CD4i8ARmNvFlvd3VeNQOh4uSkO
Okn8W8MgU+c8ZlVE9z47ULlydzg17bRu5DsjRyRbqvqXCa9LXKnVwQc3CyD5
vDa41TlQ+up5nS2ggnO6WZjnusyKHPitWUkjkop6JJ3bzaDN1WFPKlJK4Kvc
lcw1X1qtuCYruTIPAWPpGpLSU7K+/AkrcJSUCLC83vCuhSEvXdGBX8zgoR5T
kXmo6WCO2zgzTh9OiJlcKaYqL+fGcD93XCzFt04DuITG4/XAptcO/FJkiJWL
vIyqj52HsxZAbT90FUFyT3BEttKtnfvdnefk1zSXDA73oZUzbXzG55XNLdTi
pP6pOkvLbYqRkZY71lPb+wt3b6cM51ckwRzpv9ukKY1/QAirMPwtJbD+PiQc
PylqqhDSBUfpphzC3+luV6lEnAu+frDiWPVXWyHVE+9VAH8zoyDD5vpcLpIC
oWKonYvY3fnX/v3rC+y/OtjHP3w82Ds8Onx5eHbYfbn/8uDl7uHB7s5+F5/2
D18dHhye4e/R4R69xd+3h2diZ0fsdP+1f8wEW3gi7eNUjDPzWZhlSeYydOeH
KDeiosMJJcPsJjR7EbrXQNyaaLERRO539m1V0JcqLCo0RZR7UyvthpT1m7wO
MgHxFQSfOr+zlm6XWa07tYda9nW94Fg57KdQlAcTonrCCK3MaAOPLwi5Nsuz
dH9sAUGY2Y35+mBbaLq8pGv2ybSsGFAt0RVcGevANnQ0rsDpxm2t4+XwVPPR
D8/qiY6Vhi+ly9ZdS27ZhOn5Km5W1lkYVxl2+J0vGMchX+y6W1C6uq6XLhah
mdprby4SJSsX3y6c09XZuHINhJnYy9LNdRJasGDv5zK6A6dvTiXaDDrIgfNV
HV2jxXSX4Eqq7vzpE+dP186f4vxcUPmW4zvlcQrD00SJZWoscLfv9soSam1s
S4stPpfxvLyudQUplQMvA1jDDVqJVOcxT5zHrJ3H4DylhTXPFHv4vuE4Yi0R
dxLxsa0684rBOoxLjLTX1eFcd0Qfh2AA19h3iJSBovoOA8zDg4O9A1uqNphW
BZf+8dWxbFF5uwwWNplocR+kIbXwhXjKU3Lxhz/9ecv3EC4Wi06oYsWdqMrQ
wSi1My/yyLQr22187dxP81n0jB5WbTa86fMfKknMn5DEfE0Sc0iijq/+YQUT
K+jsn9YzMtFGoPYwfZ6EgbsSd41JTSXwDRwjhAC69CAzE2S9rglK11uSmERK
ESD50N5ZzMjpp5FLM4yHabXmR++4z6wraEAGjzT6YCgZPMmxteKgcUobJc6C
3YOD7hFW//HslD/aSxHq3KH2WHhRl2U03P1UAzVkztFuRfbWmO8QIiRx1OUz
DvPnDkCsOOdeDcvcve79Nnv75fOnbjSMf37d+968Rog/+F7MX/eC2S9L9elz
+tvu2x316aj49cvZ7s+T1xgk0te9waeDL59//Wmnf36Vft49mAbnvyw/D97M
P4dviuHuwV/xOcH7qH8eJEJ9ukr65zdTtfvLl/7px/vL8E2ofr350n/3eT4K
37z9fNrvXt2eHfR/xvI22j+TV0nc/lBerg9sbD2HBUbUySEG7mqL5Ufum7TI
907VOx5sowQ3FLDOQhEoGA1d61+AbNEyrNEJsETg4rCVIdbB39GdVL2rSA2p
x8y2+tQbp8RTd/1AjrW2o23bfuJv6DgLxzJpwnc7zaLIWIURq2tZBIe2jWB7
yrZtpUnZtMikWwQ5VXPrEQWpNXWqOTbkFcXc/lPXXRfpqIDklJTRum0U5BZu
sb+zL7euEsovizgghIBFVUCBbX+nK7fqHYbPXc/SEwdiuxxqn7GsxNdlD8he
DY1tKx0/hTMwyK3GjkRl7ppn81B3rfgt90DMa274LMM1bHp1O/YaygWaFd9X
lQSfnlDVIKDQa+qgIrPen4K8yl3fWlDmb3SmzjIYbvFdVaTVXVNra1BmyB1J
CJMRYR/OTgIdKb6U8RrF+kxpzmbdsSq8mbQGT0UzaycKkyGd1/er8A0/XUiF
CpHyhPLMgHtWbbtKWHv7SHWJ9Sz86St3MAMEIACZr949mW1O6FxmWHkKe20M
/xpTexG4uVCZq+/xnjXaEAc7YsNDFytd61W+DuvZWOk+MUn5yOVla/3gLLkV
FWoc11031nJe1+tEP6ShvMUqgw3KKf26Q82cgVsP66RnC5TW7mxkbHTFPkmd
5eXGpJng02pRiyKrrGXfVAOhUY7FVA9xydUmYrddKlZ7LaQ/SKozOqlxVVJm
mSWcyK5u8X1L8cpBGpXy3HYnVM7fEiU2cjBkBSLGmVGS1u5ifLkeJFwlubPp
YQInY5luamRVvdJPSopoyAqTiyb1VfmxMAV3SrAeUOoxrLUmrBzYNd4JCoam
1qroU+pRlU7LWssJIWkuokvbV+zCV9UpTHbtW/7Xbdq4N4/NUv9XLNnVaVUd
UzYSNvZaq933mWsKpZ/qKBxc29K4NtOYe2vioGwbtxVkF4w4yajx2+YQZau5
V86SlPVicjWbuJrmYiM6KHe3aKMst4WlzzDcV3EPn7HepLLewc09RhxAPL8a
jSXVYUWNkRQzPAavu4DmvVjifDfFqqBgho8wN2tzmY8UxnZfyHON7avGDePM
b1N3QKNavt75x87YNb8I6ppGHkFtJqwsXuO+9xU71k5TNgk9sSUiUwn3/RK+
sZTBVdWC4VpPFyHiIcVE6kIM7IqRFbtwvKbtkDTaMvuM+Gh8M0/Zm1rWXBcw
8m05pEsRisUuUgh/AUdQiDigas0onuJ7blim393k0puSr7Uau4NydVQbkmr9
JKzha6iXwGy5gIt/5BikVoj03L3+nRH15AOadk2PAcFxDGqN8cVeX8WUDODZ
KdDPydax2cp6rG0x7+TBCtf8KHEmeQJSUdidAYdmsfykh3KYgedc6KKby1go
/oUZWby2kItlkMxC5/fc+Bp4CXOXazm/5/YX7iTf0a6zJFva1K5c33Z+s5HV
Tul9JxeAM+cTKWWBQgL0Y2zoupPXbKpUQMs6Yr7/TcSMiB0ifx3zfaZIqbQd
jrTrJCh7y0p1/2ZkVLZHDbXgmwK2PmZA2SQH3p4mXAdNOMbDBrnT06FYr3ql
c6XbAbGOTkDstf0Ziu3zt56GkJAlhZaG67urGMHi8QGL7RFcBL6yv1PargZ6
/0DTbTf2KEuM8T97qTkF5xL4VtABMOHceM2n+Hm+mFsSaZEqlXrWEaqK1SMX
XZ7+IbaRN74WZCe0Xc3isdFXyjcPKiX506+iyoPy1qwrtIzzIVVdwFcfmfut
r9DRqgj5J4pS/INjEq6j/vkPgKsbN5JXyrWnVM2I4ka7XwtW14n+3BYbGX5x
BXdCt52A3iMc7nWLf2wy4gtNKm0hzLy3SP7S6395A3rBP772TPYA3/7e+v+F
10RNY/d/Z+Hv2eoRLMd/oWols+rbutyEOAWZ7ev3lr0kCIK53GvJj377umye
kAX9nm0In8h3GSNKliMdTPgUEIBaffKIVWxTgQ5et8Zwn9pfUNuqgXd/UXjn
AJaCS5jxT5KqH+VwxfXs9q3H6fmSm/TJUkWJGkJ3S5IVIQNyXoR+l0G/JeTf
P2TGmu9adSav6BGb6Hl4eLgKR3fyXGXINB6p4xaPVn9j7J/2sWIoLsLCzBUE
6h//VNAPG+VNCEMpV3ij2XKQ/eRf/LNLoiuGLJKZW1UQYMWbk2mG7T4lSYCn
3u9zVWAe6oXFtRTF+Lde9pwr2Y/4CuRaKO8+OYeoX/bb9owwd86PHl8eD37+
eEaFTPupfX3Tf9e/Or543W+fdvxv99v2/7Sg7Rru/xcxy9qPykIAAA==

-->

</rfc>
