<?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.11 (Ruby 3.1.2) -->
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-digest-headers-10" category="std" consensus="true" obsoletes="3230" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.10 -->
  <front>
    <title>Digest Fields</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-digest-headers-10"/>
    <author initials="R." surname="Polli" fullname="Roberto Polli">
      <organization>Team Digitale, Italian Government</organization>
      <address>
        <postal>
          <country>Italy</country>
        </postal>
        <email>robipolli@gmail.com</email>
      </address>
    </author>
    <author initials="L." surname="Pardue" fullname="Lucas Pardue">
      <organization>Cloudflare</organization>
      <address>
        <email>lucaspardue.24.7@gmail.com</email>
      </address>
    </author>
    <date year="2022" month="June" day="19"/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <keyword>Digest</keyword>
    <abstract>
      <t>This document defines HTTP fields that support integrity digests. The
Content-Digest field can be used for the integrity of HTTP message content. The
Repr-Digest field can be used for the integrity of HTTP representations.
Want-Content-Digest and Want-Repr-Digest can be used to indicate a sender's
interest and preferences for receiving the respective Integrity fields.</t>
      <t>This document obsoletes RFC 3230 and the Digest and Want-Digest HTTP
fields.</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-digest-headers/"/>.
      </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/digest-headers"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>HTTP does not define the means to protect the data integrity of content or
representations. When HTTP messages are transferred between endpoints, lower layer
features or properties such as TCP checksums or TLS records <xref target="TLS"/> can provide
some integrity protection. However, transport-oriented integrity provides a
limited utility because it is opaque to the application layer and only covers
the extent of a single connection. HTTP messages often travel over a chain of
separate connections, in between connections there is a possibility for
unintended or malicious data corruption. An HTTP integrity mechanism can provide
the means for endpoints, or applications using HTTP, to detect data corruption
and make a choice about how to act on it. An example use case is to aid
fault detection and diagnosis across system boundaries.</t>
      <t>This document defines two digest integrity mechanisms for HTTP.
First, content integrity, which acts on conveyed content (<xref section="6.4" sectionFormat="of" target="RFC9110"/>).
Second, representation data integrity, which acts on representation data (<xref section="3.2" sectionFormat="of" target="RFC9110"/>). This supports advanced use cases such as validating the
integrity of a resource that was reconstructed from parts retrieved using
multiple requests or connections.</t>
      <t>This document obsoletes RFC 3230 and therefore the Digest and Want-Digest HTTP
fields; see <xref target="obsolete-3230"/>.</t>
      <section anchor="document-structure">
        <name>Document Structure</name>
        <t>This document is structured as follows:</t>
        <ul spacing="normal">
          <li>
            <xref target="content-digest"/> defines the Content-Digest request and response header and trailer field,</li>
          <li>
            <xref target="representation-digest"/> defines the Repr-Digest request and response header and trailer field,</li>
          <li>
            <xref target="want-fields"/> defines the Want-Repr-Digest and Want-Content-Digest request and response header and
trailer field,</li>
          <li>
            <xref target="algorithms"/> describes algorithms and their relation to the fields defined in this document,</li>
          <li>
            <xref target="state-changing-requests"/> details computing representation digests,</li>
          <li>
            <xref target="examples-unsolicited"/> and <xref target="examples-solicited"/> provide examples of using
Repr-Digest and Want-Repr-Digest.</li>
        </ul>
      </section>
      <section anchor="concept-overview">
        <name>Concept Overview</name>
        <t>The HTTP fields defined in this document can be used for HTTP integrity. Senders
choose a hashing algorithm and calculate a digest from an input related to the
HTTP message, the algorithm identifier and digest are transmitted in an HTTP
field. Receivers can validate the digest for integrity purposes. Hashing
algorithms are registered in the "Hash Algorithms for HTTP Digest Fields" (see
<xref target="algorithms"/>).</t>
        <t>Selecting the data on which digests are calculated depends on the use case of
HTTP messages. This document provides different headers for HTTP representation
data and HTTP content.</t>
        <t>There are use-cases where a simple digest of the HTTP content bytes is
required. The <tt>Content-Digest</tt> request and response header and trailer field is
defined to support digests of content (<xref section="3.2" sectionFormat="of" target="RFC9110"/>); see
<xref target="content-digest"/>.</t>
        <t>For more advanced use-cases, the <tt>Repr-Digest</tt> request and response header
and trailer field (<xref target="representation-digest"/>) is defined. It contains a digest value
computed by applying a hashing algorithm to selected representation data
(<xref section="3.2" sectionFormat="of" target="RFC9110"/>). Basing <tt>Repr-Digest</tt> on the selected
representation makes it straightforward to apply it to use-cases where the
message content requires some sort of manipulation to be considered as
representation of the resource or content conveys a partial representation of a resource,
such as Range Requests (see <xref section="14.2" sectionFormat="of" target="RFC9110"/>).</t>
        <t><tt>Content-Digest</tt> and <tt>Repr-Digest</tt> support hashing algorithm agility.
The <tt>Want-Content-Digest</tt> and <tt>Want-Repr-Digest</tt> fields allow
endpoints to express interest in <tt>Content-Digest</tt> and <tt>Repr-Digest</tt>
respectively, and to express algorithm preferences in either.</t>
        <t><tt>Content-Digest</tt> and <tt>Repr-Digest</tt> are collectively termed
Integrity fields.
<tt>Want-Content-Digest</tt> and <tt>Want-Repr-Digest</tt> are
collectively termed Integrity preference fields.</t>
        <t>Integrity fields are tied to the <tt>Content-Encoding</tt>
and <tt>Content-Type</tt> header fields. Therefore, a given resource may have multiple
different digest values when transferred with HTTP.</t>
        <t>Integrity fields do not provide integrity for
HTTP messages or fields. However, they can be combined with other mechanisms that
protect metadata, such as digital signatures, in order to protect
the phases of an HTTP exchange in whole or in part. For example, HTTP Message
Signatures <xref target="SIGNATURES"/> could be used to sign Integrity fields, thus providing
coverage for HTTP content or representation data.</t>
        <t>This specification does not define means for authentication, authorization or privacy.</t>
      </section>
      <section anchor="obsolete-3230">
        <name>Obsoleting RFC 3230</name>
        <t><xref target="RFC3230"/> defined the <tt>Digest</tt> and <tt>Want-Digest</tt> HTTP fields for HTTP integrity.
It also coined the term "instance" and "instance manipulation" in order to
explain concepts that are now more universally defined, and implemented, as HTTP
semantics such as selected representation data (<xref section="3.2" sectionFormat="of" target="RFC9110"/>).</t>
        <t>Experience has shown that implementations of <xref target="RFC3230"/> have interpreted the
meaning of "instance" inconsistently, leading to interoperability issues. The
most common mistake being the calculation of the digest using (what we now call)
message content, rather than using (what we now call) representation data as was
originally intended. Interestingly, time has also shown that a digest of
message content can be beneficial for some use cases. So it is difficult to
detect if non-conformance to <xref target="RFC3230"/> is intentional or unintentional.</t>
        <t>In order to address potential inconsistencies and ambiguity across
implementations of <tt>Digest</tt> and <tt>Want-Digest</tt>, this document obsoletes
<xref target="RFC3230"/>. The Integrity fields (<xref target="representation-digest"/> and
<xref target="content-digest"/>) and Integrity preference fields (<xref target="want-fields"/>)
defined in this document are better aligned with current HTTP semantics and
have names that more clearly articulate the intended usages.</t>
      </section>
      <section anchor="notational-conventions">
        <name>Notational 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>
        <t>This document uses the Augmented BNF defined in <xref target="RFC5234"/> and updated by
<xref target="RFC7405"/>.</t>
        <t>This document uses the following terminology from <xref section="3" sectionFormat="of" target="STRUCTURED-FIELDS"/> to specify syntax and parsing:
Boolean, Byte Sequence, Dictionary, Integer, and List.</t>
        <t>The definitions "representation", "selected representation", "representation
data", "representation metadata", "user agent" and "content" in this document are to be
interpreted as described in <xref target="RFC9110"/>.</t>
        <t>Hashing algorithm names respect the casing used in their definition document (e.g. SHA-1, CRC32c)
whereas hashing algorithm keys are quoted (e.g. "sha", "crc32c").</t>
        <t>The term "checksum" describes the output of the application of an algorithm
to a sequence of bytes,
whereas "digest" is only used in relation to the value contained in the fields.</t>
        <t>Integrity fields: collective term for <tt>Content-Digest</tt> and <tt>Repr-Digest</tt></t>
        <t>Integrity preference fields: collective term for <tt>Want-Repr-Digest</tt> and <tt>Want-Content-Digest</tt></t>
      </section>
    </section>
    <section anchor="content-digest">
      <name>The Content-Digest Field</name>
      <t>The <tt>Content-Digest</tt> HTTP field can be used in requests and responses to
communicate digests that are calculated using a hashing algorithm applied to
the actual message content (see <xref section="6.4" sectionFormat="of" target="RFC9110"/>). It is a
<tt>Dictionary</tt> (see <xref section="3.2" sectionFormat="of" target="STRUCTURED-FIELDS"/>)
where each:</t>
      <ul spacing="normal">
        <li>key conveys the hashing algorithm (see <xref target="algorithms"/>)
