<?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-rfc2629 version 1.5.24 -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-client-cert-field-01" category="info" obsoletes="" updates="" submissionType="IETF" xml:lang="en" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.0 -->
  <front>
    <title abbrev="Client-Cert Header">Client-Cert HTTP Header Field</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-client-cert-field-01"/>
    <author initials="B." surname="Campbell" fullname="Brian Campbell">
      <organization>Ping Identity</organization>
      <address>
        <email>bcampbell@pingidentity.com</email>
      </address>
    </author>
    <author initials="M." surname="Bishop" fullname="Mike Bishop" role="editor">
      <organization>Akamai</organization>
      <address>
        <email>mbishop@evequefou.be</email>
      </address>
    </author>
    <date/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <keyword>http</keyword>
    <keyword>client certificate</keyword>
    <abstract>
      <t>This document defines HTTP extension header fields that allow a TLS
terminating reverse proxy to convey the client certificate information of a
mutually-authenticated TLS connection to the origin server in a common and
predictable manner.</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-client-cert-field/"/>.
      </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/client-cert-field"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="Introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>A fairly common deployment pattern for HTTPS applications is to have the origin
HTTP application servers sit behind a reverse proxy that terminates TLS
connections from clients. The proxy is accessible to the internet and dispatches
client requests to the appropriate origin server within a private or protected
network. The origin servers are not directly accessible by clients and are only
reachable through the reverse proxy. The backend details of this type of
deployment are typically opaque to clients who make requests to the proxy server
and see responses as though they originated from the proxy server itself.
Although HTTPS is also usually employed between the proxy and the origin server,
the TLS connection that the client establishes for HTTPS is only between itself
and the reverse proxy server.</t>
      <t>The deployment pattern is found in a number of varieties such as n-tier
architectures, content delivery networks, application load balancing services,
and ingress controllers.</t>
      <t>Although not exceedingly prevalent, TLS client certificate authentication is
sometimes employed and in such cases the origin server often requires
information about the client certificate for its application logic. Such logic
might include access control decisions, audit logging, and binding issued tokens
or cookies to a certificate, and the respective validation of such bindings. The
specific details from the certificate needed also vary with the application
requirements. In order for these types of application deployments to work in
practice, the reverse proxy needs to convey information about the client
certificate to the origin application server. A common way this information is
conveyed in practice today is by using non-standard fields to carry the
certificate (in some encoding) or individual parts thereof in the HTTP request
that is dispatched to the origin server. This solution works but
interoperability between independently developed components can be cumbersome or
even impossible depending on the implementation choices respectively made (like
what field names are used or are configurable, which parts of the certificate
are exposed, or how the certificate is encoded). A well-known predictable
approach to this commonly occurring functionality could improve and simplify
interoperability between independent implementations.</t>
      <t>This document aspires to standardize two HTTP header fields, <tt>Client-Cert</tt>
and <tt>Client-Cert-Chain</tt>,  which a TLS terminating reverse proxy (TTRP) adds to
requests sent to the backend origin servers. The <tt>Client-Cert</tt> field value
contains the end-entity client certificate from  the mutually-authenticated TLS
connection between the originating client and the TTRP. Optionally, the
<tt>Client-Cert-Chain</tt> field value contains the certificate chain used for
validation of the end-entity certificate. This enables the backend origin
server to utilize the client certificate
information in its application logic. While there may be additional proxies or
hops between the TTRP and the origin server (potentially even with
mutually-authenticated TLS connections between them), the scope of the
<tt>Client-Cert</tt> header field is intentionally limited to exposing to the origin
server the certificate that was presented by the originating client in its
connection to the TTRP.</t>
      <section anchor="requirements-notation-and-conventions" numbered="true" toc="default">
        <name>Requirements Notation and Conventions</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" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they
appear in all capitals, as shown here.</t>
      </section>
      <section anchor="terminology" numbered="true" toc="default">
        <name>Terminology</name>
        <t>Phrases like TLS client certificate authentication or mutually-authenticated TLS
are used throughout this document to refer to the process whereby, in addition
to the normal TLS server authentication with a certificate, a client presents
its X.509 certificate <xref target="RFC5280" format="default"/> and proves possession of the corresponding
private key to a server when negotiating a TLS connection or the resumption of
such a connection.  In contemporary versions of TLS <xref target="RFC8446" format="default"/> <xref target="RFC5246" format="default"/> this
requires that the client send the Certificate and CertificateVerify messages
during the handshake and for the server to verify the CertificateVerify and
Finished messages.</t>
        <t>HTTP/2 restricts TLS 1.2 renegotiation (<xref section="9.2.1" sectionFormat="of" target="RFC7540" format="default"/>) and
prohibits TLS 1.3 post-handshake authentication <xref target="RFC8740" format="default"/>. However, they are
sometimes used to implement reactive client certificate authentication in HTTP/1.1
<xref target="RFC7230" format="default"/> where the server decides whether to request a client certificate
based on the HTTP request. HTTP application data sent on such a connection
after receipt and verification of the client certificate is also
mutually-authenticated and thus suitable for the mechanisms described in this
document.</t>
      </section>
    </section>
    <section anchor="headers" numbered="true" toc="default">
      <name>HTTP Header Fields and Processing Rules</name>
      <t>This document designates the following headers, defined further in <xref target="header" format="default"/>
and <xref target="chain-header" format="default"/> respectively, to carry the client certificate information of a
mutually-authenticated TLS connection from a reverse proxy to origin server.</t>
      <dl>
        <dt>
Client-Cert:  </dt>
        <dd>
          <t>Conveys the end-entity certificate used by the client in the TLS handshake with
the reverse proxy from the reverse proxy to the origin server.</t>
        </dd>
        <dt>
Client-Cert-Chain:  </dt>
        <dd>
          <t>Conveys the certificate chain used for validation of the end-entity
certificate used by the client in the TLS handshake from the reverse proxy to the origin server.</t>
        </dd>
      </dl>
      <section anchor="encoding" numbered="true" toc="default">
        <name>Encoding</name>
        <t>The headers in this document encode certificates as Structured Field Byte
Sequences (<xref section="3.3.5" sectionFormat="of" target="RFC8941" format="default"/>) where the value of the binary data
is a DER encoded <xref target="ITU.X690.1994" format="default"/> X.509 certificate <xref target="RFC5280" format="default"/>.
In effect, this means that the binary DER certificate is encoded using base64
(without line breaks, spaces, or other characters outside the base64 alphabet)
and delimited with colons on either side.</t>
        <t>Note that certificates are often stored encoded in a textual format, such as
the one described in <xref section="5.1" sectionFormat="of" target="RFC7468" format="default"/>, which is already nearly
compatible with a Structured Field Byte Sequence; if so, it will be sufficient to replace
<tt>---(BEGIN|END) CERTIFICATE---</tt> with <tt>:</tt> and remove line breaks in order
to generate an appropriate item.</t>
      </section>
      <section anchor="header" numbered="true" toc="default">
        <name>Client-Cert HTTP Header Field</name>
        <t>In the context of a TLS terminating reverse proxy deployment, the proxy
makes the TLS client certificate available to the backend application with the
Client-Cert HTTP header field. This field contains the end-entity certificate
used by the client in the TLS handshake.</t>
        <t>Client-Cert is an Item Structured Header <xref target="RFC8941" format="default"/>.  Its value <bcp14>MUST</bcp14> be a
Byte Sequence (<xref section="3.3.5" sectionFormat="of" target="RFC8941" format="default"/>).  Its ABNF is:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 Client-Cert = sf-binary
]]></artwork>
        <t>The value of the header is encoded as described in <xref target="encoding" format="default"/>.</t>
        <t>The <tt>Client-Cert</tt> header field is only for use in HTTP requests and <bcp14>MUST NOT</bcp14> be
used in HTTP responses.  It is a single HTTP header field value as defined in
Section 3.2 of <xref target="RFC7230" format="default"/>, which <bcp14>MUST NOT</bcp14> have a list of values or occur
multiple times in a request.</t>
      </section>
      <section anchor="chain-header" numbered="true" toc="default">
        <name>Client-Cert-Chain HTTP Header Field</name>
        <t>In the context of a TLS terminating reverse proxy deployment, the proxy
