HTTP Working Group | R. Polli |
Internet-Draft | Team Digitale, Italian Government |
Obsoletes: 3230 (if approved) | L. Pardue |
Intended status: Standards Track | Cloudflare |
Expires: March 31, 2022 | September 27, 2021 |
This document defines HTTP fields that support integrity checksums. The Digest field can be used for the integrity of HTTP representations. The Content-Digest field can be used for the integrity of HTTP message content. Want-Digest and Want-Content-Digest can be used to indicate a sender's desire to receive integrity fields respectively.¶
This document obsoletes RFC 3230.¶
RFC EDITOR: please remove this section before publication ¶
Discussion of this draft takes place on the HTTP working group mailing list (ietf-http-wg@w3.org), which is archived at https://lists.w3.org/Archives/Public/ietf-http-wg/.¶
The source code and issues list for this draft can be found at https://github.com/httpwg/http-extensions.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as “work in progress”.¶
This Internet-Draft will expire on March 31, 2022.¶
Copyright (c) 2021 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.¶
HTTP does not define a means to protect the integrity of representations. When HTTP messages are transferred between endpoints, the protocol might choose to make use of features of the lower layer in order to provide some integrity protection; for instance, TCP checksums or TLS records [RFC2818].¶
This document defines two digest integrity mechanisms for HTTP. First, representation data integrity, which acts on representation data (Section 3.2 of [SEMANTICS]). Second, content digest integrity, which acts on conveyed content (Section 6.4 of [SEMANTICS]). Both mechanisms operate independent of transport integrity, offering the potential to detect programming errors and corruption of data in flight or at rest. They can be used across multiple hops in order to provide end-to-end integrity guarantees, which can aid fault diagnosis when resources are transferred across hops and system boundaries. Finally, they can be used to validate integrity when reconstructing a resource fetched using different HTTP connections.¶
This document is structured as follows:¶
This document defines the Digest request and response header and trailer field; see Section 3. At a high level, the value contains a checksum, computed over selected representation data (Section 3.2 of [SEMANTICS]), that the recipient can use to validate integrity. Basing Digest on the selected representation makes it straightforward to apply it to use-cases where the transferred data requires some sort of manipulation to be considered a representation or conveys a partial representation of a resource, such as Range Requests (see Section 14.2 of [SEMANTICS]).¶
To support use-cases where a simple checksum of the content bytes is required, this document introduces the Content-Digest request and response header and trailer field; see Section 4.¶
Digest and Content-Digest support algorithm agility. The Want-Digest and Want-Content-Digest fields allows endpoints to express interest in Digest and Content-Digest respectively, and preference of algorithms in either.¶
Digest field calculations are tied to the Content-Encoding and Content-Type header fields. Therefore, a given resource may have multiple different checksum values when transferred with HTTP. To allow both parties to exchange a simple checksum with no content codings (see Section 8.4.1 of [SEMANTICS]), two more digest-algorithms are added ("id-sha-256" and "id-sha-512").¶
Digest 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.¶
This specification does not define means for authentication, authorization or privacy.¶
Historically, the Content-MD5 header field provided an HTTP integrity mechanism but HTTP/1.1 ([RFC7231], Appendix B) obsoleted it due to inconsistent handling of partial responses. [RFC3230] defined the concept of "instance" digests and a more flexible integrity scheme to help address issues with Content-MD5. It first introduced the Digest and Want-Digest fields. HTTP terminology has evolved since [RFC3230] was published. The concept of "instance" has been superseded by selected representation.¶
This document replaces [RFC3230]. The Digest and Want-Digest field definitions are updated to align with the terms and notational conventions in [SEMANTICS]. Changes are intended to be semantically compatible with existing implementations but note that negotiation of Content-MD5 is deprecated Appendix D.1 and has been replaced by Content-Digest negotiation via Want-Content-Digest. Digest field parameters are obsoleted Appendix D.2 and the algorithm table has been updated to reflect the current state of the art.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
This document uses the Augmented BNF defined in [RFC5234] and updated by [RFC7405] along with the "#rule" extension defined in Section 5.6.1 of [SEMANTICS] and the "qvalue" rule defined in Section 12.4.2 of [SEMANTICS].¶
The definitions "representation", "selected representation", "representation data", "representation metadata", and "content" in this document are to be interpreted as described in [SEMANTICS].¶
Algorithm names respect the casing used in their definition document (e.g. SHA-1, CRC32c) whereas digest-algorithm tokens are quoted (e.g. "sha", "crc32c").¶
The representation digest is an integrity mechanism for HTTP resources which uses a checksum that is calculated independently of the content (see Section 6.4 of [SEMANTICS]). It uses the representation data (see Section 8.1 of [SEMANTICS]), that can be fully or partially contained in the content, or not contained at all.¶
This takes into account the effect of the HTTP semantics on the 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 Section 6.1 of [HTTP11]). To help illustrate how such things affect Digest, several examples are provided in Appendix A.¶
A representation digest consists of the value of a checksum computed on the entire selected representation data (see Section 8.1 of [SEMANTICS]) of a resource identified according to Section 6.4.2 of [SEMANTICS] together with an indication of the algorithm used:¶
representation-data-digest = digest-algorithm "=" <encoded digest output>
When a message has no representation data it is still possible to assert that no representation data was sent computing the representation digest on an empty string (see Section 8.3).¶
The Digest field contains a comma-separated list of one or more representation digest values as defined in Section 2. It can be used in both requests and responses.¶
Digest = 1#representation-data-digest
For example:¶
Digest: id-sha-512=WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+TaPm AbwAgBWnrIiYllu7BNNyealdVLvRwE\nmTHWXvJwew==
A Digest field MAY contain multiple representation-data-digest values. For example, a server may provide representation-data-digest values using different algorithms, allowing it to support a population of clients with different evolving capabilities; this is particularly useful in support of transitioning away from weaker algorithms should the need arise (see Section 8.6).¶
Digest: sha-256=4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo=, id-sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=
A recipient MAY ignore any or all of the representation-data-digests in a Digest field. This allows the recipient to choose which digest-algorithm(s) to use for validation instead of verifying every received representation-data-digest.¶
A sender MAY send a representation-data-digest using a digest-algorithm without knowing whether the recipient supports the digest-algorithm, or even knowing that the recipient will ignore it.¶
Digest can be sent in a trailer section. In this case, Digest MAY be merged into the header section; see Section 6.5.1 of [SEMANTICS].¶
When an incremental digest-algorithm is used, the sender and the receiver can dynamically compute the digest value while streaming the content.¶
A non-comprehensive set of examples showing the impacts of representation metadata, payload transformations and HTTP methods on Digest is provided in Appendix B and Appendix C.¶
The Content-Digest field contains a comma-separated list of one or more content digest values. A content digest value is computed by applying a digest-algorithm to the actual message content (see Section 6.4 of [SEMANTICS]). It can be used in both requests and responses.¶
Content-Digest = 1#content-digest content-digest = digest-algorithm "=" <encoded digest output>
For example:¶
Content-Digest: id-sha-512=WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+TaPm AbwAgBWnrIiYllu7BNNyealdVLvRwE\nmTHWXvJwew==
A Content-Digest field MAY contain multiple content-digest values, similarly to Digest (see Section 3)¶
Content-Digest: sha-256=4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo=, id-sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=
A recipient MAY ignore any or all of the content-digests in a Content-Digest field. This allows the recipient to choose which digest-algorithm(s) to use for validation instead of verifying every received content-digest.¶
A sender MAY send a content-digest using a digest-algorithm without knowing whether the recipient supports the digest-algorithm, or even knowing that the recipient will ignore it.¶
Content-Digest can be sent in a trailer section. In this case, Content-Digest MAY be merged into the header section; see Section 6.5.1 of [SEMANTICS].¶
When an incremental digest-algorithm is used, the sender and the receiver can dynamically compute the digest value while streaming the content.¶
Senders can indicate their integrity checksum preferences using the Want-Digest or Want-Content-Digest fields. These can be used in both requests and responses.¶
Want-Digest indicates the sender's desire to receive a representation digest on messages associated with the request URI and representation metadata, using the Digest field.¶
Want-Content-Digest indicates the sender's desire to receive a content digest on messages associated with the request URI and representation metadata, using the Content-Digest field.¶
Want-Digest = 1#want-digest-value Want-Content-Digest = 1#want-digest-value want-digest-value = digest-algorithm [ ";" "q" "=" qvalue]
qvalue indicates the sender's digest-algorithm preferences. Section 12.4.2 of [SEMANTICS]) describes qvalue usage and semantics.¶
Senders can provide multiple digest-algorithm items with the same qvalue.¶
Examples:¶
Want-Digest: sha-256 Want-Digest: sha-512;q=0.3, sha-256;q=1, unixsum;q=0 Want-Content-Digest: sha-256 Want-Content-Digest: sha-512;q=0.3, sha-256;q=1, unixsum;q=0
Digest-algorithm values are used to indicate a specific digest computation.¶
digest-algorithm = token
All digest-algorithm token values are case-insensitive but lower case is preferred; digest-algorithm token values MUST be compared in a case-insensitive fashion.¶
Every digest-algorithm defines its computation procedure and encoding output. Unless specified otherwise, comparison of encoded output is case-sensitive.¶
The "HTTP Digest Algorithm Values Registry", maintained by IANA at https://www.iana.org/assignments/http-dig-alg/ registers digest-algorithm values. Registrations MUST include the following fields:¶
The associated encoding for new digest-algorithms MUST either be represented as a quoted string or MUST NOT include ";" or "," in the character sets used for the encoding.¶
Deprecated digest algorithms MUST NOT be used.¶
The registry is initialized with the tokens listed below.¶
To allow sender and recipient to provide a checksum which is independent from Content-Encoding, the following additional digest-algorithms are defined:¶
When the representation enclosed in a state-changing request does not describe the target resource, the representation digest MUST be computed on the representation-data. This is the only possible choice because representation digest requires complete representation metadata (see Section 2).¶
In responses,¶
The latter case is done according to the HTTP semantics of the given method, for example using the Content-Location header field (see Section 8.7 of [SEMANTICS]). In contrast, the Location header field does not affect Digest because it is not representation metadata.¶
For example, in PATCH 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 Section 2 of [PATCH]). In responses, instead, the representation digest will be computed on the selected representation of the patched resource.¶
When a state-changing method returns the Content-Location header field, the enclosed representation refers to the resource identified by its value and Digest is computed accordingly. An example is given in Appendix B.7.¶
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 accidental corruption.¶
Digest 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.¶
Digest fields can help detect representation data or content modification due to implementation errors, undesired "transforming proxies" (see Section 7.7 of [SEMANTICS]) 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 user-agent can validate that resource retrieval succeeded before handing off to a HTML parser, video player etc. for parsing.¶
Identity digest-algorithms (e.g. "id-sha-256" and "id-sha-512") are particularly useful for end-to-end integrity because they allow piecing together a resource from different sources with different HTTP messaging characteristics. For example, different servers that apply different content codings.¶
Note that using digest fields 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 Section 8.3.¶
Digital signatures are widely used together with checksums to provide the certain identification of the origin of a message [NIST800-32]. Such signatures can protect one or more HTTP fields and there are additional considerations when Digest is included in this set.¶
Since digest fields are hashes of resource representations, they explicitly depend on the representation metadata (e.g. the values of Content-Type, Content-Encoding etc). A signature that protects Digest but not other representation metadata can expose the communication to tampering. For example, an actor could manipulate the Content-Type 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 Section 7.1.¶
Digest fields SHOULD always be used over a connection that provides integrity at the transport layer that protects HTTP fields.¶
A Digest field using NOT RECOMMENDED digest-algorithms SHOULD NOT be used in signatures.¶
Using signatures to protect the checksum of an empty representation allows receiving endpoints to detect if an eventual payload has been stripped or added.¶
Any mangling of digest fields, including de-duplication of representation-data-digest values or combining different field values (see Section 5.2 of [SEMANTICS]) might affect signature validation.¶
Before sending digest fields in a trailer section, the sender should consider that intermediaries are explicitly allowed to drop any trailer (see Section 6.5.2 of [SEMANTICS]).¶
When digest 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.¶
Not every digest-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 [I-D.thomson-http-mice]).¶
Digest fields may expose details of encrypted payload when the checksum is computed on the unencrypted data. For example, the use of the "id-sha-256" digest-algorithm in conjunction with the encrypted content-coding [RFC8188].¶
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.¶
The security properties of digest-algorithms are not fixed. Algorithm Agility (see [RFC7696]) is achieved by providing implementations with flexibility choose digest-algorithms from the IANA Digest Algorithm Values registry in Section 9.1.¶
To help endpoints distinguish weaker algorithms from stronger ones, this document adds to the IANA Digest Algorithm Values registry a new "Status" field containing the most recent appraisal of the digest-algorithm.¶
An endpoint might have a preference for algorithms, such as preferring "standard" algorithms over "deprecated" ones. Transition from weak algorithms is supported by negotiation of digest-algorithm using Want-Digest or Want-Content-Digest (see Section 5) or by sending multiple representation-data-digest values from which the receiver chooses. Endpoints are advised that sending multiple values consumes resources, which may be wasted if the receiver ignores them (see Section 3).¶
An endpoint might receive multiple representation-data-digest values (see Section 3) that use the same digest-algorithm with different or identical digest-values. For example:¶
Digest: sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=, sha-256=47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=
A receiver is permitted to ignore any representation-data-digest value, so validation of duplicates is left as an implementation decision. Endpoints might select all, some, or none of the values for checksum comparison and, based on the intersection of those results, conditionally pass or fail digest validation.¶
Digest 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.¶
This memo sets this specification to be the establishing document for the HTTP Digest Algorithm Values registry.¶
IANA is asked to update the "Reference" for this registry to refer this document and to inizialize the registry with the tokens defined in Section 6.¶
This registry uses the Specification Required policy (Section 4.6 of [RFC8126]).¶
This memo adds the "contentMD5" token in the HTTP Digest Algorithm Values registry:¶
The digest-algorithm tokens for "MD5", "SHA", "SHA-256", "SHA-512" have been updated to lowercase.¶
The status of "MD5" and "SHA" has been updated to "deprecated", and their description has been modified accordingly.¶
The "id-sha-256" and "id-sha-512" algorithms have been added to the registry.¶
This section registers the Want-Digest field in the "Hypertext Transfer Protocol (HTTP) Field Name Registry" [SEMANTICS].¶
Field name: Want-Digest ¶
Status: permanent¶
This section registers the Digest field in the "Hypertext Transfer Protocol (HTTP) Field Name Registry" [SEMANTICS].¶
Field name: Digest ¶
Status: permanent¶
This section registers the Want-Content-Digest field in the "Hypertext Transfer Protocol (HTTP) Field Name Registry" [SEMANTICS].¶
Field name: Want-Content-Digest ¶
Status: permanent¶
This section registers the Content-Digest field in the "Hypertext Transfer Protocol (HTTP) Field Name Registry" [SEMANTICS].¶
Field name: Content-Digest ¶
Status: permanent¶
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.¶
PUT /entries/1234 HTTP/1.1 Host: foo.example Content-Type: application/json {"hello": "world"}
Figure 1: Request containing a JSON object without any content coding
PUT /entries/1234 HTTP/1.1 Host: foo.example Content-Type: application/json Content-Encoding: gzip H4sIAItWyFwC/6tWSlSyUlAypANQqgUAREcqfG0AAAA=
Figure 2: Request containing a gzip-encoded JSON object
Now the same content conveys a malformed JSON object, because the request does not indicate a content coding.¶
PUT /entries/1234 HTTP/1.1 Host: foo.example Content-Type: application/json H4sIAItWyFwC/6tWSlSyUlAypANQqgUAREcqfG0AAAA=
Figure 3: Request containing malformed JSON
A Range-Request alters the content, conveying a partial representation.¶
GET /entries/1234 HTTP/1.1 Host: foo.example Range: bytes=1-7
Figure 4: Request for partial content
HTTP/1.1 206 Partial Content Content-Encoding: gzip Content-Type: application/json Content-Range: bytes 1-7/18 iwgAla3RXA==
Figure 5: Partial response from a gzip-encoded representation
The method can also alter the content. For example, the response to a HEAD request does not carry content.¶
HEAD /entries/1234 HTTP/1.1 Host: foo.example Accept: application/json Accept-Encoding: gzip
Figure 6: HEAD request
HTTP/1.1 200 OK Content-Type: application/json Content-Encoding: gzip
Figure 7: Response to HEAD request (empty content)
Finally, the semantics of an HTTP response might decouple the effective request URI from the enclosed representation. In the example response below, the Content-Location header field indicates that the enclosed representation refers to the resource available at /authors/123, even though the request is directed to /authors/.¶
POST /authors/ HTTP/1.1 Host: foo.example Accept: application/json Content-Type: application/json {"author": "Camilleri"}
Figure 8: POST request
HTTP/1.1 201 Created Content-Type: application/json Content-Location: /authors/123 Location: /authors/123 {"id": "123", "author": "Camilleri"}
Figure 9: Response with Content-Location header
The following examples demonstrate interactions where a server responds with a Digest or Content-Digest fields even though the client did not solicit one using Want-Digest or Want-Content-Digest.¶
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.¶
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, Digest and Content-Digest can be returned independently.¶
In this example, the message content conveys complete representation data, so Digest and Content-Digest have the same value.¶
GET /items/123 HTTP/1.1 Host: foo.example
Figure 10: GET request for an item
HTTP/1.1 200 OK Content-Type: application/json Digest: sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE= Content-Digest: sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE= {"hello": "world"}
Figure 11: Response with Content-Digest
In this example, a HEAD request is used to retrieve the checksum of a resource.¶
The response Digest field-value is calculated over the JSON object {"hello": "world"}, which is not shown because there is no payload data. Content-Digest is computed on empty content.¶
HEAD /items/123 HTTP/1.1 Host: foo.example
Figure 12: HEAD request for an item
HTTP/1.1 200 OK Content-Type: application/json Digest: sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE= Content-Digest: sha-256=47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=
Figure 13: Response with both Content-Digest and Digest; empty content
In this example, the client makes a range request and the server responds with partial content. The Digest field-value represents the entire JSON object {"hello": "world"}, while the Content-Digest field-value is computed on the message content "hello".¶
GET /items/123 HTTP/1.1 Host: foo.example Range: bytes=1-7
Figure 14: Request for partial content
HTTP/1.1 206 Partial Content Content-Type: application/json Content-Range: bytes 1-7/18 Digest: sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE= Content-Digest: sha-256=Wqdirjg/u3J688ejbUlApbjECpiUUtIwT8lY/z81Tno= "hello"
Figure 15: Partial response with both Content-Digest and Digest
The request contains a Digest field-value calculated on the enclosed representation. It also includes an Accept-Encoding: br header field that advertises the client supports Brotli encoding.¶
The response includes a Content-Encoding: br that indicates the selected representation is Brotli-encoded. The Digest field-value is therefore different compared to the request.¶
For presentation purposes, the response body is displayed as a Base64-encoded string because it contains non-printable characters.¶
PUT /items/123 HTTP/1.1 Host: foo.example Content-Type: application/json Accept-Encoding: br Digest: sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE= {"hello": "world"}
Figure 16: PUT Request with Digest
HTTP/1.1 200 OK Content-Type: application/json Content-Location: /items/123 Content-Encoding: br Content-Length: 22 Digest: sha-256=4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo= iwiAeyJoZWxsbyI6ICJ3b3JsZCJ9Aw==
Figure 17: Response with Digest of encoded response
The request Digest field-value is calculated on the enclosed payload.¶
The response Digest field-value depends on the representation metadata header fields, including Content-Encoding: br even when the response does not contain content.¶
PUT /items/123 HTTP/1.1 Host: foo.example Content-Type: application/json Content-Length: 18 Accept-Encoding: br Digest: sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE= {"hello": "world"}
HTTP/1.1 204 No Content Content-Type: application/json Content-Encoding: br Digest: sha-256=4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo=
Figure 18: Empty response with Digest
The response contains two digest values:¶
As the response body contains non-printable characters, it is displayed as a base64-encoded string.¶
PUT /items/123 HTTP/1.1 Host: foo.example Content-Type: application/json Accept-Encoding: br Digest: sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE= {"hello": "world"}
Figure 19: PUT Request with Digest
HTTP/1.1 200 OK Content-Type: application/json Content-Encoding: br Content-Location: /items/123 Digest: sha-256=4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo=, id-sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE= iwiAeyJoZWxsbyI6ICJ3b3JsZCJ9Aw==
Figure 20: Response with Digest of Encoded Content
The representation enclosed in the response refers to the resource identified by Content-Location (see Section 6.4.2 of [SEMANTICS]). Digest is thus computed on the enclosed representation.¶
POST /books HTTP/1.1 Host: foo.example Content-Type: application/json Accept: application/json Accept-Encoding: identity Digest: sha-256=bWopGGNiZtbVgHsG+I4knzfEJpmmmQHf7RHDXA3o1hQ= {"title": "New Title"}
Figure 21: POST Request with Digest
HTTP/1.1 201 Created Content-Type: application/json Content-Location: /books/123 Location: /books/123 Digest: id-sha-256=yxOAqEeoj+reqygSIsLpT0LhumrNkIds5uLKtmdLyYE= { "id": "123", "title": "New Title" }
Figure 22: Response with Digest of Resource
Note that a 204 No Content response without content but with the same Digest field-value would have been legitimate too. In that case, Content-Digest would have been computed on an empty content.¶
The representation enclosed in the response describes the status of the request, so Digest is computed on that enclosed representation.¶
Response Digest has no explicit relation with the resource referenced by Location.¶
POST /books HTTP/1.1 Host: foo.example Content-Type: application/json Accept: application/json Accept-Encoding: identity Digest: sha-256=bWopGGNiZtbVgHsG+I4knzfEJpmmmQHf7RHDXA3o1hQ= {"title": "New Title"}
Figure 23: POST Request with Digest
HTTP/1.1 201 Created Content-Type: application/json Digest: id-sha-256=2LBp5RKZGpsSNf8BPXlXrX4Td4Tf5R5bZ9z7kdi5VvY= Location: /books/123 { "status": "created", "id": "123", "ts": 1569327729, "instance": "/books/123" }
Figure 24: Response with Digest of Representation
This case is analogous to a POST request where the target resource reflects the effective request URI.¶
Digest is calculated on the enclosed payload, which corresponds to the patch document.¶
The response Digest field-value is computed on the complete representation of the patched resource.¶
PATCH /books/123 HTTP/1.1 Host: foo.example Content-Type: application/merge-patch+json Accept: application/json Accept-Encoding: identity Digest: sha-256=bWopGGNiZtbVgHsG+I4knzfEJpmmmQHf7RHDXA3o1hQ= {"title": "New Title"}
Figure 25: PATCH Request with Digest
HTTP/1.1 200 OK Content-Type: application/json Digest: id-sha-256=yxOAqEeoj+reqygSIsLpT0LhumrNkIds5uLKtmdLyYE= { "id": "123", "title": "New Title" }
Figure 26: Response with Digest of Representation
Note that a 204 No Content response without content but with the same Digest field-value would have been legitimate too.¶
In error responses, the representation-data does not necessarily refer to the target resource. Instead, it refers to the representation of the error.¶
In the following example, a client sends the same request from Figure 25 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 [RFC7807].¶
The response Digest field-value is computed on this enclosed representation.¶
HTTP/1.1 404 Not Found Content-Type: application/problem+json Digest: sha-256=KPqhVXAT25LLitV1w0O167unHmVQusu+fpxm65zAsvk= { "title": "Not Found", "detail": "Cannot PATCH a non-existent resource", "status": 404 }
Figure 27: Response with Digest of Error Representation
An origin server sends Digest as trailer field, so it can calculate digest-value while streaming content and thus mitigate resource consumption. The Digest field-value is the same as in Appendix B.1 because Digest is designed to be independent from the use of one or more transfer codings (see Section 2).¶
GET /items/123 HTTP/1.1 Host: foo.example
Figure 28: GET Request
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 Digest: sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=
Figure 29: Chunked Response with Digest
The following examples demonstrate interactions where a client solicits a Digest using Want-Digest. The behavior of Content-Digest and Want-Content-Digest is identical.¶
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.¶
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.¶
The client requests a digest, preferring "sha". The server is free to reply with "sha-256" anyway.¶
GET /items/123 HTTP/1.1 Host: foo.example Want-Digest: sha-256;q=0.3, sha;q=1
Figure 30: GET Request with Want-Digest
HTTP/1.1 200 OK Content-Type: application/json Digest: sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE= {"hello": "world"}
Figure 31: Response with Different Algorithm
The client requests a "sha" digest only. The server is currently free to reply with a Digest containing an unsupported algorithm.¶
GET /items/123 HTTP/1.1 Host: foo.example Want-Digest: sha;q=1
Figure 32: GET Request with Want-Digest
HTTP/1.1 200 OK Content-Type: application/json Digest: id-sha-512=WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+TaPm +AbwAgBWnrIiYllu7BNNyealdVLvRwE\nmTHWXvJwew== {"hello": "world"}
Figure 33: Response with Unsupported Algorithm
The client requests a "sha" Digest, the server advises "sha-256" and "sha-512".¶
GET /items/123 HTTP/1.1 Host: foo.example Want-Digest: sha;q=1
Figure 34: GET Request with Want-Digest
HTTP/1.1 400 Bad Request Want-Digest: sha-256, sha-512
Figure 35: Response with Want-Digest
Sections 4.1.1 and 4.2 of [RFC3230] defined field parameters. This document obsoletes the usage of parameters with Digest because this feature has not been widely deployed and complicates field-value processing.¶
[RFC3230] intended field parameters to provide a common way to attach additional information to a representation-data-digest. However, if parameters are used as an input to validate the checksum, an attacker could alter them to steer the validation behavior.¶
A digest-algorithm can still be parameterized by defining its own way to encode parameters into the representation-data-digest, in such a way as to mitigate security risks related to its computation.¶
The vast majority of this document is inherited from [RFC3230], so thanks to J. Mogul and A. Van Hoff for their great work. The original idea of refreshing this document arose from an interesting discussion with M. Nottingham, J. Yasskin and M. Thomson when reviewing the MICE content coding.¶
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, and Erik Wilde.¶
RFC Editor: Please remove this section before publication. ¶
RFC Editor: Please remove this section before publication. ¶
How can I generate and validate the Digest values shown in the examples throughout this document?¶
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.¶
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 | digest-algorithm | digest-value") print("Identity | sha256 |", digest(item)) # Encoding | digest-algorithm | digest-value # Identity | sha256 | X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE= print("Encoding | digest-algorithm | digest-value") print("Brotli | sha256 |", digest(item, encoding=brotli.compress)) # Encoding | digest-algorithm | digest-value # Brotli | sha256 | 4REjxQ4yrqUVicfSKYNO/cF9zNj5ANbzgDZt3/h3Qxo= print("Encoding | digest-algorithm | digest-value") print("Identity | sha512 |", digest(item, algorithm=hashlib.sha512)) # Encoding | digest-algorithm | digest-value # Identity | sha512 | b'WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+TaPm' # '+AbwAgBWnrIiYllu7BNNyealdVLvRwE\nmTHWXvJwew=='
RFC Editor: Please remove this section before publication. ¶