used to compute the digest;</li>
        <li>value is a <tt>Byte Sequence</tt> (<xref section="3.3.5" sectionFormat="of" target="STRUCTURED-FIELDS"/>),
that contains the output of the digest calculation.</li>
      </ul>
      <t>For example:</t>
      <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Content-Digest: \
  sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+TaPm+AbwAgBWnrI\
  iYllu7BNNyealdVLvRwEmTHWXvJwew==:
]]></sourcecode>
      <t>The <tt>Dictionary</tt> type can be used, for example, to attach multiple digests
calculated using different hashing algorithms in order to support a population
of endpoints with different or evolving capabilities. Such an approach could
support transitions away from weaker algorithms (see <xref target="sec-agility"/>).</t>
      <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Repr-Digest: \
  sha-256=:4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo=:,\
  sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+TaPm+AbwAgBWnrI\
  iYllu7BNNyealdVLvRwEmTHWXvJwew==:
]]></sourcecode>
      <t>A recipient <bcp14>MAY</bcp14> ignore any or all digests.
This allows the recipient to choose which hashing algorithm(s) to use for
validation instead of verifying every digest.</t>
      <t>A sender <bcp14>MAY</bcp14> send a digest without
knowing whether the recipient supports a given hashing algorithm, or even knowing
that the recipient will ignore it.</t>
      <t><tt>Content-Digest</tt> can be sent in a trailer section.
In this case,
<tt>Content-Digest</tt> <bcp14>MAY</bcp14> be merged into the header section; see <xref section="6.5.1" sectionFormat="of" target="RFC9110"/>.</t>
    </section>
    <section anchor="representation-digest">
      <name>The Repr-Digest Field</name>
      <t>The <tt>Repr-Digest</tt> HTTP field can be used in requests and responses to
communicate digests that are calculated using a hashing algorithm applied to
the entire selected representation data (see <xref section="8.1" sectionFormat="of" target="RFC9110"/>).</t>
      <t>Representations take into account the effect of the HTTP semantics on
messages. For example, the content can be affected by Range Requests or methods
such as HEAD, while the way the content is transferred "on the wire" is
dependent on other transformations (e.g. transfer codings for HTTP/1.1 - see
<xref section="6.1" sectionFormat="of" target="RFC9112"/>). To help illustrate HTTP representation concepts,
several examples are provided in <xref target="resource-representation"/>.</t>
      <t>When a message has no representation data it is still possible to assert that no
representation data was sent by computing the digest on an empty
string (see <xref target="usage-in-signatures"/>).</t>
      <t><tt>Repr-Digest</tt> is a <tt>Dictionary</tt> (see <xref section="3.2" sectionFormat="of" target="STRUCTURED-FIELDS"/>) where each:</t>
      <ul spacing="normal">
        <li>key conveys the hashing algorithm (see <xref target="algorithms"/>)
used to compute the digest;</li>
        <li>value is a <tt>Byte Sequence</tt> that
contains the output of the digest calculation.</li>
      </ul>
      <t>For example:</t>
      <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Repr-Digest: \
  sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+TaPm+AbwAgBWnrI\
  iYllu7BNNyealdVLvRwEmTHWXvJwew==:
]]></sourcecode>
      <t>The <tt>Dictionary</tt> type can be used, for example, to attach multiple digests
calculated using different hashing algorithms in order to support a population
of endpoints with different or evolving capabilities. Such an approach could
support transitions away from weaker algorithms (see <xref target="sec-agility"/>).</t>
      <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Repr-Digest: \
  sha-256=:4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo=:,\
  sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+TaPm+AbwAgBWnrI\
  iYllu7BNNyealdVLvRwEmTHWXvJwew==:
]]></sourcecode>
      <t>A recipient <bcp14>MAY</bcp14> ignore any or all digests.
This allows the recipient to choose which hashing algorithm(s) to use for
validation instead of verifying every digest.</t>
      <t>A sender <bcp14>MAY</bcp14> send a digest without knowing whether the
recipient supports a given hashing algorithm, or even knowing that the recipient
will ignore it.</t>
      <t><tt>Repr-Digest</tt> can be sent in a trailer section.
In this case,
<tt>Repr-Digest</tt> <bcp14>MAY</bcp14> be merged into the header section; see <xref section="6.5.1" sectionFormat="of" target="RFC9110"/>.</t>
      <section anchor="state-changing-requests">
        <name>Using Repr-Digest in State-Changing Requests</name>
        <t>When the representation enclosed in a state-changing request
does not describe the target resource,
the representation digest <bcp14>MUST</bcp14> be computed on the
representation data.
This is the only possible choice because representation digest requires complete
representation metadata (see <xref target="representation-digest"/>).</t>
        <t>In responses,</t>
        <ul spacing="normal">
          <li>if the representation describes the status of the request,
<tt>Repr-Digest</tt> <bcp14>MUST</bcp14> be computed on the enclosed representation
 (see <xref target="post-referencing-status"/> );</li>
          <li>if there is a referenced resource
<tt>Repr-Digest</tt> <bcp14>MUST</bcp14> be computed on the selected representation of the referenced resource
 even if that is different from the target resource.
 That might or might not result in computing <tt>Repr-Digest</tt> on the enclosed representation.</li>
        </ul>
        <t>The latter case is done according to the HTTP semantics of the given
method, for example using the <tt>Content-Location</tt> header field (see <xref section="8.7" sectionFormat="of" target="RFC9110"/>).
In contrast, the <tt>Location</tt> header field does not affect <tt>Repr-Digest</tt> because
it is not representation metadata.</t>
        <t>For example, in <tt>PATCH</tt> requests, the representation digest
will be computed on the patch document
because the representation metadata refers to the patch document and not
to the target resource (see <xref section="2" sectionFormat="of" target="PATCH"/>).
In responses, instead, the representation digest will be computed on the selected
representation of the patched resource.</t>
      </section>
      <section anchor="digest-and-content-location">
        <name>Repr-Digest and Content-Location in Responses</name>
        <t>When a state-changing method returns the <tt>Content-Location</tt> header field, the
enclosed representation refers to the resource identified by its value and
<tt>Repr-Digest</tt> is computed accordingly.
An example is given in <xref target="post-not-request-uri"/>.</t>
      </section>
    </section>
    <section anchor="want-fields">
      <name>Integrity preference fields</name>
      <t>Senders can indicate their interest in Integrity fields and hashing algorithm
preferences using the
<tt>Want-Content-Digest</tt> or <tt>Want-Repr-Digest</tt> fields. These can be used in both
requests and responses.</t>
      <t><tt>Want-Content-Digest</tt> indicates that the sender would like to receive a content digest
on messages associated with the request URI and representation metadata, using
the <tt>Content-Digest</tt> field.</t>
      <t><tt>Want-Repr-Digest</tt> indicates that the sender would like to receive a representation digest
on messages associated with the request URI and representation metadata, using
the <tt>Repr-Digest</tt> field.</t>
      <t>If <tt>Want-Content-Digest</tt> or <tt>Want-Repr-Digest</tt> are used in a response, it
indicates that the server would like the client to provide the respective
Integrity field on future requests.</t>
      <t><tt>Want-Content-Digest</tt> and <tt>Want-Repr-Digest</tt> are of type <tt>Dictionary</tt>
where each:</t>
      <ul spacing="normal">
        <li>key conveys the hashing algorithm (see <xref target="algorithms"/>);</li>
        <li>value is an <tt>Integer</tt> (<xref section="3.3.1" sectionFormat="of" target="STRUCTURED-FIELDS"/>)
that conveys an ascending, relative, weighted preference.
It must be in the range 0 to 10 inclusive.
1 is the least preferred, 10 is the most preferred,
and a value of 0 means "not acceptable".</li>
      </ul>
      <t>Examples:</t>
      <sourcecode type="http-message"><![CDATA[
Want-Repr-Digest: sha-256=1
Want-Repr-Digest: sha-512=3, sha-256=10, unixsum=0
Want-Content-Digest: sha-256=1
Want-Content-Digest: sha-512=3, sha-256=10, unixsum=0
]]></sourcecode>
    </section>
    <section anchor="algorithms">
      <name>Hash Algorithms for HTTP Digest Fields Registry</name>
      <t>The "Hash Algorithms for HTTP Digest Fields", maintained by IANA at
<eref target="https://www.iana.org/assignments/http-dig-alg/">https://www.iana.org/assignments/http-dig-alg/</eref>, registers algorithms for use
with the Integrity and Integrity preference fields defined in this document.</t>
      <t>This registry uses the Specification
Required policy (<xref section="4.6" sectionFormat="of" target="RFC8126"/>).</t>
      <t>Registrations <bcp14>MUST</bcp14> include the following fields:</t>
      <ul spacing="normal">
        <li>Algorithm Key: the Structured Fields key value used in