<bcp14>MAY</bcp14> make the certificate chain used for validation of the end-entity certificate
available to the backend application with the Client-Cert-Chain HTTP header
field. This field contains certificates used by the proxy to validate the
certificate used by the client in the TLS handshake. These certificates might or
might not have been provided by the client during the TLS handshake.</t>
        <t>Client-Cert-Chain is a List Structured Header <xref target="RFC8941" format="default"/>.  Each item in the
list <bcp14>MUST</bcp14> be a Byte Sequence (<xref section="3.3.5" sectionFormat="of" target="RFC8941" format="default"/>) encoded as described
in <xref target="encoding" format="default"/>.</t>
        <t>The header's ABNF is:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 Client-Cert-Chain = sf-list
]]></artwork>
        <t>The <tt>Client-Cert-Chain</tt> header field is only for use in HTTP requests and <bcp14>MUST
NOT</bcp14> be used in HTTP responses.  It <bcp14>MAY</bcp14> have a list of values or occur multiple
times in a request.  For header compression purposes, it might be advantageous
to split lists into multiple instances.</t>
        <t>The first certificate in the list <bcp14>SHOULD</bcp14> directly certify the end-entity
certificate provided in the <tt>Client-Cert</tt> header; each following certificate
<bcp14>SHOULD</bcp14> directly certify the one immediately preceding it.  Because certificate
validation requires that trust anchors be distributed independently, a
certificate that specifies a trust anchor <bcp14>MAY</bcp14> be omitted from the chain,
provided that the server is known to possess any omitted certificates.</t>
        <t>However, for maximum compatibility, servers <bcp14>SHOULD</bcp14> be prepared to handle
potentially extraneous certificates and arbitrary orderings.</t>
      </section>
      <section anchor="processing-rules" numbered="true" toc="default">
        <name>Processing Rules</name>
        <t>This section outlines the applicable processing rules for a TLS terminating
reverse proxy (TTRP) that has negotiated a mutually-authenticated TLS connection
to convey the client certificate from that connection to the backend origin
servers. Use of the technique is to be a configuration or deployment option and
the processing rules described herein are for servers operating with that option
enabled.</t>
        <t>A TTRP negotiates the use of a mutually-authenticated TLS connection with the
client, such as is described in <xref target="RFC8446" format="default"/> or <xref target="RFC5246" format="default"/>, and validates the
client certificate per its policy and trusted certificate authorities.  Each
HTTP request on the underlying TLS connection are dispatched to the origin
server with the following modifications:</t>
        <ol spacing="normal" type="1"><li>The client certificate is placed in the <tt>Client-Cert</tt> header field of the
dispatched request, as described in <xref target="header" format="default"/>.</li>
          <li>If so configured, the validation chain of the client certificate is placed in
the <tt>Client-Cert-Chain</tt> header field of the request, as described in
<xref target="chain-header" format="default"/>.</li>
          <li>Any occurrence of the <tt>Client-Cert</tt> or <tt>Client-Cert-Chain</tt> header fields in
the original incoming request <bcp14>MUST</bcp14> be removed or overwritten before
forwarding the request. An incoming request that has a <tt>Client-Cert</tt> or
<tt>Client-Cert-Chain</tt> header field <bcp14>MAY</bcp14> be rejected with an HTTP 400 response.</li>
        </ol>
        <t>Requests made over a TLS connection where the use of client certificate
authentication was not negotiated <bcp14>MUST</bcp14> be sanitized by removing any and all
occurrences of the <tt>Client-Cert</tt> and <tt>Client-Cert-Chain</tt> header fields prior to
dispatching the request to the backend server.</t>
        <t>Backend origin servers may then use the <tt>Client-Cert</tt> header field of the
request to determine if the connection from the client to the TTRP was
mutually-authenticated and, if so, the certificate thereby presented by the
client.</t>
        <t>Forward proxies and other intermediaries <bcp14>MUST NOT</bcp14> add the <tt>Client-Cert</tt> or
<tt>Client-Cert-Chain</tt> header fields to requests, or modify an existing
<tt>Client-Cert</tt> or <tt>Client-Cert-Chain</tt> header field. Similarly, clients <bcp14>MUST NOT</bcp14>
employ the <tt>Client-Cert</tt> or <tt>Client-Cert-Chain</tt> header field in requests.</t>
        <t>When the value of the <tt>Client-Cert</tt> request header field is used to select a response
(e.g., the response content is access-controlled), the response <bcp14>MUST</bcp14> either be
uncacheable (e.g., by sending <tt>Cache-Control: no-store</tt>) or be designated for
selective reuse only for subsequent requests with the same <tt>Client-Cert</tt>
header value by sending a <tt>Vary: Client-Cert</tt> response header.
If a TTRP encounters a response with a <tt>client-cert</tt> field name in the <tt>Vary</tt>
header field, it <bcp14>SHOULD</bcp14> prevent the user agent from caching the response by
transforming the value of the <tt>Vary</tt> response header field to <tt>*</tt>.</t>
      </section>
    </section>
    <section anchor="deployment" numbered="true" toc="default">
      <name>Deployment Considerations</name>
      <section anchor="header-field-compression" numbered="true" toc="default">
        <name>Header Field Compression</name>
        <t>If the client certificate header field is generated by an intermediary on a connection that
compresses fields (e.g., using HPACK <xref target="RFC7541" format="default"/> or QPACK <xref target="I-D.ietf-quic-qpack" format="default"/>)
and more than one client's requests are multiplexed into that connection, it can reduce
compression efficiency significantly, due to the typical size of the field value and
its variation between clients.
Recipients that anticipate connections with these characteristics can mitigate the
efficiency loss by increasing the size of the dynamic table.
If a recipient does not do so, senders may find it beneficial to always send the
field value as a literal, rather than entering it into the dynamic table.</t>
      </section>
      <section anchor="header-block-size" numbered="true" toc="default">
        <name>Header Block Size</name>
        <t>A server in receipt of a larger header block than it is willing to handle can send
an HTTP 431 (Request Header Fields Too Large) status code per <xref section="5" sectionFormat="of" target="RFC6585" format="default"/>.
Due to the typical size of the field values containing certificate data,
recipients may need to be configured to allow for a larger maximum header block size.
An intermediary generating client certificate header fields on connections that allow
for advertising the maximum acceptable header block size (e.g. HTTP/2 <xref target="RFC7540" format="default"/>
or HTTP/3 <xref target="I-D.ietf-quic-http" format="default"/>) should account for the additional size of header
block of the requests it sends vs. requests it receives by advertising a value to its
clients that is sufficiently smaller so as to allow for the addition of certificate data.</t>
      </section>
    </section>
    <section anchor="sec" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>The header fields described herein enable a TTRP and backend or origin server to
function together as though, from the client's perspective, they are a single
logical server side deployment of HTTPS over a mutually-authenticated TLS
connection. Use of the header fields outside that intended use
case, however, may undermine the protections afforded by TLS client certificate
authentication. Therefore, steps <bcp14>MUST</bcp14> be taken to prevent unintended use, both in
sending the header field and in relying on its value.</t>
      <t>Producing and consuming the <tt>Client-Cert</tt> and <tt>Client-Cert-Chain</tt> header
fields <bcp14>SHOULD</bcp14> be configurable
options, respectively, in a TTRP and backend server (or individual application in
that server). The default configuration for both should be to not use the
header fields thus requiring an "opt-in" to the functionality.</t>
      <t>In order to prevent field injection, backend servers <bcp14>MUST</bcp14> only accept the
<tt>Client-Cert</tt> and <tt>Client-Cert-Chain</tt> header fields from a trusted
TTRP (or other proxy in a trusted path
from the TTRP). A TTRP <bcp14>MUST</bcp14> sanitize the incoming request before forwarding it
on by removing or overwriting any existing instances of the fields. Otherwise,
arbitrary clients can control the field values as seen and used by the backend
server. It is important to note that neglecting to prevent field injection does
not "fail safe" in that the nominal functionality will still work as expected
even when malicious actions are possible. As such, extra care is recommended in
ensuring that proper field sanitation is in place.</t>
      <t>The communication between a TTRP and backend server needs to be secured against
