<?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.10 (Ruby 3.0.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-client-cert-field-02" category="info" submissionType="IETF" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.7 -->
  <front>
    <title abbrev="Client-Cert Header">Client-Cert HTTP Header Field</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-client-cert-field-02"/>
    <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="RFC8446"/> <xref target="RFC5246"/> 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"/>) 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="RFC7230"/> 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 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">
        <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 single HTTP header field value as defined in
Section 3.2 of <xref target="RFC7230"/>, 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 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"/>.  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"/>.</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>
        <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">
        <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"/> 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.</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">
      <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="RFC7541"/> or QPACK <xref target="I-D.ietf-quic-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="RFC7540"/>
or HTTP/3 <xref target="I-D.ietf-quic-http"/>) 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 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 <xref target="I-D.ietf-httpbis-semantics"/>:</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>
    <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">
      <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 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">
      <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-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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
7fmY81ISNaUAQvLz554Qf9bT5YMsLMaBb87Jad1DZAePwBd4TQuHLh/XJZp7
eUInwfDMUP7vf5RKOP8p/msQ/+2J0ZhN/8Nj0lESyHa4ZV0WPrLxjhwvZqgy
UoKkWi51FsKxgZ7pFrGjXxSxyV3gVC2nYH/80K+sUfZItykV3fykSZ9ZqJwr
AhQBqwoJrA9ioDyGsqoxkvucMN32h5mQTmRVMhN1WZR3Yspb6BpGlLg5dvtT
halVtgNuZ5FxtMM3XP5SHuwnufeYIwmchekSAf+RLLQpCyFZrnNZTA3/R6WX
larLWk30e73W90673bx8N2rOe63mqNdqPTQ/tUaj7+PJ7fHJ6Wmnedt81z9L
5genN52r09NPndbH/tcvp6G7aLWE9+Us+nq903Cuj8beweX9wUPza2t0dNVq
9vvdyX2r1w0y7+BqMbi+mjjX+42v563O6UVT7c8bi36neS/6F6eL/u3lRv/h
yKGLF837/m0/v9ZvNu7bD82P5qXNycdOf38y785vDj9FX3vi4bbRbp7e9PAD
/N1pnrqd01Gz++Em/PJl6FyOpmE/Pf5yud4L3WsnOBurQfxl6k7aH+680ceN
mdhpqZ399a2b9gfQbvf97beTjf47p9vs7rsHD5OP/tHi3ccP24v32UO02393
tOgfNudtpMVZ46LV7M1Fs9Mc4vQOz/vdg07zetQ6m25d3352tj4Eg+5NO/Pb
J27a+OqcdzubneYx3Xv6odUcfujCktqilTRxPfjGoNWcz9sjWM78ptU6vYSx
evNDHu2seXq43mr1592b7snN9Oz29OBq++Z6Yy4GB5fZzeZu2m9GB+3294Pz
/vYuvrnZGDX73ct2r3XoOevxxp3z+d3B1lXgf95e7/jvbj41Tt8N+rdKnE/a
W95++/i49eGi6Xeb9+uTw/PWdgZ+3NfG0ZedeOeLE09PJo35NFt4ravocnvc
uvq6sRhP/soM1j3qLLPXr1hv5xZY7ybLWW//tsp6rev+acLkPj096M4/Xl0+
dAf91uRANDcuu+3R/Pzi4Krxcas/Ov1y1XAOroDdgtubL2dB/zyaf2rSg51O
ez/nWcOyQvPs6HK6e+e1+YvB1seZdziZH47do/5tc96/6Db6t90HYMn5NV57
oGv3eE3QxSek41fCIVZLR+trv9U/aC14H5ujbr6nwCaHzUav2fo4fOs0d7bF
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
VXEAAA==

-->

</rfc>