<tt>Content-Digest</tt>, <tt>Repr-Digest</tt>, <tt>Want-Content-Digest</tt>, or <tt>Want-Repr-Digest</tt>
 field Dictionary member keys</li>
        <li>
          <t>Status: the status of the algorithm.
  Use "standard" for standardized algorithms without known problems;
  "experimental" or some other appropriate value
          </t>
          <ul spacing="normal">
            <li>e.g. according to the type and status of the primary document
  in which the algorithm is defined;
  "insecure" when the algorithm is insecure;
  "reserved" when the algorithm references a reserved token value</li>
          </ul>
        </li>
        <li>Description: a short description of the algorithm</li>
        <li>Reference(s): a set of pointers to the primary documents defining the
algorithm and key</li>
      </ul>
      <t>Insecure hashing algorithms <bcp14>MAY</bcp14> be used to preserve integrity against corruption,
but <bcp14>MUST NOT</bcp14> be used in a potentially adversarial setting;
for example, when signing Integrity fields' values for authenticity.</t>
      <t>The entries in <xref target="iana-hash-algorithm-table"/> are registered by this document.</t>
      <table anchor="iana-hash-algorithm-table">
        <name>Initial Hash Algorithms</name>
        <thead>
          <tr>
            <th align="left">Algorithm Key</th>
            <th align="left">Status</th>
            <th align="left">Description</th>
            <th align="left">Reference(s)</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">sha-512</td>
            <td align="left">standard</td>
            <td align="left">The SHA-512 algorithm.</td>
            <td align="left">
              <xref target="RFC6234"/>, <xref target="RFC4648"/>, this document.</td>
          </tr>
          <tr>
            <td align="left">sha-256</td>
            <td align="left">standard</td>
            <td align="left">The SHA-256 algorithm.</td>
            <td align="left">
              <xref target="RFC6234"/>, <xref target="RFC4648"/>, this document.</td>
          </tr>
          <tr>
            <td align="left">md5</td>
            <td align="left">insecure</td>
            <td align="left">The MD5 algorithm. It is vulnerable to collision attacks; see <xref target="NO-MD5"/> and <xref target="CMU-836068"/></td>
            <td align="left">
              <xref target="RFC1321"/>, <xref target="RFC4648"/>, this document.</td>
          </tr>
          <tr>
            <td align="left">sha</td>
            <td align="left">insecure</td>
            <td align="left">The SHA-1 algorithm. It is vulnerable to collision attacks; see <xref target="NO-SHA"/> and <xref target="IACR-2020-014"/></td>
            <td align="left">
              <xref target="RFC3174"/>, <xref target="RFC4648"/>, <xref target="RFC6234"/> this document.</td>
          </tr>
          <tr>
            <td align="left">unixsum</td>
            <td align="left">insecure</td>
            <td align="left">The algorithm used by the UNIX "sum" command.</td>
            <td align="left">
              <xref target="RFC4648"/>, <xref target="RFC6234"/>, <xref target="UNIX"/>, this document.</td>
          </tr>
          <tr>
            <td align="left">unixcksum</td>
            <td align="left">insecure</td>
            <td align="left">The algorithm used by the UNIX "cksum" command.</td>
            <td align="left">
              <xref target="RFC4648"/>, <xref target="RFC6234"/>, <xref target="UNIX"/>, this document.</td>
          </tr>
          <tr>
            <td align="left">adler</td>
            <td align="left">insecure</td>
            <td align="left">The ADLER32 algorithm.</td>
            <td align="left">
              <xref target="RFC1950"/>, this document.</td>
          </tr>
          <tr>
            <td align="left">crc32c</td>
            <td align="left">insecure</td>
            <td align="left">The CRC32c algorithm.</td>
            <td align="left">
              <xref target="RFC9260"/> appendix B, this document.</td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <section anchor="sec-limitations">
        <name>HTTP Messages Are Not Protected In Full</name>
        <t>This document specifies a data integrity mechanism that protects HTTP
representation data or content, but not HTTP header and trailer fields, from
certain kinds of corruption.</t>
        <t>Integrity fields are not intended to be a general protection against malicious tampering with
HTTP messages. This can be achieved by combining it with other approaches such
as transport-layer security or digital signatures (for example, HTTP Message
Signatures <xref target="SIGNATURES"/>).</t>
      </section>
      <section anchor="end-to-end-integrity">
        <name>End-to-End Integrity</name>
        <t>Integrity fields can help detect representation data or content modification due to implementation errors,
undesired "transforming proxies" (see <xref section="7.7" sectionFormat="of" target="RFC9110"/>)
or other actions as the data passes across multiple hops or system boundaries.
Even a simple mechanism for end-to-end representation data integrity is valuable
because a user agent can validate that resource retrieval succeeded before handing off to a
HTML parser, video player etc. for parsing.</t>
        <t>Note that using these mechanisms alone does not provide end-to-end integrity of HTTP messages over
multiple hops, since metadata could be manipulated at any stage. Methods to protect
metadata are discussed in <xref target="usage-in-signatures"/>.</t>
      </section>
      <section anchor="usage-in-signatures">
        <name>Usage in Signatures</name>
        <t>Digital signatures are widely used together with checksums to provide the
certain identification of the origin of a message <xref target="NIST800-32"/>. Such signatures
can protect one or more HTTP fields and there are additional considerations when
Integrity fields are included in this set.</t>
        <t>There are no restrictions placed on the type or format of digitial signature that
Integrity fields can be used with. One possible approach is to combine them with
HTTP Message Signatures <xref target="SIGNATURES"/>.</t>
        <t>Digests explicitly
depend on the "representation metadata" (e.g. the values of <tt>Content-Type</tt>,
<tt>Content-Encoding</tt> etc). A signature that protects Integrity fields but not other
"representation metadata" can expose the communication to tampering. For
example, an actor could manipulate the <tt>Content-Type</tt> field-value and cause a
digest validation failure at the recipient, preventing the application from
accessing the representation. Such an attack consumes the resources of both
endpoints. See also <xref target="digest-and-content-location"/>.</t>
        <t>Signatures are likely to be deemed an adversarial setting
when applying Integrity fields; see <xref target="algorithms"/>.
Using signatures to protect the checksum of an empty representation
allows receiving endpoints to detect if an eventual payload has been stripped or added.</t>
        <t>Any mangling of Integrity fields, including digests' de-duplication
or combining different field values (see <xref section="5.2" sectionFormat="of" target="RFC9110"/>)
might affect signature validation.</t>
      </section>
      <section anchor="usage-in-trailer-fields">
        <name>Usage in Trailer Fields</name>
        <t>Before sending Integrity fields in a trailer section, the sender
should consider that intermediaries are explicitly allowed to drop any trailer
(see <xref section="6.5.2" sectionFormat="of" target="RFC9110"/>).</t>
        <t>When Integrity fields are used in a trailer section, the field-values are received after the content.
Eager processing of content before the trailer section prevents digest validation, possibly leading to
processing of invalid data.</t>
        <t>Not every hashing algorithm is suitable for use in the trailer section, some may require to pre-process
the whole payload before sending a message (e.g. see <xref target="I-D.thomson-http-mice"/>).</t>
      </section>
      <section anchor="usage-with-encryption">
        <name>Usage with Encryption</name>
        <t>The checksum of an encrypted payload can change between different messages
depending on the encryption algorithm used; in those cases its value could not be used to provide
a proof of integrity "at rest" unless the whole (e.g. encoded) content is persisted.</t>
      </section>
      <section anchor="sec-agility">
        <name>Algorithm Agility</name>
        <t>The security properties of hashing algorithms are not fixed.
Algorithm Agility (see <xref target="RFC7696"/>) is achieved by providing implementations with flexibility
to choose hashing algorithms from the IANA Hash Algorithms for HTTP Digest Fields registry; see
<xref target="establish-hash-algorithm-registry"/>.</t>
        <t>The "standard" algorithms listed in this document are suitable for many purposes,
including adversarial situations where hash functions might need
to provide resistance to collision, first-preimage and second-preimage attacks.
Algorithms listed as "insecure" either provide none of these properties,
or are known to be weak (see <xref target="NO-MD5"/> and <xref target="NO-SHA"/>).</t>
        <t>For adversarial situations, which of the "standard" algorithms are acceptable
will depend on the level of protection the circumstances demand.
As there is no negotiation, endpoints that depend on a digest for security
will be vulnerable to attacks on the weakest algorithm they are willing to accept.</t>
        <t>Transition from weak algorithms is supported
by negotiation of hashing algorithm using <tt>Want-Content-Digest</tt> or <tt>Want-Repr-Digest</tt> (see <xref target="want-fields"/>)
or by sending multiple digests from which the receiver chooses.
Endpoints are advised that sending multiple values consumes resources,
which may be wasted if the receiver ignores them (see <xref target="representation-digest"/>).</t>
        <t>While algorithm agility allows the migration to stronger algorithms
it does not prevent the use of weaker algorithms.
Integrity fields do not provide any mitigiations for downgrade or substitution
attacks (see Section 1 of <xref target="RFC6211"/>) of the hashing algorithm.
To protect against such attacks, endpoints could restrict their set of supported algorithms
to stronger ones and protect the fields value by using TLS and/or digital signatures.</t>
      </section>
      <section anchor="resource-exhaustion">
        <name>Resource exhaustion</name>
        <t>Integrity fields validation consumes computational resources.