eavesdropping and modification by unintended parties.</t>
      <t>The configuration options and request sanitization are necessarily functionally
of the respective servers. The other requirements can be met in a number of
ways, which will vary based on specific deployments. The communication between a
TTRP and backend or origin server, for example, might be authenticated in some
way with the insertion and consumption of the <tt>Client-Cert</tt>
and <tt>Client-Cert-Chain</tt> header fields occurring
only on that connection. Alternatively the network topology might dictate a
private network such that the backend application is only able to accept
requests from the TTRP and the proxy can only make requests to that server.
Other deployments that meet the requirements set forth herein are also possible.</t>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <section anchor="http-field-name-registrations" numbered="true" toc="default">
        <name>HTTP Field Name Registrations</name>
        <t>Please register the following entries in the "Hypertext Transfer Protocol (HTTP) Field
Name Registry" defined by <xref target="I-D.ietf-httpbis-semantics" format="default"/>:</t>
        <ul spacing="normal">
          <li>Field name: Client-Cert</li>
          <li>Status: permanent</li>
          <li>Specification document: <xref target="headers" format="default"/> of [this document]
<br/></li>
          <li>Field name: Client-Cert-Chain</li>
          <li>Status: permanent</li>
          <li>Specification document: <xref target="headers" format="default"/> of [this document]</li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper">
              <organization/>
            </author>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <author fullname="S. Farrell" initials="S." surname="Farrell">
              <organization/>
            </author>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen">
              <organization/>
            </author>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <author fullname="W. Polk" initials="W." surname="Polk">
              <organization/>
            </author>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="ITU.X690.1994">
          <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>International Telecommunications Union</organization>
            </author>
            <date month="" year="1994"/>
          </front>
          <seriesInfo name="ITU-T" value="Recommendation X.690"/>
        </reference>
        <reference anchor="RFC8941">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="P-H. Kamp" initials="P-H." surname="Kamp">
              <organization/>
            </author>
            <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>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol.  The TLS protocol provides communications security over the Internet.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="RFC7540">
          <front>
            <title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
            <author fullname="M. Belshe" initials="M." surname="Belshe">
              <organization/>
            </author>
            <author fullname="R. Peon" initials="R." surname="Peon">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <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 perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t>
              <t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7540"/>
          <seriesInfo name="DOI" value="10.17487/RFC7540"/>
        </reference>
        <reference anchor="RFC8740">
          <front>
            <title>Using TLS 1.3 with HTTP/2</title>
            <author fullname="D. Benjamin" initials="D." surname="Benjamin">
              <organization/>
            </author>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document updates RFC 7540 by forbidding TLS 1.3 post-handshake authentication, as an analog to the existing TLS 1.2 renegotiation restriction.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8740"/>
          <seriesInfo name="DOI" value="10.17487/RFC8740"/>
        </reference>
        <reference anchor="RFC7230">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the "http" and "https" Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7230"/>
          <seriesInfo name="DOI" value="10.17487/RFC7230"/>
        </reference>
        <reference anchor="RFC7468">
          <front>
            <title>Textual Encodings of PKIX, PKCS, and CMS Structures</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <author fullname="S. Leonard" initials="S." surname="Leonard">
              <organization/>
            </author>
            <date month="April" year="2015"/>
            <abstract>
              <t>This document describes and discusses the textual encodings of the Public-Key Infrastructure X.509 (PKIX), Public-Key Cryptography Standards (PKCS), and Cryptographic Message Syntax (CMS).  The textual encodings are well-known, are implemented by several applications and libraries, and are widely deployed.  This document articulates the de facto rules by which existing implementations operate and defines them so that future implementations can interoperate.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7468"/>
          <seriesInfo name="DOI" value="10.17487/RFC7468"/>
        </reference>
        <reference anchor="RFC7541">
          <front>
            <title>HPACK: Header Compression for HTTP/2</title>
            <author fullname="R. Peon" initials="R." surname="Peon">
              <organization/>
            </author>
            <author fullname="H. Ruellan" initials="H." surname="Ruellan">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification defines HPACK, a compression format for efficiently representing HTTP header fields, to be used in HTTP/2.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7541"/>
          <seriesInfo name="DOI" value="10.17487/RFC7541"/>
        </reference>
        <reference anchor="I-D.ietf-quic-qpack">
          <front>
            <title>QPACK: Header Compression for HTTP/3</title>
            <author fullname="Charles 'Buck' Krasic">
              <organization>Netflix</organization>
            </author>
            <author fullname="Mike Bishop">
              <organization>Akamai Technologies</organization>
            </author>
            <author fullname="Alan Frindell">
              <organization>Facebook</organization>
            </author>
            <date day="2" month="February" year="2021"/>
            <abstract>
              <t>   This specification defines QPACK, a compression format for
   efficiently representing HTTP fields, to be used in HTTP/3.  This is
   a variation of HPACK compression that seeks to reduce head-of-line
   blocking.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-qpack-21"/>
        </reference>
        <reference anchor="RFC6585">
          <front>
            <title>Additional HTTP Status Codes</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <date month="April" year="2012"/>
            <abstract>
              <t>This document specifies additional HyperText Transfer Protocol (HTTP) status codes for a variety of common situations.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6585"/>
          <seriesInfo name="DOI" value="10.17487/RFC6585"/>
        </reference>
        <reference anchor="I-D.ietf-quic-http">
          <front>
            <title>Hypertext Transfer Protocol Version 3 (HTTP/3)</title>
            <author fullname="Mike Bishop">
              <organization>Akamai</organization>
            </author>
            <date day="2" month="February" year="2021"/>
            <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.

DO NOT DEPLOY THIS VERSION OF HTTP

   DO NOT DEPLOY THIS VERSION OF HTTP/3 UNTIL IT IS IN AN RFC.  This
   version is still a work in progress.  For trial deployments, please
   use earlier versions.

Note to Readers

   Discussion of this draft takes place on the QUIC working group
   mailing list (quic@ietf.org), which is archived at
   https://mailarchive.ietf.org/arch/search/?email_list=quic.

   Working Group information can be found at https://github.com/quicwg;
   source code and issues list for this draft can be found at
   https://github.com/quicwg/base-drafts/labels/-http.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-34"/>
        </reference>
        <reference anchor="I-D.ietf-httpbis-semantics">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="September" year="2021"/>
            <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.

   This document updates RFC 3864 and obsoletes RFC 2818, RFC 7231, RFC
   7232, RFC 7233, RFC 7235, RFC 7538, RFC 7615, RFC 7694, and portions
   of RFC 7230.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-19"/>
        </reference>
        <reference anchor="RFC7239">
          <front>
            <title>Forwarded HTTP Extension</title>
            <author fullname="A. Petersson" initials="A." surname="Petersson">
              <organization/>
            </author>
            <author fullname="M. Nilsson" initials="M." surname="Nilsson">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>This document defines an HTTP extension header field that allows proxy components to disclose information lost in the proxying process, for example, the originating IP address of a request or IP address of the proxy on the user-agent-facing interface.  In a path of proxying components, this makes it possible to arrange it so that each subsequent component will have access to, for example, all IP addresses used in the chain of proxied HTTP requests.</t>
              <t>This document also specifies guidelines for a proxy administrator to anonymize the origin of a request.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7239"/>
          <seriesInfo name="DOI" value="10.17487/RFC7239"/>
        </reference>
        <reference anchor="RFC8705">
          <front>
            <title>OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell">
              <organization/>
            </author>
            <author fullname="J. Bradley" initials="J." surname="Bradley">
              <organization/>
            </author>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author fullname="T. Lodderstedt" initials="T." surname="Lodderstedt">
              <organization/>
            </author>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document describes OAuth client authentication and certificate-bound access and refresh tokens using mutual Transport Layer Security (TLS) authentication with X.509 certificates.  OAuth clients are provided a mechanism for authentication to the authorization server using mutual TLS, based on either self-signed certificates or public key infrastructure (PKI). OAuth authorization servers are provided a mechanism for binding access tokens to a client's mutual-TLS certificate, and OAuth protected resources are provided a method for ensuring that such an access token presented to it was issued to the client presenting the token.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8705"/>
          <seriesInfo name="DOI" value="10.17487/RFC8705"/>
        </reference>
      </references>
    </references>
    <section anchor="example" numbered="true" toc="default">
      <name>Example</name>
      <t>In a hypothetical example where a TLS client presents the client and
