| Internet-Draft | HTTP Problem Types for Digest Fields | February 2026 |
| Kleidl, et al. | Expires 13 August 2026 | [Page] |
- Workgroup:
- Building Blocks for HTTP APIs
- Internet-Draft:
- draft-ietf-httpapi-digest-fields-problem-types-04
- Published:
- Intended Status:
- Standards Track
- Expires:
HTTP Problem Types for Digest Fields
Abstract
This document specifies HTTP problem types that servers can use in responses to problems encountered while dealing with a request carrying integrity fields and integrity preference fields. Using an HTTP problem type, the server can provide machine-readable error details to aid debugging or error reporting.¶
About This Document
This note is to be removed before publishing as an RFC.¶
The latest revision of this draft can be found at https://ietf-wg-httpapi.github.io/digest-fields-problem-types/draft-ietf-httpapi-digest-fields-problem-types.html. Status information for this document may be found at https://datatracker.ietf.org/doc/draft-ietf-httpapi-digest-fields-problem-types/.¶
Discussion of this document takes place on the Building Blocks for HTTP APIs Working Group mailing list (mailto:httpapi@ietf.org), which is archived at https://mailarchive.ietf.org/arch/browse/httpapi/. Subscribe at https://www.ietf.org/mailman/listinfo/httpapi/.¶
Source for this draft and an issue tracker can be found at https://github.com/ietf-wg-httpapi/digest-fields-problem-types.¶
Status of This Memo
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 13 August 2026.¶
Copyright Notice
Copyright (c) 2026 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 Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
1. Introduction
[DIGEST] and [UNENC-DIGEST] define HTTP fields for exchanging integrity digests and preferences, but do not specify, require, or recommend any specific behavior for error handling relating to integrity by design. The responsibility is instead delegated to applications. This document defines a set of HTTP problem types ([PROBLEM]) that can be used by server applications to indicate that a problem was encountered while dealing with a request carrying integrity fields and integrity preference fields.¶
For example, a request message may include content alongside Content-Digest and Repr-Digest fields that use a digest algorithm the server does not support. An application could decide to reject this request because it cannot validate the integrity. Using an HTTP problem type, the server can provide machine-readable error details to aid debugging or error reporting, as shown in the following example.¶
2. Conventions and Definitions
Some examples in this document contain long lines that may be folded, as described in [RFC8792].¶
The terms "integrity fields" and "integrity preference fields" in this document are to be interpreted as described in [DIGEST] and updated in [UNENC-DIGEST].¶
The term "problem type" in this document is to be interpreted as described in [PROBLEM].¶
The terms "request", "response", "intermediary", "sender", "client", and "server" are from [HTTP].¶
The problem types in this document are defined using JSON [JSON]. They can be serialized into an equivalent XML format as outlined in Appendix B of [PROBLEM].¶
3. Problem Types
The following section defines three problem types to express common problems that occur when handling integrity or integrity preference fields on the server. These problem types use the digest- prefix in their type URI. Other problem types that are defined outside this document, yet specific to digest related problems, may reuse this prefix.¶
Requests can include multiple integrity or integrity preference fields. For example, they may use the Content-Digest and Repr-Digest fields simultaneously or express preferences for content and representation digests at the same time. Therefore, similar problems can appear multiple times for one request. The problem types defined in this document allow expressing multiple appearances, while each time identifying the corresponding header that contained the problematic value.¶
3.1. Unsupported Hashing Algorithms
This section defines the "https://iana.org/assignments/http-problem-types#digest-unsupported-algorithms" problem type. A server can use this problem type to communicate to the client that one or more of the hashing algorithms referenced in the integrity or integrity preference fields present in the request are not supported.¶
For this problem type, the unsupported_algorithms extension member is defined, whose value is a JSON [JSON] array of entries identifying each unsupported algorithm.
Each entry in the array is a JSON object with the following members:¶
-
The
algorithmmember is a JSON string containing the algorithm key of the unsupported algorithm.¶ -
The
headermember is a JSON string containing the name of the integrity or integrity preference field that referenced the unsupported algorithm.¶
The response can include the corresponding integrity preference field to indicate the server's algorithm support and preference.¶
This problem type is a hint to the client about algorithm support, which the client could use to retry the request with different, supported algorithms.¶
The following example shows a request with the content {"title": "New Title"} (plus LF). The digest fields use the MD5 algorithm, which is not supported by the server as the algorithm is deprecated.¶
This problem type can also be used when a request contains an integrity preference field with an unsupported algorithm. For example:¶
3.2. Invalid Digest Values
This section defines the "https://iana.org/assignments/http-problem-types#digest-invalid-values" problem type. A server can use this problem type when responding to a request, whose integrity fields include a digest value that cannot be generated by the corresponding hashing algorithm. For example, if the digest value of the sha-512 hashing algorithm is not 64 bytes long, it cannot be a valid SHA-512 digest value and the server can skip computing the digest value. This problem type cannot be used if the server is not able to parse the integrity fields and obtain a value according to Section 4.5 of [STRUCTURED-FIELDS], for example because of a syntax error.¶
For this problem type, the invalid_digests extension member is defined, whose value is a JSON [JSON] array of entries identifying each invalid digest.
Each entry in the array is a JSON object with the following members:¶
-
The
algorithmmember is a JSON string containing the algorithm key.¶ -
The
headermember is a JSON string containing the name of the integrity field that contained the invalid digest value.¶ -
The
reasonmember is a JSON string containing a human-readable description why the value is considered invalid.¶
This problem type indicates a fault in the sender's calculation or encoding of the digest value. A retry of the same request without modification will likely not yield a successful response.¶
The following example shows a request with the content {"hello": "world"} (plus LF), but the digest has been truncated. The subsequent response indicates the invalid SHA-512 digest.¶
3.3. Mismatched Digest Values
This section defines the "https://iana.org/assignments/http-problem-types#digest-mismatched-values" problem type. A server can use this problem type when responding to a request, whose integrity fields include a digest value that does not match the digest value that the server calculated for the request content or representation.¶
For this problem type, the mismatched_digests extension member is defined, whose value is a JSON [JSON] array of entries identifying each mismatched digest.
Each entry in the array is a JSON object with the following members:¶
-
The
algorithmmember is a JSON string containing the algorithm key of the hashing algorithm.¶ -
The
provided_digestmember is a JSON string containing the digest value taken from the request's integrity fields. The digest value is serialized as a byte sequence as described in Section 4.1.8 of [STRUCTURED-FIELDS].¶ -
The
headermember is a JSON string containing the name of the integrity field that contained the mismatched digest value.¶
The problem type intentionally does not include the digest value calculated by the server to avoid attackers abusing this information for oracle attacks.¶
If the sender receives this problem type, the request might be modified unintentionally by an intermediary. The sender could use this information to retry the request without modification to address temporary transmission issues.¶
The following example shows a request with the content {"hello": "woXYZ"} (plus LF), but the representation digest for {"hello": "world"} (plus LF). The subsequent response indicates the mismatched SHA-256 digest value.¶
4. Security Considerations
All security considerations from Section 6 of [DIGEST] and Section 7 of [UNENC-DIGEST] apply as well.¶
Disclosing error details could leak information such as the presence of intermediaries or the server's implementation details. Moreover, they can be used to fingerprint the server.¶
To mitigate these risks, server operators could assess the risk of disclosing error details and prefer a general problem type over a more specific one.¶
There is no method defined for the server to communicate a digest value that it calculated for the purpose of validation. Such information can be abused for oracle attacks.¶
5. IANA Considerations
IANA is asked to register the following entries in the "HTTP Problem Types" registry at https://www.iana.org/assignments/http-problem-types.¶
5.1. Registration of "digest-unsupported-algorithms" Problem Type
- Type URI:
-
https://iana.org/assignments/http-problem-types#digest-unsupported-algorithms¶
- Title:
-
Unsupported Hashing Algorithms¶
- Recommended HTTP status code:
-
400¶
- Reference:
-
Section 3.1 of this document¶
5.2. Registration of "digest-invalid-values" Problem Type
- Type URI:
-
https://iana.org/assignments/http-problem-types#digest-invalid-values¶
- Title:
-
Invalid Digest Values¶
- Recommended HTTP status code:
-
400¶
- Reference:
-
Section 3.2 of this document¶
5.3. Registration of "digest-mismatched-values" Problem Type
- Type URI:
-
https://iana.org/assignments/http-problem-types#digest-mismatched-values¶
- Title:
-
Mismatched Digest Values¶
- Recommended HTTP status code:
-
400¶
- Reference:
-
Section 3.3 of this document¶
6. Normative References
- [DIGEST]
- Polli, R. and L. Pardue, "Digest Fields", RFC 9530, DOI 10.17487/RFC9530, , <https://www.rfc-editor.org/rfc/rfc9530>.
- [HTTP]
- Fielding, R., Ed., Nottingham, M., Ed., and J. Reschke, Ed., "HTTP Semantics", STD 97, RFC 9110, DOI 10.17487/RFC9110, , <https://www.rfc-editor.org/rfc/rfc9110>.
- [JSON]
- Bray, T., Ed., "The JavaScript Object Notation (JSON) Data Interchange Format", STD 90, RFC 8259, DOI 10.17487/RFC8259, , <https://www.rfc-editor.org/rfc/rfc8259>.
- [PROBLEM]
- Nottingham, M., Wilde, E., and S. Dalal, "Problem Details for HTTP APIs", RFC 9457, DOI 10.17487/RFC9457, , <https://www.rfc-editor.org/rfc/rfc9457>.
- [RFC8792]
- Watsen, K., Auerswald, E., Farrel, A., and Q. Wu, "Handling Long Lines in Content of Internet-Drafts and RFCs", RFC 8792, DOI 10.17487/RFC8792, , <https://www.rfc-editor.org/rfc/rfc8792>.
- [STRUCTURED-FIELDS]
- Nottingham, M. and P. Kamp, "Structured Field Values for HTTP", RFC 9651, DOI 10.17487/RFC9651, , <https://www.rfc-editor.org/rfc/rfc9651>.
- [UNENC-DIGEST]
- Pardue, L. and M. West, "HTTP Unencoded Digest", Work in Progress, Internet-Draft, draft-ietf-httpbis-unencoded-digest-03, , <https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-unencoded-digest-03>.