In order to avoid resource exhaustion, implementations can restrict
validation of the algorithm types, number of validations, or the size of content.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="http-field-name-registration">
        <name>HTTP Field Name Registration</name>
        <t>IANA is asked to update the
"Hypertext Transfer Protocol (HTTP) Field Name Registry" registry
(<xref target="RFC9110"/>) according to the table below:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Field Name</th>
              <th align="left">Status</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Content-Digest</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="content-digest"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Repr-Digest</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="representation-digest"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Want-Content-Digest</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="want-fields"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Want-Repr-Digest</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="want-fields"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Digest</td>
              <td align="left">obsoleted</td>
              <td align="left">
                <xref target="RFC3230"/>, <xref target="obsolete-3230"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Want-Digest</td>
              <td align="left">obsoleted</td>
              <td align="left">
                <xref target="RFC3230"/>, <xref target="obsolete-3230"/> of this document</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="establish-hash-algorithm-registry">
        <name>Establish the Hash Algorithms for HTTP Digest Fields Registry</name>
        <t>This memo sets this specification to be the establishing document for the
<eref target="https://www.iana.org/assignments/http-structured-dig-alg/">Hash Algorithms for HTTP Digest Fields</eref>
registry defined in <xref target="algorithms"/>.</t>
        <t>IANA is asked to initialize the registry with the entries in
<xref target="iana-hash-algorithm-table"/>.</t>
      </section>
    </section>
  </middle>
  <back>
    <displayreference target="RFC9110" to="HTTP"/>
    <displayreference target="RFC9112" to="HTTP/1.1"/>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC1321">
          <front>
            <title>The MD5 Message-Digest Algorithm</title>
            <author fullname="R. Rivest" initials="R." surname="Rivest">
              <organization/>
            </author>
            <date month="April" year="1992"/>
            <abstract>
              <t>This document describes the MD5 message-digest algorithm. The algorithm takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input.  This memo provides information for the Internet community.  It does not specify an Internet standard.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1321"/>
          <seriesInfo name="DOI" value="10.17487/RFC1321"/>
        </reference>
        <reference anchor="RFC3174">
          <front>
            <title>US Secure Hash Algorithm 1 (SHA1)</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <author fullname="P. Jones" initials="P." surname="Jones">
              <organization/>
            </author>
            <date month="September" year="2001"/>
            <abstract>
              <t>The purpose of this document is to make the SHA-1 (Secure Hash Algorithm 1) hash algorithm conveniently available to the Internet community. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3174"/>
          <seriesInfo name="DOI" value="10.17487/RFC3174"/>
        </reference>
        <reference anchor="RFC1950">
          <front>
            <title>ZLIB Compressed Data Format Specification version 3.3</title>
            <author fullname="P. Deutsch" initials="P." surname="Deutsch">
              <organization/>
            </author>
            <author fullname="J-L. Gailly" initials="J-L." surname="Gailly">
              <organization/>
            </author>
            <date month="May" year="1996"/>
            <abstract>
              <t>This specification defines a lossless compressed data format.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1950"/>
          <seriesInfo name="DOI" value="10.17487/RFC1950"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes.  It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="RFC5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker">
              <organization/>
            </author>
            <author fullname="P. Overell" initials="P." surname="Overell">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="RFC6234">
          <front>
            <title>US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF)</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <author fullname="T. Hansen" initials="T." surname="Hansen">
              <organization/>
            </author>
            <date month="May" year="2011"/>
            <abstract>
              <t>Federal Information Processing Standard, FIPS</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6234"/>
          <seriesInfo name="DOI" value="10.17487/RFC6234"/>
        </reference>
        <reference anchor="RFC7405">
          <front>
            <title>Case-Sensitive String Support in ABNF</title>
            <author fullname="P. Kyzivat" initials="P." surname="Kyzivat">
              <organization/>
            </author>
            <date month="December" year="2014"/>
            <abstract>
              <t>This document extends the base definition of ABNF (Augmented Backus-Naur Form) to include a way to specify US-ASCII string literals that are matched in a case-sensitive manner.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7405"/>
          <seriesInfo name="DOI" value="10.17487/RFC7405"/>
        </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="STRUCTURED-FIELDS">
          <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="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC3230">
          <front>
            <title>Instance Digests in HTTP</title>
            <author fullname="J. Mogul" initials="J." surname="Mogul">
              <organization/>
            </author>
            <author fullname="A. Van Hoff" initials="A." surname="Van Hoff">
              <organization/>
            </author>
            <date month="January" year="2002"/>
            <abstract>
              <t>HTTP/1.1 defines a Content-MD5 header that allows a server to include a digest of the response body.  However, this is specifically defined to cover the body of the actual message, not the contents of the full file (which might be quite different, if the response is a Content-Range, or uses a delta encoding).  Also, the Content-MD5 is limited to one specific digest algorithm; other algorithms, such as SHA-1 (Secure Hash Standard), may be more appropriate in some circumstances.  Finally, HTTP/1.1 provides no explicit mechanism by which a client may request a digest.  This document proposes HTTP extensions that solve these problems.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3230"/>
          <seriesInfo name="DOI" value="10.17487/RFC3230"/>
        </reference>
        <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="PATCH">
          <front>
            <title>PATCH Method for HTTP</title>
            <author fullname="L. Dusseault" initials="L." surname="Dusseault">
              <organization/>
            </author>
            <author fullname="J. Snell" initials="J." surname="Snell">
              <organization/>
            </author>
            <date month="March" year="2010"/>
            <abstract>
              <t>Several applications extending the Hypertext Transfer Protocol (HTTP) require a feature to do partial resource modification.  The existing HTTP PUT method only allows a complete replacement of a document. This proposal adds a new HTTP method, PATCH, to modify an existing HTTP resource.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5789"/>
          <seriesInfo name="DOI" value="10.17487/RFC5789"/>
        </reference>
        <reference anchor="NO-MD5">
          <front>
            <title>Updated Security Considerations for the MD5 Message-Digest and the HMAC-MD5 Algorithms</title>
            <author fullname="S. Turner" initials="S." surname="Turner">
              <organization/>
            </author>
            <author fullname="L. Chen" initials="L." surname="Chen">
              <organization/>
            </author>
            <date month="March" year="2011"/>
            <abstract>
              <t>This document updates the security considerations for the MD5 message digest algorithm.  It also updates the security considerations for HMAC-MD5.  This document is not an Internet Standards Track  specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6151"/>
          <seriesInfo name="DOI" value="10.17487/RFC6151"/>
        </reference>
        <reference anchor="NO-SHA">
          <front>
            <title>Security Considerations for the SHA-0 and SHA-1 Message-Digest Algorithms</title>
            <author fullname="T. Polk" initials="T." surname="Polk">
              <organization/>
            </author>
            <author fullname="L. Chen" initials="L." surname="Chen">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." surname="Turner">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <date month="March" year="2011"/>
            <abstract>
              <t>This document includes security considerations for the SHA-0 and SHA-1 message digest algorithm.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6194"/>
          <seriesInfo name="DOI" value="10.17487/RFC6194"/>
        </reference>
        <reference anchor="SIGNATURES">
          <front>
            <title>HTTP Message Signatures</title>
            <author fullname="Annabelle Backman">
              <organization>Amazon</organization>
            </author>
            <author fullname="Justin Richer">
              <organization>Bespoke Engineering</organization>
            </author>
            <author fullname="Manu Sporny">
              <organization>Digital Bazaar</organization>
            </author>
            <date day="26" month="May" year="2022"/>
            <abstract>
              <t>   This document describes a mechanism for creating, encoding, and
   verifying digital signatures or message authentication codes over
   components of an HTTP message.  This mechanism supports use cases
   where the full HTTP message may not be known to the signer, and where
   the message may be transformed (e.g., by intermediaries) before
   reaching the verifier.  This document also describes a means for
   requesting that a signature be applied to a subsequent HTTP message
   in an ongoing HTTP exchange.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-message-signatures-10"/>
        </reference>
        <reference anchor="UNIX">
          <front>
            <title>The Single UNIX Specification, Version 2 - 6 Vol Set for UNIX 98</title>
            <author>
              <organization>The Open Group</organization>
            </author>
            <date year="1997" month="February"/>
          </front>
        </reference>
        <reference anchor="NIST800-32" target="https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-32.pdf">
          <front>
            <title>Introduction to Public Key Technology and the Federal PKI Infrastructure</title>
            <author>
              <organization>National Institute of Standards and Technology, U.S. Department of Commerce</organization>
            </author>
            <date year="2001" month="February"/>
          </front>
        </reference>
        <reference anchor="CMU-836068" target="https://www.kb.cert.org/vuls/id/836068/">
          <front>
            <title>MD5 Vulnerable to collision attacks</title>
            <author>
              <organization>Carnegie Mellon University, Software Engineering Institute</organization>
            </author>
            <date year="2008" month="December" day="31"/>
          </front>
        </reference>
        <reference anchor="IACR-2020-014" target="https://eprint.iacr.org/2020/014.pdf">
          <front>
            <title>SHA-1 is a Shambles</title>
            <author initials="G." surname="Leurent">
              <organization>Inria, France</organization>
            </author>
            <author initials="T." surname="Peyrin">
              <organization>Nanyang Technological University, Singapore; Temasek Laboratories, Singapore</organization>
            </author>
            <date year="2020" month="January" day="05"/>
          </front>
        </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="RFC9260">
          <front>
            <title>Stream Control Transmission Protocol</title>
            <author fullname="R. Stewart" initials="R." surname="Stewart">
              <organization/>
            </author>
            <author fullname="M. Tüxen" initials="M." surname="Tüxen">
              <organization/>
            </author>
            <author fullname="K. Nielsen" initials="K." surname="Nielsen">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>This document describes the Stream Control Transmission Protocol (SCTP) and obsoletes RFC 4960.  It incorporates the specification of the chunk flags registry from RFC 6096 and the specification of the I bit of DATA chunks from RFC 7053. Therefore, RFCs 6096 and 7053 are also obsoleted by this document. In addition, RFCs 4460 and 8540, which describe errata for SCTP, are obsoleted by this document. </t>
              <t>SCTP was originally designed to transport Public Switched Telephone Network (PSTN) signaling messages over IP networks. It is also suited to be used for other applications, for example, WebRTC.</t>
              <t>SCTP is a reliable transport protocol operating on top of a connectionless packet network, such as IP. It offers the following services to its users:</t>
              <t>The design of SCTP includes appropriate congestion avoidance behavior and resistance to flooding and masquerade attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9260"/>
          <seriesInfo name="DOI" value="10.17487/RFC9260"/>
        </reference>
        <reference anchor="I-D.thomson-http-mice">
          <front>
            <title>Merkle Integrity Content Encoding</title>
            <author fullname="Martin Thomson">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Jeffrey Yasskin">
              <organization>Google</organization>
            </author>
            <date day="13" month="August" year="2018"/>
            <abstract>
              <t>   This memo introduces a content-coding for HTTP that provides
   progressive integrity for message contents.  This integrity
   protection can be evaluated on a partial representation, allowing a
   recipient to process a message as it is delivered while retaining
   strong integrity protection.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-thomson-http-mice-03"/>
        </reference>
        <reference anchor="RFC7696">
          <front>
            <title>Guidelines for Cryptographic Algorithm Agility and Selecting Mandatory-to-Implement Algorithms</title>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <date month="November" year="2015"/>
            <abstract>
              <t>Many IETF protocols use cryptographic algorithms to provide confidentiality, integrity, authentication, or digital signature.  Communicating peers must support a common set of cryptographic algorithms for these mechanisms to work properly.  This memo provides guidelines to ensure that protocols have the ability to migrate from one mandatory-to-implement algorithm suite to another over time.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="201"/>
          <seriesInfo name="RFC" value="7696"/>
          <seriesInfo name="DOI" value="10.17487/RFC7696"/>
        </reference>
        <reference anchor="RFC6211">
          <front>
            <title>Cryptographic Message Syntax (CMS) Algorithm Identifier Protection Attribute</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad">
              <organization/>
            </author>
            <date month="April" year="2011"/>
            <abstract>
              <t>The Cryptographic Message Syntax (CMS), unlike X.509/PKIX certificates, is vulnerable to algorithm substitution attacks.  In an algorithm substitution attack, the attacker changes either the algorithm being used or the parameters of the algorithm in order to change the result of a signature verification process.  In X.509 certificates, the signature algorithm is protected because it is duplicated in the TBSCertificate.signature field with the proviso that the validator is to compare both fields as part of the signature validation process.  This document defines a new attribute that contains a copy of the relevant algorithm identifiers so that they are protected by the signature or authentication process. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6211"/>
          <seriesInfo name="DOI" value="10.17487/RFC6211"/>
        </reference>
        <reference anchor="RFC7396">
          <front>
            <title>JSON Merge Patch</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <author fullname="J. Snell" initials="J." surname="Snell">
              <organization/>
            </author>
            <date month="October" year="2014"/>
            <abstract>
              <t>This specification defines the JSON merge patch format and processing rules.  The merge patch format is primarily intended for use with the HTTP PATCH method as a means of describing a set of modifications to a target resource's content.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7396"/>
          <seriesInfo name="DOI" value="10.17487/RFC7396"/>
        </reference>
        <reference anchor="RFC7807">
          <front>
            <title>Problem Details for HTTP APIs</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="E. Wilde" initials="E." surname="Wilde">
              <organization/>
            </author>
            <date month="March" year="2016"/>
            <abstract>
              <t>This document defines a "problem detail" as a way to carry machine- readable details of errors in a HTTP response to avoid the need to define new error response formats for HTTP APIs.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7807"/>
          <seriesInfo name="DOI" value="10.17487/RFC7807"/>
        </reference>
      </references>
    </references>
    <section anchor="resource-representation">
      <name>Resource Representation and Representation Data</name>
      <t>The following examples show how representation metadata, payload transformations