intermediate certificate from <xref target="example-chain" format="default"/> when establishing a
mutually-authenticated TLS connection with the TTRP, the proxy would send the
<tt>Client-Cert</tt> field shown in {#example-header} to the backend. Note that line
breaks and whitespace have been added to the field value in <xref target="example-header" format="default"/>
for display and formatting purposes only.</t>
      <figure anchor="example-chain">
        <name>Certificate Chain (with client certificate first)</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
-----BEGIN CERTIFICATE-----
MIIBqDCCAU6gAwIBAgIBBzAKBggqhkjOPQQDAjA6MRswGQYDVQQKDBJMZXQncyBB
dXRoZW50aWNhdGUxGzAZBgNVBAMMEkxBIEludGVybWVkaWF0ZSBDQTAeFw0yMDAx
MTQyMjU1MzNaFw0yMTAxMjMyMjU1MzNaMA0xCzAJBgNVBAMMAkJDMFkwEwYHKoZI
zj0CAQYIKoZIzj0DAQcDQgAE8YnXXfaUgmnMtOXU/IncWalRhebrXmckC8vdgJ1p
5Be5F/3YC8OthxM4+k1M6aEAEFcGzkJiNy6J84y7uzo9M6NyMHAwCQYDVR0TBAIw
ADAfBgNVHSMEGDAWgBRm3WjLa38lbEYCuiCPct0ZaSED2DAOBgNVHQ8BAf8EBAMC
BsAwEwYDVR0lBAwwCgYIKwYBBQUHAwIwHQYDVR0RAQH/BBMwEYEPYmRjQGV4YW1w
bGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIBHda/r1vaL6G3VliL4/Di6YK0Q6bMje
SkC3dFCOOB8TAiEAx/kHSB4urmiZ0NX5r5XarmPk0wmuydBVoU4hBVZ1yhk=
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
MIIB5jCCAYugAwIBAgIBFjAKBggqhkjOPQQDAjBWMQswCQYDVQQGEwJVUzEbMBkG
A1UECgwSTGV0J3MgQXV0aGVudGljYXRlMSowKAYDVQQDDCFMZXQncyBBdXRoZW50
aWNhdGUgUm9vdCBBdXRob3JpdHkwHhcNMjAwMTE0MjEzMjMwWhcNMzAwMTExMjEz
MjMwWjA6MRswGQYDVQQKDBJMZXQncyBBdXRoZW50aWNhdGUxGzAZBgNVBAMMEkxB
IEludGVybWVkaWF0ZSBDQTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJf+aA54
RC5pyLAR5yfXVYmNpgd+CGUTDp2KOGhc0gK91zxhHesEYkdXkpS2UN8Kati+yHtW
CV3kkhCngGyv7RqjZjBkMB0GA1UdDgQWBBRm3WjLa38lbEYCuiCPct0ZaSED2DAf
BgNVHSMEGDAWgBTEA2Q6eecKu9g9yb5glbkhhVINGDASBgNVHRMBAf8ECDAGAQH/
AgEAMA4GA1UdDwEB/wQEAwIBhjAKBggqhkjOPQQDAgNJADBGAiEA5pLvaFwRRkxo
mIAtDIwg9D7gC1xzxBl4r28EzmSO1pcCIQCJUShpSXO9HDIQMUgH69fNDEMHXD3R
RX5gP7kuu2KGMg==
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
MIICBjCCAaygAwIBAgIJAKS0yiqKtlhoMAoGCCqGSM49BAMCMFYxCzAJBgNVBAYT
AlVTMRswGQYDVQQKDBJMZXQncyBBdXRoZW50aWNhdGUxKjAoBgNVBAMMIUxldCdz
IEF1dGhlbnRpY2F0ZSBSb290IEF1dGhvcml0eTAeFw0yMDAxMTQyMTI1NDVaFw00
MDAxMDkyMTI1NDVaMFYxCzAJBgNVBAYTAlVTMRswGQYDVQQKDBJMZXQncyBBdXRo
ZW50aWNhdGUxKjAoBgNVBAMMIUxldCdzIEF1dGhlbnRpY2F0ZSBSb290IEF1dGhv
cml0eTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFoaHU+Z5bPKmGzlYXtCf+E6
HYj62fORaHDOrt+yyh3H/rTcs7ynFfGn+gyFsrSP3Ez88rajv+U2NfD0o0uZ4Pmj
YzBhMB0GA1UdDgQWBBTEA2Q6eecKu9g9yb5glbkhhVINGDAfBgNVHSMEGDAWgBTE
A2Q6eecKu9g9yb5glbkhhVINGDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE
AwIBhjAKBggqhkjOPQQDAgNIADBFAiEAmAeg1ycKHriqHnaD4M/UDBpQRpkmdcRF
YGMg1Qyrkx4CIB4ivz3wQcQkGhcsUZ1SOImd/lq1Q0FLf09rGfLQPWDc
-----END CERTIFICATE-----
]]></artwork>
      </figure>
      <figure anchor="example-header">
        <name>Header Field in HTTP Request to Origin Server</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Client-Cert: :MIIBqDCCAU6gAwIBAgIBBzAKBggqhkjOPQQDAjA6MRswGQYDVQQKDBJ
 MZXQncyBBdXRoZW50aWNhdGUxGzAZBgNVBAMMEkxBIEludGVybWVkaWF0ZSBDQTAeFw0
 yMDAxMTQyMjU1MzNaFw0yMTAxMjMyMjU1MzNaMA0xCzAJBgNVBAMMAkJDMFkwEwYHKoZ
 Izj0CAQYIKoZIzj0DAQcDQgAE8YnXXfaUgmnMtOXU/IncWalRhebrXmckC8vdgJ1p5Be
 5F/3YC8OthxM4+k1M6aEAEFcGzkJiNy6J84y7uzo9M6NyMHAwCQYDVR0TBAIwADAfBgN
 VHSMEGDAWgBRm3WjLa38lbEYCuiCPct0ZaSED2DAOBgNVHQ8BAf8EBAMCBsAwEwYDVR0
 lBAwwCgYIKwYBBQUHAwIwHQYDVR0RAQH/BBMwEYEPYmRjQGV4YW1wbGUuY29tMAoGCCq
 GSM49BAMCA0gAMEUCIBHda/r1vaL6G3VliL4/Di6YK0Q6bMjeSkC3dFCOOB8TAiEAx/k
 HSB4urmiZ0NX5r5XarmPk0wmuydBVoU4hBVZ1yhk=:
]]></artwork>
      </figure>
      <t>If the proxy were configured to also include the certificate chain, it would
