<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-client-cert-field-03" category="info" submissionType="IETF" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.1 -->
  <front>
    <title abbrev="Client-Cert Header">Client-Cert HTTP Header Field</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-client-cert-field-03"/>
    <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">
      <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">
        <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"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      </section>
      <section anchor="terminology-and-applicability">
        <name>Terminology and Applicability</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"/> 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="TLS"/>
          <xref target="TLS1.2"/> 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="RFC9113"/>) and
prohibits TLS 1.3 post-handshake authentication <xref target="RFC8740"/>. However, they are
sometimes used to implement reactive client certificate authentication in HTTP/1.1
<xref target="RFC9112"/> 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. With post-handshake authentication there is also the possibility, though
unlikely in practice, of multiple certificates and certificate chains from the
client on a connection, in which case only the certificate and chain
of the last post-handshake authentication are to be utilized for the header
fields described herein.</t>
      </section>
    </section>
    <section anchor="headers">
      <name>HTTP Header Fields and Processing Rules</name>
      <t>This document designates the following headers, defined further in <xref target="header"/>
and <xref target="chain-header"/> respectively, to carry the client certificate information of a
mutually-authenticated TLS connection. The headers convey the information
from the reverse proxy to the origin server.</t>
      <dl>
        <dt>Client-Cert:</dt>
        <dd>
          <t>The end-entity certificate used by the client in the TLS handshake with
the reverse proxy.</t>
        </dd>
        <dt>Client-Cert-Chain:</dt>
        <dd>
          <t>The certificate chain used for validation of the end-entity
certificate provided by the client in the TLS handshake with the reverse proxy.</t>
        </dd>
      </dl>
      <section anchor="encoding">
        <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"/>) where the value of the binary data
is a DER encoded <xref target="ITU.X690.1994"/> X.509 certificate <xref target="RFC5280"/>.
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"/>, 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">
        <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"/>.  Its value <bcp14>MUST</bcp14> be a
Byte Sequence (<xref section="3.3.5" sectionFormat="of" target="RFC8941"/>).  Its ABNF is:</t>
        <artwork><![CDATA[
 Client-Cert = sf-binary
]]></artwork>
        <t>The value of the header is encoded as described in <xref target="encoding"/>.</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 singleton header field value as defined in
<xref section="5.5" sectionFormat="of" target="RFC9110"/>, which <bcp14>MUST NOT</bcp14> have a list of values or occur
multiple times in a request.</t>
      </section>
      <section anchor="chain-header">
        <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
available to the backend application with the Client-Cert-Chain HTTP header
field.</t>
        <t>Client-Cert-Chain is a List Structured Header <xref target="RFC8941"/>.  Each item in the
list <bcp14>MUST</bcp14> be a Byte Sequence (<xref section="3.3.5" sectionFormat="of" target="RFC8941"/>) encoded as described
in <xref target="encoding"/>. The order is the same as the ordering in TLS (such as described in <xref section="4.4.2" sectionFormat="of" target="TLS"/>).</t>
        <t>The header's ABNF is:</t>
        <artwork><![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>
      </section>
      <section anchor="processing-rules">
        <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="TLS"/> or <xref target="RFC5246"/>, 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"/>.</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"/>.</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.
Access control decisions based on the client certificate (or lack thereof) can be
conveyed by selecting response content as appropriate or with an HTTP 403 response,
if the certificate is deemed unacceptable for the given context.
Note that TLS clients that rely on error indications at the TLS layer for an
unacceptable certificate will not receive those signals.</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>
        <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>
      </section>
    </section>
    <section anchor="deployment">
      <name>Deployment Considerations</name>
      <section anchor="header-field-compression">
        <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="HPACK"/> or QPACK <xref target="QPACK"/>)
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">
        <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"/>.
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="RFC9113"/>
or HTTP/3 <xref target="RFC9114"/>) should account for the additional size of the 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 anchor="tls-session-resumption">
        <name>TLS Session Resumption</name>
        <t>Some TLS implementations do not retain client certificate information when resuming.