and method impacts on the message and content. When the content
contains non-printable characters (e.g. when it is compressed) it is shown as
a Base64-encoded string.</t>
      <figure>
        <name>Request containing a JSON object without any content coding</name>
        <sourcecode type="http-message"><![CDATA[
PUT /entries/1234 HTTP/1.1
Host: foo.example
Content-Type: application/json

{"hello": "world"}
]]></sourcecode>
      </figure>
      <figure>
        <name>Request containing a gzip-encoded JSON object</name>
        <sourcecode type="http-message"><![CDATA[
PUT /entries/1234 HTTP/1.1
Host: foo.example
Content-Type: application/json
Content-Encoding: gzip

H4sIAItWyFwC/6tWSlSyUlAypANQqgUAREcqfG0AAAA=
]]></sourcecode>
      </figure>
      <t>Now the same content conveys a malformed JSON object, because the request does
not indicate a content coding.</t>
      <figure>
        <name>Request containing malformed JSON</name>
        <sourcecode type="http-message"><![CDATA[
PUT /entries/1234 HTTP/1.1
Host: foo.example
Content-Type: application/json

H4sIAItWyFwC/6tWSlSyUlAypANQqgUAREcqfG0AAAA=
]]></sourcecode>
      </figure>
      <t>A Range-Request alters the content, conveying a partial representation.</t>
      <figure>
        <name>Request for partial content</name>
        <sourcecode type="http-message"><![CDATA[
GET /entries/1234 HTTP/1.1
Host: foo.example
Range: bytes=1-7

]]></sourcecode>
      </figure>
      <figure>
        <name>Partial response from a gzip-encoded representation</name>
        <sourcecode type="http-message"><![CDATA[
HTTP/1.1 206 Partial Content
Content-Encoding: gzip
Content-Type: application/json
Content-Range: bytes 1-7/18

iwgAla3RXA==
]]></sourcecode>
      </figure>
      <t>The method can also alter the content.  For example, the response
to a HEAD request does not carry content.</t>
      <figure>
        <name>HEAD request</name>
        <sourcecode type="http-message"><![CDATA[
HEAD /entries/1234 HTTP/1.1
Host: foo.example
Accept: application/json
Accept-Encoding: gzip

]]></sourcecode>
      </figure>
      <figure>
        <name>Response to HEAD request (empty content)</name>
        <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Content-Encoding: gzip

]]></sourcecode>
      </figure>
      <t>Finally, the semantics of an HTTP response might decouple the effective request URI
from the enclosed representation. In the example response below, the
<tt>Content-Location</tt> header field indicates that the enclosed representation
refers to the resource available at <tt>/authors/123</tt>, even though the request is
directed to <tt>/authors/</tt>.</t>
      <figure>
        <name>POST request</name>
        <sourcecode type="http-message"><![CDATA[
POST /authors/ HTTP/1.1
Host: foo.example
Accept: application/json
Content-Type: application/json

{"author": "Camilleri"}
]]></sourcecode>
      </figure>
      <figure>
        <name>Response with Content-Location header</name>
        <sourcecode type="http-message"><![CDATA[
HTTP/1.1 201 Created
Content-Type: application/json
Content-Location: /authors/123
Location: /authors/123

{"id": "123", "author": "Camilleri"}
]]></sourcecode>
      </figure>
    </section>
    <section anchor="examples-unsolicited">
      <name>Examples of Unsolicited Digest</name>
      <t>The following examples demonstrate interactions where a server responds with a
<tt>Content-Digest</tt> or <tt>Repr-Digest</tt> fields even though the client did not solicit one using
<tt>Want-Content-Digest</tt> or <tt>Want-Repr-Digest</tt>.</t>
      <t>Some examples include JSON objects in the content.
For presentation purposes, objects that fit completely within the line-length limits
are presented on a single line using compact notation with no leading space.
Objects that would exceed line-length limits are presented across multiple lines
(one line per key-value pair) with 2 spaced of leading indentation.</t>
      <t>Checksum mechanisms defined in this document are media-type agnostic