also include this header:</t>
      <figure anchor="example-chain-header">
        <name>Certificate Chain in HTTP Request to Origin Server</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Client-Cert-Chain: :MIIB5jCCAYugAwIBAgIBFjAKBggqhkjOPQQDAjBWMQsw
 CQYDVQQGEwJVUzEbMBkGA1UECgwSTGV0J3MgQXV0aGVudGljYXRlMSowKAYDVQQ
 DDCFMZXQncyBBdXRoZW50aWNhdGUgUm9vdCBBdXRob3JpdHkwHhcNMjAwMTE0Mj
 EzMjMwWhcNMzAwMTExMjEzMjMwWjA6MRswGQYDVQQKDBJMZXQncyBBdXRoZW50a
 WNhdGUxGzAZBgNVBAMMEkxBIEludGVybWVkaWF0ZSBDQTBZMBMGByqGSM49AgEG
 CCqGSM49AwEHA0IABJf+aA54RC5pyLAR5yfXVYmNpgd+CGUTDp2KOGhc0gK91zx
 hHesEYkdXkpS2UN8Kati+yHtWCV3kkhCngGyv7RqjZjBkMB0GA1UdDgQWBBRm3W
 jLa38lbEYCuiCPct0ZaSED2DAfBgNVHSMEGDAWgBTEA2Q6eecKu9g9yb5glbkhh
 VINGDASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAKBggqhkjO
 PQQDAgNJADBGAiEA5pLvaFwRRkxomIAtDIwg9D7gC1xzxBl4r28EzmSO1pcCIQC
 JUShpSXO9HDIQMUgH69fNDEMHXD3RRX5gP7kuu2KGMg==:, :MIICBjCCAaygAw
 IBAgIJAKS0yiqKtlhoMAoGCCqGSM49BAMCMFYxCzAJBgNVBAYTAlVTMRswGQYDV
 QQKDBJMZXQncyBBdXRoZW50aWNhdGUxKjAoBgNVBAMMIUxldCdzIEF1dGhlbnRp
 Y2F0ZSBSb290IEF1dGhvcml0eTAeFw0yMDAxMTQyMTI1NDVaFw00MDAxMDkyMTI
 1NDVaMFYxCzAJBgNVBAYTAlVTMRswGQYDVQQKDBJMZXQncyBBdXRoZW50aWNhdG
 UxKjAoBgNVBAMMIUxldCdzIEF1dGhlbnRpY2F0ZSBSb290IEF1dGhvcml0eTBZM
 BMGByqGSM49AgEGCCqGSM49AwEHA0IABFoaHU+Z5bPKmGzlYXtCf+E6HYj62fOR
 aHDOrt+yyh3H/rTcs7ynFfGn+gyFsrSP3Ez88rajv+U2NfD0o0uZ4PmjYzBhMB0
 GA1UdDgQWBBTEA2Q6eecKu9g9yb5glbkhhVINGDAfBgNVHSMEGDAWgBTEA2Q6ee
 cKu9g9yb5glbkhhVINGDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBh
 jAKBggqhkjOPQQDAgNIADBFAiEAmAeg1ycKHriqHnaD4M/UDBpQRpkmdcRFYGMg
 1Qyrkx4CIB4ivz3wQcQkGhcsUZ1SOImd/lq1Q0FLf09rGfLQPWDc:
]]></artwork>
      </figure>
    </section>
    <section anchor="considerations-considered" numbered="true" toc="default">
      <name>Considerations Considered</name>
      <section anchor="field-injection" numbered="true" toc="default">
        <name>Field Injection</name>
        <t>This draft requires that the TTRP sanitize the fields of the incoming request by
removing or overwriting any existing instances of the <tt>Client-Cert</tt>
and <tt>Client-Cert-Chain</tt> header fields
before dispatching that request to the backend application. Otherwise, a client
could inject its own values that would appear to the backend to
have come from the TTRP. Although numerous other methods of detecting/preventing
field injection are possible; such as the use of a unique secret value as part
of the field name or value or the application of a signature, HMAC, or AEAD,
there is no common general standardized mechanism. The potential problem of
client field injection is not at all unique to the functionality of this draft,
and it would therefore be inappropriate for this draft to define a one-off
solution. In the absence of a generic standardized solution existing currently,
stripping/sanitizing the fields is the de facto means of protecting against
field injection in practice today. Sanitizing the fields is sufficient when
properly implemented and is a normative requirement of <xref target="sec" format="default"/>.</t>
      </section>
      <section anchor="the-forwarded-http-extension" numbered="true" toc="default">
        <name>The Forwarded HTTP Extension</name>
        <t>The <tt>Forwarded</tt> HTTP header field defined in <xref target="RFC7239" format="default"/> allows proxy