Providing inconsistent values of Client-Cert and Client-Cert-Chain when resuming might
lead to errors, so implementations that are unable to provide these values <bcp14>SHOULD</bcp14>
either disable resumption for connections with client certificates or initially omit a
<tt>Client-Cert</tt> or <tt>Client-Cert-Chain</tt> field if it might not be available after resuming.</t>
      </section>
    </section>
    <section anchor="sec">
      <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">
      <name>IANA Considerations</name>
      <section anchor="http-field-name-registrations">
        <name>HTTP Field Name Registrations</name>
        <t>Please register the following entries in the "Hypertext Transfer Protocol (HTTP) Field
Name Registry" defined by HTTP Semantics <xref target="RFC9110"/>:</t>
        <ul spacing="normal">
          <li>Field name: Client-Cert</li>
          <li>Status: permanent</li>
          <li>Specification document: <xref target="headers"/> of [this document]
<br/></li>
          <li>Field name: Client-Cert-Chain</li>
          <li>Status: permanent</li>
          <li>Specification document: <xref target="headers"/> of [this document]</li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <displayreference target="RFC8941" to="STRUCTURED-FIELDS"/>
    <displayreference target="RFC9110" to="HTTP"/>
    <displayreference target="RFC9112" to="HTTP/1.1"/>
    <displayreference target="RFC9113" to="HTTP/2"/>
    <displayreference target="RFC9114" to="HTTP/3"/>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <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>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <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">
              <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 year="1994"/>
          </front>
          <seriesInfo name="ITU-T" value="Recommendation X.690"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC9112">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns. </t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="RFC9113">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield">
              <organization/>
            </author>
            <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="RFC9114">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop">
              <organization/>
            </author>
            <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="TLS">
          <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="TLS1.2">
          <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="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="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="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="HPACK">
          <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="QPACK">
          <front>
            <title>QPACK: Field Compression for HTTP/3</title>
            <author fullname="C. Krasic" initials="C." surname="Krasic">
              <organization/>
            </author>
            <author fullname="M. Bishop" initials="M." surname="Bishop">
              <organization/>
            </author>
            <author fullname="A. Frindell" initials="A." role="editor" surname="Frindell">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>This specification defines QPACK: a compression format for efficiently representing HTTP fields that is 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="RFC" value="9204"/>
          <seriesInfo name="DOI" value="10.17487/RFC9204"/>
        </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="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">
      <name>Example</name>
      <t>In a hypothetical example where a TLS client presents the client and
intermediate certificate from <xref target="example-chain"/> 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"/>
for display and formatting purposes only.</t>
      <figure anchor="example-chain">
        <name>Certificate Chain (with client certificate first)</name>
        <artwork><![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><![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><![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">
      <name>Considerations Considered</name>
      <section anchor="field-injection">
        <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"/>.</t>
      </section>
      <section anchor="the-forwarded-http-extension">
        <name>The Forwarded HTTP Extension</name>
        <t>The <tt>Forwarded</tt> HTTP header field defined in <xref target="RFC7239"/> 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"/> 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">
        <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"/>, 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 validation of the client certificate and chain of the mutually-authenticated
TLS connection is typically performed by the TTRP during the handshake.  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
origin server deployments that require this additional information.</t>
      </section>
    </section>
    <section anchor="acknowledgements">
      <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>Willy Tarreau</li>
        <li>Martin Thomson</li>
        <li>Peter Wu</li>
        <li>Hans Zandbelt</li>
      </ul>
    </section>
    <section anchor="document-history">
      <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-03</t>
      <ul spacing="normal">
        <li>State that the certificate chain is in the same order as it appears in TLS rather than copying the language from TLS</li>
        <li>Update references for HTTP Semantics, HTTP/3, and QPACK to point to the now RFCs 9110/9114/9204</li>
        <li>HTTP Semantics now a normative ref</li>
        <li>Mention that origin server access control decisions can be
conveyed by selecting response content or with a 403</li>
      </ul>
      <t>draft-ietf-httpbis-client-cert-field-02</t>
      <ul spacing="normal">
        <li>Add a note about cert retention on TLS session resumption</li>
        <li>Say to use only the last one in the case of multiple post-handshake client cert authentications</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:
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
skFyAAA=

-->

</rfc>