and do not provide canonicalization algorithms for specific formats.
Examples are calculated inclusive of any space.
While examples can include both fields,
<tt>Content-Digest</tt> and <tt>Repr-Digest</tt> can be returned independently.</t>
      <section anchor="example-full-representation">
        <name>Server Returns Full Representation Data</name>
        <t>In this example, the message content conveys complete representation data.
This means that in the response, <tt>Content-Digest</tt> and <tt>Repr-Digest</tt>
are both computed over the JSON object <tt>{"hello": "world"}</tt>, and thus have the same value.</t>
        <figure>
          <name>GET request for an item</name>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: foo.example

]]></sourcecode>
        </figure>
        <figure>
          <name>Response with identical Repr-Digest and Content-Digest</name>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

HTTP/1.1 200 OK
Content-Type: application/json
Content-Digest: \
  sha-256=:X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=:
Repr-Digest: \
  sha-256=:X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=:

{"hello": "world"}
]]></sourcecode>
        </figure>
      </section>
      <section anchor="server-returns-no-representation-data">
        <name>Server Returns No Representation Data</name>
        <t>In this example, a HEAD request is used to retrieve the checksum
of a resource.</t>
        <t>The response <tt>Content-Digest</tt> field-value is computed on empty content.
<tt>Repr-Digest</tt> is calculated over the JSON object
<tt>{"hello": "world"}</tt>, which is not shown because there is no payload
data.</t>
        <figure>
          <name>HEAD request for an item</name>
          <sourcecode type="http-message"><![CDATA[
HEAD /items/123 HTTP/1.1
Host: foo.example

]]></sourcecode>
        </figure>
        <figure>
          <name>Response with both Content-Digest and Digest; empty content</name>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

HTTP/1.1 200 OK
Content-Type: application/json
Content-Digest: \
  sha-256=:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=:
Repr-Digest: \
  sha-256=:X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=:

]]></sourcecode>
        </figure>
      </section>
      <section anchor="server-returns-partial-representation-data">
        <name>Server Returns Partial Representation Data</name>
        <t>In this example, the client makes a range request and the server responds with
partial content.</t>
        <figure>
          <name>Request for partial content</name>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: foo.example
Range: bytes=1-7

]]></sourcecode>
        </figure>
        <figure>
          <name>Partial response with both Content-Digest and Repr-Digest</name>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

HTTP/1.1 206 Partial Content
Content-Type: application/json
Content-Range: bytes 1-7/18
Content-Digest: \
  sha-256=:Wqdirjg/u3J688ejbUlApbjECpiUUtIwT8lY/z81Tno=:
Repr-Digest: \
  sha-256=:X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=:

"hello"
]]></sourcecode>
        </figure>
        <t>In the response message above, note that the
<tt>Repr-Digest</tt> and <tt>Content-Digests</tt> are different.
The <tt>Repr-Digest</tt> field-value is calculated across the entire JSON object
<tt>{"hello": "world"}</tt>, and the field is</t>
        <sourcecode type="http-message"><![CDATA[
Repr-Digest: sha-256=:X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=:
]]></sourcecode>
        <t>However, since the message content is constrained to bytes 1-7,
the <tt>Content-Digest</tt> field-value is calculated over the
byte sequence  <tt>"hello"</tt>, thus resulting in</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Content-Digest: \
  sha-256=:Wqdirjg/u3J688ejbUlApbjECpiUUtIwT8lY/z81Tno=:
]]></sourcecode>
      </section>
      <section anchor="client-and-server-provide-full-representation-data">
        <name>Client and Server Provide Full Representation Data</name>
        <t>The request contains a <tt>Repr-Digest</tt> field-value calculated on the enclosed
representation. It also includes an <tt>Accept-Encoding: br</tt> header field that advertises the
client supports Brotli encoding.</t>
        <t>The response includes a <tt>Content-Encoding: br</tt> that indicates the selected
representation is Brotli-encoded. The <tt>Repr-Digest</tt> field-value is therefore
different compared to the request.</t>
        <t>For presentation purposes, the response body is displayed as a Base64-encoded string because it contains
non-printable characters.</t>
        <figure>
          <name>PUT Request with Digest</name>
          <sourcecode type="http-message"><![CDATA[
PUT /items/123 HTTP/1.1
Host: foo.example
Content-Type: application/json
Accept-Encoding: br
Repr-Digest: sha-256=:X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=:

{"hello": "world"}
]]></sourcecode>
        </figure>
        <figure>
          <name>Response with Digest of encoded response</name>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Content-Location: /items/123
Content-Encoding: br
Content-Length: 22
Repr-Digest: sha-256=:4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo=:

iwiAeyJoZWxsbyI6ICJ3b3JsZCJ9Aw==
]]></sourcecode>
        </figure>
      </section>
      <section anchor="client-provides-full-representation-data-server-provides-no-representation-data">
        <name>Client Provides Full Representation Data, Server Provides No Representation Data</name>
        <t>The request <tt>Repr-Digest</tt> field-value is calculated on the enclosed payload.</t>
        <t>The response <tt>Repr-Digest</tt> field-value
depends on the representation metadata header fields, including
<tt>Content-Encoding: br</tt> even when the response does not contain content.</t>
        <sourcecode type="http-message"><![CDATA[
PUT /items/123 HTTP/1.1
Host: foo.example
Content-Type: application/json
Content-Length: 18
Accept-Encoding: br
Repr-Digest: sha-256=:X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=:

{"hello": "world"}
]]></sourcecode>
        <figure>
          <name>Empty response with Digest</name>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 204 No Content
Content-Type: application/json
Content-Encoding: br
Repr-Digest: sha-256=:4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo=:

]]></sourcecode>
        </figure>
      </section>
      <section anchor="client-and-server-provide-full-representation-data-1">
        <name>Client and Server Provide Full Representation Data</name>
        <t>The response contains two digest values using different algorithms.</t>
        <t>As the response body contains non-printable characters, it is displayed as a
base64-encoded string.</t>
        <figure>
          <name>PUT Request with Digest</name>
          <sourcecode type="http-message"><![CDATA[
PUT /items/123 HTTP/1.1
Host: foo.example
Content-Type: application/json
Accept-Encoding: br
Repr-Digest: sha-256=:X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=:

{"hello": "world"}
]]></sourcecode>
        </figure>
        <figure>
          <name>Response with Digest of Encoded Content</name>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

HTTP/1.1 200 OK
Content-Type: application/json
Content-Encoding: br
Content-Location: /items/123
Repr-Digest: \
  sha-256=:4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo=:,\
  sha-512=:pxo7aYzcGI88pnDnoSmAnaOEVys0MABhgvHY9+VI+ElE60jBCwnMPyA/\
  s3NF3ZO5oIWA7lf8ukk+5KJzm3p5og==:

iwiAeyJoZWxsbyI6ICJ3b3JsZCJ9Aw==
]]></sourcecode>
        </figure>
      </section>
      <section anchor="post-not-request-uri">
        <name>POST Response does not Reference the Request URI</name>
        <t>The request <tt>Repr-Digest</tt> field-value is computed on the enclosed representation (see
<xref target="state-changing-requests"/>).</t>
        <t>The representation enclosed in the response refers to the resource identified by
<tt>Content-Location</tt> (see <xref section="6.4.2" sectionFormat="of" target="RFC9110"/>). <tt>Repr-Digest</tt> is thus computed on the enclosed representation.</t>
        <figure>
          <name>POST Request with Digest</name>
          <sourcecode type="http-message"><![CDATA[
POST /books HTTP/1.1
Host: foo.example
Content-Type: application/json
Accept: application/json
Accept-Encoding: identity
Repr-Digest: sha-256=:bWopGGNiZtbVgHsG+I4knzfEJpmmmQHf7RHDXA3o1hQ=:

{"title": "New Title"}
]]></sourcecode>
        </figure>
        <figure>
          <name>Response with Digest of Resource</name>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 201 Created
Content-Type: application/json
Content-Location: /books/123
Location: /books/123
Repr-Digest: sha-256=:yxOAqEeoj+reqygSIsLpT0LhumrNkIds5uLKtmdLyYE=:

{
  "id": "123",
  "title": "New Title"
}
]]></sourcecode>
        </figure>
        <t>Note that a <tt>204 No Content</tt> response without content but with the same
<tt>Repr-Digest</tt> field-value would have been legitimate too.
In that case, <tt>Content-Digest</tt> would have been computed on an empty content.</t>
      </section>
      <section anchor="post-referencing-status">
        <name>POST Response Describes the Request Status</name>
        <t>The request <tt>Repr-Digest</tt> field-value is computed on the enclosed representation (see
<xref target="state-changing-requests"/>).</t>
        <t>The representation enclosed in the response describes the status of the request,
so <tt>Repr-Digest</tt> is computed on that enclosed representation.</t>
        <t>Response <tt>Repr-Digest</tt> has no explicit relation with the resource referenced by
<tt>Location</tt>.</t>
        <figure>
          <name>POST Request with Digest</name>
          <sourcecode type="http-message"><![CDATA[
POST /books HTTP/1.1
Host: foo.example
Content-Type: application/json
Accept: application/json
Accept-Encoding: identity
Repr-Digest: sha-256=:bWopGGNiZtbVgHsG+I4knzfEJpmmmQHf7RHDXA3o1hQ=:

{"title": "New Title"}
]]></sourcecode>
        </figure>
        <figure>
          <name>Response with Digest of Representation</name>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 201 Created