components to disclose information lost in the proxying process. The TLS client
certificate information of concern to this draft could have been communicated
with an extension parameter to the <tt>Forwarded</tt> field; however, doing so
would have had some disadvantages that this draft endeavored to avoid. The
<tt>Forwarded</tt> field syntax allows for information about a full chain of proxied
HTTP requests, whereas the <tt>Client-Cert</tt> and <tt>Client-Cert-Chain</tt>
header fields of this document are concerned
only with conveying information about the certificate presented by the
originating client on the TLS connection to the TTRP (which appears as the
server from that client's perspective) to backend applications.  The multi-hop
syntax of the <tt>Forwarded</tt> field is expressive but also more complicated, which
would make processing it more cumbersome, and more importantly, make properly
sanitizing its content as required by <xref target="sec" format="default"/> to prevent field injection
considerably more difficult and error-prone. Thus, this draft opted for a
flatter and more straightforward structure.</t>
      </section>
      <section anchor="the-whole-certificate-and-certificate-chain" numbered="true" toc="default">
        <name>The Whole Certificate and Certificate Chain</name>
        <t>Different applications will have varying requirements about what information
from the client certificate is needed, such as the subject and/or issuer
distinguished name, subject alternative name(s), serial number, subject public
key info, fingerprint, etc.. Furthermore, some applications, such as
<xref target="RFC8705" format="default"/>, make use of the entire certificate. In order to accommodate the
latter and ensure wide applicability by not trying to cherry-pick particular
certificate information, this draft opted to pass the full encoded certificate
as the value of the <tt>Client-Cert</tt> field.</t>
        <t>The handshake and validation of the client certificate (chain) of the
mutually-authenticated TLS connection is performed by the TTRP.  With the
responsibility of certificate validation falling on the TTRP, the
end-entity certificate is oftentimes sufficient for the needs of the origin server.
The separate <tt>Client-Cert-Chain</tt> field can convey the certificate chain for
deployments that require such information.</t>
      </section>
    </section>
    <section anchor="acknowledgements" numbered="true" toc="default">
      <name>Acknowledgements</name>
      <t>The authors would like to thank the following individuals who've contributed in various ways ranging from just being generally supportive of bringing forth the draft to providing specific feedback or content:</t>
      <ul spacing="normal">
        <li>Evan Anderson</li>
        <li>Annabelle Backman</li>
        <li>Alan Frindell</li>
        <li>Rory Hewitt</li>
        <li>Fredrik Jeansson</li>
        <li>Benjamin Kaduk</li>
        <li>Torsten Lodderstedt</li>
        <li>Kathleen Moriarty</li>
        <li>Mark Nottingham</li>
        <li>Erik Nygren</li>
        <li>Mike Ounsworth</li>
        <li>Matt Peterson</li>
        <li>Eric Rescorla</li>
        <li>Justin Richer</li>
        <li>Michael Richardson</li>
        <li>Joe Salowey</li>
        <li>Rich Salz</li>
        <li>Mohit Sethi</li>
        <li>Rifaat Shekh-Yusef</li>
        <li>Travis Spencer</li>
        <li>Nick Sullivan</li>
        <li>Martin Thomson</li>
        <li>Peter Wu</li>
        <li>Hans Zandbelt</li>
      </ul>
    </section>
    <section anchor="document-history" numbered="true" toc="default">
      <name>Document History</name>
      <ul empty="true">
        <li>
          <t>To be removed by the RFC Editor before publication as an RFC</t>
        </li>
      </ul>
      <t>draft-ietf-httpbis-client-cert-field-01</t>
      <ul spacing="normal">
        <li>Use RFC 8941 Structured Field Values for HTTP</li>
        <li>Introduce a separate header that can convey the certificate chain</li>
        <li>Add considerations on header compression and size</li>
        <li>Describe interaction with caching</li>
        <li>Fill out IANA Considerations with HTTP field name registrations</li>
        <li>Discuss renegotiation</li>
      </ul>
      <t>draft-ietf-httpbis-client-cert-field-00</t>
      <ul spacing="normal">
        <li>Initial WG revision</li>
        <li>Mike Bishop added as co-editor</li>
      </ul>
      <t>draft-bdc-something-something-certificate-05</t>
      <ul spacing="normal">
        <li>Change intended status of the draft to Informational</li>
        <li>Editorial updates and (hopefully) clarifications</li>
      </ul>
      <t>draft-bdc-something-something-certificate-04</t>
      <ul spacing="normal">
        <li>Update reference from draft-ietf-oauth-mtls to RFC8705</li>
      </ul>
      <t>draft-bdc-something-something-certificate-03</t>
      <ul spacing="normal">
        <li>Expanded further discussion notes to capture some of the feedback in and around the presentation of the draft in SECDISPATCH at IETF 107 and add those who've provided such feedback to the acknowledgements</li>
      </ul>
      <t>draft-bdc-something-something-certificate-02</t>
      <ul spacing="normal">
        <li>Editorial tweaks + further discussion notes</li>
      </ul>
      <t>draft-bdc-something-something-certificate-01</t>
      <ul spacing="normal">
        <li>Use the RFC v3 Format or die trying</li>
      </ul>
      <t>draft-bdc-something-something-certificate-00</t>
      <ul spacing="normal">
        <li>Initial draft after a time constrained and rushed <eref target="https://datatracker.ietf.org/meeting/106/materials/slides-106-secdispatch-securing-protocols-between-proxies-and-backend-http-servers-00">secdispatch
presentation</eref>
at IETF 106 in Singapore with the recommendation to write up a draft (at
the end of the
<eref target="https://datatracker.ietf.org/meeting/106/materials/minutes-106-secdispatch">minutes</eref>)
and some folks expressing interest despite the rather poor presentation</li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIANuL8GEAA6196XbbzNHm/76KHr8/IsUiRa22lC/5Ai6SaJvaV2dyPjeB
JgkRBGgsoiiPcy1zLXNlU1XdDTRASpaV5Jw3lkigl+pantpatVqNpX4ayH3+
rhX4MkxrLRmn/Ojy8pQfSeHJmB/4MvDeMdHvx/Jhn5ceoyeYF7mhmMAYXiwG
ac2X6aA2StNp309qrnrchcdrAxyp1thgnkjh6R9t57Lzk7nwyzCK5/vcDwcR
Y/403udpnCXpZqOx19hkIpZinzvTaeDDs34UJlyEHj+XIqhd+hPJZlE8HsZR
Nt2nhbOxnMNH3j6rcVwG/KNWwXEV/gBHkYwlKYzyPyKIQljLXCYsmYg4/Z/v
WZTKZJ+HsJQHGWZyn3Fuj855Op/CKzcwqx8O+SF+B5+OIiQBTpjsr6/jv7Nh
PYqH6/DdRPgB7M8QpjYb/n22hV/CdyJ2R8V7gZ+kSV19ue7AV/6DTNZPsz5s
ft0eAIeN5TQqXh366Sjr191oomenf2ryMZVhgmRbD0RfBsn6wpkw9WrNT5JM
1uipfb74FBNZOopiJEgN/uNwYECoZp23xGQK7wT0oWKFZuyLsPwF7EiE/hMd
4T4/Rdp1PZjCT+f0vVRU6rv6pb9P4RFfP4HbKs/bq/Omn4yiqTVrzx9L+1OY
EjhnLGBke4pJnx75u3yQ3zM5iLJ6X9L3cYSiID0/jWLGWK1W46KfpLFwU8Yu
R37CgdezCfKSJwd+KBMlKjmN+UgJDREs4elIpFwEQTTjgl9+uWCpjCd+CCSA
zYM4yTiRfBpHj3OeRtyNwgcJP43kEoYl6YgnRD0eDbhgkyzNYOx5DY8FqYSP
eTgNjhRKlx6FcXHAKPaHfsgTGcOkMBasByg6gQdACtg0hj27qegHEngV3o3r
avcT3/MCEJY/eDdM48jL1KA//rB//cmYwwfCj4O5GdST0yCaE6GmIoVdhxxW
T8S64MIWZaApLHEkHqS1TkZUtZ7TC0944qe8L0c+KABRpSAS2xAYTgbpXRAi
4YM4mmjCJnV+OTLvwQqE68ok8XH7ml5+iIuWKakaz09gF+4IlIQ+mBgZByTV
PA5LjaMp8HxaJfUMRIvIDd8+qK9x3hRWJT0GM6D2UsspvQiLiiVoIeA0P4aH
gbbWKvtzsxNaID4ahcGcgap0R3SM6Qj00nBEqyvRSc3VF+5Y4tZkCiKRIEel
yN+o2+AXZh0gDg4fw0kAs/FoKmDrxK56AbNRBEwzlgtEUeRV22G4zETiQ8kU
TgPOR6B8mDXO9e6JhemkqiNwP01kMKgzJ9CvKW7C4wuSiGcJSQPIOK4cRukD
baUMrYFwDQvCsMbwo6rUEC8VggjbAqqC1oB1F4wMUyPV85nUCpmZpsyearY6
6hG5TD58HDmDV4lbwmzShz3DsTyIGPS+DxMnmTtCqoU1+BUoitYB+SgDmq7h
6lOlmAKwGfGca96Cr2xBCiIBpBGBCF1UQrgqH9hqjVYNn8BYCY0FujCA5cOC
c4IjN8pHV4KyCIewb1AbDyKASdcU/RaVlqWacHIfrCyYyRSsdlIclJpZbc8V
yBqLGisawOaIw0AaEmYrQ9GPsvQ5rYmH5aOUlEgw9N06v8D56Gc28YejFNbg
BpkntZwZIgBBXZ/sJxAyA9OA78DKhmu08D6oIiQk2U449wjEKmEwqxtFYzw1
EAZhL2mNF/yRTJHfQPUBGX0v1+1ECT2wUlUMn8QBcoHNZcTebQhHgwRFeQC+
mZP2MQrK7J9pKk6UIuzClDHZLFg0PJqQtEtSCTbVCpalPSFrAcXAdIBxBA5a
W8LyuJzEsmwvnRqz91E2Wot2oM4dY2lmYq40lz048JmaUhJnmTXCuJ4ghQ/6
M0vw2MIorBESFLGXW21YsIhjssSlZa0gPwL/chm6ER7OKmpzPKcH3wPtA7Ic
p8S9sQTq+Ur3kC3TupGRYkEcYUyKt9RC46HDU0kUZLQhEmTez1JGhimaylj0
/QCAUaF8QjghUOlASxBNDw4igMc8pBMoXDo2FyBZHwhOuoU2AjAHHoSX4Rlt
WtQoSJtIrR++C4hZFG3dUYQKw+JemG4CqIevBAC/2Ax3SJQkUKbsWJbASoBW
+DOczMAfZjGaqTWwHj4wuyIcGaESRyP4B5UDi5PeGg4wAihV5XogFB2I9FaR
MWaAHWvjMJrhwee4hpGJBuuo6O0nmoHQpLluFse440EWkv4XRFk3ymATsP04
AhElA4a08AfzV51ChXBJvQohRTJFZYYLMizoPwGTziLFMyUsuca/Wa7XN1LX
9ie11kj44bc1rilKeJM/jzdXLi/PT1e58IjhWW67E1yZZkkDEsrARAGI0mr0
eYMWyyRKHqioUGlxeL2mEPxS7YxKjJ57HsxaGK5k0g1ewK3poY1ixa3V+clU
HWUwJ93EllDLXjcvrdtepYvPKhYGFcPKurq6yeI9LcMyRPZLlhCUadsG1AYp
D+jsl1qxkrnzw+cM2s3IJ+AH2gcEEnkSj9dXVKBjR3sEOwDfJynREgm2HB3x
lWmEsMJX2Ap1BdqU1zkfpUkmq8pEJG5EEHPhTL6VGJ6TSqep1SHywJ/4qdKX
pBHw4Eu6M6dn5fxI584AOIE6QPZGbDh/jocUedmiB0VMBU7hH3/wc8uA8uNI
K0akXwutDi05UUBvDGYPgxEJf9e7urh8t6b+5ccn9PN55+yqe95p488XR86X
L/kPTD9xcXRy9aVd/FS82Trp9TrHbfUyfMpLH7F3PefunQIb705OL7snx86X
d8omlZRQTOa2r10eIBHSRyTgASRu7PeVBW22Tv/f/93Y5j9+/K/zg9bmxsbe
z5/6l48bH7bhlxlwgZqNdKr6FYE9Kl4plM8ZBGCDpn4KAGUNkSx44TP0mWMJ
lP3zP5Ay/9zn/9V3pxvbf9Mf4IZLHxqalT4kmi1+svCyIuKSj5ZMk1Oz9HmF
0uX1Onel3w3drQ+JgS5JLUcgt3PGTkcxgV60nq/E0WAIX1CYucHVPqACWvah
w4HHcqBUj3aPCPLO8Cj6oC/xsLTqYPqZEDVQQAvUclZZFGHNKtQ1m9GiB8gd
ROa2vtPYK+1PsdLO5scGsBIyEdlckFhAJejzFrrWjWLlQiJEYcapRjEjoG28
blgYwM9hBIqLpFtUPTwFdhHFZJOpVuZMeVjWY3WO+JhcK0BIMUJqNIGk22BB
OOaPH/+NUrC9vUsi8d+0D/oFaW7AdrLgUiZS69uWfc6oQ4rfr2UMaIMDikrE
ENweLyOYgm+N4NFkhG43vqOxOy8syoN6tTKBHhBjPgd+iP6sl48OIoiwY30T
iZLGgJsohsI36vhJTkyg1MqPHxeajHv1zfoGkgL3/WFnG85vVYeUopHf9/Mx
tvAs05q17DL3aDJ+wBHq/CiaIVpRGgR1lOU3KtaOCnjFMepBbtQrPNCQsNX6
Rn2DqSk/bG41lP6KpU1DdPtAB+IXaFKVzBBIKrjattF9QRh3EfPX+UI0C+CD
UEgr0n6vzXRMgLMbw+uu9KcK1dBp5tI/eDZGqGIhz1lnZeEzjCT4Kthn+GYi
AeQAP0xASdh6n1jYqI06xgEXUgMqAnWqNAhy53mGcOfHH8qaJz8XI6eJP1Qh
Opx6EGF8FF/UL6zp2CpwdRYT6X1kD/Xtz5+EfH/8IFBWMx+WvJG1kgf3H4yl
ElxdCDtGFdeNMQvU7LN9BQrmi3jYWhDxdL+0Xu094hIKoSHsteho58GAhaUt
epal5SkcXF3k8+CXvwR+2Vt29HtLB9vZ0b63wleaZxZxjfII7a1QxPEijTOK
mHmKe3lzDrJ7gZIaoldrqbat+lZ9B3eJemlvewM1W6EllM+gadAHEAnchmLN
UAZ5u3NufFK0bd3Lq/rt7l6jvrG3h2DpZQNYZ2Bz5GAA61hTu5pIEVoWRE+H
kyz3g3VwA1XS7jZbQa5BEBCAVPE+aEsMCiZTgXE/NIQRSRmcNMZJkJrwcALK
T/ssOAjolelIAJxfJfnDIKNC42T1XYAyaBFh2T6NhW/DcQE21vC7fA4YrqaA
XpJGeBRm2RT6TOUjCiNXIrpmwp7E9lEoywqqOK4dyw5t7378+dPEFkgpwqY9
DEiJOAA+jSZT4GFUgBq0LGULbtjiL9wf8CQCWAR+hA8gFtBykg1gO36OpqYB
kJN9q9VqK83OYff4/wA6XOWtzvll96Dbci478M03Nd23/W+kM8GDwMCCdSq4
IwrGIegags2NFSgo5ReA7BMlCi+mbHMNDAq4G2rsFCJxSeX9IjxQRPvWigA6
wzB/kgvxMmv7IPxAWHkU4/Ha1s8EJdnC+m0HULvPyhl8NqZgGeBXapyyAiTu
CHkXaGozgSak9nBI+BEKAppRck+OCfrXrMQov1AfegineXwA8+4z9q9//YuV
TvGvPBnUlHjTl6TjSqpGk8iSdZFURcKEJ1GVsMVgTdXNJocNlTtQ0ACkIpmD
nGr8MNiyInPxlM7m0NaImBxVTyAXD1Tvg5ar7Du47AW1NnGHNiQz8ptPTklC
wTFFrhIjMFxC+gsDeGDDg9SfIusRTCRdYiBYVVyU3VsqNCVg8Z8THXANVZbs
3zCw5cjo74jac3tX22QvCFxJcdsilttpvWK5EC5/rUBiPDGpmGqVkYlinZrB
zBMdfx+jSegc+t7C4JZ39ILE6+0Tq35BVvql2HcwaoxaVy+fEQfmKoD/jgpY
KrVsudSqw/nTSwpDb4bUBq6qUBrLop1vE3ymBJ+/JPjI3S+LJzfiyZaIJ+cH
GNtXy0PrHGunf5rFGPtPyPQqVqCo5oMA9hzKKEvQUibA8ClNTDHDKJ8LK0VS
gcBOk3Tgx0nVFSCGoVXrSFCecFfPzV+CuTkr6nGWadq/cMzKW46OLcYvzYlo
x59MpId2X+VbXamyjUizpnRFVhYcOzhdiTxgRRWcqTuKYozLYgYKnPx+ltLi
rdzRGli1hfCpzj8ieCsNRScPo0WABkupe1JrayynTw5eTTY/4SpHA8elozww
5DwfyNYGGJkwAQFk14l49CfZhBscRymYtbxwQpO0j6cjpyJW4QJUB8B9pXD2
YxqLELmogk+ppKLvpxTwIUBGmViyIlVPV7u3iYkrZWlAhUFW1hWV9LR4LSYH
GTeyYErY0iQN0W6EmX8dhEH98UIE0I4l/LKuSJ8YYvSFmPfSfAWI/FWS45FU
uqPQx5IQVclDGjFP8ZlQm1XvEE1NtJxZoceCLgWWQV8L1USs4hTmeCntRnZX
WzdhBmUq1+JhzYLKaeQEU+eRqXW/knYFUFVky10RSuCWIZcVA4ziUhhQBcWN
kUys8UrHMFUVLiALwDG6VAXlrCwKXJXg+VgPoi0Ts7W2iT9lIMvg6SCRKntC
aj6XfGZWzVIlNjMB02QCUGiINlQWcHkMinyhF1WitkE6C8S5vSS9lbUlwNaE
e+pss8676JPlrIb5Ye2XGwWokNWL0bJ8pbiG6mKXmk093HOLxHGqwak626pz
JzSJZkIJepgybYBzfjV/Yq1VZ68CLFwBtUlAVHGBwSbKw6TMO/wbz2LUrZhG
BXkissO/M0w7a9iU22MnXBw010JiYdk41C8ppy1FLO+p9k273hpPbDcaOaYA
8T03IIQKCyLKNixIZx6L0WK9JChbTVGgDgUoaelRQ6pEhCBVTwpUEt0obRAq
UQRdwYrTS5Yf3zMp+cr5gRePQdeIGZavEL+qe/PYV3NpNp4yvbhJosLr5M2a
yZPK+kgMcWhHpxTutGTHSoQiJV+IMq+ZgMliKpYSTAuZWK0RYZcHiiPzdDVl
FHUUGJeKYCjGL3K3UHjeUllamvCv1OfmMX0VCCMthycO0ADgERrk35bQOr/w
J+CZxYikTI2kWSxTRW9vk33UgWa5QKmbkc7el+ID5VHNSVeRv8mhJDKAwyYk
rmSPrcj6sG6KudRneWlhXilbywsEvdXKs7RTHQXEaEHogo2SBIH00P055b6Q
7b+18MtaS42GRfc1igh+o8KqvixyBar0Qi0XMz2xJKE3DkyS9RNywKzS3NyK
JWJSoQvT9FCUsxYEqu1aYC9ChYp6c+q1OutSFADlAJ22LKSgaUFEE1X8ZtXQ
f7NqonLLiHPli6HvydHRABbLK0nulIoDFTjEX1Uds7AVh562P2cIaBOMnJov
y8xBE1b3o1cG7PDtz98oydMu4BqcDQZzY12u/eOPAsr9JDxcCp+0Ct+NIZWe
sbxVdjShTlIHIrRFfY6QRpSwKdghZpxEmRhZ1tylIt9Hp07rs4km7aDnjQx1
Zj7t1tp1aqYAD8mtfZ+CZgXfnCLbk4iMCiwCvS+19j8llleMxTXavXwkk09q
sQSf6RCx2A5QSeZKZnu0UoeNAeMhaxNFlNflZXkoR5dbwxNP+dmVYmgAnn0K
RsY6JWsKbUx9O1hQ158q5aO6EFA/+1OKOFkFOkZIElnE/1HzuapaEJwxf2hi
O9bSA/DY8KwAJMRSJIbZ7PV6c2B13+WUaNQiE5tFcS+SyhR7ERkKFEBjzQZY
3U91/qHEGYEQmNsPZmKe5GlzVokpYuAB1i6CNQ6cRAlbPEQ0MrHymM1RLSzN
4uJmELljUOBPEl2IolvC5GLJeQDdPpR5uKJPr9BkPqlIzBDo2iTlcxIlcd0s
RztbG3xFY5xKMvUyivgXnGAViwJTdE0xjzWlsFSe6zCZjt2djzsIMNuv5p3E
hPYqgQhKXq2xuGAbPAqs4NVeXQG01WlgU4vyYTU9jFdeoguuos6cikhrebfK
rp7TDpRUshm2aKlhNLv3gG/mHGgWgXZqqnLcC+tRqoLrYodcSTR+/mS6tH99
a1FLYDMVBvCSEZWFwgSo+PMMulVpZyivg6tq4rLfkCCvIEuADIMjZ39KrIa1
L6gKrd0JzetY+ZCaRhRND4w/5PkoMInJRGDxPvpHIikfl71WAs0VFiD9D3yW
xRhwXtD+iXR/2tFJc0oLXrtyxY2ZpEr5HL9WSgwBC5vCW/h5qMot8u6QtSoO
BW0M0mDS/UWJSJ56YFQPiQehxqdUph2BGOj+De1XvKr2tBT0qHBoni0VqapZ
VClYUPwigQWOTOwKJYo8cwLcOvqRGs4WgwGGmsgGLk+vVdwZcsFj8uVAgaZy
muTeTCrGUoXWNIbIQnthAMIAU3Py+MPc+ytZZd2UEUsVRYhU1SmxILDIKTV/
KQ+JkgVJliOO33GKmCZhEbKzq8OZCusANi+Xd1DseIGvTMFquSTfzobAflUw
k55cVSEMTw4E2PNKzApFhWikxb1PgocGS7tZrOJJYFmNirgqqvB3sPiaH74z
erlUW16nxJLqu7BOycD8e4MjynvT50uoVyk4WslbvFBdyqJDTIyIuZKXAujG
uLB4AtuURiyXRIpLYrE9vUirMg40fb8QPFAhBzve4KcMcYvlbFtRCuN7Gzes
COSXTBqozhNc8MwHnmZFyNYoRzS8po1nwQ5i/SlCJiSYnarSNGemE0PlNbFD
IoYlpJoPtLiHckguibL3z5wjoR2GzPNuIHzQS2IgdSmuDoqHSC2seSg1IFCt
Aewf/p/abWDF8nGqOgdVKTa6gKDrQfFjEFsYTQKUNv0ccEiqc2xNhbuxMIpC
X2BnoslEqQQfQ6eJSZ8JLNfEKKveB52saayhfhqMmumMCg4CysUtw9DnxTPv
CcKYC5oZjBgMMdWYMinA7nkw9dRoFjvsSE07hRrDlhE/T+xUIs7Tok/ccKDm
T5FHQUGxY+Vj7KMPmdM9mLPcVOftWaXOByUidhOVaayZyLTSvccQs5pENh0n
tWXltYJWW1feXaUjq8vpyn5pTlWKRD4KLI9cs5JmJeOmO5lwfYWjDIeAxkbX
siutbmpjF1X7cy0oVetoumuYarYJq94ScGiAHZBC9xKRPKjeReCTKVVJ621Q
Mw9GwfPCX/MgReaLAqklqXCT7zQpc6VAi8aXkm7LmyGUJnTJHaQ+p4U+19ye
1BnponKjHH49kTLNwV/OM4kk8Aikt/Ic1LmXiy6jxmvn2KngMOWxoCOhvO5j
jCmcyyFm9MwTpwH4ZTglfqqbIopwPqyAgmg6EPHuaA7iTgUOlxRAgBfAxKeR
C4pzBWdaVVMxe6r5u7ySA0TTBszm9odETsjvTH7+3Gfsz3q5qlffYhz45oJ8
nX1EdvAKfIGfaeHQNbO6sm8/zwMk6NUP+P/+R6ny75/sv/rx316YTbHpf3hO
6pZHtsMj6yjhIxsv+Gg+RZWREiTVcqmD18IGeqZE3g6akKOfe06pXMzc/fih
h6xR0kF3YhQNy6RJX1nfmisCFAGreAWsD2Kg3PVe1vulWjkwS/OHWZDOf1QC
2nVeVAVippTp0jeUuBk2NFNholXtAd5KkaiyvX5VNVGe7Cd5hRhaD8TclMZP
REoW2lQTkCzXVTVFDf9HFXuVYr1ajfW63eb3dqvlXO0OnVm36Qy7zeaT87k5
HH4fje9PTs/O2s69s9s7T2aHZ3ft67Ozz+3mp97X27PQnTebzLs9j77e7DTE
zfHIO7x6PHxyvjaHx9dNp9frjB+b3U6QeYfX8/7N9VjcHDS+XjTbZ5eOPJg1
5r2288h6l2fz3v3VRu/pWNCHl85j776Xf9ZzGo+tJ+eTGdQZf2r3Dsazzuzu
6HP0tcue7hst5+yui7/Az23nzG2fDZ3Ox7vw9nYgroaTsJee3F6td0P3RgTn
I9mPbyfuuPXxwRt+2piynabcOVjfumt9BO322Nt+P97o7YqO0zlwD5/Gn/zj
+e6nj9vzD9lTtNfbPZ73jpxZC2lx3rhsOt0Zc9rOAJd3dNHrHLadm2HzfLJ1
c/9FbH0M+p27Vua3Tt208VVcdNqbbeeEnj372HQGHzuwpRZrJg7uB0cMms5s
1hrCdmZ3zebZFczVnR2p2c6ds6P1ZrM369x1Tu8m5/dnh9fbdzcbM9Y/vMru
NvfSnhMdtlrfDy9623s4stMYOr3OVavbPPLEerzxIL7sHm5dB/6X7fW2v3v3
uXG22+/dS3Yxbm15B62Tk+bHS8fvOI/r46OL5nYGftzXxvHtTrxzK+LJ6bgx
m2Rzr3kdXW2PmtdfN+aj8V8Vg3WO24vs9SvW27kH1rvLctY7uK+yXvOmd5Yo
cp+dHXZmn66vnjr9XnN8yJyNq05rOLu4PLxufNrqDc9urxvi8BrYLbi/uz0P
ehfR7LNDL7bbrYOcZw3LMs2zw6vJ3oPXUl/0tz5NvaPx7GjkHvfunVnvstPo
3XeegCVnN/jZE332iJ8x+vAF6fiVcLDl0tH82mv2DptzdY7OsJOfKbDJkdPo
Os1Pg/fC2dlm562d6fyLc74zH9xe302Op0Pvfevw6rI93fx8cjhyG8PPextP
j6MjmXTuxt7teHqxeXX88TMo//fzo/SGta63xuNRKxwezh8+nH+//3rfHPea
jUMgrtcent00X+blASsz/mXH2TzbldL9nO0N9+b9nWHQH49G191j+P6Cnj3v
EeO32s4h8jOD/Tk9Z1vNOOs012dnHeSHUZUXhsefnHbzENlzZ/rlAbTF+fn4
MWKTrpO2u7PhXvvDsLXx+PTYDLbjzY+dp8nFycbUbXXPWp+uLkbTi9uTvaN2
96x3NTza3Rsctzu9o9v21jk7v90Znn4YZ9nm58Pe8K//BkO3msjQYm4Y+pPz
+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

-->

</rfc>