Content-Type: application/json
Repr-Digest: sha-256=:2LBp5RKZGpsSNf8BPXlXrX4Td4Tf5R5bZ9z7kdi5VvY=:
Location: /books/123

{
  "status": "created",
  "id": "123",
  "ts": 1569327729,
  "instance": "/books/123"
}
]]></sourcecode>
        </figure>
      </section>
      <section anchor="digest-with-patch">
        <name>Digest with PATCH</name>
        <t>This case is analogous to a POST request where the target resource reflects the
effective request URI.</t>
        <t>The PATCH request uses the <tt>application/merge-patch+json</tt> media type defined in
<xref target="RFC7396"/>.</t>
        <t><tt>Repr-Digest</tt> is calculated on the enclosed payload, which corresponds to the patch
document.</t>
        <t>The response <tt>Repr-Digest</tt> field-value is computed on the complete representation of the patched
resource.</t>
        <figure anchor="fig-patch">
          <name>PATCH Request with Digest</name>
          <sourcecode type="http-message"><![CDATA[
PATCH /books/123 HTTP/1.1
Host: foo.example
Content-Type: application/merge-patch+json
Accept: application/json
Accept-Encoding: identity
Repr-Digest: sha-256=:bWopGGNiZtbVgHsG+I4knzfEJpmmmQHf7RHDXA3o1hQ=:

{"title": "New Title"}
]]></sourcecode>
        </figure>
        <figure>
          <name>Response with Digest of Representation</name>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Repr-Digest: sha-256=:yxOAqEeoj+reqygSIsLpT0LhumrNkIds5uLKtmdLyYE=:

{
  "id": "123",
  "title": "New Title"
}
]]></sourcecode>
        </figure>
        <t>Note that a <tt>204 No Content</tt> response without content but with the same
<tt>Repr-Digest</tt> field-value would have been legitimate too.</t>
      </section>
      <section anchor="error-responses">
        <name>Error responses</name>
        <t>In error responses, the representation data does not necessarily refer to the
target resource. Instead, it refers to the representation of the error.</t>
        <t>In the following example, a client sends the same request from <xref target="fig-patch"/> to
patch the resource located at /books/123. However, the resource does not exist
and the server generates a 404 response with a body that describes the error in
accordance with <xref target="RFC7807"/>.</t>
        <t>The response <tt>Repr-Digest</tt> field-value is computed on this enclosed representation.</t>
        <figure>
          <name>Response with Digest of Error Representation</name>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 404 Not Found
Content-Type: application/problem+json
Repr-Digest: sha-256=:KPqhVXAT25LLitV1w0O167unHmVQusu+fpxm65zAsvk=:

{
  "title": "Not Found",
  "detail": "Cannot PATCH a non-existent resource",
  "status": 404
}
]]></sourcecode>
        </figure>
      </section>
      <section anchor="use-with-trailer-fields-and-transfer-coding">
        <name>Use with Trailer Fields and Transfer Coding</name>
        <t>An origin server sends <tt>Repr-Digest</tt> as trailer field, so it can calculate digest-value
while streaming content and thus mitigate resource consumption.
The <tt>Repr-Digest</tt> field-value is the same as in <xref target="example-full-representation"/> because <tt>Repr-Digest</tt> is designed to
be independent from the use of one or more transfer codings (see <xref target="representation-digest"/>).</t>
        <figure>
          <name>GET Request</name>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: foo.example

]]></sourcecode>
        </figure>
        <figure>
          <name>Chunked Response with Digest</name>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Transfer-Encoding: chunked
Trailer: Digest

8\r\n
{"hello"\r\n
8
: "world\r\n
2\r\n
"}\r\n
0\r\n
Repr-Digest: sha-256=:X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=:

]]></sourcecode>
        </figure>
      </section>
    </section>
    <section anchor="examples-solicited">
      <name>Examples of Want-Repr-Digest Solicited Digest</name>
      <t>The following examples demonstrate interactions where a client solicits a
<tt>Repr-Digest</tt> using <tt>Want-Repr-Digest</tt>.
The behavior of <tt>Content-Digest</tt> and <tt>Want-Content-Digest</tt> is identical.</t>
      <t>Some examples include JSON objects in the content.
For presentation purposes, objects that fit completely within the line-length limits
are presented on a single line using compact notation with no leading space.
Objects that would exceed line-length limits are presented across multiple lines
(one line per key-value pair) with 2 spaced of leading indentation.</t>
      <t>Checksum mechanisms described in this document are media-type agnostic
and do not provide canonicalization algorithms for specific formats.
Examples are calculated inclusive of any space.</t>
      <section anchor="server-selects-clients-least-preferred-algorithm">
        <name>Server Selects Client's Least Preferred Algorithm</name>
        <t>The client requests a digest, preferring "sha". The server is free to reply with
"sha-256" anyway.</t>
        <figure>
          <name>GET Request with Want-Repr-Digest</name>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: foo.example
Want-Repr-Digest: sha-256=3, sha=10

]]></sourcecode>
        </figure>
        <figure>
          <name>Response with Different Algorithm</name>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Repr-Digest: sha-256=:X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=:

{"hello": "world"}
]]></sourcecode>
        </figure>
      </section>
      <section anchor="ex-server-selects-unsupported-algorithm">
        <name>Server Selects Algorithm Unsupported by Client</name>
        <t>The client requests a "sha" digest because that is the only algorithm it
supports. The server is not obliged to produce a response containing a "sha"
digest, it instead uses a different algorithm.</t>
        <figure>
          <name>GET Request with Want-Repr-Digest</name>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: foo.example
Want-Repr-Digest: sha=10

]]></sourcecode>
        </figure>
        <figure>
          <name>Response with Unsupported Algorithm</name>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

HTTP/1.1 200 OK
Content-Type: application/json
Repr-Digest: \
  sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+TaPm+AbwAgBWnrI\
  iYllu7BNNyealdVLvRwEmTHWXvJwew==:

{"hello": "world"}
]]></sourcecode>
        </figure>
      </section>
      <section anchor="server-does-not-support-client-algorithm-and-returns-an-error">
        <name>Server Does Not Support Client Algorithm and Returns an Error</name>
        <t><xref target="ex-server-selects-unsupported-algorithm"/> is an example where a server ignores
the client's preferred digest algorithm. Alternatively a server can also reject
the request and return an error.</t>
        <t>In this example, the client requests a "sha" <tt>Repr-Digest</tt>, and the server returns an
error with problem details <xref target="RFC7807"/> contained in the content. The problem
details contain a list of the hashing algorithms that the server supports. This
is purely an example, this specification does not define any format or
requirements for such content.</t>
        <figure>
          <name>GET Request with Want-Repr-Digest</name>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: foo.example
Want-Repr-Digest: sha=10

]]></sourcecode>
        </figure>
        <figure>
          <name>Response advertising the supported algorithms</name>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 400 Bad Request
Content-Type: application/problem+json

{
  "title": "Bad Request",
  "detail": "Supported hashing algorithms: sha-256, sha-512",
  "status": 400
}
]]></sourcecode>
        </figure>
      </section>
    </section>
    <section anchor="migrating-from-rfc-3230">
      <name>Migrating from RFC 3230</name>
      <t>HTTP digests are computed by applying a hashing algorithm to input data.
RFC 3230 defined the input data as an "instance", a term it also defined.
The concept of instance has since been superseded by the HTTP semantic term "representation".
It is understood that some implementations of RFC 3230
mistook "instance" to mean HTTP content.
Using content for the Digest field is an error
that leads to interoperability problems between peers that implement RFC 3230.</t>
      <t>RFC 3230 was only ever intended
to use what HTTP now defines as selected representation data.
The semantic concept of digest and representation are explained
alongside the definition of <xref target="representation-digest">the Repr-Digest field</xref>.</t>
      <t>While the syntax of Digest and Repr-Digest are different,
the considerations and examples this document gives for Repr-Digest
apply equally to Digest because they operate on the same input data;
see <xref target="state-changing-requests"/>, <xref target="security"/> and <xref target="usage-in-signatures"/>.</t>
      <t>RFC 3230 could never communicate
the digest of HTTP message content in the Digest field;
Content-Digest now provides that capability.</t>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>This document is based on ideas from <xref target="RFC3230"/>, so thanks
to Jeff Mogul and Arthur Van Hoff for their great work.
The original idea of refreshing RFC3230 arose from an interesting
discussion with Mark Nottingham, Jeffrey Yasskin and Martin Thomson when reviewing
the MICE content coding.</t>
      <t>Thanks to Julian Reschke for his valuable contributions to this document,
and to the following contributors that have helped improve this specification by reporting bugs,
asking smart questions, drafting or reviewing text, and evaluating open issues:
Mike Bishop,
Brian Campbell,
Matthew Kerwin,
James Manger,
Tommy Pauly,
Sean Turner,
Justin Richer,
and Erik Wilde.</t>
    </section>
    <section numbered="false" removeInRFC="true" anchor="code-samples">
      <name>Code Samples</name>
      <t>How can I generate and validate the <tt>Repr-Digest</tt> values shown in the examples
throughout this document?</t>
      <t>The following python3 code can be used to generate digests for JSON objects
using SHA algorithms for a range of encodings. Note that these are formatted as
base64. This function could be adapted to other algorithms and should take into
account their specific formatting rules.</t>
      <artwork><![CDATA[
import base64, json, hashlib, brotli, logging
log = logging.getLogger()

def encode_item(item, encoding=lambda x: x):
    indent = 2 if isinstance(item, dict) and len(item) > 1 else None
    json_bytes = json.dumps(item, indent=indent).encode()
    return encoding(json_bytes)

def digest_bytes(bytes_, algorithm=hashlib.sha256):
    checksum_bytes = algorithm(bytes_).digest()
    log.warning("Log bytes: \n[%r]", bytes_)
    return base64.encodebytes(checksum_bytes).strip()

def digest(item, encoding=lambda x: x, algorithm=hashlib.sha256):
    content_encoded = encode_item(item, encoding)
    return digest_bytes(content_encoded, algorithm)


item = {"hello": "world"}

print("Encoding | hashing algorithm | digest-value")
print("Identity | sha256 |", digest(item))
# Encoding | hashing algorithm | digest-value
# Identity | sha256 | X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=

print("Encoding | hashing algorithm | digest-value")
print("Brotli | sha256 |", digest(item, encoding=brotli.compress))
# Encoding | hashing algorithm | digest-value
# Brotli | sha256 | 4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo=

print("Encoding | hashing algorithm | digest-value")
print("Identity | sha512 |", digest(item, algorithm=hashlib.sha512))
print("Brotli | sha512 |", digest(item, algorithm=hashlib.sha512,
                                    encoding=brotli.compress))
# Encoding | hashing algorithm | digest-value
# Identity | sha512 |b'WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+TaPm'
#                     '+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew=='
# Brotli | sha512 | b'pxo7aYzcGI88pnDnoSmAnaOEVys0MABhgvHY9+VI+ElE6'
#                   '0jBCwnMPyA/s3NF3ZO5oIWA7lf8ukk+5KJzm3p5og=='

]]></artwork>
    </section>
    <section numbered="false" removeInRFC="true" anchor="changes">
      <name>Changes</name>
      <section numbered="false" anchor="since-draft-ietf-httpbis-digest-headers-08">
        <name>Since draft-ietf-httpbis-digest-headers-08</name>
        <ul spacing="normal">
          <li>Add note about migrating from RFC 3230. #1968, #1971</li>
          <li>Clarify what Want-* means in responses. #2097</li>
          <li>Editorial changes to structure and to align to HTTP style guide.</li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-digest-headers-07">
        <name>Since draft-ietf-httpbis-digest-headers-07</name>
        <ul spacing="normal">
          <li>Introduced Repr-Digest and Want-Repr-Digest, and deprecated
Digest and Want-Digest. Use of Structured Fields. #1993, #1919</li>
          <li>IANA refactoring. #1983</li>
          <li>No normative text in security considerations. #1972</li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-digest-headers-06">
        <name>Since draft-ietf-httpbis-digest-headers-06</name>
        <ul spacing="normal">
          <li>Remove id-sha-256 and id-sha-512 from the list of supported algorithms #855</li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-digest-headers-05">
        <name>Since draft-ietf-httpbis-digest-headers-05</name>
        <ul spacing="normal">
          <li>Reboot digest-algorithm values registry #1567</li>
          <li>Add Content-Digest #1542</li>
          <li>Remove SRI section #1478</li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-digest-headers-04">
        <name>Since draft-ietf-httpbis-digest-headers-04</name>
        <ul spacing="normal">
          <li>Improve SRI section #1354</li>
          <li>About duplicate digest-algorithms #1221</li>
          <li>Improve security considerations #852</li>
          <li>md5 and sha deprecation references #1392</li>
          <li>Obsolete 3230 #1395</li>
          <li>Editorial #1362</li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-digest-headers-03">
        <name>Since draft-ietf-httpbis-digest-headers-03</name>
        <ul spacing="normal">
          <li>Reference semantics-12</li>
          <li>Detail encryption quirks</li>
          <li>Details on Algorithm agility #1250</li>
          <li>Obsolete parameters #850</li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-digest-headers-02">
        <name>Since draft-ietf-httpbis-digest-headers-02</name>
        <ul spacing="normal">
          <li>Deprecate SHA-1 #1154</li>
          <li>Avoid id-* with encrypted content</li>
          <li>Digest is independent from MESSAGING and HTTP/1.1 is not normative #1215</li>
          <li>Identity is not a valid field value for content-encoding #1223</li>
          <li>Mention trailers #1157</li>
          <li>Reference httpbis-semantics #1156</li>
          <li>Add contentMD5 as an obsoleted digest-algorithm #1249</li>
          <li>Use lowercase digest-algorithms names in the doc and in the digest-algorithm IANA table.</li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-digest-headers-01">
        <name>Since draft-ietf-httpbis-digest-headers-01</name>
        <ul spacing="normal">
          <li>Digest of error responses is computed on the error representation-data #1004</li>
          <li>Effect of HTTP semantics on payload and message body moved to appendix #1122</li>
          <li>Editorial refactoring, moving headers sections up. #1109-#1112, #1116,
#1117, #1122-#1124</li>
        </ul>
      </section>
      <section numbered="false" anchor="since-draft-ietf-httpbis-digest-headers-00">
        <name>Since draft-ietf-httpbis-digest-headers-00</name>
        <ul spacing="normal">
          <li>Align title with document name</li>
          <li>Add id-sha-* algorithm examples #880</li>
          <li>Reference <xref target="RFC6234"/> and <xref target="RFC3174"/> instead of FIPS-1</li>
          <li>Deprecate MD5</li>
          <li>Obsolete ADLER-32 but don't forbid it #828</li>
          <li>Update CRC32C value in IANA table #828</li>
          <li>Use when acting on resources (POST, PATCH) #853</li>
          <li>Added Relationship with SRI, draft Use Cases #868, #971</li>
          <li>Warn about the implications of <tt>Content-Location</tt></li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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
qVuqX9ISuw2V6QVHaUJx1YziHEqSbgrsinAMUxshFA+KkqyKZfr75+B+CZz/
esi/uXN49P3s193nT869b1Yvjqfvvtl6ceDn3/tnV9Ot05ezF+9+erZxeZ4/
ffMlkf82TCd+VvFNI57zx2/LmNKM7sZGvBvOOxoQ3zTkSZmxeweTU/ZdUrtU
xXz+c4zzS9vt90ao5db9Z5jxt2Leu9/Apvl1sppvvNje3fV/HbwJ+7PBr0cH
s+DNm+x4frEb/rj6+27vIoq/JOYJl/iUU+FWTHQW0zI6gcP2rHd1EGNte2Qz
xcnErPeWLs+QvpfcbElm6ja01Kzy0YI3iqopPm3M5Po0kzTobe9Bq+NRY2n7
PUFP9ef27h/OZm/SngLOCsAcNbmMzSJV+5a+FY3gMKJC4RBF73L9XuDwXq7g
4U5FrF5/8SbNn4HuBCu8h5HZEp6QsLjXoqAv02CNCC75Kqkb41IMcuFV7sek
aj4UuZtHNHXuClHzSg2Sit+EW7diglAWSD29Eo5rG8M9SeIsDDgzjj3BJV2i
mLF+PRbPKEp04aFZ3vsnMNMZh6HcIHgbkWXmfi3n7iyyHZPi4i4Bu2RELbFn
S7xiEI8W3GkrpVoTSt5aEipxb442B6uWxWaWetLvJIc+wfQbTvyLsIhPK8W4
BSMEiUcXbPhL+TkdF5KFVYMTFLZs3yDbf1+vry+Bwr0aUKL3O+j7ixfxT+9u
0sHiePv44MXGYONF+tPBi73+vOYRL6tPIqeos6dxhvPvVNVYMJXX5j7PZayk
XeE5y80Il+XcVVJVW7+JDl6zIZYNpyr3mC5rUVa6Js/Ju69XmTAbId/YvGi6
KOsofP1MeY6+9xUJrYphoFT9y9HeJ0hvE7HmnsrkHTZ3T5Iq7+RIikHqdCP2
xOfLXRmyaHJcXPEuKY/Vvr1uxqCkrlbkwycD8W17GZkrRdTgXgH3/38Ew1c1
s5slRJNM+SoNi2c38Y734+/DZ8e7u7PoMIrPp/3Ie3X0dpGuvew/uZxcP/9x
75u3x98chUfba78+OZhHL18v+qs0yMbp042fXm3Fx+/6O+F4N7+6+mbruxe/
TzdmW/Hk8RcUTUeCkgclK54CRmc1jluk8SFpnDkd4j48aOxAeB+BdLcerub6
7aV3uq9YubW0SW+Jru/SrLEpHFm/kad+xXLNd0Ymzh13ujyiOIjjq/RP84a7
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

-->

</rfc>
