<?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.29 (Ruby 3.1.4) -->
<?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-message-signatures-17" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.1 -->
  <front>
    <title>HTTP Message Signatures</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-message-signatures-17"/>
    <author initials="A." surname="Backman" fullname="Annabelle Backman" role="editor">
      <organization>Amazon</organization>
      <address>
        <postal>
          <street>P.O. Box 81226</street>
          <city>Seattle</city>
          <region>WA</region>
          <code>98108-1226</code>
          <country>United States of America</country>
        </postal>
        <email>richanna@amazon.com</email>
        <uri>https://www.amazon.com/</uri>
      </address>
    </author>
    <author initials="J." surname="Richer" fullname="Justin Richer" role="editor">
      <organization>Bespoke Engineering</organization>
      <address>
        <email>ietf@justin.richer.org</email>
        <uri>https://bspk.io/</uri>
      </address>
    </author>
    <author initials="M." surname="Sporny" fullname="Manu Sporny">
      <organization>Digital Bazaar</organization>
      <address>
        <postal>
          <street>203 Roanoke Street W.</street>
          <city>Blacksburg</city>
          <region>VA</region>
          <code>24060</code>
          <country>United States of America</country>
        </postal>
        <email>msporny@digitalbazaar.com</email>
        <uri>https://manu.sporny.org/</uri>
      </address>
    </author>
    <date year="2023" month="May" day="02"/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <keyword>PKI</keyword>
    <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>
    <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-message-signatures/"/>.
      </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/signatures"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="intro">
      <name>Introduction</name>
      <t>Message integrity and authenticity are security properties that are critical to the secure operation of many HTTP applications.
Application developers typically rely on the transport layer to provide these properties, by operating their application over <xref target="TLS"/>. However, TLS only guarantees these properties over a single TLS connection, and the path between client and application may be composed of multiple independent TLS connections (for example, if the application is hosted behind a TLS-terminating gateway or if the client is behind a TLS Inspection appliance). In such cases, TLS cannot guarantee end-to-end message integrity or authenticity between the client and application. Additionally, some operating environments present obstacles that make it impractical to use TLS (such as presentation of client certificates from a browser), or to use features necessary to provide message authenticity. Furthermore, some applications require the binding of a higher-level application-specific key to the HTTP message, separate from any TLS certificates in use. Consequently, while TLS can meet message integrity and authenticity needs for many HTTP-based applications, it is not a universal solution.</t>
      <t>Additionally, many applications need to be able to generate and verify signatures despite incomplete knowledge of the HTTP message as seen on the wire, due to the use of libraries, proxies, or application frameworks that alter or hide portions of the message from the application at the time of signing or verification. These applications need a means to protect the parts of the message that are most relevant to the application without having to violate layering and abstraction.</t>
      <t>Finally, object-based signature mechanisms such as <xref target="JWS"/> require the intact conveyance of the exact information that was signed. When applying such technologies to an HTTP message, elements of the HTTP message need to be duplicated in the object payload either directly or through inclusion of a hash. This practice introduces complexity since the repeated information needs to be carefully checked for consistency when the signature is verified.</t>
      <t>This document defines a mechanism for providing end-to-end integrity and authenticity for components of an HTTP message by use of a detached signature on HTTP messages. The mechanism allows applications to create digital signatures or message authentication codes (MACs) over only the components of the message that are meaningful and appropriate for the application. Strict canonicalization rules ensure that the verifier can verify the signature even if the message has been transformed in many of the ways permitted by HTTP.</t>
      <t>The signing mechanism described in this document consists of three parts:</t>
      <ul spacing="normal">
        <li>A common nomenclature and canonicalization rule set for the different protocol elements and other components of HTTP messages, used to create the signature base. (<xref target="covered-components"/>)</li>
        <li>Algorithms for generating and verifying signatures over HTTP message components using this signature base through application of cryptographic primitives. (<xref target="message-signatures"/>)</li>
        <li>A mechanism for attaching a signature and related metadata to an HTTP message, and for parsing attached signatures and metadata from HTTP messages. To facilitate this, this document defines the "Signature-Input" and "Signature" fields. (<xref target="attach-signature"/>)</li>
      </ul>
      <t>This document also provides a mechanism for negotiation the use of signatures in one or more subsequent messages via the "Accept-Signature" field (<xref target="request-signature"/>). This optional negotiation mechanism can be used along with opportunistic or application-driven message signatures by either party.</t>
      <t>The mechanisms defined in this document are important tools that can be used to an overall security mechanism for an application. This toolkit provides some powerful capabilities, but does not sufficient in creating an overall security story. In particular, the requirements in <xref target="application"/> and the security considerations in <xref target="security"/> are of high importance to all implementors of this specification. For example, this specification does not define a means to directly cover HTTP message content (defined in <xref section="6.4" sectionFormat="of" target="HTTP"/>), but relies on the <xref target="DIGEST"/> specification to provide a hash of the message content, as discussed in <xref target="security-message-content"/>.</t>
      <section anchor="definitions">
        <name>Conventions and Terminology</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>The terms "HTTP message", "HTTP request", "HTTP response",
"target URI", "gateway", "header field", "intermediary", "request target",
"trailer field", "sender", "method", and "recipient" are used as defined in <xref target="HTTP"/>.</t>
        <t>For brevity, the term "signature" on its own is used in this document to refer to both digital signatures (which use asymmetric cryptography) and keyed MACs (which use symmetric cryptography). Similarly, the verb "sign" refers to the generation of either a digital signature or keyed MAC over a given signature base. The qualified term "digital signature" refers specifically to the output of an asymmetric cryptographic signing operation.</t>
        <t>This document uses the following terminology from <xref section="3" sectionFormat="of" target="STRUCTURED-FIELDS"/>
to specify data types: List, Inner List, Dictionary, Item, String, Integer, Byte Sequence, and Boolean.</t>
        <t>This document defines several string constructions using <xref target="ABNF"/> and uses the following ABNF rules: <tt>VCHAR</tt>, <tt>SP</tt>, <tt>DQUOTE</tt>, <tt>LF</tt>. This document uses the following ABNF rules from <xref target="STRUCTURED-FIELDS"/>: <tt>sf-string</tt>, <tt>inner-list</tt>, <tt>parameters</tt>. This document uses the following ABNF rules from <xref target="HTTP"/> and <xref target="HTTP1"/>: <tt>field-content</tt>, <tt>obs-fold</tt>, <tt>obs-text</tt>.</t>
        <t>In addition to those listed above, this document uses the following terms:</t>
        <dl newline="true">
          <dt>HTTP Message Signature:</dt>
          <dd>
            <t>A digital signature or keyed MAC that covers one or more portions of an HTTP message. Note that a given HTTP Message can contain multiple HTTP Message Signatures.</t>
          </dd>
          <dt>Signer:</dt>
          <dd>
            <t>The entity that is generating or has generated an HTTP Message Signature. Note that multiple entities can act as signers and apply separate HTTP Message Signatures to a given HTTP Message.</t>
          </dd>
          <dt>Verifier:</dt>
          <dd>
            <t>An entity that is verifying or has verified an HTTP Message Signature against an HTTP Message. Note that an HTTP Message Signature may be verified multiple times, potentially by different entities.</t>
          </dd>
          <dt>HTTP Message Component:</dt>
          <dd>
            <t>A portion of an HTTP message that is capable of being covered by an HTTP Message Signature.</t>
          </dd>
          <dt>Derived Component:</dt>
          <dd>
            <t>An HTTP Message Component derived from the HTTP message through the use of a specified algorithm or process. See <xref target="derived-components"/>.</t>
          </dd>
          <dt>HTTP Message Component Name:</dt>
          <dd>
            <t>A string that identifies an HTTP Message Component's source, such as a field name or derived component name.</t>
          </dd>
          <dt>HTTP Message Component Identifier:</dt>
          <dd>
            <t>The combination of an HTTP Message Component Name and any parameters that uniquely identifies a specific HTTP Message Component in respect to a particular HTTP Message Signature and the HTTP Message it applies to.</t>
          </dd>
          <dt>HTTP Message Component Value:</dt>
          <dd>
            <t>The value associated with a given component identifier within the context of a particular HTTP Message. Component values are derived from the HTTP Message and are usually subject to a canonicalization process.</t>
          </dd>
          <dt>Covered Components:</dt>
          <dd>
            <t>An ordered set of HTTP message component identifiers for fields (<xref target="http-fields"/>) and derived components (<xref target="derived-components"/>) that indicates the set of message components covered by the signature, never including the <tt>@signature-params</tt> identifier itself. The order of this set is preserved and communicated between the signer and verifier to facilitate reconstruction of the signature base.</t>
          </dd>
          <dt>Signature Base:</dt>
          <dd>
            <t>The sequence of bytes generated by the signer and verifier using the covered components set and the HTTP Message. The signature base is processed by the cryptographic algorithm to produce or verify the HTTP Message Signature.</t>
          </dd>
          <dt>HTTP Message Signature Algorithm:</dt>
          <dd>
            <t>A cryptographic algorithm that describes the signing and verification process for the signature, defined in terms of the <tt>HTTP_SIGN</tt> and <tt>HTTP_VERIFY</tt> primitives described in <xref target="signature-methods"/>.</t>
          </dd>
          <dt>Key Material:</dt>
          <dd>
            <t>The key material required to create or verify the signature. The key material is often identified with an explicit key identifier, allowing the signer to indicate to the verifier which key was used.</t>
          </dd>
          <dt>Creation Time:</dt>
          <dd>
            <t>A timestamp representing the point in time that the signature was generated, as asserted by the signer.</t>
          </dd>
          <dt>Expiration Time:</dt>
          <dd>
            <t>A timestamp representing the point in time after which the signature should no longer be accepted by the verifier, as asserted by the signer.</t>
          </dd>
          <dt>Target Message:</dt>
          <dd>
            <t>The HTTP message to which an HTTP Message Signature is applied.</t>
          </dd>
          <dt>Signature Context:</dt>
          <dd>
            <t>The data source from which the HTTP Message Component Values are drawn. The context includes the target message and any additional information the signer or verifier might have, such as the full target URI of a request or the related request message for a response.</t>
          </dd>
        </dl>
        <t>The term "Unix time" is defined by <xref target="POSIX.1"/>, <eref target="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_16">Section 4.16</eref>.</t>
        <t>This document contains non-normative examples of partial and complete HTTP messages. Some examples use a single trailing backslash <tt>\</tt> to indicate line wrapping for long values, as per <xref target="RFC8792"/>. The <tt>\</tt> character and leading spaces on wrapped lines are not part of the value.</t>
      </section>
      <section anchor="requirements">
        <name>Requirements</name>
        <t>HTTP permits and sometimes requires intermediaries to transform messages in a variety of ways. This can result in a recipient receiving a message that is not bitwise-equivalent to the message that was originally sent. In such a case, the recipient will be unable to verify integrity protections over the raw bytes of the sender's HTTP message, as verifying digital signatures or MACs requires both signer and verifier to have the exact same signature base. Since the exact raw bytes of the message cannot be relied upon as a reliable source for a signature base, the signer and verifier have to independently create the signature base from their respective versions of the message, via a mechanism that is resilient to safe changes that do not alter the meaning of the message.</t>
        <t>For a variety of reasons, it is impractical to strictly define what constitutes a safe change versus an unsafe one. Applications use HTTP in a wide variety of ways and may disagree on whether a particular piece of information in a message (e.g., the message content, the method, or a particular header field) is relevant. Thus, a general purpose solution needs to provide signers with some degree of control over which message components are signed.</t>
        <t>HTTP applications may be running in environments that do not provide complete access to or control over HTTP messages (such as a web browser's JavaScript environment), or may be using libraries that abstract away the details of the protocol (such as <eref target="https://openjdk.java.net/groups/net/httpclient/intro.html">the Java HTTPClient library</eref>). These applications need to be able to generate and verify signatures despite incomplete knowledge of the HTTP message.</t>
      </section>
      <section anchor="transforms">
        <name>HTTP Message Transformations</name>
        <t>As mentioned earlier, HTTP explicitly permits and in some cases requires implementations to transform messages in a variety of ways. Implementations are required to tolerate many of these transformations. What follows is a non-normative and non-exhaustive list of transformations that could occur under HTTP, provided as context:</t>
        <ul spacing="normal">
          <li>Re-ordering of fields with different field names (<xref section="5.3" sectionFormat="of" target="HTTP"/>).</li>
          <li>Combination of fields with the same field name (<xref section="5.2" sectionFormat="of" target="HTTP"/>).</li>
          <li>Removal of fields listed in the Connection header field (<xref section="7.6.1" sectionFormat="of" target="HTTP"/>).</li>
          <li>Addition of fields that indicate control options (<xref section="7.6.1" sectionFormat="of" target="HTTP"/>).</li>
          <li>Addition or removal of a transfer coding (<xref section="7.7" sectionFormat="of" target="HTTP"/>).</li>
          <li>Addition of fields such as <tt>Via</tt> (<xref section="7.6.3" sectionFormat="of" target="HTTP"/>) and <tt>Forwarded</tt> (<xref section="4" sectionFormat="of" target="RFC7239"/>).</li>
          <li>Conversion between different versions of the HTTP protocol (e.g., HTTP/1.x to HTTP/2, or vice-versa).</li>
          <li>Changes in casing (e.g., "Origin" to "origin") of any case-insensitive components such as field names, request URI scheme, or host.</li>
          <li>Changes to the request target and authority that when applied together do not
  result in a change to the message's target URI, as defined in <xref section="7.1" sectionFormat="of" target="HTTP"/>.</li>
        </ul>
        <t>Additionally, there are some transformations that are either deprecated or otherwise not allowed, but still could occur in the wild. These transformations can still be handled without breaking the signature, and include things such as:</t>
        <ul spacing="normal">
          <li>Use, addition, or removal of leading or trailing whitespace in a field value.</li>
          <li>Use, addition, or removal of <tt>obs-fold</tt> in field values (<xref section="5.2" sectionFormat="of" target="HTTP1"/>).</li>
        </ul>
        <t>We can identify these types of transformations as ones that should not prevent signature verification, even when performed on message components covered by the signature. Additionally, all changes to components not covered by the signature should not prevent signature verification.</t>
        <t>Some examples of these kinds of transformations, and the effect they have on the message signature, are found in <xref target="example-transform"/>.</t>
        <t>Other transformations, such as parsing and re-serializing the field values of a covered component or changing the value of a derived component, can cause a signature to no longer validate against a target message. Applications of this specification need to take care to ensure that the transformations expected by the application are adequately handled by the choice of covered components.</t>
      </section>
      <section anchor="application">
        <name>Application of HTTP Message Signatures</name>
        <t>HTTP Message Signatures are designed to be a general-purpose tool applicable in a wide variety of circumstances and applications. In order to properly and safely apply HTTP Message Signatures, an application or profile of this specification <bcp14>MUST</bcp14> specify at least all of the following items:</t>
        <ul spacing="normal">
          <li>The set of <xref target="covered-components">component identifiers</xref> and <xref target="signature-params">signature parameters</xref> that are expected and required to be included in the covered components list. For example, an authorization protocol could mandate that the Authorization field be covered to protect the authorization credentials and mandate the signature parameters contain a <tt>created</tt> parameter, while an API expecting semantically relevant HTTP message content could require the Content-Digest field defined in <xref target="DIGEST"/> to be present and covered as well as mandate a value for <tt>tag</tt> that is specific to the API being protected.</li>
          <li>The expected structured field types (<xref target="STRUCTURED-FIELDS"/>) of any required or expected covered component fields or parameters.</li>
          <li>A means of retrieving the key material used to verify the signature. An application will usually use the <tt>keyid</tt> parameter of the signature parameters (<xref target="signature-params"/>) and define rules for resolving a key from there, though the appropriate key could be known from other means such as pre-registration of a signer's key.</li>
          <li>The set of allowable signature algorithms to be used by signers and accepted by verifiers.</li>
          <li>A means of determining that the signature algorithm used to verify the signature is appropriate for the key material and context of the message. For example, the process could use the <tt>alg</tt> parameter of the signature parameters (<xref target="signature-params"/>) to state the algorithm explicitly, derive the algorithm from the key material, or use some pre-configured algorithm agreed upon by the signer and verifier.</li>
          <li>A means of determining that a given key and algorithm used for a signature are appropriate for the context of the message. For example, a server expecting only ECDSA signatures should know to reject any RSA signatures, or a server expecting asymmetric cryptography should know to reject any symmetric cryptography.</li>
          <li>A means of determining the context for derivation of message components from an HTTP message and its application context. While this is normally the target HTTP message itself, the context could include additional information known to the application through configuration, such as an external host name.</li>
          <li>If binding between a request and response is needed using the mechanism in <xref target="content-request-response"/>, all elements of the request and response message that would be required to provide properties of such a binding.</li>
          <li>The error messages and codes that are returned from the verifier to the signer when the signature is invalid, the key material is inappropriate, the validity time window is out of specification, a component value cannot be calculated, or any other errors in the signature verification process. For example, if a signature is being used as an authentication mechanism, an HTTP status code of 401 Unauthorized or 403 Forbidden could be appropriate. If the response is from an HTTP API, a response with an HTTP status code of 400 Bad Request could include details as described in <xref target="RFC7807"/>, such as an indicator that the wrong key material was used.</li>
        </ul>
        <t>When choosing these parameters, an application of HTTP message signatures has to ensure that the verifier will have access to all required information needed to re-create the signature base. For example, a server behind a reverse proxy would need to know the original request URI to make use of the derived component <tt>@target-uri</tt>, even though the apparent target URI would be changed by the reverse proxy (see also <xref target="security-message-component-context"/>). Additionally, an application using signatures in responses would need to ensure that clients receiving signed responses have access to all the signed portions of the message, including any portions of the request that were signed by the server using the related-response parameter.</t>
        <t>The details of this kind of profiling are the purview of the application and outside the scope of this specification, however some additional considerations are discussed in <xref target="security"/>. In particular, when choosing the required set of component identifiers, care has to be taken to make sure that the coverage is sufficient for the application, as discussed in <xref target="security-coverage"/> and  <xref target="security-message-content"/>. This specification defines only part of a full security system for an application. When building a complete security system based on this tool, it is important to perform a security analysis of the entire system of which HTTP Message Signatures is a part. Historical systems, such as <xref target="AWS-SIGv4"/>, can provide inspiration and examples of how to apply similar mechanisms in a secure and trustable fashion.</t>
      </section>
    </section>
    <section anchor="covered-components">
      <name>HTTP Message Components</name>
      <t>In order to allow signers and verifiers to establish which components are covered by a signature, this document defines component identifiers for components covered by an HTTP Message Signature, a set of rules for deriving and canonicalizing the values associated with these component identifiers from the HTTP Message, and the means for combining these canonicalized values into a signature base.</t>
      <t>The signature context for deriving these values <bcp14>MUST</bcp14> be accessible to both the signer and the verifier of the message. The context <bcp14>MUST</bcp14> be the same across all components in a given signature. For example, it would be an error to use a the raw query string for the <tt>@query</tt> derived component but combined query and form parameters for the <tt>@query-param</tt> derived component. For more considerations of the message component context, see <xref target="security-message-component-context"/>.</t>
      <t>A component identifier is composed of a component name and any parameters associated with that name. Each component name is either an HTTP field name (<xref target="http-fields"/>) or a registered derived component name (<xref target="derived-components"/>). The possible parameters for a component identifier are dependent on the component identifier, and the HTTP Signature Component Parameters registry cataloging all possible parameters is defined in <xref target="component-param-registry"/>.</t>
      <t>Within a single list of covered components, each component identifier <bcp14>MUST</bcp14> occur only once. One component identifier is distinct from another if the component name differs, or if any of the parameters differ for the same component name. Multiple component identifiers having the same component name <bcp14>MAY</bcp14> be included if they have parameters that make them distinct, such as <tt>"foo";bar</tt> and <tt>"foo";baz</tt>. The order of parameters <bcp14>MUST</bcp14> be preserved when processing a component identifier (such as when parsing during verification), but the order of parameters is not significant when comparing two component identifiers for equality checks. That is to say, <tt>"foo";bar;baz</tt> cannot be in the same message as <tt>"foo";baz;bar</tt>, since these two component identifiers are equivalent, but a system processing one form is not allowed to transform it into the other form.</t>
      <t>The component value associated with a component identifier is defined by the identifier itself. Component values <bcp14>MUST NOT</bcp14> contain newline (<tt>\n</tt>) characters. Some HTTP message components can undergo transformations that change the bitwise value without altering the meaning of the component's value (for example, when combining field values). Message component values must therefore be canonicalized before they are signed, to ensure that a signature can be verified despite such intermediary transformations. This document defines rules for each component identifier that transform the identifier's associated component value into such a canonical form.</t>
      <t>The following sections define component identifier names, their parameters, their associated values, and the canonicalization rules for their values. The method for combining message components into the signature base is defined in <xref target="create-sig-input"/>.</t>
      <section anchor="http-fields">
        <name>HTTP Fields</name>
        <t>The component name for an HTTP field is the lowercased form of its field name as defined in <xref section="5.1" sectionFormat="of" target="HTTP"/>. While HTTP field names are case-insensitive, implementations <bcp14>MUST</bcp14> use lowercased field names (e.g., <tt>content-type</tt>, <tt>date</tt>, <tt>etag</tt>) when using them as component names.</t>
        <t>The component value for an HTTP field is the field value for the named field as defined in <xref section="5.5" sectionFormat="of" target="HTTP"/>. The field value <bcp14>MUST</bcp14> be taken from the named header field of the target message unless this behavior is overridden by additional parameters and rules, such as the <tt>req</tt> and <tt>tr</tt> flags, below. For most fields, the field value is an ASCII string as recommended by <xref target="HTTP"/>, and the component value is exactly that string. Other encodings could exist in some implementations, and all non-ASCII field values <bcp14>MUST</bcp14> be encoded to ASCII before being added to the signature base. The <tt>bs</tt> parameter defined in <xref target="http-field-byte-sequence"/> provides a method for wrapping such problematic field values.</t>
        <t>Unless overridden by additional parameters and rules, HTTP field values <bcp14>MUST</bcp14> be combined into a single value as defined in <xref section="5.2" sectionFormat="of" target="HTTP"/> to create the component value. Specifically, HTTP fields sent as multiple fields <bcp14>MUST</bcp14> be combined using a single comma (",") and a single space (" ") between each item. Note that intermediaries are allowed to combine values of HTTP fields with any amount of whitespace between the commas, and if this behavior is not accounted for by the verifier, the signature can fail since the signer and verifier will see a different component value in their respective signature bases. For robustness, it is <bcp14>RECOMMENDED</bcp14> that signed messages include only a single instance of any field covered under the signature, particularly with the value for any list-based fields serialized using the algorithm below. This approach increases the chances of the field value remaining untouched through intermediaries. Where that approach is not possible and multiple instances of a field need to be sent separately, it is <bcp14>RECOMMENDED</bcp14> that signers and verifiers process any list-based fields taking all individual field values and combining them based on the strict algorithm below, to counter possible intermediary behavior. When the field in question is a structured field of type List or Dictionary, this effect can be accomplished more directly by requiring the strict structured field serialization of the field value, as described in <xref target="http-field-structured"/>.</t>
        <t>Note that some HTTP fields, such as Set-Cookie (<xref target="COOKIE"/>), do not follow a syntax that allows for combination of field values in this manner (such that the combined output is unambiguous from multiple inputs). Even though the component value is never parsed by the message signature process and used only as part of the signature base in <xref target="create-sig-input"/>, caution needs to be taken when including such fields in signatures since the combined value could be ambiguous. The <tt>bs</tt> parameter defined in <xref target="http-field-byte-sequence"/> provides a method for wrapping such problematic fields. See <xref target="security-non-list"/> for more discussion of this issue.</t>
        <t>If the correctly combined value is not directly available for a given field by an implementation, the following algorithm will produce canonicalized results for list-based fields:</t>
        <ol spacing="normal" type="1"><li>Create an ordered list of the field values of each instance of the field in the message, in the order that they occur (or will occur) in the message.</li>
          <li>Strip leading and trailing whitespace from each item in the list. Note that since HTTP field values are not allowed to contain leading and trailing whitespace, this will be a no-op in a compliant implementation.</li>
          <li>Remove any obsolete line-folding within the line and replace it with a single space (" "), as discussed in <xref section="5.2" sectionFormat="of" target="HTTP1"/>. Note that this behavior is specific to HTTP/1.1 and does not apply to other versions of the HTTP specification which do not allow internal line folding.</li>
          <li>Concatenate the list of values together with a single comma (",") and a single space (" ") between each item.</li>
        </ol>
        <t>The resulting string is the component value for the field.</t>
        <t>Note that some HTTP fields have values with multiple valid serializations that have equivalent semantics, such as allow case-insensitive values that intermediaries could change. Applications signing and processing such fields <bcp14>MUST</bcp14> consider how to handle the values of such fields to ensure that the signer and verifier can derive the same value, as discussed in <xref target="security-field-values"/>.</t>
        <t>Following are non-normative examples of component values for header fields, given the following example HTTP message fragment:</t>
        <sourcecode type="http-message"><![CDATA[
Host: www.example.com
Date: Tue, 20 Apr 2021 02:07:56 GMT
X-OWS-Header:   Leading and trailing whitespace.
X-Obs-Fold-Header: Obsolete
    line folding.
Cache-Control: max-age=60
Cache-Control:    must-revalidate
Example-Dict:  a=1,    b=2;x=1;y=2,   c=(a   b   c)
]]></sourcecode>
        <t>The following example shows the component values for these example header fields, presented using the signature base format defined in <xref target="create-sig-input"/>:</t>
        <artwork><![CDATA[
"host": www.example.com
"date": Tue, 20 Apr 2021 02:07:56 GMT
"x-ows-header": Leading and trailing whitespace.
"x-obs-fold-header": Obsolete line folding.
"cache-control": max-age=60, must-revalidate
"example-dict": a=1,    b=2;x=1;y=2,   c=(a   b   c)
]]></artwork>
        <t>Empty HTTP fields can also be signed when present in a message. The canonicalized value is the empty string. This means that the following empty header, with (SP) indicating a single trailing space character before the empty field value:</t>
        <artwork><![CDATA[
X-Empty-Header:(SP)
]]></artwork>
        <t>Is serialized by the <xref target="create-sig-input">signature base generation algorithm</xref> with an empty string value following the colon and space added after the content identifier.</t>
        <artwork><![CDATA[
"x-empty-header":(SP)
]]></artwork>
        <t>Any HTTP field component identifiers <bcp14>MAY</bcp14> have the following parameters in specific circumstances, each described in detail in their own sections:</t>
        <dl>
          <dt><tt>sf</tt></dt>
          <dd>
            <t>A boolean flag indicating that the component value is serialized using strict encoding
of the structured field value (<xref target="http-field-structured"/>).</t>
          </dd>
          <dt><tt>key</tt></dt>
          <dd>
            <t>A string parameter used to select a single member value from a Dictionary structured field (<xref target="http-field-dictionary"/>).</t>
          </dd>
          <dt><tt>bs</tt></dt>
          <dd>
            <t>A boolean flag indicating that individual field values are encoded using Byte Sequence data structures before being combined into the component value (<xref target="http-field-byte-sequence"/>).</t>
          </dd>
          <dt><tt>req</tt></dt>
          <dd>
            <t>A boolean flag for signed responses indicating that the component value is derived from the request that triggered this response message and not from the response message directly. Note that this parameter can also be applied to any derived component identifiers that target the request (<xref target="content-request-response"/>).</t>
          </dd>
          <dt><tt>tr</tt></dt>
          <dd>
            <t>A boolean flag indicating that the field value is taken from the trailers of the message as defined in <xref section="6.5" sectionFormat="of" target="HTTP"/>. If this flag is absent, the field value is taken from the headers of the message as defined in <xref section="6.3" sectionFormat="of" target="HTTP"/> (<xref target="http-trailer"/>).</t>
          </dd>
        </dl>
        <t>Multiple parameters <bcp14>MAY</bcp14> be specified together, though some combinations are redundant or incompatible. For example, the <tt>sf</tt> parameter's functionality is already covered when the <tt>key</tt> parameter is used on a dictionary item, since <tt>key</tt> requires strict serialization of the value. The <tt>bs</tt> parameter, which requires the raw bytes of the field values from the message, is not compatible with use of the <tt>sf</tt> or <tt>key</tt> parameters, which require the parsed data structures of the field values after combination.</t>
        <t>Additional parameters can be defined in the HTTP Signature Component Parameters registry established in <xref target="component-param-registry"/>.</t>
        <section anchor="http-field-structured">
          <name>Strict Serialization of HTTP Structured Fields</name>
          <t>If the value of an HTTP field is known by the application to be a structured field type (as defined in <xref target="STRUCTURED-FIELDS"/> or its extensions or updates), and the expected type of the structured field is known, the signer <bcp14>MAY</bcp14> include the <tt>sf</tt> parameter in the component identifier.
If this parameter is included with a component identifier, the HTTP field value <bcp14>MUST</bcp14> be serialized using the formal serialization rules specified in <xref section="4" sectionFormat="of" target="STRUCTURED-FIELDS"/> (or the
applicable formal serialization section of its extensions or updates) applicable to
the type of the HTTP field. Note that this process
will replace any optional internal whitespace with a single space character, among other potential transformations of the value.</t>
          <t>If multiple field values occur within a message, these values <bcp14>MUST</bcp14> be combined into a single List or Dictionary structure before serialization.</t>
          <t>If the application does not know the type of the field, or the application does not know how to serialize the type of the field, the use of this flag will produce an error. As a consequence, the signer can only reliably sign fields using this flag when the verifier's system knows the type as well.</t>
          <t>For example, the following dictionary field is a valid serialization:</t>
          <sourcecode type="http-message"><![CDATA[
Example-Dict:  a=1,    b=2;x=1;y=2,   c=(a   b   c)
]]></sourcecode>
          <t>If included in the signature base without parameters, its value would be:</t>
          <artwork><![CDATA[
"example-dict": a=1,    b=2;x=1;y=2,   c=(a   b   c)
]]></artwork>
          <t>However, if the <tt>sf</tt> parameter is added, the value is re-serialized as follows:</t>
          <artwork><![CDATA[
"example-dict";sf: a=1, b=2;x=1;y=2, c=(a b c)
]]></artwork>
          <t>The resulting string is used as the component value in <xref target="http-fields"/>.</t>
        </section>
        <section anchor="http-field-dictionary">
          <name>Dictionary Structured Field Members</name>
          <t>If a given field is known by the application to be a Dictionary structured field, an individual member in the value of that Dictionary is identified by using the parameter <tt>key</tt> and the Dictionary member key as a String value.</t>
          <t>If multiple field values occur within a message, these values <bcp14>MUST</bcp14> be combined into a single Dictionary structure before serialization.</t>
          <t>An individual member value of a Dictionary Structured Field is canonicalized by applying the serialization algorithm described in <xref section="4.1.2" sectionFormat="of" target="STRUCTURED-FIELDS"/> on the <tt>member_value</tt> and its parameters, not including the dictionary key itself. Specifically, the value is serialized as an Item or Inner List (the two possible values of a Dictionary member), with all parameters and possible sub-fields serialized using the strict serialization rules defined in <xref section="4" sectionFormat="of" target="STRUCTURED-FIELDS"/> (or the applicable section of its extensions or updates).</t>
          <t>Each parameterized key for a given field <bcp14>MUST NOT</bcp14> appear more than once in the signature base. Parameterized keys <bcp14>MAY</bcp14> appear in any order in the signature base, regardless of the order they occur in the source Dictionary.</t>
          <t>If a Dictionary key is named as a covered component but it does not occur in the Dictionary, this <bcp14>MUST</bcp14> cause an error in the signature base generation.</t>
          <t>Following are non-normative examples of canonicalized values for Dictionary structured field members given the following example header field, whose value is known by the application to be a Dictionary:</t>
          <sourcecode type="http-message"><![CDATA[
Example-Dict:  a=1, b=2;x=1;y=2, c=(a   b    c), d
]]></sourcecode>
          <t>The following example shows canonicalized values for different component identifiers of this field, presented using the signature base format discussed in <xref target="create-sig-input"/>:</t>
          <artwork><![CDATA[
"example-dict";key="a": 1
"example-dict";key="d": ?1
"example-dict";key="b": 2;x=1;y=2
"example-dict";key="c": (a b c)
]]></artwork>
          <t>Note that the value for <tt>key="c"</tt> has been re-serialized according to the strict <tt>member_value</tt> algorithm, and the value for <tt>key="d"</tt> has been serialized as a Boolean value.</t>
        </section>
        <section anchor="http-field-byte-sequence">
          <name>Binary-wrapped HTTP Fields</name>
          <t>If the value of the HTTP field in question is known by the application to cause problems with serialization, particularly with the combination of multiple values into a single line as discussed in <xref target="security-non-list"/>, the signer <bcp14>SHOULD</bcp14> include the <tt>bs</tt> parameter in a component identifier to indicate the values of the field need to be wrapped as binary structures before being combined.</t>
          <t>If this parameter is included with a component identifier, the component value <bcp14>MUST</bcp14> be calculated using the following algorithm:</t>
          <ol spacing="normal" type="1"><li>Let the input be the ordered set of values for a field, in the order they appear in the message.</li>
            <li>Create an empty List for accumulating processed field values.</li>
            <li>
              <t>For each field value in the set:
              </t>
              <ol spacing="normal" type="1"><li>Strip leading and trailing whitespace from the field value. Note that since HTTP field values are not allowed to contain leading and trailing whitespace, this will be a no-op in a compliant implementation.</li>
                <li>Remove any obsolete line-folding within the line and replace it with a single space (" "), as discussed in <xref section="5.2" sectionFormat="of" target="HTTP1"/>. Note that this behavior is specific to <xref target="HTTP1"/> and does not apply to other versions of the HTTP specification.</li>
                <li>Encode the bytes of the resulting field value as a Byte Sequence. Note that most fields are restricted to ASCII characters, but other octets could be included in the value in some implementations.</li>
                <li>Add the Byte Sequence to the List accumulator.</li>
              </ol>
            </li>
            <li>The intermediate result is a List of Byte Sequence values.</li>
            <li>Follow the strict serialization of a List as described in <xref section="4.1.1" sectionFormat="of" target="STRUCTURED-FIELDS"/> and return this output.</li>
          </ol>
          <t>For example, the following field with internal commas prevents the distinct field values from being safely combined:</t>
          <sourcecode type="http-message"><![CDATA[
Example-Header: value, with, lots
Example-Header: of, commas
]]></sourcecode>
          <t>In our example, the same field can be sent with a semantically different single value:</t>
          <sourcecode type="http-message"><![CDATA[
Example-Header: value, with, lots, of, commas
]]></sourcecode>
          <t>Both of these versions are treated differently by the application. However, if included in the signature base without parameters, the component value would be the same in both cases:</t>
          <artwork><![CDATA[
"example-header": value, with, lots, of, commas
]]></artwork>
          <t>However, if the <tt>bs</tt> parameter is added, the two separate instances are encoded and serialized as follows:</t>
          <artwork><![CDATA[
"example-header";bs: :dmFsdWUsIHdpdGgsIGxvdHM=:, :b2YsIGNvbW1hcw==:
]]></artwork>
          <t>For the single-instance field above, the encoding with the <tt>bs</tt> parameter is:</t>
          <artwork><![CDATA[
"example-header";bs: :dmFsdWUsIHdpdGgsIGxvdHMsIG9mLCBjb21tYXM=:
]]></artwork>
          <t>This component value is distinct from the multiple-instance field above, preventing a collision which could potentially be exploited.</t>
        </section>
        <section anchor="http-trailer">
          <name>Trailer Fields</name>
          <t>If the signer wants to include a trailer field in the signature, the signer <bcp14>MUST</bcp14> include the <tt>tr</tt> boolean parameter to indicate the value <bcp14>MUST</bcp14> be taken from the trailer fields and not from the header fields.</t>
          <t>For example, given the following message:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Content-Type: text/plain
Transfer-Encoding: chunked
Trailer: Expires

4
HTTP
7
Message
a
Signatures
0
Expires: Wed, 9 Nov 2022 07:28:00 GMT
]]></sourcecode>
          <t>The signer decides to add both the Trailer header field as well as the Expires trailer to the signature base, along with the status code derived component:</t>
          <artwork><![CDATA[
"@status": 200
"trailer": Expires
"expires";tr: Wed, 9 Nov 2022 07:28:00 GMT
]]></artwork>
          <t>If a field is available as both a header and trailer in a message, both values <bcp14>MAY</bcp14> be signed, but the values <bcp14>MUST</bcp14> be signed separately. The values of header fields and trailer fields of the same name <bcp14>MUST NOT</bcp14> be combined for purposes of the signature.</t>
          <t>Since trailer fields could be merged into the header fields or dropped entirely by intermediaries as per <xref section="6.5.1" sectionFormat="of" target="HTTP"/>, it is <bcp14>NOT RECOMMENDED</bcp14> to include trailers in the signature unless the signer knows that the verifier will have access to the values of the trailers as sent.</t>
        </section>
      </section>
      <section anchor="derived-components">
        <name>Derived Components</name>
        <t>In addition to HTTP fields, there are a number of different components that can be derived from the control data, signature context, or other aspects of the HTTP message being signed. Such derived components can be included in the signature base by defining a component name, possible parameters, message target, and the derivation method for its component value.</t>
        <t>Derived component names <bcp14>MUST</bcp14> start with the "at" <tt>@</tt> character. This differentiates derived component names from HTTP field names, which cannot contain the <tt>@</tt> character as per <xref section="5.1" sectionFormat="of" target="HTTP"/>. Processors of HTTP Message Signatures <bcp14>MUST</bcp14> treat derived component names separately from field names, as discussed in <xref target="security-lazy-header-parser"/>.</t>
        <t>This specification defines the following derived components:</t>
        <dl>
          <dt>@method</dt>
          <dd>
            <t>The method used for a request. (<xref target="content-request-method"/>)</t>
          </dd>
          <dt>@target-uri</dt>
          <dd>
            <t>The full target URI for a request. (<xref target="content-target-uri"/>)</t>
          </dd>
          <dt>@authority</dt>
          <dd>
            <t>The authority of the target URI for a request. (<xref target="content-request-authority"/>)</t>
          </dd>
          <dt>@scheme</dt>
          <dd>
            <t>The scheme of the target URI for a request. (<xref target="content-request-scheme"/>)</t>
          </dd>
          <dt>@request-target</dt>
          <dd>
            <t>The request target. (<xref target="content-request-target"/>)</t>
          </dd>
          <dt>@path</dt>
          <dd>
            <t>The absolute path portion of the target URI for a request. (<xref target="content-request-path"/>)</t>
          </dd>
          <dt>@query</dt>
          <dd>
            <t>The query portion of the target URI for a request. (<xref target="content-request-query"/>)</t>
          </dd>
          <dt>@query-param</dt>
          <dd>
            <t>A parsed and encoded query parameter of the target URI for a request. (<xref target="content-request-query-param"/>)</t>
          </dd>
          <dt>@status</dt>
          <dd>
            <t>The status code for a response. (<xref target="content-status-code"/>)</t>
          </dd>
        </dl>
        <t>Additional derived component names are defined in the HTTP Signature Derived Component Names Registry. (<xref target="content-registry"/>)</t>
        <t>Derived component values are taken from the context of the target message for the signature. This context includes information about the message itself, such as its control data, as well as any additional state and context held by the signer or verifier. In particular, when signing a response, the signer can include any derived components from the originating request by using the <xref target="content-request-response">request-response parameter</xref>.</t>
        <dl>
          <dt>request:</dt>
          <dd>
            <t>Values derived from and results applied to an HTTP request message as described in <xref section="3.4" sectionFormat="of" target="HTTP"/>. If the target message of the signature is a response, using the <tt>req</tt> parameter allows a request-targeted derived component to be included in the signature (see <xref target="content-request-response"/>).</t>
          </dd>
          <dt>response:</dt>
          <dd>
            <t>Values derived from and results applied to an HTTP response message as described in <xref section="3.4" sectionFormat="of" target="HTTP"/>.</t>
          </dd>
        </dl>
        <t>A derived component definition <bcp14>MUST</bcp14> define all target message types to which it can be applied.</t>
        <t>Derived component values <bcp14>MUST</bcp14> be limited to printable characters and spaces and <bcp14>MUST NOT</bcp14> contain any newline characters. Derived component values <bcp14>MUST NOT</bcp14> start or end with whitespace characters.</t>
        <section anchor="content-request-method">
          <name>Method</name>
          <t>The <tt>@method</tt> derived component refers to the HTTP method of a request message. The component value is canonicalized by taking the value of the method as a string. Note that the method name is case-sensitive as per <xref section="9.1" sectionFormat="comma" target="HTTP"/>. While conventionally standardized method names are uppercase <xref target="ASCII"/>, no transformation to the input method value's case is performed.</t>
          <t>For example, the following request message:</t>
          <sourcecode type="http-message"><![CDATA[
POST /path?param=value HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Would result in the following <tt>@method</tt> component value:</t>
          <artwork><![CDATA[
POST
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@method": POST
]]></artwork>
        </section>
        <section anchor="content-target-uri">
          <name>Target URI</name>
          <t>The <tt>@target-uri</tt> derived component refers to the target URI of a request message. The component value is the full absolute target URI of the request, potentially assembled from all available parts including the authority and request target as described in <xref section="7.1" sectionFormat="comma" target="HTTP"/>.</t>
          <t>For example, the following message sent over HTTPS:</t>
          <sourcecode type="http-message"><![CDATA[
POST /path?param=value HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Would result in the following <tt>@target-uri</tt> component value:</t>
          <artwork><![CDATA[
https://www.example.com/path?param=value
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@target-uri": https://www.example.com/path?param=value
]]></artwork>
        </section>
        <section anchor="content-request-authority">
          <name>Authority</name>
          <t>The <tt>@authority</tt> derived component refers to the authority component of the target URI of the HTTP request message, as defined in <xref section="7.2" sectionFormat="comma" target="HTTP"/>. In HTTP/1.1, this is usually conveyed using the Host header, while in HTTP/2 and HTTP/3 it is conveyed using the :authority pseudo-header. The value is the fully-qualified authority component of the request, comprised of the host and, optionally, port of the request target, as a string.
The component value <bcp14>MUST</bcp14> be normalized according to the rules in <xref section="4.2.3" sectionFormat="comma" target="HTTP"/>. Namely, the host name is normalized to lowercase and the default port is omitted.</t>
          <t>For example, the following request message:</t>
          <sourcecode type="http-message"><![CDATA[
POST /path?param=value HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Would result in the following <tt>@authority</tt> component value:</t>
          <artwork><![CDATA[
www.example.com
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@authority": www.example.com
]]></artwork>
          <t>The <tt>@authority</tt> derived component <bcp14>SHOULD</bcp14> be used instead of signing the Host header directly, see <xref target="security-not-fields"/>.</t>
        </section>
        <section anchor="content-request-scheme">
          <name>Scheme</name>
          <t>The <tt>@scheme</tt> derived component refers to the scheme of the target URL of the HTTP request message. The component value is the scheme as a lowercase string as defined in <xref section="4.2" sectionFormat="comma" target="HTTP"/>.
While the scheme itself is case-insensitive, it <bcp14>MUST</bcp14> be normalized to lowercase for
inclusion in the signature base.</t>
          <t>For example, the following request message requested over plain HTTP:</t>
          <sourcecode type="http-message"><![CDATA[
POST /path?param=value HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Would result in the following <tt>@scheme</tt> component value:</t>
          <artwork><![CDATA[
http
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@scheme": http
]]></artwork>
        </section>
        <section anchor="content-request-target">
          <name>Request Target</name>
          <t>The <tt>@request-target</tt> derived component refers to the full request target of the HTTP request message,
as defined in <xref section="7.1" sectionFormat="comma" target="HTTP"/>. The component value of the request target can take different forms,
depending on the type of request, as described below.</t>
          <t>For HTTP/1.1, the component value is equivalent to the request target
portion of the request line. However, this value is more difficult to reliably construct in
other versions of HTTP. Therefore, it is <bcp14>NOT RECOMMENDED</bcp14> that this component be used
when versions of HTTP other than 1.1 might be in use.</t>
          <t>The origin form value is combination of the absolute path and query components of the request URL. For example, the following request message:</t>
          <sourcecode type="http-message"><![CDATA[
POST /path?param=value HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Would result in the following <tt>@request-target</tt> component value:</t>
          <artwork><![CDATA[
/path?param=value
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@request-target": /path?param=value
]]></artwork>
          <t>The following request to an HTTP proxy with the absolute-form value, containing the fully qualified target URI:</t>
          <sourcecode type="http-message"><![CDATA[
GET https://www.example.com/path?param=value HTTP/1.1
]]></sourcecode>
          <t>Would result in the following <tt>@request-target</tt> component value:</t>
          <artwork><![CDATA[
https://www.example.com/path?param=value
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@request-target": https://www.example.com/path?param=value
]]></artwork>
          <t>The following CONNECT request with an authority-form value, containing the host and port of the target:</t>
          <sourcecode type="http-message"><![CDATA[
CONNECT www.example.com:80 HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Would result in the following <tt>@request-target</tt> component value:</t>
          <artwork><![CDATA[
www.example.com:80
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@request-target": www.example.com:80
]]></artwork>
          <t>The following OPTIONS request message with the asterisk-form value, containing a single asterisk <tt>*</tt> character:</t>
          <sourcecode type="http-message"><![CDATA[
OPTIONS * HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Would result in the following <tt>@request-target</tt> component value:</t>
          <artwork><![CDATA[
*
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@request-target": *
]]></artwork>
        </section>
        <section anchor="content-request-path">
          <name>Path</name>
          <t>The <tt>@path</tt> derived component refers to the target path of the HTTP request message. The component value is the absolute path of the request target defined by <xref target="URI"/>, with no query component and no trailing <tt>?</tt> character. The value is normalized according to the rules in <xref section="4.2.3" sectionFormat="comma" target="HTTP"/>. Namely, an empty path string is normalized as a single slash <tt>/</tt> character. Path components are represented by their values before decoding any percent-encoded octets, as described in the simple string comparison rules in <xref section="6.2.1" sectionFormat="of" target="URI"/>.</t>
          <t>For example, the following request message:</t>
          <sourcecode type="http-message"><![CDATA[
GET /path?param=value HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Would result in the following <tt>@path</tt> component value:</t>
          <artwork><![CDATA[
/path
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@path": /path
]]></artwork>
        </section>
        <section anchor="content-request-query">
          <name>Query</name>
          <t>The <tt>@query</tt> derived component refers to the query component of the HTTP request message. The component value is the entire normalized query string defined by <xref target="URI"/>, including the leading <tt>?</tt> character. The value is read using the simple string comparison rules in <xref section="6.2.1" sectionFormat="of" target="URI"/>. Namely, percent-encoded octets are not decoded.</t>
          <t>For example, the following request message:</t>
          <sourcecode type="http-message"><![CDATA[
GET /path?param=value&foo=bar&baz=bat%2Dman HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Would result in the following <tt>@query</tt> component value:</t>
          <artwork><![CDATA[
?param=value&foo=bar&baz=bat%2Dman
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@query": ?param=value&foo=bar&baz=bat%2Dman
]]></artwork>
          <t>The following request message:</t>
          <sourcecode type="http-message"><![CDATA[
POST /path?queryString HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Would result in the following <tt>@query</tt> component value:</t>
          <artwork><![CDATA[
?queryString
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@query": ?queryString
]]></artwork>
          <t>Just like including an empty path component, the signer can include an empty query component to indicate that this component is not used in the message. If the query string is absent from the request message, the component value is the leading <tt>?</tt> character alone:</t>
          <artwork><![CDATA[
?
]]></artwork>
          <t>Resulting in the following signature base line:</t>
          <artwork><![CDATA[
"@query": ?
]]></artwork>
        </section>
        <section anchor="content-request-query-param">
          <name>Query Parameters</name>
          <t>If a request target URI uses HTML form parameters in the query string as defined in the "application/x-www-form-urlencoded" section of <xref target="HTMLURL"/>,
the <tt>@query-param</tt> derived component allows addressing of individual query parameters. The query parameters <bcp14>MUST</bcp14> be parsed according to the "application/x-www-form-urlencoded parsing" section of <xref target="HTMLURL"/>, resulting in a list of (<tt>nameString</tt>, <tt>valueString</tt>) tuples.
The <bcp14>REQUIRED</bcp14> <tt>name</tt> parameter of each component identifier contains the encoded <tt>nameString</tt> of a single query parameter as a String value.
The component value of a single named parameter is the encoded <tt>valueString</tt> of that single query parameter.
Several different named query parameters <bcp14>MAY</bcp14> be included in the covered components.
Single named parameters <bcp14>MAY</bcp14> occur in any order in the covered components, regardless of the order they occur in the query string.</t>
          <t>The value of the <tt>name</tt> parameter and the component value of a single named parameter are calculated by the following process:</t>
          <ol spacing="normal" type="1"><li>Parse the <tt>nameString</tt> or <tt>valueString</tt> of the named query parameter defined by the "application/x-www-form-urlencoded parsing" section of <xref target="HTMLURL"/>, which is the value after percent-encoded octets are decoded.</li>
            <li>Encode the <tt>nameString</tt> or <tt>valueString</tt> using the "percent-encode after encoding" process defined by the "application/x-www-form-urlencoded serializing" section of <xref target="HTMLURL"/>, which results in an <xref target="ASCII"/> string.</li>
            <li>Output the ASCII string,</li>
          </ol>
          <t>Note that the component value does not include any leading <tt>?</tt> characters, equals sign <tt>=</tt>, or separating <tt>&amp;</tt> characters.
Named query parameters with an empty <tt>valueString</tt> have an empty string as the component value. Note that due to inconsistencies in implementations, some query parameter parsing libraries drop such empty values.</t>
          <t>If a query parameter is named as a covered component but it does not occur in the query parameters, this <bcp14>MUST</bcp14> cause an error in the signature base generation.</t>
          <t>For example for the following request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /path?param=value&foo=bar&baz=batman&qux= HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Indicating the <tt>baz</tt>, <tt>qux</tt> and <tt>param</tt> named query parameters would result in the following <tt>@query-param</tt> component values:</t>
          <t><em>baz</em>: <tt>batman</tt></t>
          <t><em>qux</em>: an empty string</t>
          <t><em>param</em>: <tt>value</tt></t>
          <t>And the following signature base lines, with (SP) indicating a single trailing space character before the empty component value:</t>
          <artwork><![CDATA[
"@query-param";name="baz": batman
"@query-param";name="qux":(SP)
"@query-param";name="param": value
]]></artwork>
          <t>This derived component has some limitations. Specifically, the algorithm in <xref target="HTMLURL"/> only supports query parameters using percent-escaped UTF-8 encoding. Other encodings are not supported.
Additionally, multiple instances of a named parameter are not reliably supported in the wild. If a parameter name occurs multiple times in a request, the named query parameter <bcp14>MUST NOT</bcp14> be included. If multiple parameters are common within an application, it is <bcp14>RECOMMENDED</bcp14> to sign the entire query string using the <tt>@query</tt> component identifier defined in <xref target="content-request-query"/>.</t>
          <t>The encoding process allows query parameters that include newlines or other problematic characters in their values, or with alternative encodings such as using the plus character to represent spaces. For the query parameters in this message:</t>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

GET /parameters?var=this%20is%20a%20big%0Amultiline%20value&\
  bar=with+plus+whitespace&fa%C3%A7ade%22%3A%20=something HTTP/1.1
Host: www.example.com
Date: Tue, 20 Apr 2021 02:07:56 GMT
]]></sourcecode>
          <t>The resulting values are encoded as follows:</t>
          <artwork><![CDATA[
"@query-param";name="var": this%20is%20a%20big%0Amultiline%20value
"@query-param";name="bar": with%20plus%20whitespace
"@query-param";name="fa%C3%A7ade%22%3A%20": something
]]></artwork>
          <t>If the encoding were not applied, the resultant values would be:</t>
          <artwork><![CDATA[
"@query-param";name="var": this is a big
multiline value
"@query-param";name="bar": with plus whitespace
"@query-param";name="façade\": ": something
]]></artwork>
          <t>This base string contains characters that violate the constraints on component names and values, and is therefore invalid.</t>
        </section>
        <section anchor="content-status-code">
          <name>Status Code</name>
          <t>The <tt>@status</tt> derived component refers to the three-digit numeric HTTP status code of a response message as defined in <xref section="15" sectionFormat="comma" target="HTTP"/>. The component value is the serialized three-digit integer of the HTTP status code, with no descriptive text.</t>
          <t>For example, the following response message:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Date: Fri, 26 Mar 2010 00:05:00 GMT
]]></sourcecode>
          <t>Would result in the following <tt>@status</tt> component value:</t>
          <artwork><![CDATA[
200
]]></artwork>
          <t>And the following signature base line:</t>
          <artwork><![CDATA[
"@status": 200
]]></artwork>
          <t>The <tt>@status</tt> component identifier <bcp14>MUST NOT</bcp14> be used in a request message.</t>
        </section>
      </section>
      <section anchor="signature-params">
        <name>Signature Parameters</name>
        <t>HTTP Message Signatures have metadata properties that provide information regarding the signature's generation and verification, consisting of the ordered set of covered components and the ordered set of parameters including a timestamp of signature creation, identifiers for verification key material, and other utilities. This metadata is represented by a special message component in the signature base for signature parameters, and it is treated slightly differently from other message components. Specifically, the signature parameters message component is <bcp14>REQUIRED</bcp14> as the last line of the <xref target="create-sig-input">signature base</xref>, and the component identifier <bcp14>MUST NOT</bcp14> be enumerated within the set of covered components for any signature, including itself.</t>
        <t>The signature parameters component name is <tt>@signature-params</tt>.</t>
        <t>The signature parameters component value is the serialization of the signature parameters for this signature, including the covered components ordered set with all associated parameters. These parameters include any of the following:</t>
        <ul spacing="normal">
          <li>
            <tt>created</tt>: Creation time as an Integer UNIX timestamp value. Sub-second precision is not supported. Inclusion of this parameter is <bcp14>RECOMMENDED</bcp14>.</li>
          <li>
            <tt>expires</tt>: Expiration time as an Integer UNIX timestamp value. Sub-second precision is not supported.</li>
          <li>
            <tt>nonce</tt>: A random unique value generated for this signature as a String value.</li>
          <li>
            <tt>alg</tt>: The HTTP message signature algorithm from the HTTP Signature Algorithms registry, as a String value.</li>
          <li>
            <tt>keyid</tt>: The identifier for the key material as a String value.</li>
          <li>
            <tt>tag</tt>: An application-specific tag for the signature as a String value. This value is used by applications to help identify signatures relevant for specific applications or protocols.</li>
        </ul>
        <t>Additional parameters can be defined in the <xref target="param-registry">HTTP Signature Metadata Parameters Registry</xref>. Note that there is no general ordering to the parameters, but once an ordering is chosen for a given set of parameters, it cannot be changed without altering the signature parameters value.</t>
        <t>The signature parameters component value is serialized as a parameterized Inner List using the rules in <xref section="4" sectionFormat="of" target="STRUCTURED-FIELDS"/> as follows:</t>
        <ol spacing="normal" type="1"><li>Let the output be an empty string.</li>
          <li>Determine an order for the component identifiers of the covered components, not including the <tt>@signature-params</tt> component identifier itself. Once this order is chosen, it cannot be changed. This order <bcp14>MUST</bcp14> be the same order as used in creating the signature base (<xref target="create-sig-input"/>).</li>
          <li>Serialize the component identifiers of the covered components, including all parameters, as an ordered Inner List of String values according to <xref section="4.1.1.1" sectionFormat="of" target="STRUCTURED-FIELDS"/> and append this to the output. Note that the component identifiers can include their own parameters, and these parameters are ordered sets. Once an order is chosen for a component's parameters, the order cannot be changed.</li>
          <li>Determine an order for any signature parameters. Once this order is chosen, it cannot be changed.</li>
          <li>Append the parameters to the Inner List in order according to <xref section="4.1.1.2" sectionFormat="of" target="STRUCTURED-FIELDS"/>,
 skipping parameters that are not available or not used for this message signature.</li>
          <li>The output contains the signature parameters component value.</li>
        </ol>
        <t>Note that the Inner List serialization from <xref section="4.1.1.1" sectionFormat="of" target="STRUCTURED-FIELDS"/> is used for the covered component value instead of the List serialization from <xref section="4.1.1" sectionFormat="of" target="STRUCTURED-FIELDS"/>
in order to facilitate parallelism with this value's inclusion in the Signature-Input field,
as discussed in <xref target="signature-input-header"/>.</t>
        <t>This example shows the serialized component value for the parameters of an example message signature:</t>
        <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

("@target-uri" "@authority" "date" "cache-control")\
  ;keyid="test-key-rsa-pss";alg="rsa-pss-sha512";\
  created=1618884475;expires=1618884775
]]></artwork>
        <t>Note that an HTTP message could contain <xref target="signature-multiple">multiple signatures</xref>, but only the signature parameters used for a single signature are included in a given signature parameters entry.</t>
      </section>
      <section anchor="content-request-response">
        <name>Signing Request Components in a Response Message</name>
        <t>When a request message results in a signed response message, the signer can include portions of the request message in the signature base by adding the <tt>req</tt> parameter to the component identifier.</t>
        <dl>
          <dt><tt>req</tt></dt>
          <dd>
            <t>A boolean flag indicating that the component value is derived from the request that triggered this response message and not from the response message directly.</t>
          </dd>
        </dl>
        <t>This parameter can be applied to both HTTP fields and derived components that target the request, with the same semantics. The component value for a message component using this parameter is calculated in the same manner as it is normally, but data is pulled from the request message instead of the target response message to which the signature is applied.</t>
        <t>Note that the same component name <bcp14>MAY</bcp14> be included with and without the <tt>req</tt> parameter in a single signature base, indicating the same named component from both the request and response message, respectively.</t>
        <t>The <tt>req</tt> parameter <bcp14>MAY</bcp14> be combined with other parameters as appropriate for the component identifier, such as the <tt>key</tt> parameter for a dictionary field.</t>
        <t>For example, when serving a response for this request:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

POST /foo?param=Value&Pet=dog HTTP/1.1
Host: example.com
Date: Tue, 20 Apr 2021 02:07:55 GMT
Content-Type: application/json
Content-Digest: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+T\
  aPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
Content-Length: 18

{"hello": "world"}
]]></sourcecode>
        <t>This would result in the following unsigned response message:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

HTTP/1.1 503 Service Unavailable
Date: Tue, 20 Apr 2021 02:07:56 GMT
Content-Type: application/json
Content-Length: 62
Content-Digest: sha-512=:0Y6iCBzGg5rZtoXS95Ijz03mslf6KAMCloESHObfwn\
  HJDbkkWWQz6PhhU9kxsTbARtY2PTBOzq24uJFpHsMuAg==:

{"busy": true, "message": "Your call is very important to us"}
]]></sourcecode>
        <t>The server signs the response with its own key, including the <tt>@status</tt> code and several header fields in the covered components. While this covers a reasonable amount of the response for this application, the server additionally includes several components derived from the original request message that triggered this response. In this example, the server includes the method, authority, path, and content digest from the request in the covered components of the response. The Content-Digest for both the request and the response are included under the response signature. For the application in this example, the query is deemed not to be relevant to the response and is therefore not covered. Other applications would make different decisions based on application needs as discussed in <xref target="application"/>.</t>
        <t>The signature base for this example is:</t>
        <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"@status": 503
"content-digest": sha-512=:0Y6iCBzGg5rZtoXS95Ijz03mslf6KAMCloESHObf\
  wnHJDbkkWWQz6PhhU9kxsTbARtY2PTBOzq24uJFpHsMuAg==:
"content-type": application/json
"@authority";req: origin.host.internal.example
"@method";req: POST
"@path";req: /foo
"content-digest";req: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A\
  2svX+TaPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
"@signature-params": ("@status" "content-digest" "content-type" \
  "@authority";req "@method";req "@path";req "content-digest";req)\
  ;created=1618884479;keyid="test-key-ecc-p256"
]]></artwork>
        <t>The signed response message is:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

HTTP/1.1 503 Service Unavailable
Date: Tue, 20 Apr 2021 02:07:56 GMT
Content-Type: application/json
Content-Length: 62
Content-Digest: sha-512=:0Y6iCBzGg5rZtoXS95Ijz03mslf6KAMCloESHObfwn\
  HJDbkkWWQz6PhhU9kxsTbARtY2PTBOzq24uJFpHsMuAg==:
Signature-Input: reqres=("@status" "content-digest" "content-type" \
  "@authority";req "@method";req "@path";req "content-digest";req)\
  ;created=1618884479;keyid="test-key-ecc-p256"
Signature: reqres=:9MG6AOgykOZTc/h2rnDc/g8L+/aXgdkV4hNDvpCxfbVrmLev\
  WPfyvEC/8jBh+3XnVwBqqcJyhUXoFgWv1SMI7A==:

{"busy": true, "message": "Your call is very important to us"}
]]></sourcecode>
        <t>Note that the ECDSA algorithm in use here is non-deterministic, meaning a different signature value will be created every time the algorithm is run. The signature value provided here can be validated against the given keys, but newly-generated signature values are not expected to match the example. See <xref target="security-nondeterministic"/>.</t>
        <t>Since the component values from the request are not repeated in the response message, the requester <bcp14>MUST</bcp14> keep the original message component values around long enough to validate the signature of the response that uses this component identifier parameter. In most cases, this means the requester needs to keep the original request message around, since the signer could choose to include any portions of the request in its response, according to the needs of the application. Since it is possible for an intermediary to alter a request message before it is processed by the server, applications need to take care not to sign such altered values as the client would not be able to validate the resulting signature.</t>
        <t>It is additionally possible for a server to create a signed response in response to a signed request. For example, this signed request:</t>
        <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

POST /foo?param=Value&Pet=dog HTTP/1.1
Host: example.com
Date: Tue, 20 Apr 2021 02:07:55 GMT
Content-Type: application/json
Content-Digest: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+T\
  aPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
Content-Length: 18
Signature-Input: sig1=("@method" "@authority" "@path" "@query" \
  "content-digest" "content-type" "content-length")\
  ;created=1618884475;keyid="test-key-rsa-pss"
Signature: sig1=:mZuBiiKDzg+s8eJiMYc0GwSkyurjSbPX7xSKpYe7EcfolW3DUF\
  RjlpneJoDkt5zNZo3N5tjn1e0sZZlBbrhHPhD9aQtE/qJPHrjwLUOY9eYtUWw261F\
  Xxpp2Dsqa9jeE1r0or4TGalZnEiNl5cNFv7ze8ox5G6TNNyam/3GeB2N8t8P56XOG\
  03g50CsN/4QZGWs4AjJcD5gMzcQhq/9JoKDUJDbcEyIetxEYvQCjWKbSb4yBevGmY\
  PWJ2ezfIFiwmUuvrs/Ab9tYzIjEw1hHP70RF67HSazjT+YsI2y5jpzjx8SerihGSN\
  Qwr57yQaTt4vK1eRDL2758LnsEYtO8lg==:

{"hello": "world"}
]]></artwork>
        <t>The server could choose to sign portions of this response, including several portions of the request resulting in this signature base:</t>
        <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"@status": 503
"content-digest": sha-512=:0Y6iCBzGg5rZtoXS95Ijz03mslf6KAMCloESHObf\
  wnHJDbkkWWQz6PhhU9kxsTbARtY2PTBOzq24uJFpHsMuAg==:
"content-type": application/json
"@authority";req: origin.host.internal.example
"@method";req: POST
"@path";req: /foo
"@query";req: ?param=Value&Pet=dog
"content-digest";req: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A\
  2svX+TaPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
"content-type";req: application/json
"content-length";req: 18
"@signature-params": ("@status" "content-digest" "content-type" \
  "@authority";req "@method";req "@path";req "@query";req \
  "content-digest";req "content-type";req "content-length";req)\
  ;created=1618884479;keyid="test-key-ecc-p256"
]]></artwork>
        <t>And the following signed response:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

HTTP/1.1 503 Service Unavailable
Date: Tue, 20 Apr 2021 02:07:56 GMT
Content-Type: application/json
Content-Length: 62
Content-Digest: sha-512=:0Y6iCBzGg5rZtoXS95Ijz03mslf6KAMCloESHObfwn\
  HJDbkkWWQz6PhhU9kxsTbARtY2PTBOzq24uJFpHsMuAg==:
Signature-Input: reqres=("@status" "content-digest" "content-type" \
  "@authority";req "@method";req "@path";req "@query";req \
  "content-digest";req "content-type";req "content-length";req)\
  ;created=1618884479;keyid="test-key-ecc-p256"
Signature: reqres=:zU7zd1MN56WapeNxfVNleCx5rFxBhBcZngnX4d+MurOk3tNu\
  3rFfTFnwhglZH8qNBoygvhVMfQq9wIvLqyVNog==:

{"busy": true, "message": "Your call is very important to us"}
]]></sourcecode>
        <t>Note that the ECDSA algorithm in use here is non-deterministic, meaning a different signature value will be created every time the algorithm is run. The signature value provided here can be validated against the given keys, but newly-generated signature values are not expected to match the example. See <xref target="security-nondeterministic"/>.</t>
        <t>Applications signing a response to a signed request <bcp14>SHOULD</bcp14> sign all of the components of the request signature value to provide sufficient coverage and protection against a class of collision attacks, as discussed in <xref target="security-sign-signature"/>. The server in this example has included all components listed in the Signature-Input of the client's signature on the request in the response signature, in addition to components of the response.</t>
        <t>While it is syntactically possible to include the Signature and Signature-Input fields of the request message in the signature components of a response a message using this mechanism, this practice is <bcp14>NOT RECOMMENDED</bcp14>. This is because signatures of signatures do not provide transitive coverage of covered components as one might expect and the practice is susceptible to several attacks as discussed in <xref target="security-sign-signature"/>. An application that needs to signal successful processing or receipt of a signature would need to carefully specify alternative mechanisms for sending such a signal securely.</t>
        <t>The response signature can only ever cover what is included in the request message when using this flag. Consequently, if an application needs to include the message content of the request under the signature of its response, the client needs to include a means for covering that content, such as a Content-Digest field. See the discussion in <xref target="security-message-content"/> for more information.</t>
        <t>The <tt>req</tt> parameter <bcp14>MUST NOT</bcp14> be used for any component in a signature that targets a request message.</t>
      </section>
      <section anchor="create-sig-input">
        <name>Creating the Signature Base</name>
        <t>The signature base is a <xref target="ASCII"/> string containing the canonicalized HTTP message components covered by the signature. The input to the signature base creation algorithm is the ordered set of covered component identifiers and their associated values, along with any additional signature parameters discussed in <xref target="signature-params"/>.</t>
        <t>Component identifiers are serialized using the strict serialization rules defined by <xref section="4" sectionFormat="comma" target="STRUCTURED-FIELDS"/>.
The component identifier has a component name, which is a String Item value serialized using the <tt>sf-string</tt> ABNF rule. The component identifier <bcp14>MAY</bcp14> also include defined parameters which are serialized using the <tt>parameters</tt> ABNF rule. The signature parameters line defined in <xref target="signature-params"/> follows this same pattern, but the component identifier is a String Item with a fixed value and no parameters, and the component value is always an Inner List with optional parameters.</t>
        <t>Note that this means the serialization of the component name itself is encased in double quotes, with parameters following as a semicolon-separated list, such as <tt>"cache-control"</tt>, <tt>"@authority"</tt>, <tt>"@signature-params"</tt>, or <tt>"example-dictionary";key="foo"</tt>.</t>
        <t>The output is the ordered set of bytes that form the signature base, which conforms to the following ABNF:</t>
        <sourcecode type="abnf"><![CDATA[
signature-base = *( signature-base-line LF ) signature-params-line
signature-base-line = component-identifier ":" SP
    ( derived-component-value / *field-content )
    ; no obs-fold nor obs-text
component-identifier = component-name parameters
component-name = sf-string
derived-component-value = *( VCHAR / SP )
signature-params-line = DQUOTE "@signature-params" DQUOTE
     ":" SP inner-list
]]></sourcecode>
        <t>To create the signature base, the signer or verifier concatenates together entries for each component identifier in the signature's covered components (including their parameters) using the following algorithm. All errors produced as described immediately <bcp14>MUST</bcp14> fail the algorithm with no signature output base output.</t>
        <ol spacing="normal" type="1"><li>Let the output be an empty string.</li>
          <li>
            <t>For each message component item in the covered components set (in order):  </t>
            <ol spacing="normal" type="1"><li>Check that the component identifier (including its parameters) has not already been added to the signature base. If this happens, produce an error.</li>
              <li>Append the component identifier for the covered component serialized according to the <tt>component-identifier</tt> ABNF rule. Note that this serialization places the component name in double quotes and appends any parameters outside of the quotes.</li>
              <li>Append a single colon <tt>:</tt></li>
              <li>Append a single space " "</li>
              <li>
                <t>Determine the component value for the component identifier.      </t>
                <ul spacing="normal">
                  <li>If the component identifier has a parameter that is not understood, produce an error.</li>
                  <li>If the component identifier has several incompatible parameters, such as <tt>bs</tt> and <tt>sf</tt>, produce an error.</li>
                  <li>If the component identifier contains the <tt>req</tt> parameter and the target message is a request, produce an error.</li>
                  <li>If the component identifier contains the <tt>req</tt> parameter and the target message is a response, the context for the component value is the related request message of the target response message. Otherwise, the context for the component value is the target message.</li>
                  <li>If the component name starts with an "at" character (<tt>@</tt>), derive the component's value from the message according to the specific rules defined for the derived component, as in <xref target="derived-components"/>, including processing of any known valid parameters. If the derived component name is unknown or the value cannot be derived, produce an error.</li>
                  <li>If the component name does not start with an "at" character (<tt>@</tt>), canonicalize the HTTP field value as described in <xref target="http-fields"/>, including processing of any known valid parameters. If the field cannot be found in the message, or the value cannot be obtained in the context, produce an error.</li>
                </ul>
              </li>
              <li>Append the covered component's canonicalized component value.</li>
              <li>Append a single newline <tt>\n</tt></li>
            </ol>
          </li>
          <li>
            <t>Append the signature parameters component (<xref target="signature-params"/>) according to the <tt>signature-params-line</tt> rule as follows:  </t>
            <ol spacing="normal" type="1"><li>Append the component identifier for the signature parameters serialized according to the <tt>component-identifier</tt> rule, i.e. the exact value <tt>"@signature-params"</tt> (including double quotes)</li>
              <li>Append a single colon <tt>:</tt></li>
              <li>Append a single space " "</li>
              <li>Append the signature parameters' canonicalized component value as defined in <xref target="signature-params"/>, i.e. an Inner List structured field value with parameters</li>
            </ol>
          </li>
          <li>Produce an error if the output string contains any non-ASCII (<xref target="ASCII"/>) characters.</li>
          <li>Return the output string.</li>
        </ol>
        <t>If covered components reference a component identifier that cannot be resolved to a component value in the message, the implementation <bcp14>MUST</bcp14> produce an error and not create a signature base. Such situations are included but not limited to:</t>
        <ul spacing="normal">
          <li>The signer or verifier does not understand the derived component name.</li>
          <li>The component name identifies a field that is not present in the message or whose value is malformed.</li>
          <li>The component identifier includes a parameter that is unknown or does not apply to the component identifier to which it is attached.</li>
          <li>The component identifier indicates that a structured field serialization is used (via the <tt>sf</tt> parameter), but the field in question is known to not be a structured field or the type of structured field is not known to the implementation.</li>
          <li>The component identifier is a dictionary member identifier that references a field that is not present in the message, is not a Dictionary Structured Field, or whose value is malformed.</li>
          <li>The component identifier is a dictionary member identifier or a named query parameter identifier that references a member that is not present in the component value, or whose value is malformed. E.g., the identifier is <tt>"example-dict";key="c"</tt> and the value of the Example-Dict header field is <tt>a=1, b=2</tt>, which does not have the <tt>c</tt> value.</li>
        </ul>
        <t>In the following non-normative example, the HTTP message being signed is the following request:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

POST /foo?param=Value&Pet=dog HTTP/1.1
Host: example.com
Date: Tue, 20 Apr 2021 02:07:55 GMT
Content-Type: application/json
Content-Digest: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+T\
  aPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
Content-Length: 18

{"hello": "world"}
]]></sourcecode>
        <t>The covered components consist of the <tt>@method</tt>, <tt>@authority</tt>, and <tt>@path</tt> derived components followed by the <tt>Content-Digest</tt>, <tt>Content-Length</tt>, and <tt>Content-Type</tt> HTTP header fields, in order. The signature parameters consist of a creation timestamp of <tt>1618884473</tt> and a key identifier of <tt>test-key-rsa-pss</tt>. Note that no explicit <tt>alg</tt> parameter is given here since the verifier is known by the application to use the RSA PSS algorithm based on the identified key. The signature base for this message with these parameters is:</t>
        <figure anchor="example-sig-input">
          <name>Non-normative example Signature Base</name>
          <sourcecode type="http-message" name="example-sig-input"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"@method": POST
"@authority": example.com
"@path": /foo
"content-digest": sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX\
  +TaPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
"content-length": 18
"content-type": application/json
"@signature-params": ("@method" "@authority" "@path" \
  "content-digest" "content-length" "content-type")\
  ;created=1618884473;keyid="test-key-rsa-pss"
]]></sourcecode>
        </figure>
        <t>Note that the example signature base here, or anywhere else within this specification, does not include the final newline that ends the displayed example.</t>
      </section>
    </section>
    <section anchor="message-signatures">
      <name>HTTP Message Signatures</name>
      <t>An HTTP Message Signature is a signature over a string generated from a subset of the components of an HTTP message in addition to metadata about the signature itself. When successfully verified against an HTTP message, an HTTP Message Signature provides cryptographic proof that the message is semantically equivalent to the message for which the signature was generated, with respect to the subset of message components that was signed.</t>
      <section anchor="sign">
        <name>Creating a Signature</name>
        <t>Creation of an HTTP message signature is a process that takes as its input the signature context (including the target message) and the requirements for the application. The output is a signature value and set of signature parameters that can be communicated to the verifier by adding them to the message.</t>
        <t>In order to create a signature, a signer <bcp14>MUST</bcp14> follow the following algorithm:</t>
        <ol spacing="normal" type="1"><li>The signer chooses an HTTP signature algorithm and key material for signing from the set of potential signing algorithms.
 The set of potential algorithms is determined by the application and is out of scope for this document.
 The signer <bcp14>MUST</bcp14> choose key material that is appropriate
 for the signature's algorithm, and that conforms to any requirements defined by the algorithm, such as key size or format. The
 mechanism by which the signer chooses the algorithm and key material is out of scope for this document.</li>
          <li>The signer sets the signature's creation time to the current time.</li>
          <li>If applicable, the signer sets the signature's expiration time property to the time at which the signature is to expire. The expiration is a hint to the verifier, expressing the time at which the signer is no longer willing to vouch for the safety of the signature.</li>
          <li>
            <t>The signer creates an ordered set of component identifiers representing the message components to be covered by the signature, and attaches signature metadata parameters to this set. The serialized value of this is later used as the value of the Signature-Input field as described in <xref target="signature-input-header"/>.
            </t>
            <ul spacing="normal">
              <li>Once an order of covered components is chosen, the order <bcp14>MUST NOT</bcp14> change for the life of the signature.</li>
              <li>Each covered component identifier <bcp14>MUST</bcp14> be either an HTTP field in the signature context <xref target="http-fields"/> or a derived component listed in <xref target="derived-components"/> or the HTTP Signature Derived Component Names registry.</li>
              <li>Signers of a request <bcp14>SHOULD</bcp14> include some or all of the message control data in the covered components, such as the <tt>@method</tt>, <tt>@authority</tt>, <tt>@target-uri</tt>, or some combination thereof.</li>
              <li>Signers <bcp14>SHOULD</bcp14> include the <tt>created</tt> signature metadata parameter to indicate when the signature was created.</li>
              <li>The <tt>@signature-params</tt> derived component identifier <bcp14>MUST NOT</bcp14> be listed in the list of covered component identifiers. The derived component is required to always be the last line in the signature base, ensuring that a signature always covers its own metadata and the metadata cannot be substituted.</li>
              <li>Further guidance on what to include in this set and in what order is out of scope for this document.</li>
            </ul>
          </li>
          <li>The signer creates the signature base using these parameters and the signature base creation algorithm. (<xref target="create-sig-input"/>)</li>
          <li>The signer uses the <tt>HTTP_SIGN</tt> primitive function to sign the signature base with the chosen signing algorithm using the key material chosen by the signer. The <tt>HTTP_SIGN</tt> primitive and several concrete applications of signing algorithms are defined in <xref target="signature-methods"/>.</li>
          <li>The byte array output of the signature function is the HTTP message signature output value to be included in the Signature field as defined in <xref target="signature-header"/>.</li>
        </ol>
        <t>For example, given the HTTP message and signature parameters in the example in <xref target="create-sig-input"/>, the example signature base is signed with the <tt>test-key-rsa-pss</tt> key in <xref target="example-key-rsa-pss-test"/> and the RSA PSS algorithm described in <xref target="method-rsa-pss-sha512"/>, giving the following message signature output value, encoded in Base64:</t>
        <figure anchor="example-sig-value">
          <name>Non-normative example signature value</name>
          <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

HIbjHC5rS0BYaa9v4QfD4193TORw7u9edguPh0AW3dMq9WImrlFrCGUDih47vAxi4L2\
YRZ3XMJc1uOKk/J0ZmZ+wcta4nKIgBkKq0rM9hs3CQyxXGxHLMCy8uqK488o+9jrptQ\
+xFPHK7a9sRL1IXNaagCNN3ZxJsYapFj+JXbmaI5rtAdSfSvzPuBCh+ARHBmWuNo1Uz\
VVdHXrl8ePL4cccqlazIJdC4QEjrF+Sn4IxBQzTZsL9y9TP5FsZYzHvDqbInkTNigBc\
E9cKOYNFCn4D/WM7F6TNuZO9EgtzepLWcjTymlHzK7aXq6Am6sfOrpIC49yXjj3ae6H\
RalVc/g==
]]></artwork>
        </figure>
        <t>Note that the RSA PSS algorithm in use here is non-deterministic, meaning a different signature value will be created every time the algorithm is run. The signature value provided here can be validated against the given keys, but newly-generated signature values are not expected to match the example. See <xref target="security-nondeterministic"/>.</t>
      </section>
      <section anchor="verify">
        <name>Verifying a Signature</name>
        <t>Verification of an HTTP message signature is a process that takes as its input the signature context (including the target message, particularly its Signature and Signature-Input fields) and the requirements for the application. The output of the verification is either a positive verification or an error.</t>
        <t>In order to verify a signature, a verifier <bcp14>MUST</bcp14> follow the following algorithm:</t>
        <ol spacing="normal" type="1"><li>
            <t>Parse the Signature and Signature-Input fields as described in <xref target="signature-input-header"/> and <xref target="signature-header"/>, and extract the signatures to be verified.
            </t>
            <ol spacing="normal" type="1"><li>If there is more than one signature value present, determine which signature should be processed
 for this message based on the policy and configuration of the verifier. If an applicable signature is not found, produce an error.</li>
              <li>If the chosen Signature value does not have a corresponding Signature-Input value,
 produce an error.</li>
            </ol>
          </li>
          <li>Parse the values of the chosen Signature-Input field as a parameterized Inner List to get the ordered list of covered components and the signature parameters for the signature to be verified.</li>
          <li>Parse the value of the corresponding Signature field to get the byte array value of the signature
 to be verified.</li>
          <li>Examine the signature parameters to confirm that the signature meets the requirements described
 in this document, as well as any additional requirements defined by the application such as which
 message components are required to be covered by the signature. (<xref target="verify-requirements"/>)</li>
          <li>Determine the verification key material for this signature. If the key material is known through external
 means such as static configuration or external protocol negotiation, the verifier will use that. If the key is
 identified in the signature parameters, the verifier will dereference this to appropriate key material to use
 with the signature. The verifier has to determine the trustworthiness of the key material for the context
 in which the signature is presented. If a key is identified that the verifier does not know, does
 not trust for this request, or does not match something preconfigured, the verification <bcp14>MUST</bcp14> fail.</li>
          <li>
            <t>Determine the algorithm to apply for verification:
            </t>
            <ol spacing="normal" type="1"><li>Start with the set of allowable algorithms known to the application. If any of the following steps selects an algorithm that is not in this set, the signature validation fails.</li>
              <li>If the algorithm is known through external means such as static configuration or external protocol
 negotiation, the verifier will use this algorithm.</li>
              <li>If the algorithm can be determined from the keying material, such as through an algorithm field
 on the key value itself, the verifier will use this algorithm.</li>
              <li>If the algorithm is explicitly stated in the signature parameters using a value from the
 HTTP Signature Algorithms registry, the verifier will use the referenced algorithm.</li>
              <li>If the algorithm is specified in more than one location, such as through static configuration
 and the algorithm signature parameter, or the algorithm signature parameter and from
 the key material itself, the resolved algorithms <bcp14>MUST</bcp14> be the same. If the algorithms are
 not the same, the verifier <bcp14>MUST</bcp14> fail the verification.</li>
            </ol>
          </li>
          <li>Use the received HTTP message and the parsed signature parameters to re-create the signature base, using
 the algorithm defined in <xref target="create-sig-input"/>. The value of the <tt>@signature-params</tt> input is
 the value of the Signature-Input field for this signature serialized according to the rules described
 in <xref target="signature-params"/>. Note that this does not include the signature's label from the Signature-Input field.</li>
          <li>If the key material is appropriate for the algorithm, apply the appropriate <tt>HTTP_VERIFY</tt> cryptographic verification algorithm to the signature,
 recalculated signature base, key material, signature value. The <tt>HTTP_VERIFY</tt> primitive and several concrete algorithms are defined in
 <xref target="signature-methods"/>.</li>
          <li>The results of the verification algorithm function are the final results of the cryptographic verification function.</li>
        </ol>
        <t>If any of the above steps fail or produce an error, the signature validation fails.</t>
        <t>For example, verifying the signature with the key <tt>sig1</tt> of the following message with the <tt>test-key-rsa-pss</tt> key in <xref target="example-key-rsa-pss-test"/> and the RSA PSS algorithm described in <xref target="method-rsa-pss-sha512"/>:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

POST /foo?param=Value&Pet=dog HTTP/1.1
Host: example.com
Date: Tue, 20 Apr 2021 02:07:55 GMT
Content-Type: application/json
Content-Digest: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+T\
  aPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
Content-Length: 18
Signature-Input: sig1=("@method" "@authority" "@path" \
  "content-digest" "content-length" "content-type")\
  ;created=1618884473;keyid="test-key-rsa-pss"
Signature: sig1=:HIbjHC5rS0BYaa9v4QfD4193TORw7u9edguPh0AW3dMq9WImrl\
  FrCGUDih47vAxi4L2YRZ3XMJc1uOKk/J0ZmZ+wcta4nKIgBkKq0rM9hs3CQyxXGxH\
  LMCy8uqK488o+9jrptQ+xFPHK7a9sRL1IXNaagCNN3ZxJsYapFj+JXbmaI5rtAdSf\
  SvzPuBCh+ARHBmWuNo1UzVVdHXrl8ePL4cccqlazIJdC4QEjrF+Sn4IxBQzTZsL9y\
  9TP5FsZYzHvDqbInkTNigBcE9cKOYNFCn4D/WM7F6TNuZO9EgtzepLWcjTymlHzK7\
  aXq6Am6sfOrpIC49yXjj3ae6HRalVc/g==:

{"hello": "world"}
]]></sourcecode>
        <t>With the additional requirements that at least the method, authority, path, content-digest, content-length, and content-type be signed, and that the signature creation timestamp is recent enough at the time of verification, the verification passes.</t>
        <section anchor="verify-requirements">
          <name>Enforcing Application Requirements</name>
          <t>The verification requirements specified in this document are intended as a baseline set of restrictions that are generally applicable to all use cases. Applications using HTTP Message Signatures <bcp14>MAY</bcp14> impose requirements above and beyond those specified by this document, as appropriate for their use case.</t>
          <t>Some non-normative examples of additional requirements an application might define are:</t>
          <ul spacing="normal">
            <li>Requiring a specific set of header fields to be signed (e.g., Authorization, Digest).</li>
            <li>Enforcing a maximum signature age from the time of the <tt>created</tt> time stamp.</li>
            <li>Rejection of signatures past the expiration time in the <tt>expires</tt> time stamp. Note that the expiration time is a hint from the signer and that a verifier can always reject a signature ahead of its expiration time.</li>
            <li>Prohibition of certain signature metadata parameters, such as runtime algorithm signaling with the <tt>alg</tt> parameter when the algorithm is determined from the key information.</li>
            <li>Ensuring successful dereferencing of the <tt>keyid</tt> parameter to valid and appropriate key material.</li>
            <li>Prohibiting the use of certain algorithms, or mandating the use of a specific algorithm.</li>
            <li>Requiring keys to be of a certain size (e.g., 2048 bits vs. 1024 bits).</li>
            <li>Enforcing uniqueness of the <tt>nonce</tt> parameter.</li>
            <li>Requiring an application-specific value for the <tt>tag</tt> parameter.</li>
          </ul>
          <t>Application-specific requirements are expected and encouraged. When an application defines additional requirements, it <bcp14>MUST</bcp14> enforce them during the signature verification process, and signature verification <bcp14>MUST</bcp14> fail if the signature does not conform to the application's requirements.</t>
          <t>Applications <bcp14>MUST</bcp14> enforce the requirements defined in this document. Regardless of use case, applications <bcp14>MUST NOT</bcp14> accept signatures that do not conform to these requirements.</t>
        </section>
      </section>
      <section anchor="signature-methods">
        <name>Signature Algorithms</name>
        <t>An HTTP Message signature <bcp14>MUST</bcp14> use a cryptographic digital signature or MAC method that is
appropriate for the key material, environment, and needs of the signer and verifier. This specification does not strictly limit the available signature algorithms, and any signature algorithm that meets these basic requirements <bcp14>MAY</bcp14> be used by an application of HTTP message signatures.</t>
        <t>Each signing method <tt>HTTP_SIGN</tt> takes as its input the signature base defined in <xref target="create-sig-input"/> as a byte array (<tt>M</tt>), the signing key material
(<tt>Ks</tt>), and outputs the signature output as a byte array (<tt>S</tt>):</t>
        <artwork><![CDATA[
HTTP_SIGN (M, Ks)  ->  S
]]></artwork>
        <t>Each verification method <tt>HTTP_VERIFY</tt> takes as its input the re-generated signature base defined in <xref target="create-sig-input"/> as a byte array (<tt>M</tt>), the verification key
material (<tt>Kv</tt>), and the presented signature to be verified as a byte array (<tt>S</tt>) and outputs the verification result (<tt>V</tt>) as a boolean:</t>
        <artwork><![CDATA[
HTTP_VERIFY (M, Kv, S) -> V
]]></artwork>
        <t>The following sections contain several common signature algorithms and demonstrate how these cryptographic primitives map to the <tt>HTTP_SIGN</tt> and <tt>HTTP_VERIFY</tt> definitions here. Which method to use can be communicated through the explicit algorithm signature parameter <tt>alg</tt>
defined in <xref target="signature-params"/>, by reference to the key material, or through mutual agreement between the signer and verifier. Signature algorithms selected using the <tt>alg</tt> parameter <bcp14>MUST</bcp14> use values from the <xref target="hsa-registry">HTTP Signature Algorithms registry</xref>.</t>
        <section anchor="method-rsa-pss-sha512">
          <name>RSASSA-PSS using SHA-512</name>
          <t>To sign using this algorithm, the signer applies the <tt>RSASSA-PSS-SIGN (K, M)</tt> function defined in <xref target="RFC8017"/> with the signer's private signing key (<tt>K</tt>) and
the signature base (<tt>M</tt>) (<xref target="create-sig-input"/>).
The mask generation function is <tt>MGF1</tt> as specified in <xref target="RFC8017"/> with a hash function of SHA-512 <xref target="RFC6234"/>.
The salt length (<tt>sLen</tt>) is 64 bytes.
The hash function (<tt>Hash</tt>) SHA-512 <xref target="RFC6234"/> is applied to the signature base to create
the digest content to which the digital signature is applied.
The resulting signed content byte array (<tt>S</tt>) is the HTTP message signature output used in <xref target="sign"/>.</t>
          <t>To verify using this algorithm, the verifier applies the <tt>RSASSA-PSS-VERIFY ((n, e), M, S)</tt> function <xref target="RFC8017"/> using the public key portion of the verification key material (<tt>(n, e)</tt>) and the signature base (<tt>M</tt>) re-created as described in <xref target="verify"/>.
The mask generation function is <tt>MGF1</tt> as specified in <xref target="RFC8017"/> with a hash function of SHA-512 <xref target="RFC6234"/>.
The salt length (<tt>sLen</tt>) is 64 bytes.
The hash function (<tt>Hash</tt>) SHA-512 <xref target="RFC6234"/> is applied to the signature base to create the digest content to which the verification function is applied.
The verifier extracts the HTTP message signature to be verified (<tt>S</tt>) as described in <xref target="verify"/>.
The results of the verification function indicate if the signature presented is valid.</t>
          <t>Note that the output of RSA PSS algorithms are non-deterministic, and therefore it is not correct to re-calculate a new signature on the signature base and compare the results to an existing signature. Instead, the verification algorithm defined here needs to be used. See <xref target="security-nondeterministic"/>.</t>
          <t>Use of this algorithm can be indicated at runtime using the <tt>rsa-pss-sha512</tt> value for the <tt>alg</tt> signature parameter.</t>
        </section>
        <section anchor="method-rsa-v1_5-sha256">
          <name>RSASSA-PKCS1-v1_5 using SHA-256</name>
          <t>To sign using this algorithm, the signer applies the <tt>RSASSA-PKCS1-V1_5-SIGN (K, M)</tt> function defined in <xref target="RFC8017"/> with the signer's private signing key (<tt>K</tt>) and
the signature base (<tt>M</tt>) (<xref target="create-sig-input"/>).
The hash SHA-256 <xref target="RFC6234"/> is applied to the signature base to create
the digest content to which the digital signature is applied.
The resulting signed content byte array (<tt>S</tt>) is the HTTP message signature output used in <xref target="sign"/>.</t>
          <t>To verify using this algorithm, the verifier applies the <tt>RSASSA-PKCS1-V1_5-VERIFY ((n, e), M, S)</tt> function <xref target="RFC8017"/> using the public key portion of the verification key material (<tt>(n, e)</tt>) and the signature base (<tt>M</tt>) re-created as described in <xref target="verify"/>.
The hash function SHA-256 <xref target="RFC6234"/> is applied to the signature base to create the digest content to which the verification function is applied.
The verifier extracts the HTTP message signature to be verified (<tt>S</tt>) as described in <xref target="verify"/>.
The results of the verification function indicate if the signature presented is valid.</t>
          <t>Use of this algorithm can be indicated at runtime using the <tt>rsa-v1_5-sha256</tt> value for the <tt>alg</tt> signature parameter.</t>
        </section>
        <section anchor="method-hmac-sha256">
          <name>HMAC using SHA-256</name>
          <t>To sign and verify using this algorithm, the signer applies the <tt>HMAC</tt> function <xref target="RFC2104"/> with the shared signing key (<tt>K</tt>) and
the signature base (<tt>text</tt>) (<xref target="create-sig-input"/>).
The hash function SHA-256 <xref target="RFC6234"/> is applied to the signature base to create the digest content to which the HMAC is applied, giving the signature result.</t>
          <t>For signing, the resulting value is the HTTP message signature output used in <xref target="sign"/>.</t>
          <t>For verification, the verifier extracts the HTTP message signature to be verified (<tt>S</tt>) as described in <xref target="verify"/>.
The output of the HMAC function is compared bytewise to the value of the HTTP message signature, and the results of the comparison determine the validity of the signature presented.</t>
          <t>Use of this algorithm can be indicated at runtime using the <tt>hmac-sha256</tt> value for the <tt>alg</tt> signature parameter.</t>
        </section>
        <section anchor="method-ecdsa-p256-sha256">
          <name>ECDSA using curve P-256 DSS and SHA-256</name>
          <t>To sign using this algorithm, the signer applies the <tt>ECDSA</tt> algorithm defined in <xref target="FIPS186-4"/> using curve P-256 with the signer's private signing key and
the signature base (<xref target="create-sig-input"/>).
The hash SHA-256 <xref target="RFC6234"/> is applied to the signature base to create
the digest content to which the digital signature is applied, (<tt>M</tt>).
The signature algorithm returns two integer values, <tt>r</tt> and <tt>s</tt>. These are both encoded as big-endian unsigned integers, zero-padded to 32-octets each. These encoded values are concatenated into a single 64-octet array consisting of the encoded value of <tt>r</tt> followed by the encoded value of <tt>s</tt>. The resulting concatenation of <tt>(r, s)</tt> is byte array of the HTTP message signature output used in <xref target="sign"/>.</t>
          <t>To verify using this algorithm, the verifier applies the <tt>ECDSA</tt> algorithm defined in <xref target="FIPS186-4"/>  using the public key portion of the verification key material and the signature base re-created as described in <xref target="verify"/>.
The hash function SHA-256 <xref target="RFC6234"/> is applied to the signature base to create the digest content to which the signature verification function is applied, (<tt>M</tt>).
The verifier extracts the HTTP message signature to be verified (<tt>S</tt>) as described in <xref target="verify"/>. This value is a 64-octet array consisting of the encoded values of <tt>r</tt> and <tt>s</tt> concatenated in order. These are both encoded in big-endian unsigned integers, zero-padded to 32-octets each. The resulting signature value <tt>(r, s)</tt> is used as input to the signature verification function.
The results of the verification function indicate if the signature presented is valid.</t>
          <t>Note that the output of ECDSA algorithms are non-deterministic, and therefore it is not correct to re-calculate a new signature on the signature base and compare the results to an existing signature. Instead, the verification algorithm defined here needs to be used. See <xref target="security-nondeterministic"/>.</t>
          <t>Use of this algorithm can be indicated at runtime using the <tt>ecdsa-p256-sha256</tt> value for the <tt>alg</tt> signature parameter.</t>
        </section>
        <section anchor="method-ecdsa-p384-sha384">
          <name>ECDSA using curve P-384 DSS and SHA-384</name>
          <t>To sign using this algorithm, the signer applies the <tt>ECDSA</tt> algorithm defined in <xref target="FIPS186-4"/> using curve P-384 with the signer's private signing key and
the signature base (<xref target="create-sig-input"/>).
The hash SHA-384 <xref target="RFC6234"/> is applied to the signature base to create
the digest content to which the digital signature is applied, (<tt>M</tt>).
The signature algorithm returns two integer values, <tt>r</tt> and <tt>s</tt>. These are both encoded as big-endian unsigned integers, zero-padded to 48-octets each. These encoded values are concatenated into a single 96-octet array consisting of the encoded value of <tt>r</tt> followed by the encoded value of <tt>s</tt>. The resulting concatenation of <tt>(r, s)</tt> is byte array of the HTTP message signature output used in <xref target="sign"/>.</t>
          <t>To verify using this algorithm, the verifier applies the <tt>ECDSA</tt> algorithm defined in <xref target="FIPS186-4"/>  using the public key portion of the verification key material and the signature base re-created as described in <xref target="verify"/>.
The hash function SHA-384 <xref target="RFC6234"/> is applied to the signature base to create the digest content to which the signature verification function is applied, (<tt>M</tt>).
The verifier extracts the HTTP message signature to be verified (<tt>S</tt>) as described in <xref target="verify"/>. This value is a 96-octet array consisting of the encoded values of <tt>r</tt> and <tt>s</tt> concatenated in order. These are both encoded in big-endian unsigned integers, zero-padded to 48-octets each. The resulting signature value <tt>(r, s)</tt> is used as input to the signature verification function.
The results of the verification function indicate if the signature presented is valid.</t>
          <t>Note that the output of ECDSA algorithms are non-deterministic, and therefore it is not correct to re-calculate a new signature on the signature base and compare the results to an existing signature. Instead, the verification algorithm defined here needs to be used. See <xref target="security-nondeterministic"/>.</t>
          <t>Use of this algorithm can be indicated at runtime using the <tt>ecdsa-p384-sha384</tt> value for the <tt>alg</tt> signature parameter.</t>
        </section>
        <section anchor="method-ed25519">
          <name>EdDSA using curve edwards25519</name>
          <t>To sign using this algorithm, the signer applies the <tt>Ed25519</tt> algorithm defined in <xref section="5.1.6" sectionFormat="of" target="RFC8032"/> with the signer's private signing key and
the signature base (<xref target="create-sig-input"/>).
The signature base is taken as the input message (<tt>M</tt>) with no pre-hash function.
The signature is a 64-octet concatenation of <tt>R</tt> and <tt>S</tt> as specified in <xref section="5.1.6" sectionFormat="of" target="RFC8032"/>, and this is taken as a byte array for the HTTP message signature output used in <xref target="sign"/>.</t>
          <t>To verify using this algorithm, the signer applies the <tt>Ed25519</tt> algorithm defined in <xref section="5.1.7" sectionFormat="of" target="RFC8032"/> using the public key portion of the verification key material (<tt>A</tt>) and the signature base re-created as described in <xref target="verify"/>.
The signature base is taken as the input message (<tt>M</tt>) with no pre-hash function.
The signature to be verified is processed as the 64-octet concatenation of <tt>R</tt> and <tt>S</tt> as specified in <xref section="5.1.7" sectionFormat="of" target="RFC8032"/>.
The results of the verification function indicate if the signature presented is valid.</t>
          <t>Use of this algorithm can be indicated at runtime using the <tt>ed25519</tt> value for the <tt>alg</tt> signature parameter.</t>
        </section>
        <section anchor="method-jose">
          <name>JSON Web Signature (JWS) algorithms</name>
          <t>If the signing algorithm is a JOSE signing algorithm from the JSON Web Signature and Encryption Algorithms Registry established by <xref target="RFC7518"/>, the
JWS algorithm definition determines the signature and hashing algorithms to apply for both signing and verification.</t>
          <t>For both signing and verification, the HTTP messages signature base (<xref target="create-sig-input"/>) is used as the entire "JWS Signing Input".
The JOSE Header defined in <xref target="RFC7517"/> is not used, and the signature base is not first encoded in Base64 before applying the algorithm.
The output of the JWS signature is taken as a byte array prior to the Base64url encoding used in JOSE.</t>
          <t>The JWS algorithm <bcp14>MUST NOT</bcp14> be <tt>none</tt> and <bcp14>MUST NOT</bcp14> be any algorithm with a JOSE Implementation Requirement of <tt>Prohibited</tt>.</t>
          <t>JWA algorithm values from the JSON Web Signature and Encryption Algorithms Registry are not included as signature parameters. Typically, the JWS algorithm can be signaled using JSON Web Keys or other mechanisms common to JOSE implementations. In fact, JWA algorithm values are not registered in the <xref target="hsa-registry">HTTP Signature Algorithms registry</xref>, and so the explicit <tt>alg</tt> signature parameter is not used at all when using JOSE signing algorithms.</t>
        </section>
      </section>
    </section>
    <section anchor="attach-signature">
      <name>Including a Message Signature in a Message</name>
      <t>HTTP message signatures can be included within an HTTP message via the Signature-Input and Signature fields, both defined within this specification.</t>
      <t>The Signature-Input field identifies the covered components and parameters that describe how the signature was generated, while the Signature field contains the signature value. Each field <bcp14>MAY</bcp14> contain multiple labeled values.</t>
      <t>An HTTP message signature is identified by a label within an HTTP message. This label <bcp14>MUST</bcp14> be unique within a given HTTP message and <bcp14>MUST</bcp14> be used in both the Signature-Input and Signature fields. The label is chosen by the signer, except where a specific label is dictated by protocol negotiations such as described in <xref target="request-signature"/>.</t>
      <t>An HTTP message signature <bcp14>MUST</bcp14> use both Signature-Input and Signature fields and each field <bcp14>MUST</bcp14> contain the same labels. The presence of a label in one field but not in the other is an error.</t>
      <section anchor="signature-input-header">
        <name>The Signature-Input HTTP Field</name>
        <t>The Signature-Input field is a Dictionary structured field (defined in <xref section="3.2" sectionFormat="of" target="STRUCTURED-FIELDS"/>) containing the metadata for one or more message signatures generated from components within the HTTP message. Each member describes a single message signature. The member's key is the label that uniquely identifies the message signature within the HTTP message. The member's value is the serialization of the covered components Inner List plus all signature metadata parameters identified by the label.</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Signature-Input: sig1=("@method" "@target-uri" "@authority" \
  "content-digest" "cache-control");\
  created=1618884475;keyid="test-key-rsa-pss"
]]></sourcecode>
        <t>To facilitate signature validation, the Signature-Input field value <bcp14>MUST</bcp14> contain the same serialized value used
in generating the signature base's <tt>@signature-params</tt> value defined in <xref target="signature-params"/>. Note that in a structured field value, list order and parameter order have to be preserved.</t>
        <t>The signer <bcp14>MAY</bcp14> include the Signature-Input field as a trailer to facilitate signing a message after its content has been processed by the signer. However, since intermediaries are allowed to drop trailers as per <xref target="HTTP"/>, it is <bcp14>RECOMMENDED</bcp14> that the Signature-Input field be included only as a header to avoid signatures being inadvertently stripped from a message.</t>
        <t>Multiple Signature-Input fields <bcp14>MAY</bcp14> be included in a single HTTP message. The signature labels <bcp14>MUST</bcp14> be unique across all field values.</t>
      </section>
      <section anchor="signature-header">
        <name>The Signature HTTP Field</name>
        <t>The Signature field is a Dictionary structured field defined in <xref section="3.2" sectionFormat="of" target="STRUCTURED-FIELDS"/> containing one or more message signatures generated from the signature context of the target message. The member's key is the label that uniquely identifies the message signature within the HTTP message. The member's value is a Byte Sequence containing the signature value for the message signature identified by the label.</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Signature: sig1=:P0wLUszWQjoi54udOtydf9IWTfNhy+r53jGFj9XZuP4uKwxyJo\
  1RSHi+oEF1FuX6O29d+lbxwwBao1BAgadijW+7O/PyezlTnqAOVPWx9GlyntiCiHz\
  C87qmSQjvu1CFyFuWSjdGa3qLYYlNm7pVaJFalQiKWnUaqfT4LyttaXyoyZW84jS8\
  gyarxAiWI97mPXU+OVM64+HVBHmnEsS+lTeIsEQo36T3NFf2CujWARPQg53r58Rmp\
  Z+J9eKR2CD6IJQvacn5A4Ix5BUAVGqlyp8JYm+S/CWJi31PNUjRRCusCVRj05NrxA\
  BNFv3r5S9IXf2fYJK+eyW4AiGVMvMcOg==:
]]></sourcecode>
        <t>The signer <bcp14>MAY</bcp14> include the Signature field as a trailer to facilitate signing a message after its content has been processed by the signer. However, since intermediaries are allowed to drop trailers as per <xref target="HTTP"/>, it is <bcp14>RECOMMENDED</bcp14> that the Signature field be included only as a header to avoid signatures being inadvertently stripped from a message.</t>
        <t>Multiple Signature fields <bcp14>MAY</bcp14> be included in a single HTTP message. The signature labels <bcp14>MUST</bcp14> be unique across all field values.</t>
      </section>
      <section anchor="signature-multiple">
        <name>Multiple Signatures</name>
        <t>Multiple distinct signatures <bcp14>MAY</bcp14> be included in a single message. Each distinct signature <bcp14>MUST</bcp14> have a unique label. These multiple signatures could be added all by the same signer or could come from several different signers. For example, a signer may include multiple signatures signing the same message components with different keys or algorithms to support verifiers with different capabilities, or a reverse proxy may include information about the client in fields when forwarding the request to a service host, including a signature over the client's original signature values.</t>
        <t>The following non-normative example starts with a signed request from the client. A reverse proxy takes this request and validates the client's signature.</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

POST /foo?param=Value&Pet=dog HTTP/1.1
Host: example.com
Date: Tue, 20 Apr 2021 02:07:55 GMT
Content-Type: application/json
Content-Length: 18
Content-Digest: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+T\
  aPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
Signature-Input: sig1=("@method" "@authority" "@path" \
  "content-digest" "content-type" "content-length")\
  ;created=1618884475;keyid="test-key-ecc-p256"
Signature: sig1=:X5spyd6CFnAG5QnDyHfqoSNICd+BUP4LYMz2Q0JXlb//4Ijpzp\
  +kve2w4NIyqeAuM7jTDX+sNalzA8ESSaHD3A==:

{"hello": "world"}
]]></sourcecode>
        <t>The proxy then alters the message before forwarding it on to the origin server, changing the target host and adding the Forwarded header field defined in <xref target="RFC7239"/>.</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

POST /foo?param=Value&Pet=dog HTTP/1.1
Host: origin.host.internal.example
Date: Tue, 20 Apr 2021 02:07:56 GMT
Content-Type: application/json
Content-Length: 18
Forwarded: for=192.0.2.123;host=example.com;proto=https
Content-Digest: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+T\
  aPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
Signature-Input: sig1=("@method" "@authority" "@path" \
  "content-digest" "content-type" "content-length")\
  ;created=1618884475;keyid="test-key-ecc-p256"
Signature: sig1=:X5spyd6CFnAG5QnDyHfqoSNICd+BUP4LYMz2Q0JXlb//4Ijpzp\
  +kve2w4NIyqeAuM7jTDX+sNalzA8ESSaHD3A==:

{"hello": "world"}
]]></sourcecode>
        <t>The proxy is in a position to validate the incoming client's signature and make its own statement to the origin server about the nature of the request that it is forwarding by adding its own signature over the new message before passing it along to the origin server.
The proxy also includes all the elements from the original message that are relevant to the origin server's processing. In many cases, the proxy will want to cover all the same components that were covered by the client's signature, which is the case in this example. Note that in this example, the proxy is signing over the new authority value, which it has changed. The proxy also adds the Forwarded header to its own signature value.
The proxy identifies its own key and algorithm and, in this example, includes an expiration for the signature to indicate to downstream systems that the proxy will not vouch for this signed message past this short time window. This results in a signature base of:</t>
        <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"@method": POST
"@authority": origin.host.internal.example
"@path": /foo
"content-digest": sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX\
  +TaPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
"content-type": application/json
"content-length": 18
"forwarded": for=192.0.2.123;host=example.com;proto=https
"@signature-params": ("@method" "@authority" "@path" \
  "content-digest" "content-type" "content-length" "forwarded")\
  ;created=1618884480;keyid="test-key-rsa";alg="rsa-v1_5-sha256"\
  ;expires=1618884540
]]></artwork>
        <t>And a signature output value of:</t>
        <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

S6ZzPXSdAMOPjN/6KXfXWNO/f7V6cHm7BXYUh3YD/fRad4BCaRZxP+JH+8XY1I6+8Cy\
+CM5g92iHgxtRPz+MjniOaYmdkDcnL9cCpXJleXsOckpURl49GwiyUpZ10KHgOEe11s\
x3G2gxI8S0jnxQB+Pu68U9vVcasqOWAEObtNKKZd8tSFu7LB5YAv0RAGhB8tmpv7sFn\
Im9y+7X5kXQfi8NMaZaA8i2ZHwpBdg7a6CMfwnnrtflzvZdXAsD3LH2TwevU+/PBPv0\
B6NMNk93wUs/vfJvye+YuI87HU38lZHowtznbLVdp770I6VHR6WfgS9ddzirrswsE1w\
5o0LV/g==
]]></artwork>
        <t>These values are added to the HTTP request message by the proxy. The original signature is included under the identifier <tt>sig1</tt>, and the reverse proxy's signature is included under the label <tt>proxy_sig</tt>. The proxy uses the key <tt>test-key-rsa</tt> to create its signature using the <tt>rsa-v1_5-sha256</tt> signature algorithm, while the client's original signature was made using the key id of <tt>test-key-rsa-pss</tt> and an RSA PSS signature algorithm.</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

POST /foo?param=Value&Pet=dog HTTP/1.1
Host: origin.host.internal.example
Date: Tue, 20 Apr 2021 02:07:56 GMT
Content-Type: application/json
Content-Length: 18
Forwarded: for=192.0.2.123;host=example.com;proto=https
Content-Digest: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+T\
  aPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
Signature-Input: sig1=("@method" "@authority" "@path" \
    "content-digest" "content-type" "content-length")\
    ;created=1618884475;keyid="test-key-ecc-p256", \
  proxy_sig=("@method" "@authority" "@path" "content-digest" \
    "content-type" "content-length" "forwarded")\
    ;created=1618884480;keyid="test-key-rsa";alg="rsa-v1_5-sha256"\
    ;expires=1618884540
Signature: sig1=:X5spyd6CFnAG5QnDyHfqoSNICd+BUP4LYMz2Q0JXlb//4Ijpzp\
    +kve2w4NIyqeAuM7jTDX+sNalzA8ESSaHD3A==:, \
  proxy_sig=:S6ZzPXSdAMOPjN/6KXfXWNO/f7V6cHm7BXYUh3YD/fRad4BCaRZxP+\
    JH+8XY1I6+8Cy+CM5g92iHgxtRPz+MjniOaYmdkDcnL9cCpXJleXsOckpURl49G\
    wiyUpZ10KHgOEe11sx3G2gxI8S0jnxQB+Pu68U9vVcasqOWAEObtNKKZd8tSFu7\
    LB5YAv0RAGhB8tmpv7sFnIm9y+7X5kXQfi8NMaZaA8i2ZHwpBdg7a6CMfwnnrtf\
    lzvZdXAsD3LH2TwevU+/PBPv0B6NMNk93wUs/vfJvye+YuI87HU38lZHowtznbL\
    Vdp770I6VHR6WfgS9ddzirrswsE1w5o0LV/g==:


{"hello": "world"}
]]></sourcecode>
        <t>While the proxy could additionally include the client's Signature value and Signature-Input fields from the original message in the new signature's covered components, this practice is <bcp14>NOT RECOMMENDED</bcp14> due to known weaknesses in signing signature values as discussed in <xref target="security-sign-signature"/>. The proxy is in a position to validate the client's signature, the changes the proxy makes to the message will invalidate the existing signature when the message is seen by the origin server. In this example, it is possible for the origin server to have additional information in its signature context to account for the change in authority, though this practice requires additional configuration and extra care as discussed in <xref target="security-context-multiple-signatures"/>. In other applications, the origin server will not be able to verify the original signature itself but will still want to verify that the proxy has done the appropriate validation of the client's signature. An application that needs to signal successful processing or receipt of a signature would need to carefully specify alternative mechanisms for sending such a signal securely.</t>
      </section>
    </section>
    <section anchor="request-signature">
      <name>Requesting Signatures</name>
      <t>While a signer is free to attach a signature to a request or response without prompting, it is often desirable for a potential verifier to signal that it expects a signature from a potential signer using the Accept-Signature field.</t>
      <t>When the Accept-Signature field is sent in an HTTP request message, the field indicates that the client desires the server to sign the response using the identified parameters, and the target message is the response to this request. All responses from resources that support such signature negotiation <bcp14>SHOULD</bcp14> either be uncacheable or contain a Vary header field that lists Accept-Signature, in order to prevent a cache from returning a response with a signature intended for a different request.</t>
      <t>When the Accept-Signature field is used in an HTTP response message, the field indicates that the server desires the client to sign its next request to the server with the identified parameters, and the target message is the client's next request. The client can choose to also continue signing future requests to the same server in the same way.</t>
      <t>The target message of an Accept-Signature field <bcp14>MUST</bcp14> include all labeled signatures indicated in the Accept-Header signature, each covering the same identified components of the Accept-Signature field.</t>
      <t>The sender of an Accept-Signature field <bcp14>MUST</bcp14> include only identifiers that are appropriate for the type of the target message. For example, if the target message is a request, the covered components can not include the <tt>@status</tt> component identifier.</t>
      <section anchor="accept-signature-header">
        <name>The Accept-Signature Field</name>
        <t>The Accept-Signature field is a Dictionary structured field (defined in <xref section="3.2" sectionFormat="of" target="STRUCTURED-FIELDS"/>) containing the metadata for one or more requested message signatures to be generated from message components of the target HTTP message. Each member describes a single message signature. The member's key is the label that uniquely identifies the requested message signature within the context of the target HTTP message.</t>
        <t>The member's value is the serialization of the desired covered components of the target message, including any allowed component metadata parameters, using the serialization process defined in <xref target="signature-params"/>.</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Accept-Signature: sig1=("@method" "@target-uri" "@authority" \
  "content-digest" "cache-control");\
  keyid="test-key-rsa-pss";created;tag="app-123"
]]></sourcecode>
        <t>The list of component identifiers indicates the exact set of component identifiers to be included in the requested signature, including all applicable component parameters.</t>
        <t>The signature request <bcp14>MAY</bcp14> include signature metadata parameters that indicate desired behavior for the signer. The following behavior is defined by this specification:</t>
        <ul spacing="normal">
          <li>
            <tt>created</tt>: The signer is requested to generate and include a creation time. This parameter has no associated value when sent as a signature request.</li>
          <li>
            <tt>expires</tt>: The signer is requested to generate and include an expiration time. This parameter has no associated value when sent as a signature request.</li>
          <li>
            <tt>nonce</tt>: The signer is requested to include the value of this parameter as the signature <tt>nonce</tt> in the target signature.</li>
          <li>
            <tt>alg</tt>: The signer is requested to use the indicated signature algorithm to create the target signature.</li>
          <li>
            <tt>keyid</tt>: The signer is requested to use the indicated key material to create the target signature.</li>
          <li>
            <tt>tag</tt>: The signer is requested to include the value of this parameter as the signature <tt>tag</tt> in the target signature.</li>
        </ul>
      </section>
      <section anchor="processing-an-accept-signature">
        <name>Processing an Accept-Signature</name>
        <t>The receiver of an Accept-Signature field fulfills that header as follows:</t>
        <ol spacing="normal" type="1"><li>Parse the field value as a Dictionary</li>
          <li>
            <t>For each member of the dictionary:
            </t>
            <ol spacing="normal" type="1"><li>The key is taken as the label of the output signature as specified in <xref target="signature-input-header"/>.</li>
              <li>Parse the value of the member to obtain the set of covered component identifiers.</li>
              <li>Determine that the covered components are applicable to the target message. If not, the process fails and returns an error.</li>
              <li>Process the requested parameters, such as the signing algorithm and key material. If any requested parameters cannot be fulfilled, or if the requested parameters conflict with those deemed appropriate to the target message, the process fails and returns an error.</li>
              <li>Select and generate any additional parameters necessary for completing the signature.</li>
              <li>Create the HTTP message signature over the target message.</li>
              <li>Create the Signature-Input and Signature values and associate them with the label.</li>
            </ol>
          </li>
          <li>Optionally create any additional Signature-Input and Signature values, with unique labels not found in the Accept-Signature field.</li>
          <li>Combine all labeled Signature-Input and Signature values and attach both fields to the target message.</li>
        </ol>
        <t>By this process, a signature applied to a target message <bcp14>MUST</bcp14> have the same label, <bcp14>MUST</bcp14> include the same set of covered component, <bcp14>MUST</bcp14> process all requested parameters, and <bcp14>MAY</bcp14> have additional parameters.</t>
        <t>The receiver of an Accept-Signature field <bcp14>MAY</bcp14> ignore any signature request that does not fit application parameters.</t>
        <t>The target message <bcp14>MAY</bcp14> include additional signatures not specified by the Accept-Signature field. For example, to cover additional message components, the signer can create a second signature that includes the additional components as well as the signature output of the requested signature.</t>
      </section>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>IANA is asked to update one registry and create four new registries, according to the following sections.</t>
      <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,
registering the following entries 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">Signature-Input</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="signature-input-header"/> of RFC nnnn</td>
            </tr>
            <tr>
              <td align="left">Signature</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="signature-header"/> of RFC nnnn</td>
            </tr>
            <tr>
              <td align="left">Accept-Signature</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="accept-signature-header"/> of RFC nnnn</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="hsa-registry">
        <name>HTTP Signature Algorithms Registry</name>
        <t>This document defines HTTP Signature Algorithms, for which IANA is asked to create and maintain a new registry titled "HTTP Signature Algorithms". Initial values for this registry are given in <xref target="iana-hsa-contents"/>. Future assignments and modifications to existing assignment are to be made through the Expert Review registration policy <xref target="RFC8126"/>.</t>
        <t>The Designated Expert (DE) is expected to ensure that the algorithms referenced by a registered algorithm identifier are fully defined with all parameters (such as salt, hash, required key length, etc) are fixed by the defining text. The DE is expected to ensure that the algorithm definition fully specifies the <tt>HTTP_SIGN</tt> and <tt>HTTP_VERIFY</tt> primitive functions, including how all defined inputs and outputs map to the underlying cryptographic algorithm. The DE is expected to reject any registrations that are aliases of existing registrations. The DE is expected to ensure all registrations follow the template presented in <xref target="iana-hsa-template"/>, including that the length of the name is not excessive while still being unique and recognizable. When setting a registered item's status to "Deprecated", the DE should ensure that a reason for the deprecation is documented, along with instructions for moving away from the deprecated functionality.</t>
        <t>This specification creates algorithm identifiers by including major parameters in the identifier string. However, algorithm identifiers in this registry are to be interpreted as whole string values and not as a combination of parts. That is to say, it is expected that implementors understand <tt>rsa-pss-sha512</tt> as referring to one specific algorithm with its hash, mask, and salt values set as defined in the defining text that establishes this identifier. Implementors do not parse out the <tt>rsa</tt>, <tt>pss</tt>, and <tt>sha512</tt> portions of the identifier to determine parameters of the signing algorithm from the string, and the registry of one combination of parameters does not imply the registration of other combinations.</t>
        <section anchor="iana-hsa-template">
          <name>Registration Template</name>
          <dl newline="true">
            <dt>Algorithm Name:</dt>
            <dd>
              <t>An identifier for the HTTP Signature Algorithm. The name <bcp14>MUST</bcp14> be an ASCII string that conforms to the <tt>sf-string</tt> ABNF rule in <xref section="3.3.3" sectionFormat="of" target="STRUCTURED-FIELDS"/> and <bcp14>SHOULD NOT</bcp14> exceed 20 characters in length. The identifier <bcp14>MUST</bcp14> be unique within the context of the registry.</t>
            </dd>
            <dt>Description:</dt>
            <dd>
              <t>A brief description of the algorithm used to sign the signature base.</t>
            </dd>
            <dt>Status:</dt>
            <dd>
              <t>A brief text description of the status of the algorithm. The description <bcp14>MUST</bcp14> begin with one of "Active" or "Deprecated", and <bcp14>MAY</bcp14> provide further context or explanation as to the reason for the status. A value of "Deprecated" indicates that the signature algorithm is no longer recommended for use and might be insecure or unsafe in practice.</t>
            </dd>
            <dt>Specification document(s):</dt>
            <dd>
              <t>Reference to the document(s) that specify the
  algorithm, preferably including a URI that can be used
  to retrieve a copy of the document(s). An indication of the
  relevant sections may also be included but is not required.</t>
            </dd>
          </dl>
        </section>
        <section anchor="iana-hsa-contents">
          <name>Initial Contents</name>
          <table>
            <name>Initial contents of the HTTP Signature Algorithms Registry.</name>
            <thead>
              <tr>
                <th align="left">Algorithm Name</th>
                <th align="left">Description</th>
                <th align="left">Status</th>
                <th align="left">Specification document(s)</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">
                  <tt>rsa-pss-sha512</tt></td>
                <td align="left">RSASSA-PSS using SHA-512</td>
                <td align="left">Active</td>
                <td align="left">
                  <xref target="method-rsa-pss-sha512"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>rsa-v1_5-sha256</tt></td>
                <td align="left">RSASSA-PKCS1-v1_5 using SHA-256</td>
                <td align="left">Active</td>
                <td align="left">
                  <xref target="method-rsa-v1_5-sha256"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>hmac-sha256</tt></td>
                <td align="left">HMAC using SHA-256</td>
                <td align="left">Active</td>
                <td align="left">
                  <xref target="method-hmac-sha256"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>ecdsa-p256-sha256</tt></td>
                <td align="left">ECDSA using curve P-256 DSS and SHA-256</td>
                <td align="left">Active</td>
                <td align="left">
                  <xref target="method-ecdsa-p256-sha256"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>ecdsa-p384-sha384</tt></td>
                <td align="left">ECDSA using curve P-384 DSS and SHA-384</td>
                <td align="left">Active</td>
                <td align="left">
                  <xref target="method-ecdsa-p384-sha384"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>ed25519</tt></td>
                <td align="left">Edwards Curve DSA using curve edwards25519</td>
                <td align="left">Active</td>
                <td align="left">
                  <xref target="method-ed25519"/> of RFC nnnn</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="param-registry">
        <name>HTTP Signature Metadata Parameters Registry</name>
        <t>This document defines the signature parameters structure in <xref target="signature-params"/>, which may have parameters containing metadata about a message signature. IANA is asked to create and maintain a new registry titled "HTTP Signature Metadata Parameters" to record and maintain the set of parameters defined for use with member values in the signature parameters structure. Initial values for this registry are given in <xref target="iana-param-contents"/>. Future assignments and modifications to existing assignments are to be made through the Expert Review registration policy <xref target="RFC8126"/>.</t>
        <t>The DE is expected to ensure that the name follows the template presented in <xref target="iana-param-template"/>, including that the length of the name is not excessive while still being unique and recognizable for its defined function. The DE is expected to ensure that the defined functionality is clear and does not conflict with other registered parameters. The DE is expected to ensure that the definition of the metadata parameter includes its behavior when used as part of the normal signature process as well as when used in an Accept-Signature field.</t>
        <section anchor="iana-param-template">
          <name>Registration Template</name>
          <dl newline="true">
            <dt>Name:</dt>
            <dd>
              <t>An identifier for the HTTP signature metadata parameter. The name <bcp14>MUST</bcp14> be an ASCII string that conforms to the <tt>key</tt> ABNF rule defined in <xref section="3.1.2" sectionFormat="of" target="STRUCTURED-FIELDS"/> and <bcp14>SHOULD NOT</bcp14> exceed 20 characters in length. The identifier <bcp14>MUST</bcp14> be unique within the context of the registry.</t>
            </dd>
            <dt>Description:</dt>
            <dd>
              <t>A brief description of the metadata parameter and what it represents.</t>
            </dd>
            <dt>Specification document(s):</dt>
            <dd>
              <t>Reference to the document(s) that specify the
  parameter, preferably including a URI that can be used
  to retrieve a copy of the document(s). An indication of the
  relevant sections may also be included but is not required.</t>
            </dd>
          </dl>
        </section>
        <section anchor="iana-param-contents">
          <name>Initial Contents</name>
          <t>The table below contains the initial contents of the HTTP Signature Metadata Parameters Registry. Each row in the table represents a distinct entry in the registry.</t>
          <table>
            <name>Initial contents of the HTTP Signature Metadata Parameters Registry.</name>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">Description</th>
                <th align="left">Specification document(s)</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">
                  <tt>alg</tt></td>
                <td align="left">Explicitly declared signature algorithm</td>
                <td align="left">
                  <xref target="signature-params"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>created</tt></td>
                <td align="left">Timestamp of signature creation</td>
                <td align="left">
                  <xref target="signature-params"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>expires</tt></td>
                <td align="left">Timestamp of proposed signature expiration</td>
                <td align="left">
                  <xref target="signature-params"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>keyid</tt></td>
                <td align="left">Key identifier for the signing and verification keys used to create this signature</td>
                <td align="left">
                  <xref target="signature-params"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>nonce</tt></td>
                <td align="left">A single-use nonce value</td>
                <td align="left">
                  <xref target="signature-params"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>tag</tt></td>
                <td align="left">An application-specific tag for a signature</td>
                <td align="left">
                  <xref target="signature-params"/> of RFC nnnn</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="content-registry">
        <name>HTTP Signature Derived Component Names Registry</name>
        <t>This document defines a method for canonicalizing HTTP message components, including components that can be derived from the context of the target message outside of the HTTP fields. These derived components are identified by a unique string, known as the component name. Component names for derived components always start with the "@" (at) symbol to distinguish them from HTTP field names. IANA is asked to create and maintain a new registry typed "HTTP Signature Derived Component Names" to record and maintain the set of non-field component names and the methods to produce their associated component values. Initial values for this registry are given in <xref target="iana-content-contents"/>. Future assignments and modifications to existing assignments are to be made through the Expert Review registration policy <xref target="RFC8126"/>.</t>
        <t>The DE is expected to ensure that the name follows the template presented in <xref target="iana-content-template"/>, including that the length of the name is not excessive while still being unique and recognizable for its defined function. The DE is expected to ensure that the component value represented by the registration request can be deterministically derived from the target HTTP message. The DE is expected to ensure that any parameters defined for the registration request are clearly documented, along with their effects on the component value. The DE should also ensure that the registration request is not sufficiently distinct from existing derived component definitions to warrant its registration. When setting a registered item's status to "Deprecated", the DE should ensure that a reason for the deprecation is documented, along with instructions for moving away from the deprecated functionality.</t>
        <section anchor="iana-content-template">
          <name>Registration Template</name>
          <dl newline="true">
            <dt>Name:</dt>
            <dd>
              <t>A name for the HTTP derived component. The name <bcp14>MUST</bcp14> begin with the <tt>"@"</tt> character followed by an ASCII string consisting only of lower-case characters (<tt>"a"</tt> - <tt>"z"</tt>), digits (<tt>"0"</tt> - <tt>"9"</tt>), and hyphens (<tt>"-"</tt>), and <bcp14>SHOULD NOT</bcp14> exceed 20 characters in length. The name <bcp14>MUST</bcp14> be unique within the context of the registry.</t>
            </dd>
            <dt>Description:</dt>
            <dd>
              <t>A description of the derived component.</t>
            </dd>
            <dt>Status:</dt>
            <dd>
              <t>A brief text description of the status of the algorithm. The description <bcp14>MUST</bcp14> begin with one of "Active" or "Deprecated", and <bcp14>MAY</bcp14> provide further context or explanation as to the reason for the status. A value of "Deprecated" indicates that the derived component name is no longer recommended for use.</t>
            </dd>
            <dt>Target:</dt>
            <dd>
              <t>The valid message targets for the derived parameter. <bcp14>MUST</bcp14> be one of the values "Request", "Response", or "Request, Response". The semantics of these are defined in <xref target="derived-components"/>.</t>
            </dd>
            <dt>Specification document(s):</dt>
            <dd>
              <t>Reference to the document(s) that specify the
  derived component, preferably including a URI that can be used
  to retrieve a copy of the document(s). An indication of the
  relevant sections may also be included but is not required.</t>
            </dd>
          </dl>
        </section>
        <section anchor="iana-content-contents">
          <name>Initial Contents</name>
          <t>The table below contains the initial contents of the HTTP Signature Derived Component Names Registry.</t>
          <table>
            <name>Initial contents of the HTTP Signature Derived Component Names Registry.</name>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">Description</th>
                <th align="left">Status</th>
                <th align="left">Target</th>
                <th align="left">Specification document(s)</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">
                  <tt>@signature-params</tt></td>
                <td align="left">Reserved for signature parameters line in signature base</td>
                <td align="left">Active</td>
                <td align="left">Request, Response</td>
                <td align="left">
                  <xref target="signature-params"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@method</tt></td>
                <td align="left">The HTTP request method</td>
                <td align="left">Active</td>
                <td align="left">Request</td>
                <td align="left">
                  <xref target="content-request-method"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@authority</tt></td>
                <td align="left">The HTTP authority, or target host</td>
                <td align="left">Active</td>
                <td align="left">Request</td>
                <td align="left">
                  <xref target="content-request-authority"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@scheme</tt></td>
                <td align="left">The URI scheme of the request URI</td>
                <td align="left">Active</td>
                <td align="left">Request</td>
                <td align="left">
                  <xref target="content-request-scheme"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@target-uri</tt></td>
                <td align="left">The full target URI of the request</td>
                <td align="left">Active</td>
                <td align="left">Request</td>
                <td align="left">
                  <xref target="content-target-uri"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@request-target</tt></td>
                <td align="left">The request target of the request</td>
                <td align="left">Active</td>
                <td align="left">Request</td>
                <td align="left">
                  <xref target="content-request-target"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@path</tt></td>
                <td align="left">The full path of the request URI</td>
                <td align="left">Active</td>
                <td align="left">Request</td>
                <td align="left">
                  <xref target="content-request-path"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@query</tt></td>
                <td align="left">The full query of the request URI</td>
                <td align="left">Active</td>
                <td align="left">Request</td>
                <td align="left">
                  <xref target="content-request-query"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@query-param</tt></td>
                <td align="left">A single named query parameter</td>
                <td align="left">Active</td>
                <td align="left">Request</td>
                <td align="left">
                  <xref target="content-request-query-param"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@status</tt></td>
                <td align="left">The status code of the response</td>
                <td align="left">Active</td>
                <td align="left">Response</td>
                <td align="left">
                  <xref target="content-status-code"/> of RFC nnnn</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="component-param-registry">
        <name>HTTP Signature Component Parameters Registry</name>
        <t>This document defines several kinds of component identifiers, some of which can be parameterized in specific circumstances to provide unique modified behavior. IANA is asked to create and maintain a new registry typed "HTTP Signature Component Parameters" to record and maintain the set of parameters names, the component identifiers they are associated with, and the modifications these parameters make to the component value. Definitions of parameters <bcp14>MUST</bcp14> define the targets to which they apply (such as specific field types, derived components, or contexts). Initial values for this registry are given in <xref target="iana-component-param-contents"/>. Future assignments and modifications to existing assignments are to be made through the Expert Review registration policy <xref target="RFC8126"/>.</t>
        <t>The DE is expected to ensure that the name follows the template presented in <xref target="iana-component-param-template"/>, including that the length of the name is not excessive while still being unique and recognizable for its defined function. The DE is expected to ensure that the definition of the field sufficiently defines any interactions incompatibilities with other existing parameters known at the time of the registration request. If the parameter changes the component value, the DE is expected to ensure that the component value defined by the component identifier with the parameter applied can be deterministically derived from the target HTTP message.</t>
        <section anchor="iana-component-param-template">
          <name>Registration Template</name>
          <dl newline="true">
            <dt>Name:</dt>
            <dd>
              <t>A name for the parameter. The name <bcp14>MUST</bcp14> be an ASCII string that conforms to the <tt>key</tt> ABNF rule defined in <xref section="3.1.2" sectionFormat="of" target="STRUCTURED-FIELDS"/> and <bcp14>SHOULD NOT</bcp14> exceed 20 characters in length. The name <bcp14>MUST</bcp14> be unique within the context of the registry.</t>
            </dd>
            <dt>Description:</dt>
            <dd>
              <t>A description of the parameter's function.</t>
            </dd>
            <dt>Specification document(s):</dt>
            <dd>
              <t>Reference to the document(s) that specify the
  derived component, preferably including a URI that can be used
  to retrieve a copy of the document(s). An indication of the
  relevant sections may also be included but is not required.</t>
            </dd>
          </dl>
        </section>
        <section anchor="iana-component-param-contents">
          <name>Initial Contents</name>
          <t>The table below contains the initial contents of the HTTP Signature Derived Component Names Registry.</t>
          <table>
            <name>Initial contents of the HTTP Signature Component Parameters Registry.</name>
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">Description</th>
                <th align="left">Specification document(s)</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">
                  <tt>sf</tt></td>
                <td align="left">Strict structured field serialization</td>
                <td align="left">
                  <xref target="http-field-structured"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>key</tt></td>
                <td align="left">Single key value of dictionary structured fields</td>
                <td align="left">
                  <xref target="http-field-dictionary"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>bs</tt></td>
                <td align="left">Byte Sequence wrapping indicator</td>
                <td align="left">
                  <xref target="http-field-byte-sequence"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>tr</tt></td>
                <td align="left">Trailer</td>
                <td align="left">
                  <xref target="http-trailer"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>req</tt></td>
                <td align="left">Related request indicator</td>
                <td align="left">
                  <xref target="content-request-scheme"/> of RFC nnnn</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>name</tt></td>
                <td align="left">Single named query parameter</td>
                <td align="left">
                  <xref target="content-request-query-param"/> of RFC nnnn</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>In order for an HTTP message to be considered <em>covered</em> by a signature, all of the following conditions have to be true:</t>
      <ul spacing="normal">
        <li>a signature is expected or allowed on the message by the verifier</li>
        <li>the signature exists on the message</li>
        <li>the signature is verified against the identified key material and algorithm</li>
        <li>the key material and algorithm are appropriate for the context of the message</li>
        <li>the signature is within expected time boundaries</li>
        <li>the signature covers the expected content, including any critical components</li>
        <li>the list of covered components is applicable to the context of the message</li>
      </ul>
      <t>In addition to the application requirement definitions listed in <xref target="application"/>, the following security considerations provide discussion and context to the requirements of creating and verifying signatures on HTTP messages.</t>
      <section anchor="general-considerations">
        <name>General Considerations</name>
        <section anchor="security-ignore">
          <name>Skipping Signature Verification</name>
          <t>HTTP Message Signatures only provide security if the signature is verified by the verifier. Since the message to which the signature is attached remains a valid HTTP message without the signature fields, it is possible for a verifier to ignore the output of the verification function and still process the message. Common reasons for this could be relaxed requirements in a development environment or a temporary suspension of enforcing verification during debugging an overall system. Such temporary suspensions are difficult to detect under positive-example testing since a good signature will always trigger a valid response whether or not it has been checked.</t>
          <t>To detect this, verifiers should be tested using both valid and invalid signatures, ensuring that the invalid signature fails as expected.</t>
        </section>
        <section anchor="security-tls">
          <name>Use of TLS</name>
          <t>The use of HTTP Message Signatures does not negate the need for TLS or its equivalent to protect information in transit. Message signatures provide message integrity over the covered message components but do not provide any confidentiality for the communication between parties.</t>
          <t>TLS provides such confidentiality between the TLS endpoints. As part of this, TLS also protects the signature data itself from being captured by an attacker, which is an important step in preventing <xref target="security-replay">signature replay</xref>.</t>
          <t>When TLS is used, it needs to be deployed according to the recommendations in <xref target="BCP195"/>.</t>
        </section>
      </section>
      <section anchor="message-processing-and-selection">
        <name>Message Processing and Selection</name>
        <section anchor="security-coverage">
          <name>Insufficient Coverage</name>
          <t>Any portions of the message not covered by the signature are susceptible to modification by an attacker without affecting the signature. An attacker can take advantage of this by introducing or modifying a header field or other message component that will change the processing of the message but will not be covered by the signature. Such an altered message would still pass signature verification, but when the verifier processes the message as a whole, the unsigned content injected by the attacker would subvert the trust conveyed by the valid signature and change the outcome of processing the message.</t>
          <t>To combat this, an application of this specification should require as much of the message as possible to be signed, within the limits of the application and deployment. The verifier should only trust message components that have been signed. Verifiers could also strip out any sensitive unsigned portions of the message before processing of the message continues.</t>
        </section>
        <section anchor="security-replay">
          <name>Signature Replay</name>
          <t>Since HTTP Message Signatures allows sub-portions of the HTTP message to be signed, it is possible for two different HTTP messages to validate against the same signature. The most extreme form of this would be a signature over no message components. If such a signature were intercepted, it could be replayed at will by an attacker, attached to any HTTP message. Even with sufficient component coverage, a given signature could be applied to two similar HTTP messages, allowing a message to be replayed by an attacker with the signature intact.</t>
          <t>To counteract these kinds of attacks, it's first important for the signer to cover sufficient portions of the message to differentiate it from other messages. In addition, the signature can use the <tt>nonce</tt> signature parameter to provide a per-message unique value to allow the verifier to detect replay of the signature itself if a nonce value is repeated. Furthermore, the signer can provide a timestamp for when the signature was created and a time at which the signer considers the signature to be expired, limiting the utility of a captured signature value.</t>
          <t>If a verifier wants to trigger a new signature from a signer, it can send the <tt>Accept-Signature</tt> header field with a new <tt>nonce</tt> parameter. An attacker that is simply replaying a signature would not be able to generate a new signature with the chosen nonce value.</t>
        </section>
        <section anchor="security-components">
          <name>Choosing Message Components</name>
          <t>Applications of HTTP Message Signatures need to decide which message components will be covered by the signature. Depending on the application, some components could be expected to be changed by intermediaries prior to the signature's verification. If these components are covered, such changes would, by design, break the signature.</t>
          <t>However, the HTTP Message Signature standard allows for flexibility in determining which components are signed precisely so that a given application can choose the appropriate portions of the message that need to be signed, avoiding problematic components. For example, a web application framework that relies on rewriting query parameters might avoid use of the <tt>@query</tt> derived component in favor of sub-indexing the query value using <tt>@query-param</tt> derived components instead.</t>
          <t>Some components are expected to be changed by intermediaries and ought not to be signed under most circumstance. The <tt>Via</tt> and <tt>Forwarded</tt> header fields, for example, are expected to be manipulated by proxies and other middle-boxes, including replacing or entirely dropping existing values. These fields should not be covered by the signature except in very limited and tightly-coupled scenarios.</t>
          <t>Additional considerations for choosing signature aspects are discussed in <xref target="application"/>.</t>
        </section>
        <section anchor="security-not-fields">
          <name>Choosing Signature Parameters and Derived Components over HTTP Fields</name>
          <t>Some HTTP fields have values and interpretations that are similar to HTTP signature parameters or derived components. In most cases, it is more desirable to sign the non-field alternative. In particular, the following fields should usually not be included in the signature unless the application specifically requires it:</t>
          <dl>
            <dt>"date"</dt>
            <dd>
              <t>The "date" field value represents the timestamp of the HTTP message. However, the creation time of the signature itself is encoded in the <tt>created</tt> signature parameter. These two values can be different, depending on how the signature and the HTTP message are created and serialized. Applications processing signatures for valid time windows should use the <tt>created</tt> signature parameter for such calculations. An application could also put limits on how much skew there is between the "date" field and the <tt>created</tt> signature parameter, in order to limit the application of a generated signature to different HTTP messages. See also <xref target="security-replay"/> and <xref target="security-coverage"/>.</t>
            </dd>
            <dt>"host"</dt>
            <dd>
              <t>The "host" header field is specific to HTTP/1.1, and its functionality is subsumed by the "@authority" derived component, defined in <xref target="content-request-authority"/>. In order to preserve the value across different HTTP versions, applications should always use the "@authority" derived component. See also <xref target="security-versions"/>.</t>
            </dd>
          </dl>
        </section>
        <section anchor="security-labels">
          <name>Signature Labels</name>
          <t>HTTP Message Signature values are identified in the Signature and Signature-Input field values by unique labels. These labels are chosen only when attaching the signature values to the message and are not accounted for in the signing process. An intermediary is allowed to re-label an existing signature when processing the message.</t>
          <t>Therefore, applications should not rely on specific labels being present, and applications should not put semantic meaning on the labels themselves. Instead, additional signature parameters can be used to convey whatever additional meaning is required to be attached to and covered by the signature. In particular, the <tt>tag</tt> parameter can be used to define an application-specific value as described in <xref target="security-signature-tag"/>.</t>
        </section>
        <section anchor="security-multiple">
          <name>Multiple Signature Confusion</name>
          <t>Since <xref target="signature-multiple">multiple signatures can be applied to one message</xref>, it is possible for an attacker to attach their own signature to a captured message without modifying existing signatures. This new signature could be completely valid based on the attacker's key, or it could be an invalid signature for any number of reasons. Each of these situations need to be accounted for.</t>
          <t>A verifier processing a set of valid signatures needs to account for all of the signers, identified by the signing keys. Only signatures from expected signers should be accepted, regardless of the cryptographic validity of the signature itself.</t>
          <t>A verifier processing a set of signatures on a message also needs to determine what to do when one or more of the signatures are not valid. If a message is accepted when at least one signature is valid, then a verifier could drop all invalid signatures from the request before processing the message further. Alternatively, if the verifier rejects a message for a single invalid signature, an attacker could use this to deny service to otherwise valid messages by injecting invalid signatures alongside the valid ones.</t>
        </section>
        <section anchor="security-signature-tag">
          <name>Collision of Application-Specific Signature Tag</name>
          <t>Multiple applications and protocols could apply HTTP signatures on the same message simultaneously. In fact, this is a desired feature in many circumstances as described in <xref target="signature-multiple"/>. A naive verifier could become confused in processing multiple signatures, either accepting or rejecting a message based on an unrelated or irrelevant signature. In order to help an application select which signatures apply to its own processing, the application can declare a specific value for the <tt>tag</tt> signature parameter as defined in <xref target="signature-params"/>. For example, a signature targeting an application gateway could require <tt>tag="app-gateway"</tt> as part of the signature parameters for that application.</t>
          <t>The use of the <tt>tag</tt> parameter does not prevent an attacker from also using the same value as a target application, since the parameter's value is public and otherwise unrestricted. As a consequence, a verifier should only use value of the <tt>tag</tt> parameter to limit which signatures to check. Each signature still needs to be examined by the verifier to ensure that sufficient coverage is provided, as discussed in <xref target="security-coverage"/>.</t>
        </section>
        <section anchor="security-message-content">
          <name>Message Content</name>
          <t>On its own, this specification does not provide coverage for the content of an HTTP message under the signature, either in request or response. However, <xref target="DIGEST"/> defines a set of fields that allow a cryptographic digest of the content to be represented in a field. Once this field is created, it can be included just like any other field as defined in <xref target="http-fields"/>.</t>
          <t>For example, in the following response message:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json

{"hello": "world"}
]]></sourcecode>
          <t>The digest of the content can be added to the Content-Digest field as follows:</t>
          <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=:

{"hello": "world"}
]]></sourcecode>
          <t>This field can be included in a signature base just like any other field along with the basic signature parameters:</t>
          <artwork><![CDATA[
"@status": 200
"content-digest": \
  sha-256=:X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE=:
"@signature-input": ("@status" "content-digest")
]]></artwork>
          <t>From here, the signing process proceeds as usual.</t>
          <t>Upon verification, it is important that the verifier validate not only the signature but also the value of the Content-Digest field itself against the actual received content. Unless the verifier performs this step, it would be possible for an attacker to substitute the message content but leave the Content-Digest field value untouched to pass the signature. Since only the field value is covered by the signature directly, checking only the signature is not sufficient protection against such a substitution attack.</t>
          <t>As discussed in <xref target="DIGEST"/>, the value of the Content-Digest field is dependent on the content encoding of the message. If an intermediary changes the content encoding, the resulting Content-Digest value would change, which would in turn invalidate the signature. Any intermediary performing such an action would need to apply a new signature with the updated Content-Digest field value, similar to the reverse proxy use case discussed in <xref target="signature-multiple"/>.</t>
          <t>Applications that make use of the <xref target="content-request-response">request-response parameter</xref> also need to be aware of the limitations in this functionality. Specifically, if a client does not include something like a Content-Digest header field in the request, the server is unable to include a signature that covers the request's content.</t>
        </section>
      </section>
      <section anchor="cryptographic-considerations">
        <name>Cryptographic Considerations</name>
        <section anchor="security-collision">
          <name>Cryptography and Signature Collision</name>
          <t>The HTTP Message Signatures specification does not define any of its own cryptographic primitives, and instead relies on other specifications to define such elements. If the signature algorithm or key used to process the signature base is vulnerable to any attacks, the resulting signature will also be susceptible to these same attacks.</t>
          <t>A common attack against signature systems is to force a signature collision, where the same signature value successfully verifies against multiple different inputs. Since this specification relies on reconstruction of the signature base from an HTTP message, and the list of components signed is fixed in the signature, it is difficult but not impossible for an attacker to effect such a collision. An attacker would need to manipulate the HTTP message and its covered message components in order to make the collision effective.</t>
          <t>To counter this, only vetted keys and signature algorithms should be used to sign HTTP messages. The HTTP Message Signatures Algorithm Registry is one source of trusted signature algorithms for applications to apply to their messages.</t>
          <t>While it is possible for an attacker to substitute the signature parameters value or the signature value separately, the <xref target="create-sig-input">signature base generation algorithm</xref> always covers the signature parameters as the final value in the signature base using a deterministic serialization method. This step strongly binds the signature base with the signature value in a way that makes it much more difficult for an attacker to perform a partial substitution on the signature bases.</t>
        </section>
        <section anchor="security-keys">
          <name>Key Theft</name>
          <t>A foundational assumption of signature-based cryptographic systems is that the signing key is not compromised by an attacker. If the keys used to sign the message are exfiltrated or stolen, the attacker will be able to generate their own signatures using those keys. As a consequence, signers have to protect any signing key material from exfiltration, capture, and use by an attacker.</t>
          <t>To combat this, signers can rotate keys over time to limit the amount of time stolen keys are useful. Signers can also use key escrow and storage systems to limit the attack surface against keys. Furthermore, the use of asymmetric signing algorithms exposes key material less than the use of <xref target="security-symmetric">symmetric signing algorithms</xref>.</t>
        </section>
        <section anchor="security-symmetric">
          <name>Symmetric Cryptography</name>
          <t>The HTTP Message Signatures specification allows for both asymmetric and symmetric cryptography to be applied to HTTP messages. By its nature, symmetric cryptographic methods require the same key material to be known by both the signer and verifier. This effectively means that a verifier is capable of generating a valid signature, since they have access to the same key material. An attacker that is able to compromise a verifier would be able to then impersonate a signer.</t>
          <t>Where possible, asymmetric methods or secure key agreement mechanisms should be used in order to avoid this type of attack. When symmetric methods are used, distribution of the key material needs to be protected by the overall system. One technique for this is the use of separate cryptographic modules that separate the verification process (and therefore the key material) from other code, minimizing the vulnerable attack surface. Another technique is the use of key derivation functions that allow the signer and verifier to agree on unique keys for each message without having to share the key values directly.</t>
          <t>Additionally, if symmetric algorithms are allowed within a system, special care must be taken to avoid <xref target="security-keydowngrade">key downgrade attacks</xref>.</t>
        </section>
        <section anchor="security-keymixup">
          <name>Key Specification Mix-Up</name>
          <t>The existence of a valid signature on an HTTP message is not sufficient to prove that the message has been signed by the appropriate party. It is up to the verifier to ensure that a given key and algorithm are appropriate for the message in question. If the verifier does not perform such a step, an attacker could substitute their own signature using their own key on a message and force a verifier to accept and process it. To combat this, the verifier needs to ensure that not only does the signature validate for a message, but that the key and algorithm used are appropriate.</t>
        </section>
        <section anchor="security-nondeterministic">
          <name>Non-deterministic Signature Primitives</name>
          <t>Some cryptographic primitives such as RSA PSS and ECDSA have non-deterministic outputs, which include some amount of entropy within the algorithm. For such algorithms, multiple signatures generated in succession will not match. A lazy implementation of a verifier could ignore this distinction and simply check for the same value being created by re-signing the signature base. Such an implementation would work for deterministic algorithms such as HMAC and EdDSA but fail to verify valid signatures made using non-deterministic algorithms. It is therefore important that a verifier always use the correctly-defined verification function for the algorithm in question and not do a simple comparison.</t>
        </section>
        <section anchor="security-keydowngrade">
          <name>Key and Algorithm Specification Downgrades</name>
          <t>Applications of this specification need to protect against key specification downgrade attacks. For example, the same RSA key can be used for both RSA-PSS and RSA v1.5 signatures. If an application expects a key to only be used with RSA-PSS, it needs to reject signatures for that key using the weaker RSA 1.5 specification.</t>
          <t>Another example of a downgrade attack occurs when an asymmetric algorithm is expected, such as RSA-PSS, but an attacker substitutes a signature using symmetric algorithm, such as HMAC. A naive verifier implementation could use the value of the public RSA key as the input to the HMAC verification function. Since the public key is known to the attacker, this would allow the attacker to create a valid HMAC signature against this known key. To prevent this, the verifier needs to ensure that both the key material and the algorithm are appropriate for the usage in question. Additionally, while this specification does allow runtime specification of the algorithm using the <tt>alg</tt> signature parameter, applications are encouraged to use other mechanisms such as static configuration or higher protocol-level algorithm specification instead, preventing an attacker from substituting the algorithm specified.</t>
        </section>
        <section anchor="security-sign-signature">
          <name>Signing Signature Values</name>
          <t>When applying the <xref target="content-request-response">request-response parameter</xref> or <xref target="signature-multiple">multiple signatures</xref> to a message, it is possible to sign the value of an existing Signature field, thereby covering the bytes of the existing signature output in the new signature's value. While it would seem that this practice would transitively cover the components under the original signature in a verifiable fashion, the attacks described in <xref target="JACKSON2019"/> can be used to impersonate a signature output value on an unrelated message.</t>
          <t>In this example, Alice intends to send a signed request to Bob, and Bob wants to provide a signed response to Alice that includes a cryptographic proof that Bob is responding to Alice's incoming message. Mallory wants to intercept this traffic and replace Alice's message with her own, without Alice being aware that the interception has taken place.</t>
          <ol spacing="normal" type="1"><li>Alice creates a message, <tt>Req_A</tt> and applies a signature <tt>Sig_A</tt> using her private key <tt>Key_A_Sign</tt>.</li>
            <li>Alice believes she is sending <tt>Req_A</tt> to Bob.</li>
            <li>Mallory intercepts <tt>Req_A</tt> and reads the value <tt>Sig_A</tt> from this message.</li>
            <li>Mallory generates a different message <tt>Req_M</tt> to send to Bob instead.</li>
            <li>Mallory crafts a signing key <tt>Key_M_Sign</tt> such that she can create a valid signature <tt>Sig_M</tt> over her request <tt>Req_M</tt> using this key, but the byte value of <tt>Sig_M</tt> exactly equals that of <tt>Sig_A</tt>.</li>
            <li>Mallory sends <tt>Req_M</tt> with <tt>Sig_M</tt> to Bob.</li>
            <li>Bob validates <tt>Sig_M</tt> against Mallory's verification key, <tt>Key_M_Verify</tt>. At no time does Bob think that he's responding to Alice.</li>
            <li>Bob responds with response message <tt>Res_B</tt> to <tt>Req_M</tt> and creates signature <tt>Sig_B</tt> over this message using his key, <tt>Key_B_Sign</tt>. Bob includes the value of <tt>Sig_M</tt> under <tt>Sig_B</tt>'s covered components, but nothing elese from the request message.</li>
            <li>Mallory receives the response <tt>Res_B</tt> from Bob, including the signature <tt>Sig_B</tt> value. Mallory replays this response to Alice.</li>
            <li>Alice reads <tt>Res_B</tt> from Mallory and verifies <tt>Sig_B</tt> using Bob's verification key, <tt>Key_B_Verify</tt>. Alice includes the bytes of her original signature <tt>Sig_A</tt> in the signature base, and the signature verifies.</li>
            <li>Alice is led to believe that Bob has responded to her message, and believes she has cryptographic proof of this happening, but in fact Bob responded to Mallory's malicious request and Alice is none the wiser.</li>
          </ol>
          <t>To mitigate this, Bob can sign more portions of the request message than just the Signature field, in order to more fully differentiate Alice's message from Mallory's. Applications using this feature, particularly for non-repudiation purposes, can stipulate that any components required in the original signature also be covered separately in the second signature. For signed messages, requiring coverage of the corresponding Signature-Input field of the first signature ensures that unique items such as nonces and timestamps are also covered sufficiently by the second signature.</t>
        </section>
      </section>
      <section anchor="matching-covered-components-to-message">
        <name>Matching Covered Components to Message</name>
        <section anchor="security-modify">
          <name>Modification of Required Message Parameters</name>
          <t>An attacker could effectively deny a service by modifying an otherwise benign signature parameter or signed message component. While rejecting a modified message is the desired behavior, consistently failing signatures could lead to the verifier turning off signature checking in order to make systems work again (see <xref target="security-ignore"/>), or to the application minimizing the signed component requirements.</t>
          <t>If such failures are common within an application, the signer and verifier should compare their generated signature bases with each other to determine which part of the message is being modified. If an expected modification is found, the signer and verifier can agree on an alternative set of requirements that will pass. However, the signer and verifier should not remove the requirement to sign the modified component when it is suspected an attacker is modifying the component.</t>
        </section>
        <section anchor="security-mismatch">
          <name>Mismatch of Signature Parameters from Message</name>
          <t>The verifier needs to make sure that the signed message components match those in the message itself. For example, the <tt>@method</tt> derived component requires that the value within the signature base be the same as the HTTP method used when presenting this message. This specification encourages this by requiring the verifier to derive the signature base from the message, but lazy caching or conveyance of a raw signature base to a processing subsystem could lead to downstream verifiers accepting a message that does not match the presented signature.</t>
          <t>To counter this, the component that generates the signature base needs to be trusted by both the signer and verifier within a system.</t>
        </section>
        <section anchor="security-message-component-context">
          <name>Message Component Source and Context</name>
          <t>The signature context for deriving message component values includes the target HTTP Message itself, any associated messages (such as the request that triggered a response), and additional information that the signer or verifier has access to. Both signers and verifiers need to carefully consider the source of all information when creating component values for the signature base and take care not to take information from untrusted sources. Otherwise, an attacker could leverage such a loosely-defined message context to inject their own values into the signature base string, overriding or corrupting the intended values.</t>
          <t>For example, in most situations, the target URI of the message is defined in <xref section="7.1" sectionFormat="comma" target="HTTP"/>. However, let's say that there is an application that requires signing of the <tt>@authority</tt> of the incoming request, but the application doing the processing is behind a reverse proxy. Such an application would expect a change in the <tt>@authority</tt> value, and it could be configured to know the external target URI as seen by the client on the other side of the proxy. This application would use this configured value as its target URI for the purposes of deriving message component values such as <tt>@authority</tt> instead of using the target URI of the incoming message.</t>
          <t>This approach is not without problems, as a misconfigured system could accept signed requests intended for different components in the system. For this scenario, an intermediary could instead add its own signature to be verified by the application directly, as demonstrated in <xref target="signature-multiple"/>. This alternative approach requires a more active intermediary but relies less on the target application knowing external configuration values.</t>
          <t>For another example, <xref target="content-request-response"/> defines a method for signing response messages but including portions of the request message that triggered the response. In this case, the context for component value calculation is the combination of the response and request message, not just the single message to which the signature is applied. For this feature, the <tt>req</tt> flag allows both signer to explicitly signal which part of the context is being sourced for a component identifier's value. Implementations need to ensure that only the intended message is being referred to for each component, otherwise an attacker could attempt to subvert a signature by manipulating one side or the other.</t>
        </section>
        <section anchor="security-context-multiple-signatures">
          <name>Multiple Message Component Contexts</name>
          <t>It is possible that the context for deriving message component values could be distinct for each signature present within a single message. This is particularly the case when proxies mutate messages and include signatures over the mutated values, in addition to any existing signatures. For example, a reverse proxy can replace a public hostname in a request to a service with the hostname for the individual service host that it is forwarding the request on to. If both the client and the reverse proxy add signatures covering <tt>@authority</tt>, the service host will see two signatures on the request, each signing different values for the <tt>@authority</tt> message component, reflecting the change to that component as the message made its way from the client to the service host.</t>
          <t>In such a case, it's common for the internal service to verify only one of the signatures or to use externally-configured information, as discussed in <xref target="security-message-component-context"/>. However, a verifier processing both signatures has to use a different message component context for each signature, since the component value for the <tt>@authority</tt> component will be different for each signature. Verifiers like this need to be aware of both the reverse proxy's context for incoming messages as well as the target service's context for the message coming from the reverse proxy. The verifier needs to take particular care to apply the correct context to the correct signature, otherwise an attacker could use knowledge of this complex setup to confuse the inputs to the verifier.</t>
          <t>Such verifiers also need to ensure that any differences in message component contexts between signatures are expected and permitted. For example, in the above scenario, the reverse proxy could include the original hostname in a <tt>Forwarded</tt> header field, and sign <tt>@authority</tt>, <tt>forwarded</tt>, and the client's entry in the <tt>signature</tt> field. The verifier can use the hostname from the <tt>Forwarded</tt> header field to confirm that the hostname was transformed as expected.</t>
        </section>
      </section>
      <section anchor="http-processing">
        <name>HTTP Processing</name>
        <section anchor="security-lazy-header-parser">
          <name>Confusing HTTP Field Names for Derived Component Names</name>
          <t>The definition of HTTP field names does not allow for the use of the <tt>@</tt> character anywhere in the name. As such, since all derived component names start with the <tt>@</tt> character, these namespaces should be completely separate. However, some HTTP implementations are not sufficiently strict about the characters accepted in HTTP field names. In such implementations, a sender (or attacker) could inject a header field starting with an <tt>@</tt> character and have it passed through to the application code. These invalid header fields could be used to override a portion of the derived message content and substitute an arbitrary value, providing a potential place for an attacker to mount a <xref target="security-collision">signature collision</xref> attack or other functional substitution attack (such as using the signature from a GET request on a crafted POST request).</t>
          <t>To combat this, when selecting values for a message component, if the component name starts with the <tt>@</tt> character, it needs to be processed as a derived component and never taken as a fields. Only if the component name does not start with the <tt>@</tt> character can it be taken from the fields of the message. The algorithm discussed in <xref target="create-sig-input"/> provides a safe order of operations.</t>
        </section>
        <section anchor="security-field-values">
          <name>Semantically Equivalent Field Values</name>
          <t>The <xref target="create-sig-input">signature base generation algorithm</xref> uses the value of an HTTP field as its component value. In the common case, this amounts to taking the actual bytes of the field value as the component value for both the signer and verifier. However, some field values allow for transformation of the values in semantically equivalent ways that alter the bytes used in the value itself. For example, a field definition can declare some or all of its value to be case-insensitive, or to have special handling of internal whitespace characters. Other fields have expected transformations from intermediaries, such as the removal of comments in the <tt>Via</tt> header field. In such cases, a verifier could be tripped up by using the equivalent transformed field value, which would differ from the byte value used by the signer. The verifier would have a difficult time finding this class of errors since the value of the field is still acceptable for the application, but the actual bytes required by the signature base would not match.</t>
          <t>When processing such fields, the signer and verifier have to agree how to handle such transformations, if at all. One option is to not sign problematic fields, but care must be taken to ensure that there is still <xref target="security-coverage">sufficient signature coverage</xref> for the application. Another option is to define an application-specific canonicalization value for the field before it is added to the HTTP message, such as to always remove internal comments before signing, or to always transform values to lowercase. Since these transformations are applied prior to the field being used as input to the signature base generation algorithm, the signature base will still simply contain the byte value of the field as it appears within the message. If the transformations were to be applied after the value is extracted from the message but before it is added to the signature base, different attack surfaces such as value substitution attacks could be launched against the application. All application-specific additional rules are outside the scope of this specification, and by their very nature these transformations would harm interoperability of the implementation outside of this specific application. It is recommended that applications avoid the use of such additional rules wherever possible.</t>
        </section>
        <section anchor="security-structured">
          <name>Parsing Structured Field Values</name>
          <t>Several parts of this specification rely on the parsing of structured field values <xref target="STRUCTURED-FIELDS"/>. In particular, <xref target="http-field-structured">normalization of HTTP structured field values</xref>, <xref target="http-field-dictionary">referencing members of a dictionary structured field</xref>, and processing the <tt>@signature-input</tt> value when <xref target="verify">verifying a signature</xref>. While structured field values are designed to be relatively simple to parse, a naive or broken implementation of such a parser could lead to subtle attack surfaces being exposed in the implementation.</t>
          <t>For example, if a buggy parser of the <tt>@signature-input</tt> value does not enforce proper closing of quotes around string values within the list of component identifiers, an attacker could take advantage of this and inject additional content into the signature base through manipulating the Signature-Input field value on a message.</t>
          <t>To counteract this, implementations should use fully compliant and trusted parsers for all structured field processing, both on the signer and verifier side.</t>
        </section>
        <section anchor="security-versions">
          <name>HTTP Versions and Component Ambiguity</name>
          <t>Some message components are expressed in different ways across HTTP versions. For example, the authority of the request target is sent using the <tt>Host</tt> header field in HTTP/1.1 but with the <tt>:authority</tt> pseudo-header in HTTP/2. If a signer sends an HTTP/1.1 message and signs the <tt>Host</tt> field, but the message is translated to HTTP/2 before it reaches the verifier, the signature will not validate as the <tt>Host</tt> header field could be dropped.</t>
          <t>It is for this reason that HTTP Message Signatures defines a set of derived components that define a single way to get value in question, such as the <tt>@authority</tt> derived component (<xref target="content-request-authority"/>) in lieu of the <tt>Host</tt> header field. Applications should therefore prefer derived components for such options where possible.</t>
        </section>
        <section anchor="security-canonicalization">
          <name>Canonicalization Attacks</name>
          <t>Any ambiguity in the generation of the signature base could provide an attacker with leverage to substitute or break a signature on a message. Some message component values, particularly HTTP field values, are potentially susceptible to broken implementations that could lead to unexpected and insecure behavior. Naive implementations of this specification might implement HTTP field processing by taking the single value of a field and using it as the direct component value without processing it appropriately.</t>
          <t>For example, if the handling of <tt>obs-fold</tt> field values does not remove the internal line folding and whitespace, additional newlines could be introduced into the signature base by the signer, providing a potential place for an attacker to mount a <xref target="security-collision">signature collision</xref> attack. Alternatively, if header fields that appear multiple times are not joined into a single string value, as is required by this specification, similar attacks can be mounted as a signed component value would show up in the signature base more than once and could be substituted or otherwise attacked in this way.</t>
          <t>To counter this, the entire field value processing algorithm needs to be implemented by all implementations of signers and verifiers.</t>
        </section>
        <section anchor="security-non-list">
          <name>Non-List Field Values</name>
          <t>When an HTTP field occurs multiple times in a single message, these values need to be combined into a single one-line string value to be included in the HTTP signature base, as described in <xref target="create-sig-input"/>. Not all HTTP fields can be combined into a single value in this way and still be a valid value for the field. For the purposes of generating the signature base, the message component value is never meant to be read back out of the signature base string or used in the application. Therefore it is considered best practice to treat the signature base generation algorithm separately from processing the field values by the application, particularly for fields that are known to have this property. If the field values that are being signed do not validate, the signed message should also be rejected.</t>
          <t>If an HTTP field allows for unquoted commas within its values, combining multiple field values can lead to a situation where two semantically different messages produce the same line in a signature base. For example, take the following hypothetical header field with an internal comma in its syntax, here used to define two separate lists of values:</t>
          <sourcecode type="http-message"><![CDATA[
Example-Header: value, with, lots
Example-Header: of, commas
]]></sourcecode>
          <t>For this header field, sending all of these values as a single field value results in a single list of values:</t>
          <sourcecode type="http-message"><![CDATA[
Example-Header: value, with, lots, of, commas
]]></sourcecode>
          <t>Both of these messages would create the following line in the signature base:</t>
          <artwork><![CDATA[
"example-header": value, with, lots, of, commas
]]></artwork>
          <t>Since two semantically distinct inputs can create the same output in the signature base, special care has to be taken when handling such values.</t>
          <t>Specifically, the Set-Cookie field <xref target="COOKIE"/> defines an internal syntax that does not conform to the List syntax in <xref target="STRUCTURED-FIELDS"/>. In particular some portions allow unquoted commas, and the field is typically sent as multiple separate field lines with distinct values when sending multiple cookies. When multiple Set-Cookie fields are sent in the same message, it is not generally possible to combine these into a single line and be able to parse and use the results, as discussed in <xref section="5.3" sectionFormat="comma" target="HTTP"/>. Therefore, all the cookies need to be processed from their separate header values, without being combined, while the signature base needs to be processed from the special combined value generated solely for this purpose. If the cookie value is invalid, the signed message ought to be rejected as this is a possible padding attack as described in <xref target="security-multiple-fields"/>.</t>
          <t>To deal with this, an application can choose to limit signing of problematic fields like Set-Cookie, such as including the field in a signature only when a single field value is present and the results would be unambiguous. Similar caution needs to be taken with all fields that could have non-deterministic mappings into the signature base. Signers can also make use of the <tt>bs</tt> parameter to armor such fields, as described in <xref target="http-field-byte-sequence"/>.</t>
        </section>
        <section anchor="security-multiple-fields">
          <name>Padding Attacks with Multiple Field Values</name>
          <t>Since HTTP field values need to be combined in a single string value to be included in the HTTP signature base, as described in <xref target="create-sig-input"/>, it is possible for an attacker to inject an additional value for a given field and add this to the signature base of the verifier.</t>
          <t>In most circumstances, this causes the signature validation to fail as expected, since the new signature base value will not match the one used by the signer to create the signature. However, it is theoretically possible for the attacker to inject both a garbage value to a field and a desired value to another field in order to force a particular input. This is a variation of the collision attack described in <xref target="security-collision"/>, where the attacker accomplishes their change in the message by adding to existing field values.</t>
          <t>To counter this, an application needs to validate the content of the fields covered in the signature in addition to ensuring that the signature itself validates. With such protections, the attacker's padding attack would be rejected by the field value processor, even in the case where the attacker could force a signature collision.</t>
        </section>
        <section anchor="security-query-elements">
          <name>Ambiguous Handling of Query Elements</name>
          <t>The HTML form parameters format defined in the "application/x-www-form-urlencoded" section of <xref target="HTMLURL"/>, is widely deployed and supported by many application frameworks. For convenience, some of these frameworks in particular combine query parameters that are found in the HTTP query and those found in the message content, particularly for POST message with a Content-Type value of "application/x-www-form-urlencoded". The <tt>@query-param</tt> derived component identifier defined in <xref target="content-request-query-param"/> draws its values only from the query section of the target URI of the request. As such, it would be possible for an attacker to shadow or replace query parameters in a request by overriding the signed query parameter with an unsigned form parameter, or vice versa.</t>
          <t>To counter this, an application needs to make sure that values used for the signature base and the application are drawn from a consistent context, in this case the query component of the target URI. Additionally, when the HTTP request has content, an application should sign the message content as well, as discussed in <xref target="security-message-content"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="privacy">
      <name>Privacy Considerations</name>
      <section anchor="privacy-identify-keys">
        <name>Identification through Keys</name>
        <t>If a signer uses the same key with multiple verifiers, or uses the same key over time with a single verifier, the ongoing use of that key can be used to track the signer throughout the set of verifiers that messages are sent to. Since cryptographic keys are meant to be functionally unique, the use of the same key over time is a strong indicator that it is the same party signing multiple messages.</t>
        <t>In many applications, this is a desirable trait, and it allows HTTP Message Signatures to be used as part of authenticating the signer to the verifier. However, it could be unintentional tracking that a signer might not be aware of. To counter this kind of tracking, a signer can use a different key for each verifier that it is in communication with. Sometimes, a signer could also rotate their key when sending messages to a given verifier. These approaches do not negate the need for other anti-tracking techniques to be applied as necessary.</t>
      </section>
      <section anchor="privacy-confidentiality">
        <name>Signatures do not provide confidentiality</name>
        <t>HTTP Message Signatures do not provide confidentiality of any of the information protected by the signature. The content of the HTTP message, including the value of all fields and the value of the signature itself, is presented in plaintext to any party with access to the message.</t>
        <t>To provide confidentiality at the transport level, TLS or its equivalent can be used as discussed in <xref target="security-tls"/>.</t>
      </section>
      <section anchor="privacy-oracle">
        <name>Oracles</name>
        <t>It is important to balance the need for providing useful feedback to developers on error conditions without providing additional information to an attacker. For example, a naive but helpful server implementation might try to indicate the required key identifier needed for requesting a resource. If someone knows who controls that key, a correlation can be made between the resource's existence and the party identified by the key. Access to such information could be used by an attacker as a means to target the legitimate owner of the resource for further attacks.</t>
      </section>
      <section anchor="privacy-required">
        <name>Required Content</name>
        <t>A core design tenet of this specification is that all message components covered by the signature need to be available to the verifier in order to recreate the signature base and verify the signature. As a consequence, if an application of this specification requires that a particular field be signed, the verifier will need access to the value of that field.</t>
        <t>For example, in some complex systems with intermediary processors this could cause the surprising behavior of an intermediary not being able to remove privacy-sensitive information from a message before forwarding it on for processing, for fear of breaking the signature. A possible mitigation for this specific situation would be for the intermediary to verify the signature itself, then modifying the message to remove the privacy-sensitive information. The intermediary can add its own signature at this point to signal to the next destination that the incoming signature was validated, as is shown in the example in <xref target="signature-multiple"/>.</t>
      </section>
    </section>
  </middle>
  <back>
    <displayreference target="HTTP1" to="HTTP/1.1"/>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="ASCII">
          <front>
            <title>ASCII format for network interchange</title>
            <author fullname="V.G. Cerf" initials="V.G." surname="Cerf">
              <organization/>
            </author>
            <date month="October" year="1969"/>
          </front>
          <seriesInfo name="STD" value="80"/>
          <seriesInfo name="RFC" value="20"/>
          <seriesInfo name="DOI" value="10.17487/RFC0020"/>
        </reference>
        <reference anchor="RFC2104">
          <front>
            <title>HMAC: Keyed-Hashing for Message Authentication</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="M. Bellare" initials="M." surname="Bellare">
              <organization/>
            </author>
            <author fullname="R. Canetti" initials="R." surname="Canetti">
              <organization/>
            </author>
            <date month="February" year="1997"/>
            <abstract>
              <t>This document describes HMAC, a mechanism for message authentication using cryptographic hash functions. HMAC can be used with any iterative cryptographic hash function, e.g., MD5, SHA-1, in combination with a secret shared key.  The cryptographic strength of HMAC depends on the properties of the underlying hash function.  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="2104"/>
          <seriesInfo name="DOI" value="10.17487/RFC2104"/>
        </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="RFC7517">
          <front>
            <title>JSON Web Key (JWK)</title>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <abstract>
              <t>A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key.  This specification also defines a JWK Set JSON data structure that represents a set of JWKs.  Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and IANA registries established by that specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7517"/>
          <seriesInfo name="DOI" value="10.17487/RFC7517"/>
        </reference>
        <reference anchor="RFC7518">
          <front>
            <title>JSON Web Algorithms (JWA)</title>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification registers cryptographic algorithms and identifiers to be used with the JSON Web Signature (JWS), JSON Web Encryption (JWE), and JSON Web Key (JWK) specifications.  It defines several IANA registries for these identifiers.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7518"/>
          <seriesInfo name="DOI" value="10.17487/RFC7518"/>
        </reference>
        <reference anchor="RFC8017">
          <front>
            <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty">
              <organization/>
            </author>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski">
              <organization/>
            </author>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson">
              <organization/>
            </author>
            <author fullname="A. Rusch" initials="A." surname="Rusch">
              <organization/>
            </author>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t>
              <t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series.  By publishing this RFC, change control is transferred to the IETF.</t>
              <t>This document also obsoletes RFC 3447.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8017"/>
          <seriesInfo name="DOI" value="10.17487/RFC8017"/>
        </reference>
        <reference anchor="RFC8032">
          <front>
            <title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <author fullname="I. Liusvaara" initials="I." surname="Liusvaara">
              <organization/>
            </author>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document describes elliptic curve signature scheme Edwards-curve Digital Signature Algorithm (EdDSA).  The algorithm is instantiated with recommended parameters for the edwards25519 and edwards448 curves.  An example implementation and test vectors are provided.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8032"/>
          <seriesInfo name="DOI" value="10.17487/RFC8032"/>
        </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="FIPS186-4" target="https://csrc.nist.gov/publications/detail/fips/186/4/final">
          <front>
            <title>Digital Signature Standard (DSS)</title>
            <author>
              <organization/>
            </author>
            <date year="2013"/>
          </front>
        </reference>
        <reference anchor="POSIX.1" target="https://pubs.opengroup.org/onlinepubs/9699919799/">
          <front>
            <title>The Open Group Base Specifications Issue 7, 2018 edition</title>
            <author>
              <organization/>
            </author>
            <date year="2018"/>
          </front>
        </reference>
        <reference anchor="HTTP">
          <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="HTTP1">
          <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="URI">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="HTMLURL" target="https://url.spec.whatwg.org/#application/x-www-form-urlencoded">
          <front>
            <title>URL (Living Standard)</title>
            <author>
              <organization/>
            </author>
            <date year="2021"/>
          </front>
        </reference>
        <reference anchor="ABNF">
          <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="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>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC7239">
          <front>
            <title>Forwarded HTTP Extension</title>
            <author fullname="A. Petersson" initials="A." surname="Petersson">
              <organization/>
            </author>
            <author fullname="M. Nilsson" initials="M." surname="Nilsson">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>This document defines an HTTP extension header field that allows proxy components to disclose information lost in the proxying process, for example, the originating IP address of a request or IP address of the proxy on the user-agent-facing interface.  In a path of proxying components, this makes it possible to arrange it so that each subsequent component will have access to, for example, all IP addresses used in the chain of proxied HTTP requests.</t>
              <t>This document also specifies guidelines for a proxy administrator to anonymize the origin of a request.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7239"/>
          <seriesInfo name="DOI" value="10.17487/RFC7239"/>
        </reference>
        <reference anchor="JWS">
          <front>
            <title>JSON Web Signature (JWS)</title>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <author fullname="J. Bradley" initials="J." surname="Bradley">
              <organization/>
            </author>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures.  Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification.  Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7515"/>
          <seriesInfo name="DOI" value="10.17487/RFC7515"/>
        </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>
        <reference anchor="RFC8792">
          <front>
            <title>Handling Long Lines in Content of Internet-Drafts and RFCs</title>
            <author fullname="K. Watsen" initials="K." surname="Watsen">
              <organization/>
            </author>
            <author fullname="E. Auerswald" initials="E." surname="Auerswald">
              <organization/>
            </author>
            <author fullname="A. Farrel" initials="A." surname="Farrel">
              <organization/>
            </author>
            <author fullname="Q. Wu" initials="Q." surname="Wu">
              <organization/>
            </author>
            <date month="June" year="2020"/>
            <abstract>
              <t>This document defines two strategies for handling long lines in width-bounded text content.  One strategy, called the "single backslash" strategy, is based on the historical use of a single backslash ('\') character to indicate where line-folding has occurred, with the continuation occurring with the first character that is not a space character (' ') on the next line.  The second strategy, called the "double backslash" strategy, extends the first strategy by adding a second backslash character to identify where the continuation begins and is thereby able to handle cases not supported by the first strategy.  Both strategies use a self-describing header enabling automated reconstitution of the original content.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8792"/>
          <seriesInfo name="DOI" value="10.17487/RFC8792"/>
        </reference>
        <referencegroup anchor="BCP195">
          <reference anchor="RFC8996" target="https://www.rfc-editor.org/info/rfc8996">
            <front>
              <title>Deprecating TLS 1.0 and TLS 1.1</title>
              <author fullname="K. Moriarty" initials="K." surname="Moriarty"/>
              <author fullname="S. Farrell" initials="S." surname="Farrell"/>
              <date month="March" year="2021"/>
              <abstract>
                <t>This document formally deprecates Transport Layer Security (TLS) versions 1.0 (RFC 2246) and 1.1 (RFC 4346). Accordingly, those documents have been moved to Historic status. These versions lack support for current and recommended cryptographic algorithms and mechanisms, and various government and industry profiles of applications using TLS now mandate avoiding these old TLS versions. TLS version 1.2 became the recommended version for IETF protocols in 2008 (subsequently being obsoleted by TLS version 1.3 in 2018), providing sufficient time to transition away from older versions. Removing support for older versions from implementations reduces the attack surface, reduces opportunity for misconfiguration, and streamlines library and product maintenance.</t>
                <t>This document also deprecates Datagram TLS (DTLS) version 1.0 (RFC 4347) but not DTLS version 1.2, and there is no DTLS version 1.1.</t>
                <t>This document updates many RFCs that normatively refer to TLS version 1.0 or TLS version 1.1, as described herein. This document also updates the best practices for TLS usage in RFC 7525; hence, it is part of BCP 195.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="195"/>
            <seriesInfo name="RFC" value="8996"/>
            <seriesInfo name="DOI" value="10.17487/RFC8996"/>
          </reference>
          <reference anchor="RFC9325" target="https://www.rfc-editor.org/info/rfc9325">
            <front>
              <title>Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
              <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
              <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
              <author fullname="T. Fossati" initials="T." surname="Fossati"/>
              <date month="November" year="2022"/>
              <abstract>
                <t>Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) are used to protect data exchanged over a wide range of application protocols and can also form the basis for secure transport protocols. Over the years, the industry has witnessed several serious attacks on TLS and DTLS, including attacks on the most commonly used cipher suites and their modes of operation. This document provides the latest recommendations for ensuring the security of deployed services that use TLS and DTLS. These recommendations are applicable to the majority of use cases.</t>
                <t>RFC 7525, an earlier version of the TLS recommendations, was published when the industry was transitioning to TLS 1.2. Years later, this transition is largely complete, and TLS 1.3 is widely available. This document updates the guidance given the new environment and obsoletes RFC 7525. In addition, this document updates RFCs 5288 and 6066 in view of recent attacks.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="195"/>
            <seriesInfo name="RFC" value="9325"/>
            <seriesInfo name="DOI" value="10.17487/RFC9325"/>
          </reference>
        </referencegroup>
        <reference anchor="CLIENT-CERT">
          <front>
            <title>Client-Cert HTTP Header Field</title>
            <author fullname="Brian Campbell" initials="B." surname="Campbell">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="Mike Bishop" initials="M." surname="Bishop">
              <organization>Akamai</organization>
            </author>
            <date day="17" month="March" year="2023"/>
            <abstract>
              <t>   This document describes HTTP extension header fields that allow a TLS
   terminating reverse proxy to convey the client certificate
   information of a mutually authenticated TLS connection to the origin
   server in a common and predictable manner.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-client-cert-field-06"/>
        </reference>
        <reference anchor="DIGEST">
          <front>
            <title>Digest Fields</title>
            <author fullname="Roberto Polli" initials="R." surname="Polli">
              <organization>Team Digitale, Italian Government</organization>
            </author>
            <author fullname="Lucas Pardue" initials="L." surname="Pardue">
              <organization>Cloudflare</organization>
            </author>
            <date day="13" month="April" year="2023"/>
            <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.

   This document obsoletes RFC 3230 and the Digest and Want-Digest HTTP
   fields.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-digest-headers-12"/>
        </reference>
        <reference anchor="COOKIE">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="A. Barth" initials="A." surname="Barth">
              <organization/>
            </author>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol.  Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet.  This document obsoletes RFC 2965.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="I-D.cavage-http-signatures">
          <front>
            <title>Signing HTTP Messages</title>
            <author fullname="Mark Cavage" initials="M." surname="Cavage">
              <organization>Oracle</organization>
            </author>
            <author fullname="Manu Sporny" initials="M." surname="Sporny">
              <organization>Digital Bazaar</organization>
            </author>
            <date day="21" month="October" year="2019"/>
            <abstract>
              <t>   When communicating over the Internet using the HTTP protocol, it can
   be desirable for a server or client to authenticate the sender of a
   particular message.  It can also be desirable to ensure that the
   message was not tampered with during transit.  This document
   describes a way for servers and clients to simultaneously add
   authentication and message integrity to HTTP messages by using a
   digital signature.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-cavage-http-signatures-12"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-signed-http-request">
          <front>
            <title>A Method for Signing HTTP Requests for OAuth</title>
            <author fullname="Justin Richer" initials="J." surname="Richer">
         </author>
            <author fullname="John Bradley" initials="J." surname="Bradley">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
              <organization>ARM Limited</organization>
            </author>
            <date day="8" month="August" year="2016"/>
            <abstract>
              <t>   This document a method for offering data origin authentication and
   integrity protection of HTTP requests.  To convey the relevant data
   items in the request a JSON-based encapsulation is used and the JSON
   Web Signature (JWS) technique is re-used.  JWS offers integrity
   protection using symmetric as well as asymmetric cryptography.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-signed-http-request-03"/>
        </reference>
        <reference anchor="AWS-SIGv4" target="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html">
          <front>
            <title>Authenticating Requests (AWS Signature Version 4)</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="JACKSON2019" target="https://dennis-jackson.uk/assets/pdfs/signatures.pdf">
          <front>
            <title>Seems Legit: Automated Analysis of Subtle Attacks on Protocols that Use Signatures</title>
            <author initials="D." surname="Jackson" fullname="Dennis Jackson">
              <organization>University of Oxford</organization>
            </author>
            <author initials="C." surname="Cremers" fullname="Cas Cremers">
              <organization>CISPA Helmholtz Center for Information Security</organization>
            </author>
            <author initials="K." surname="Cohn-Gordon" fullname="Katriel Cohn-Gordon">
              <organization>Independent Scholar</organization>
            </author>
            <author initials="R." surname="Sasse" fullname="Ralf Sasse">
              <organization>Department of Computer Science, ETH Zurich</organization>
            </author>
            <date year="2019" month="November"/>
          </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="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>
    <section anchor="detection">
      <name>Detecting HTTP Message Signatures</name>
      <t>There have been many attempts to create signed HTTP messages in the past, including other non-standardized definitions of the Signature field, which is used within this specification. It is recommended that developers wishing to support both this specification and other historical drafts do so carefully and deliberately, as incompatibilities between this specification and various versions of other drafts could lead to unexpected problems.</t>
      <t>It is recommended that implementers first detect and validate the Signature-Input field defined in this specification to detect that this standard is in use and not an alternative. If the Signature-Input field is present, all Signature fields can be parsed and interpreted in the context of this specification.</t>
    </section>
    <section anchor="examples">
      <name>Examples</name>
      <t>The following non-normative examples are provided as a means of testing implementations of HTTP Message Signatures. The signed messages given can be used to create the signature base with the stated parameters, creating signatures using the stated algorithms and keys.</t>
      <t>The private keys given can be used to generate signatures, though since several of the demonstrated algorithms are nondeterministic, the results of a signature are expected to be different from the exact bytes of the examples. The public keys given can be used to validate all signed examples.</t>
      <section anchor="example-keys">
        <name>Example Keys</name>
        <t>This section provides cryptographic keys that are referenced in example signatures throughout this document. These keys <bcp14>MUST NOT</bcp14> be used for any purpose other than testing.</t>
        <t>The key identifiers for each key are used throughout the examples in this specification. It is assumed for these examples that the signer and verifier can unambiguously dereference all key identifiers used here, and that the keys and algorithms used are appropriate for the context in which the signature is presented.</t>
        <t>The components for each private key in PEM format can be displayed by executing the following OpenSSL command:</t>
        <artwork><![CDATA[
openssl pkey -text
]]></artwork>
        <t>This command was tested with all the example keys on OpenSSL version 1.1.1m. Note that some systems cannot produce or use all of these keys directly, and may require additional processing. All keys are also made available in JWK format.</t>
        <section anchor="example-key-rsa-test">
          <name>Example Key RSA test</name>
          <t>The following key is a 2048-bit RSA public and private key pair, referred to in this document
as <tt>test-key-rsa</tt>. This key is encoded in PEM Format, with no encryption.</t>
          <artwork><![CDATA[
-----BEGIN RSA PUBLIC KEY-----
MIIBCgKCAQEAhAKYdtoeoy8zcAcR874L8cnZxKzAGwd7v36APp7Pv6Q2jdsPBRrw
WEBnez6d0UDKDwGbc6nxfEXAy5mbhgajzrw3MOEt8uA5txSKobBpKDeBLOsdJKFq
MGmXCQvEG7YemcxDTRPxAleIAgYYRjTSd/QBwVW9OwNFhekro3RtlinV0a75jfZg
kne/YiktSvLG34lw2zqXBDTC5NHROUqGTlML4PlNZS5Ri2U4aCNx2rUPRcKIlE0P
uKxI4T+HIaFpv8+rdV6eUgOrB2xeI1dSFFn/nnv5OoZJEIB+VmuKn3DCUcCZSFlQ
PSXSfBDiUGhwOw76WuSSsf1D4b/vLoJ10wIDAQAB
-----END RSA PUBLIC KEY-----

-----BEGIN RSA PRIVATE KEY-----
MIIEqAIBAAKCAQEAhAKYdtoeoy8zcAcR874L8cnZxKzAGwd7v36APp7Pv6Q2jdsP
BRrwWEBnez6d0UDKDwGbc6nxfEXAy5mbhgajzrw3MOEt8uA5txSKobBpKDeBLOsd
JKFqMGmXCQvEG7YemcxDTRPxAleIAgYYRjTSd/QBwVW9OwNFhekro3RtlinV0a75
jfZgkne/YiktSvLG34lw2zqXBDTC5NHROUqGTlML4PlNZS5Ri2U4aCNx2rUPRcKI
lE0PuKxI4T+HIaFpv8+rdV6eUgOrB2xeI1dSFFn/nnv5OoZJEIB+VmuKn3DCUcCZ
SFlQPSXSfBDiUGhwOw76WuSSsf1D4b/vLoJ10wIDAQABAoIBAG/JZuSWdoVHbi56
vjgCgkjg3lkO1KrO3nrdm6nrgA9P9qaPjxuKoWaKO1cBQlE1pSWp/cKncYgD5WxE
CpAnRUXG2pG4zdkzCYzAh1i+c34L6oZoHsirK6oNcEnHveydfzJL5934egm6p8DW
+m1RQ70yUt4uRc0YSor+q1LGJvGQHReF0WmJBZHrhz5e63Pq7lE0gIwuBqL8SMaA
yRXtK+JGxZpImTq+NHvEWWCu09SCq0r838ceQI55SvzmTkwqtC+8AT2zFviMZkKR
Qo6SPsrqItxZWRty2izawTF0Bf5S2VAx7O+6t3wBsQ1sLptoSgX3QblELY5asI0J
YFz7LJECgYkAsqeUJmqXE3LP8tYoIjMIAKiTm9o6psPlc8CrLI9CH0UbuaA2JCOM
cCNq8SyYbTqgnWlB9ZfcAm/cFpA8tYci9m5vYK8HNxQr+8FS3Qo8N9RJ8d0U5Csw
DzMYfRghAfUGwmlWj5hp1pQzAuhwbOXFtxKHVsMPhz1IBtF9Y8jvgqgYHLbmyiu1
mwJ5AL0pYF0G7x81prlARURwHo0Yf52kEw1dxpx+JXER7hQRWQki5/NsUEtv+8RT
qn2m6qte5DXLyn83b1qRscSdnCCwKtKWUug5q2ZbwVOCJCtmRwmnP131lWRYfj67
B/xJ1ZA6X3GEf4sNReNAtaucPEelgR2nsN0gKQKBiGoqHWbK1qYvBxX2X3kbPDkv
9C+celgZd2PW7aGYLCHq7nPbmfDV0yHcWjOhXZ8jRMjmANVR/eLQ2EfsRLdW69bn
f3ZD7JS1fwGnO3exGmHO3HZG+6AvberKYVYNHahNFEw5TsAcQWDLRpkGybBcxqZo
81YCqlqidwfeO5YtlO7etx1xLyqa2NsCeG9A86UjG+aeNnXEIDk1PDK+EuiThIUa
/2IxKzJKWl1BKr2d4xAfR0ZnEYuRrbeDQYgTImOlfW6/GuYIxKYgEKCFHFqJATAG
IxHrq1PDOiSwXd2GmVVYyEmhZnbcp8CxaEMQoevxAta0ssMK3w6UsDtvUvYvF22m
qQKBiD5GwESzsFPy3Ga0MvZpn3D6EJQLgsnrtUPZx+z2Ep2x0xc5orneB5fGyF1P
WtP+fG5Q6Dpdz3LRfm+KwBCWFKQjg7uTxcjerhBWEYPmEMKYwTJF5PBG9/ddvHLQ
EQeNC8fHGg4UXU8mhHnSBt3EA10qQJfRDs15M38eG2cYwB1PZpDHScDnDA0=
-----END RSA PRIVATE KEY-----
]]></artwork>
          <t>The same public and private keypair in JWK format:</t>
          <sourcecode type="json"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

{
  "kty": "RSA",
  "kid": "test-key-rsa",
  "p": "sqeUJmqXE3LP8tYoIjMIAKiTm9o6psPlc8CrLI9CH0UbuaA2JCOMcCNq8Sy\
  YbTqgnWlB9ZfcAm_cFpA8tYci9m5vYK8HNxQr-8FS3Qo8N9RJ8d0U5CswDzMYfRgh\
  AfUGwmlWj5hp1pQzAuhwbOXFtxKHVsMPhz1IBtF9Y8jvgqgYHLbmyiu1mw",
  "q": "vSlgXQbvHzWmuUBFRHAejRh_naQTDV3GnH4lcRHuFBFZCSLn82xQS2_7xFO\
  qfabqq17kNcvKfzdvWpGxxJ2cILAq0pZS6DmrZlvBU4IkK2ZHCac_XfWVZFh-PrsH\
  _EnVkDpfcYR_iw1F40C1q5w8R6WBHaew3SAp",
  "d": "b8lm5JZ2hUduLnq-OAKCSODeWQ7Uqs7eet2bqeuAD0_2po-PG4qhZoo7VwF\
  CUTWlJan9wqdxiAPlbEQKkCdFRcbakbjN2TMJjMCHWL5zfgvqhmgeyKsrqg1wSce9\
  7J1_Mkvn3fh6CbqnwNb6bVFDvTJS3i5FzRhKiv6rUsYm8ZAdF4XRaYkFkeuHPl7rc\
  -ruUTSAjC4GovxIxoDJFe0r4kbFmkiZOr40e8RZYK7T1IKrSvzfxx5AjnlK_OZOTC\
  q0L7wBPbMW-IxmQpFCjpI-yuoi3FlZG3LaLNrBMXQF_lLZUDHs77q3fAGxDWwum2h\
  KBfdBuUQtjlqwjQlgXPsskQ",
  "e": "AQAB",
  "qi": "PkbARLOwU_LcZrQy9mmfcPoQlAuCyeu1Q9nH7PYSnbHTFzmiud4Hl8bIXU\
  9a0_58blDoOl3PctF-b4rAEJYUpCODu5PFyN6uEFYRg-YQwpjBMkXk8Eb39128ctA\
  RB40Lx8caDhRdTyaEedIG3cQDXSpAl9EOzXkzfx4bZxjAHU9mkMdJwOcMDQ",
  "dp": "aiodZsrWpi8HFfZfeRs8OS_0L5x6WBl3Y9btoZgsIeruc9uZ8NXTIdxaM6\
  FdnyNEyOYA1VH94tDYR-xEt1br1ud_dkPslLV_Aac7d7EaYc7cdkb7oC9t6sphVg0\
  dqE0UTDlOwBxBYMtGmQbJsFzGpmjzVgKqWqJ3B947li2U7t63HXEvKprY2w",
  "dq": "b0DzpSMb5p42dcQgOTU8Mr4S6JOEhRr_YjErMkpaXUEqvZ3jEB9HRmcRi5\
  Gtt4NBiBMiY6V9br8a5gjEpiAQoIUcWokBMAYjEeurU8M6JLBd3YaZVVjISaFmdty\
  nwLFoQxCh6_EC1rSywwrfDpSwO29S9i8Xbaap",
  "n": "hAKYdtoeoy8zcAcR874L8cnZxKzAGwd7v36APp7Pv6Q2jdsPBRrwWEBnez6\
  d0UDKDwGbc6nxfEXAy5mbhgajzrw3MOEt8uA5txSKobBpKDeBLOsdJKFqMGmXCQvE\
  G7YemcxDTRPxAleIAgYYRjTSd_QBwVW9OwNFhekro3RtlinV0a75jfZgkne_YiktS\
  vLG34lw2zqXBDTC5NHROUqGTlML4PlNZS5Ri2U4aCNx2rUPRcKIlE0PuKxI4T-HIa\
  Fpv8-rdV6eUgOrB2xeI1dSFFn_nnv5OoZJEIB-VmuKn3DCUcCZSFlQPSXSfBDiUGh\
  wOw76WuSSsf1D4b_vLoJ10w"
}
]]></sourcecode>
        </section>
        <section anchor="example-key-rsa-pss-test">
          <name>Example RSA PSS Key</name>
          <t>The following key is a 2048-bit RSA public and private key pair, referred to in this document
as <tt>test-key-rsa-pss</tt>. This key is PCKS#8 encoded in PEM format, with no encryption.</t>
          <artwork><![CDATA[
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr4tmm3r20Wd/PbqvP1s2
+QEtvpuRaV8Yq40gjUR8y2Rjxa6dpG2GXHbPfvMs8ct+Lh1GH45x28Rw3Ry53mm+
oAXjyQ86OnDkZ5N8lYbggD4O3w6M6pAvLkhk95AndTrifbIFPNU8PPMO7OyrFAHq
gDsznjPFmTOtCEcN2Z1FpWgchwuYLPL+Wokqltd11nqqzi+bJ9cvSKADYdUAAN5W
Utzdpiy6LbTgSxP7ociU4Tn0g5I6aDZJ7A8Lzo0KSyZYoA485mqcO0GVAdVw9lq4
aOT9v6d+nb4bnNkQVklLQ3fVAvJm+xdDOp9LCNCN48V2pnDOkFV6+U9nV5oyc6XI
2wIDAQAB
-----END PUBLIC KEY-----

-----BEGIN PRIVATE KEY-----
MIIEvgIBADALBgkqhkiG9w0BAQoEggSqMIIEpgIBAAKCAQEAr4tmm3r20Wd/Pbqv
P1s2+QEtvpuRaV8Yq40gjUR8y2Rjxa6dpG2GXHbPfvMs8ct+Lh1GH45x28Rw3Ry5
3mm+oAXjyQ86OnDkZ5N8lYbggD4O3w6M6pAvLkhk95AndTrifbIFPNU8PPMO7Oyr
FAHqgDsznjPFmTOtCEcN2Z1FpWgchwuYLPL+Wokqltd11nqqzi+bJ9cvSKADYdUA
AN5WUtzdpiy6LbTgSxP7ociU4Tn0g5I6aDZJ7A8Lzo0KSyZYoA485mqcO0GVAdVw
9lq4aOT9v6d+nb4bnNkQVklLQ3fVAvJm+xdDOp9LCNCN48V2pnDOkFV6+U9nV5oy
c6XI2wIDAQABAoIBAQCUB8ip+kJiiZVKF8AqfB/aUP0jTAqOQewK1kKJ/iQCXBCq
pbo360gvdt05H5VZ/RDVkEgO2k73VSsbulqezKs8RFs2tEmU+JgTI9MeQJPWcP6X
aKy6LIYs0E2cWgp8GADgoBs8llBq0UhX0KffglIeek3n7Z6Gt4YFge2TAcW2WbN4
XfK7lupFyo6HHyWRiYHMMARQXLJeOSdTn5aMBP0PO4bQyk5ORxTUSeOciPJUFktQ
HkvGbym7KryEfwH8Tks0L7WhzyP60PL3xS9FNOJi9m+zztwYIXGDQuKM2GDsITeD
2mI2oHoPMyAD0wdI7BwSVW18p1h+jgfc4dlexKYRAoGBAOVfuiEiOchGghV5vn5N
RDNscAFnpHj1QgMr6/UG05RTgmcLfVsI1I4bSkbrIuVKviGGf7atlkROALOG/xRx
DLadgBEeNyHL5lz6ihQaFJLVQ0u3U4SB67J0YtVO3R6lXcIjBDHuY8SjYJ7Ci6Z6
vuDcoaEujnlrtUhaMxvSfcUJAoGBAMPsCHXte1uWNAqYad2WdLjPDlKtQJK1diCm
rqmB2g8QE99hDOHItjDBEdpyFBKOIP+NpVtM2KLhRajjcL9Ph8jrID6XUqikQuVi
4J9FV2m42jXMuioTT13idAILanYg8D3idvy/3isDVkON0X3UAVKrgMEne0hJpkPL
FYqgetvDAoGBAKLQ6JZMbSe0pPIJkSamQhsehgL5Rs51iX4m1z7+sYFAJfhvN3Q/
OGIHDRp6HjMUcxHpHw7U+S1TETxePwKLnLKj6hw8jnX2/nZRgWHzgVcY+sPsReRx
NJVf+Cfh6yOtznfX00p+JWOXdSY8glSSHJwRAMog+hFGW1AYdt7w80XBAoGBAImR
NUugqapgaEA8TrFxkJmngXYaAqpA0iYRA7kv3S4QavPBUGtFJHBNULzitydkNtVZ
3w6hgce0h9YThTo/nKc+OZDZbgfN9s7cQ75x0PQCAO4fx2P91Q+mDzDUVTeG30mE
t2m3S0dGe47JiJxifV9P3wNBNrZGSIF3mrORBVNDAoGBAI0QKn2Iv7Sgo4T/XjND
dl2kZTXqGAk8dOhpUiw/HdM3OGWbhHj2NdCzBliOmPyQtAr770GITWvbAI+IRYyF
S7Fnk6ZVVVHsxjtaHy1uJGFlaZzKR4AGNaUTOJMs6NadzCmGPAxNQQOCqoUjn4XR
rOjr9w349JooGXhOxbu8nOxX
-----END PRIVATE KEY-----
]]></artwork>
          <t>The same public and private keypair in JWK format:</t>
          <sourcecode type="json"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

{
  "kty": "RSA",
  "kid": "test-key-rsa-pss",
  "p": "5V-6ISI5yEaCFXm-fk1EM2xwAWekePVCAyvr9QbTlFOCZwt9WwjUjhtKRus\
  i5Uq-IYZ_tq2WRE4As4b_FHEMtp2AER43IcvmXPqKFBoUktVDS7dThIHrsnRi1U7d\
  HqVdwiMEMe5jxKNgnsKLpnq-4NyhoS6OeWu1SFozG9J9xQk",
  "q": "w-wIde17W5Y0Cphp3ZZ0uM8OUq1AkrV2IKauqYHaDxAT32EM4ci2MMER2nI\
  UEo4g_42lW0zYouFFqONwv0-HyOsgPpdSqKRC5WLgn0VXabjaNcy6KhNPXeJ0Agtq\
  diDwPeJ2_L_eKwNWQ43RfdQBUquAwSd7SEmmQ8sViqB628M",
  "d": "lAfIqfpCYomVShfAKnwf2lD9I0wKjkHsCtZCif4kAlwQqqW6N-tIL3bdOR-\
  VWf0Q1ZBIDtpO91UrG7pansyrPERbNrRJlPiYEyPTHkCT1nD-l2isuiyGLNBNnFoK\
  fBgA4KAbPJZQatFIV9Cn34JSHnpN5-2ehreGBYHtkwHFtlmzeF3yu5bqRcqOhx8lk\
  YmBzDAEUFyyXjknU5-WjAT9DzuG0MpOTkcU1EnjnIjyVBZLUB5Lxm8puyq8hH8B_E\
  5LNC-1oc8j-tDy98UvRTTiYvZvs87cGCFxg0LijNhg7CE3g9piNqB6DzMgA9MHSOw\
  cElVtfKdYfo4H3OHZXsSmEQ",
  "e": "AQAB",
  "qi": "jRAqfYi_tKCjhP9eM0N2XaRlNeoYCTx06GlSLD8d0zc4ZZuEePY10LMGWI\
  6Y_JC0CvvvQYhNa9sAj4hFjIVLsWeTplVVUezGO1ofLW4kYWVpnMpHgAY1pRM4kyz\
  o1p3MKYY8DE1BA4KqhSOfhdGs6Ov3Dfj0migZeE7Fu7yc7Fc",
  "dp": "otDolkxtJ7Sk8gmRJqZCGx6GAvlGznWJfibXPv6xgUAl-G83dD84YgcNGn\
  oeMxRzEekfDtT5LVMRPF4_AoucsqPqHDyOdfb-dlGBYfOBVxj6w-xF5HE0lV_4J-H\
  rI63Od9fTSn4lY5d1JjyCVJIcnBEAyiD6EUZbUBh23vDzRcE",
  "dq": "iZE1S6CpqmBoQDxOsXGQmaeBdhoCqkDSJhEDuS_dLhBq88FQa0UkcE1QvO\
  K3J2Q21VnfDqGBx7SH1hOFOj-cpz45kNluB832ztxDvnHQ9AIA7h_HY_3VD6YPMNR\
  VN4bfSYS3abdLR0Z7jsmInGJ9X0_fA0E2tkZIgXeas5EFU0M",
  "n": "r4tmm3r20Wd_PbqvP1s2-QEtvpuRaV8Yq40gjUR8y2Rjxa6dpG2GXHbPfvM\
  s8ct-Lh1GH45x28Rw3Ry53mm-oAXjyQ86OnDkZ5N8lYbggD4O3w6M6pAvLkhk95An\
  dTrifbIFPNU8PPMO7OyrFAHqgDsznjPFmTOtCEcN2Z1FpWgchwuYLPL-Wokqltd11\
  nqqzi-bJ9cvSKADYdUAAN5WUtzdpiy6LbTgSxP7ociU4Tn0g5I6aDZJ7A8Lzo0KSy\
  ZYoA485mqcO0GVAdVw9lq4aOT9v6d-nb4bnNkQVklLQ3fVAvJm-xdDOp9LCNCN48V\
  2pnDOkFV6-U9nV5oyc6XI2w"
}
]]></sourcecode>
        </section>
        <section anchor="example-key-ecc-p256">
          <name>Example ECC P-256 Test Key</name>
          <t>The following key is a public and private elliptical curve key pair over the curve P-256, referred
to in this document as `test-key-ecc-p256. This key is encoded in PEM format, with no encryption.</t>
          <artwork><![CDATA[
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEqIVYZVLCrPZHGHjP17CTW0/+D9Lf
w0EkjqF7xB4FivAxzic30tMM4GF+hR6Dxh71Z50VGGdldkkDXZCnTNnoXQ==
-----END PUBLIC KEY-----

-----BEGIN EC PRIVATE KEY-----
MHcCAQEEIFKbhfNZfpDsW43+0+JjUr9K+bTeuxopu653+hBaXGA7oAoGCCqGSM49
AwEHoUQDQgAEqIVYZVLCrPZHGHjP17CTW0/+D9Lfw0EkjqF7xB4FivAxzic30tMM
4GF+hR6Dxh71Z50VGGdldkkDXZCnTNnoXQ==
-----END EC PRIVATE KEY-----
]]></artwork>
          <t>The same public and private keypair in JWK format:</t>
          <sourcecode type="json"><![CDATA[
{
  "kty": "EC",
  "crv": "P-256",
  "kid": "test-key-ecc-p256",
  "d": "UpuF81l-kOxbjf7T4mNSv0r5tN67Gim7rnf6EFpcYDs",
  "x": "qIVYZVLCrPZHGHjP17CTW0_-D9Lfw0EkjqF7xB4FivA",
  "y": "Mc4nN9LTDOBhfoUeg8Ye9WedFRhnZXZJA12Qp0zZ6F0"
}
]]></sourcecode>
        </section>
        <section anchor="example-key-ed25519">
          <name>Example Ed25519 Test Key</name>
          <t>The following key is an elliptical curve key over the Edwards curve ed25519, referred to in this document as <tt>test-key-ed25519</tt>. This key is PCKS#8 encoded in PEM format, with no encryption.</t>
          <artwork><![CDATA[
-----BEGIN PUBLIC KEY-----
MCowBQYDK2VwAyEAJrQLj5P/89iXES9+vFgrIy29clF9CC/oPPsw3c5D0bs=
-----END PUBLIC KEY-----

-----BEGIN PRIVATE KEY-----
MC4CAQAwBQYDK2VwBCIEIJ+DYvh6SEqVTm50DFtMDoQikTmiCqirVv9mWG9qfSnF
-----END PRIVATE KEY-----
]]></artwork>
          <t>The same public and private keypair in JWK format:</t>
          <sourcecode type="json"><![CDATA[
{
  "kty": "OKP",
  "crv": "Ed25519",
  "kid": "test-key-ed25519",
  "d": "n4Ni-HpISpVObnQMW0wOhCKROaIKqKtW_2ZYb2p9KcU",
  "x": "JrQLj5P_89iXES9-vFgrIy29clF9CC_oPPsw3c5D0bs"
}
]]></sourcecode>
        </section>
        <section anchor="example-shared-secret">
          <name>Example Shared Secret</name>
          <t>The following shared secret is 64 randomly-generated bytes encoded in Base64,
referred to in this document as <tt>test-shared-secret</tt>.</t>
          <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

uzvJfB4u3N0Jy4T7NZ75MDVcr8zSTInedJtkgcu46YW4XByzNJjxBdtjUkdJPBt\
  bmHhIDi6pcl8jsasjlTMtDQ==
]]></artwork>
        </section>
      </section>
      <section anchor="test-cases">
        <name>Test Cases</name>
        <t>This section provides non-normative examples that may be used as test cases to validate implementation correctness. These examples are based on the following HTTP messages:</t>
        <t>For requests, this <tt>test-request</tt> message is used:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

POST /foo?param=Value&Pet=dog HTTP/1.1
Host: example.com
Date: Tue, 20 Apr 2021 02:07:55 GMT
Content-Type: application/json
Content-Digest: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+T\
  aPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
Content-Length: 18

{"hello": "world"}
]]></sourcecode>
        <t>For responses, this <tt>test-response</tt> message is used:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

HTTP/1.1 200 OK
Date: Tue, 20 Apr 2021 02:07:56 GMT
Content-Type: application/json
Content-Digest: sha-512=:JlEy2bfUz7WrWIjc1qV6KVLpdr/7L5/L4h7Sxvh6sN\
  HpDQWDCL+GauFQWcZBvVDhiyOnAQsxzZFYwi0wDH+1pw==:
Content-Length: 23

{"message": "good dog"}
]]></sourcecode>
        <section anchor="minimal-signature-using-rsa-pss-sha512">
          <name>Minimal Signature Using rsa-pss-sha512</name>
          <t>This example presents a minimal signature using the <tt>rsa-pss-sha512</tt> algorithm over <tt>test-request</tt>, covering none
of the components of the HTTP message, but providing a timestamped signature proof of possession of the key with a signer-provided nonce.</t>
          <t>The corresponding signature base is:</t>
          <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"@signature-params": ();created=1618884473;keyid="test-key-rsa-pss"\
  ;nonce="b3k2pp5k7z-50gnwp.yemd"
]]></artwork>
          <t>This results in the following Signature-Input and Signature header fields being added to the message under the signature label <tt>sig-b21</tt>:</t>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Signature-Input: sig-b21=();created=1618884473\
  ;keyid="test-key-rsa-pss";nonce="b3k2pp5k7z-50gnwp.yemd"
Signature: sig-b21=:d2pmTvmbncD3xQm8E9ZV2828BjQWGgiwAaw5bAkgibUopem\
  LJcWDy/lkbbHAve4cRAtx31Iq786U7it++wgGxbtRxf8Udx7zFZsckzXaJMkA7ChG\
  52eSkFxykJeNqsrWH5S+oxNFlD4dzVuwe8DhTSja8xxbR/Z2cOGdCbzR72rgFWhzx\
  2VjBqJzsPLMIQKhO4DGezXehhWwE56YCE+O6c0mKZsfxVrogUvA4HELjVKWmAvtl6\
  UnCh8jYzuVG5WSb/QEVPnP5TmcAnLH1g+s++v6d4s8m0gCw1fV5/SITLq9mhho8K3\
  +7EPYTU8IU1bLhdxO5Nyt8C8ssinQ98Xw9Q==:
]]></sourcecode>
          <t>Note that since the covered components list is empty, this signature could be applied by an attacker to an unrelated HTTP message. In this example, the <tt>nonce</tt> parameter is included to prevent the same signature from being replayed more than once, but if an attacker intercepts the signature and prevents its delivery to the verifier, the attacker could apply this signature to another message. Therefore, use of an empty covered components set is discouraged. See <xref target="security-coverage"/> for more discussion.</t>
          <t>Note that the RSA PSS algorithm in use here is non-deterministic, meaning a different signature value will be created every time the algorithm is run. The signature value provided here can be validated against the given keys, but newly-generated signature values are not expected to match the example. See <xref target="security-nondeterministic"/>.</t>
        </section>
        <section anchor="selective-covered-components-using-rsa-pss-sha512">
          <name>Selective Covered Components using rsa-pss-sha512</name>
          <t>This example covers additional components (the authority, the Content-Digest header field, and a single named query parameter) in <tt>test-request</tt> using the <tt>rsa-pss-sha512</tt> algorithm. This example also adds a <tt>tag</tt> parameter with the application-specific value of <tt>header-example</tt>.</t>
          <t>The corresponding signature base is:</t>
          <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"@authority": example.com
"content-digest": sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX\
  +TaPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
"@query-param";name="Pet": dog
"@signature-params": ("@authority" "content-digest" \
  "@query-param";name="Pet")\
  ;created=1618884473;keyid="test-key-rsa-pss"\
  ;tag="header-example"
]]></artwork>
          <t>This results in the following Signature-Input and Signature header fields being added to the message under the label <tt>sig-b22</tt>:</t>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Signature-Input: sig-b22=("@authority" "content-digest" \
  "@query-param";name="Pet");created=1618884473\
  ;keyid="test-key-rsa-pss";tag="header-example"
Signature: sig-b22=:LjbtqUbfmvjj5C5kr1Ugj4PmLYvx9wVjZvD9GsTT4F7GrcQ\
  EdJzgI9qHxICagShLRiLMlAJjtq6N4CDfKtjvuJyE5qH7KT8UCMkSowOB4+ECxCmT\
  8rtAmj/0PIXxi0A0nxKyB09RNrCQibbUjsLS/2YyFYXEu4TRJQzRw1rLEuEfY17SA\
  RYhpTlaqwZVtR8NV7+4UKkjqpcAoFqWFQh62s7Cl+H2fjBSpqfZUJcsIk4N6wiKYd\
  4je2U/lankenQ99PZfB4jY3I5rSV2DSBVkSFsURIjYErOs0tFTQosMTAoxk//0RoK\
  UqiYY8Bh0aaUEb0rQl3/XaVe4bXTugEjHSw==:
]]></sourcecode>
          <t>Note that the RSA PSS algorithm in use here is non-deterministic, meaning a different signature value will be created every time the algorithm is run. The signature value provided here can be validated against the given keys, but newly-generated signature values are not expected to match the example. See <xref target="security-nondeterministic"/>.</t>
        </section>
        <section anchor="full-coverage-using-rsa-pss-sha512">
          <name>Full Coverage using rsa-pss-sha512</name>
          <t>This example covers all applicable message components in <tt>test-request</tt> (including the content type and length) plus many derived components, again using the <tt>rsa-pss-sha512</tt> algorithm. Note that the <tt>Host</tt> header field is not covered because the <tt>@authority</tt> derived component is included instead.</t>
          <t>The corresponding signature base is:</t>
          <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"date": Tue, 20 Apr 2021 02:07:55 GMT
"@method": POST
"@path": /foo
"@query": ?param=Value&Pet=dog
"@authority": example.com
"content-type": application/json
"content-digest": sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX\
  +TaPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
"content-length": 18
"@signature-params": ("date" "@method" "@path" "@query" \
  "@authority" "content-type" "content-digest" "content-length")\
  ;created=1618884473;keyid="test-key-rsa-pss"
]]></artwork>
          <t>This results in the following Signature-Input and Signature header fields being added to the message under the label <tt>sig-b23</tt>:</t>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Signature-Input: sig-b23=("date" "@method" "@path" "@query" \
  "@authority" "content-type" "content-digest" "content-length")\
  ;created=1618884473;keyid="test-key-rsa-pss"
Signature: sig-b23=:bbN8oArOxYoyylQQUU6QYwrTuaxLwjAC9fbY2F6SVWvh0yB\
  iMIRGOnMYwZ/5MR6fb0Kh1rIRASVxFkeGt683+qRpRRU5p2voTp768ZrCUb38K0fU\
  xN0O0iC59DzYx8DFll5GmydPxSmme9v6ULbMFkl+V5B1TP/yPViV7KsLNmvKiLJH1\
  pFkh/aYA2HXXZzNBXmIkoQoLd7YfW91kE9o/CCoC1xMy7JA1ipwvKvfrs65ldmlu9\
  bpG6A9BmzhuzF8Eim5f8ui9eH8LZH896+QIF61ka39VBrohr9iyMUJpvRX2Zbhl5Z\
  JzSRxpJyoEZAFL2FUo5fTIztsDZKEgM4cUA==:
]]></sourcecode>
          <t>Note in this example that the value of the <tt>Date</tt> header and the value of the <tt>created</tt> signature parameter need not be the same. This is due to the fact that the <tt>Date</tt> header is added when creating the HTTP Message and the <tt>created</tt> parameter is populated when creating the signature over that message, and these two times could vary. If the <tt>Date</tt> header is covered by the signature, it is up to the verifier to determine whether its value has to match that of the <tt>created</tt> parameter or not. See <xref target="security-not-fields"/> for more discussion.</t>
          <t>Note that the RSA PSS algorithm in use here is non-deterministic, meaning a different signature value will be created every time the algorithm is run. The signature value provided here can be validated against the given keys, but newly-generated signature values are not expected to match the example. See <xref target="security-nondeterministic"/>.</t>
        </section>
        <section anchor="signing-a-response-using-ecdsa-p256-sha256">
          <name>Signing a Response using ecdsa-p256-sha256</name>
          <t>This example covers portions of the <tt>test-response</tt> response message using the <tt>ecdsa-p256-sha256</tt> algorithm
and the key <tt>test-key-ecc-p256</tt>.</t>
          <t>The corresponding signature base is:</t>
          <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"@status": 200
"content-type": application/json
"content-digest": sha-512=:mEWXIS7MaLRuGgxOBdODa3xqM1XdEvxoYhvlCFJ4\
  1QJgJc4GTsPp29l5oGX69wWdXymyU0rjJuahq4l5aGgfLQ==:
"content-length": 23
"@signature-params": ("@status" "content-type" "content-digest" \
  "content-length");created=1618884473;keyid="test-key-ecc-p256"
]]></artwork>
          <t>This results in the following Signature-Input and Signature header fields being added to the message under the label <tt>sig-b24</tt>:</t>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Signature-Input: sig-b24=("@status" "content-type" \
  "content-digest" "content-length");created=1618884473\
  ;keyid="test-key-ecc-p256"
Signature: sig-b24=:wNmSUAhwb5LxtOtOpNa6W5xj067m5hFrj0XQ4fvpaCLx0NK\
  ocgPquLgyahnzDnDAUy5eCdlYUEkLIj+32oiasw==:
]]></sourcecode>
          <t>Note that the ECDSA algorithm in use here is non-deterministic, meaning a different signature value will be created every time the algorithm is run. The signature value provided here can be validated against the given keys, but newly-generated signature values are not expected to match the example. See <xref target="security-nondeterministic"/>.</t>
        </section>
        <section anchor="signing-a-request-using-hmac-sha256">
          <name>Signing a Request using hmac-sha256</name>
          <t>This example covers portions of the <tt>test-request</tt> using the <tt>hmac-sha256</tt> algorithm and the
secret <tt>test-shared-secret</tt>.</t>
          <t>The corresponding signature base is:</t>
          <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"date": Tue, 20 Apr 2021 02:07:55 GMT
"@authority": example.com
"content-type": application/json
"@signature-params": ("date" "@authority" "content-type")\
  ;created=1618884473;keyid="test-shared-secret"
]]></artwork>
          <t>This results in the following Signature-Input and Signature header fields being added to the message under the label <tt>sig-b25</tt>:</t>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Signature-Input: sig-b25=("date" "@authority" "content-type")\
  ;created=1618884473;keyid="test-shared-secret"
Signature: sig-b25=:pxcQw6G3AjtMBQjwo8XzkZf/bws5LelbaMk5rGIGtE8=:
]]></sourcecode>
          <t>Before using symmetric signatures in practice, see the discussion of the security tradeoffs in <xref target="security-symmetric"/>.</t>
        </section>
        <section anchor="signing-a-request-using-ed25519">
          <name>Signing a Request using ed25519</name>
          <t>This example covers portions of the <tt>test-request</tt> using the <tt>ed25519</tt> algorithm
and the key <tt>test-key-ed25519</tt>.</t>
          <t>The corresponding signature base is:</t>
          <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"date": Tue, 20 Apr 2021 02:07:55 GMT
"@method": POST
"@path": /foo
"@authority": example.com
"content-type": application/json
"content-length": 18
"@signature-params": ("date" "@method" "@path" "@authority" \
  "content-type" "content-length");created=1618884473\
  ;keyid="test-key-ed25519"
]]></artwork>
          <t>This results in the following Signature-Input and Signature header fields being added to the message under the label <tt>sig-b26</tt>:</t>
          <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Signature-Input: sig-b26=("date" "@method" "@path" "@authority" \
  "content-type" "content-length");created=1618884473\
  ;keyid="test-key-ed25519"
Signature: sig-b26=:wqcAqbmYJ2ji2glfAMaRy4gruYYnx2nEFN2HN6jrnDnQCK1\
  u02Gb04v9EDgwUPiu4A0w6vuQv5lIp5WPpBKRCw==:
]]></sourcecode>
        </section>
      </section>
      <section anchor="tls-terminating-proxies">
        <name>TLS-Terminating Proxies</name>
        <t>In this example, there is a TLS-terminating reverse proxy sitting in front of the resource. The client does not sign the request but instead uses mutual TLS to make its call. The terminating proxy validates the TLS stream and injects a <tt>Client-Cert</tt> header according to <xref target="CLIENT-CERT"/>, and then applies a signature to this field. By signing this header field, a reverse proxy can not only attest to its own validation of the initial request's TLS parameters but also authenticate itself to the backend system independently of the client's actions.</t>
        <t>The client makes the following request to the TLS terminating proxy using mutual TLS:</t>
        <sourcecode type="http-message"><![CDATA[
POST /foo?param=Value&Pet=dog HTTP/1.1
Host: example.com
Date: Tue, 20 Apr 2021 02:07:55 GMT
Content-Type: application/json
Content-Length: 18

{"hello": "world"}
]]></sourcecode>
        <t>The proxy processes the TLS connection and extracts the client's TLS certificate to a <tt>Client-Cert</tt> header field and passes it along to the internal service hosted at <tt>service.internal.example</tt>. This results in the following unsigned request:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

POST /foo?param=Value&Pet=dog HTTP/1.1
Host: service.internal.example
Date: Tue, 20 Apr 2021 02:07:55 GMT
Content-Type: application/json
Content-Length: 18
Client-Cert: :MIIBqDCCAU6gAwIBAgIBBzAKBggqhkjOPQQDAjA6MRswGQYDVQQKD\
  BJMZXQncyBBdXRoZW50aWNhdGUxGzAZBgNVBAMMEkxBIEludGVybWVkaWF0ZSBDQT\
  AeFw0yMDAxMTQyMjU1MzNaFw0yMTAxMjMyMjU1MzNaMA0xCzAJBgNVBAMMAkJDMFk\
  wEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE8YnXXfaUgmnMtOXU/IncWalRhebrXmck\
  C8vdgJ1p5Be5F/3YC8OthxM4+k1M6aEAEFcGzkJiNy6J84y7uzo9M6NyMHAwCQYDV\
  R0TBAIwADAfBgNVHSMEGDAWgBRm3WjLa38lbEYCuiCPct0ZaSED2DAOBgNVHQ8BAf\
  8EBAMCBsAwEwYDVR0lBAwwCgYIKwYBBQUHAwIwHQYDVR0RAQH/BBMwEYEPYmRjQGV\
  4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIBHda/r1vaL6G3VliL4/Di6YK0Q6\
  bMjeSkC3dFCOOB8TAiEAx/kHSB4urmiZ0NX5r5XarmPk0wmuydBVoU4hBVZ1yhk=:

{"hello": "world"}
]]></sourcecode>
        <t>Without a signature, the internal service would need to trust that the incoming connection has the right information. By signing the <tt>Client-Cert</tt> header and other portions of the internal request, the internal service can be assured that the correct party, the trusted proxy, has processed the request and presented it to the correct service. The proxy's signature base consists of the following:</t>
        <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"@path": /foo
"@query": ?param=Value&Pet=dog
"@method": POST
"@authority": service.internal.example
"client-cert": :MIIBqDCCAU6gAwIBAgIBBzAKBggqhkjOPQQDAjA6MRswGQYDVQQ\
  KDBJMZXQncyBBdXRoZW50aWNhdGUxGzAZBgNVBAMMEkxBIEludGVybWVkaWF0ZSBD\
  QTAeFw0yMDAxMTQyMjU1MzNaFw0yMTAxMjMyMjU1MzNaMA0xCzAJBgNVBAMMAkJDM\
  FkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE8YnXXfaUgmnMtOXU/IncWalRhebrXm\
  ckC8vdgJ1p5Be5F/3YC8OthxM4+k1M6aEAEFcGzkJiNy6J84y7uzo9M6NyMHAwCQY\
  DVR0TBAIwADAfBgNVHSMEGDAWgBRm3WjLa38lbEYCuiCPct0ZaSED2DAOBgNVHQ8B\
  Af8EBAMCBsAwEwYDVR0lBAwwCgYIKwYBBQUHAwIwHQYDVR0RAQH/BBMwEYEPYmRjQ\
  GV4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIBHda/r1vaL6G3VliL4/Di6YK0\
  Q6bMjeSkC3dFCOOB8TAiEAx/kHSB4urmiZ0NX5r5XarmPk0wmuydBVoU4hBVZ1yhk=:
"@signature-params": ("@path" "@query" "@method" "@authority" \
  "client-cert");created=1618884473;keyid="test-key-ecc-p256"
]]></artwork>
        <t>This results in the following signature:</t>
        <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

xVMHVpawaAC/0SbHrKRs9i8I3eOs5RtTMGCWXm/9nvZzoHsIg6Mce9315T6xoklyy0y\
zhD9ah4JHRwMLOgmizw==
]]></artwork>
        <t>Which results in the following signed request sent from the proxy to the internal service with the proxy's signature under the label <tt>ttrp</tt>:</t>
        <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

POST /foo?param=Value&Pet=dog HTTP/1.1
Host: service.internal.example
Date: Tue, 20 Apr 2021 02:07:55 GMT
Content-Type: application/json
Content-Length: 18
Client-Cert: :MIIBqDCCAU6gAwIBAgIBBzAKBggqhkjOPQQDAjA6MRswGQYDVQQKD\
  BJMZXQncyBBdXRoZW50aWNhdGUxGzAZBgNVBAMMEkxBIEludGVybWVkaWF0ZSBDQT\
  AeFw0yMDAxMTQyMjU1MzNaFw0yMTAxMjMyMjU1MzNaMA0xCzAJBgNVBAMMAkJDMFk\
  wEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE8YnXXfaUgmnMtOXU/IncWalRhebrXmck\
  C8vdgJ1p5Be5F/3YC8OthxM4+k1M6aEAEFcGzkJiNy6J84y7uzo9M6NyMHAwCQYDV\
  R0TBAIwADAfBgNVHSMEGDAWgBRm3WjLa38lbEYCuiCPct0ZaSED2DAOBgNVHQ8BAf\
  8EBAMCBsAwEwYDVR0lBAwwCgYIKwYBBQUHAwIwHQYDVR0RAQH/BBMwEYEPYmRjQGV\
  4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIBHda/r1vaL6G3VliL4/Di6YK0Q6\
  bMjeSkC3dFCOOB8TAiEAx/kHSB4urmiZ0NX5r5XarmPk0wmuydBVoU4hBVZ1yhk=:
Signature-Input: ttrp=("@path" "@query" "@method" "@authority" \
  "client-cert");created=1618884473;keyid="test-key-ecc-p256"
Signature: ttrp=:xVMHVpawaAC/0SbHrKRs9i8I3eOs5RtTMGCWXm/9nvZzoHsIg6\
  Mce9315T6xoklyy0yzhD9ah4JHRwMLOgmizw==:

{"hello": "world"}
]]></artwork>
        <t>The internal service can validate the proxy's signature and therefore be able to trust that the client's certificate has been appropriately processed.</t>
      </section>
      <section anchor="example-transform">
        <name>HTTP Message Transformations</name>
        <t>The HTTP protocol allows intermediaries and applications to transform an HTTP message without affecting the semantics of the message itself. HTTP message signatures are designed to be robust against many of these transformations in different circumstances.</t>
        <t>For example, the following HTTP request message has been signed using the <tt>ed25519</tt> algorithm
and the key <tt>test-key-ed25519</tt>.</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

GET /demo?name1=Value1&Name2=value2 HTTP/1.1
Host: example.org
Date: Fri, 15 Jul 2022 14:24:55 GMT
Accept: application/json
Accept: */*
Signature-Input: transform=("@method" "@path" "@authority" \
  "accept");created=1618884473;keyid="test-key-ed25519"
Signature: transform=:ZT1kooQsEHpZ0I1IjCqtQppOmIqlJPeo7DHR3SoMn0s5J\
  Z1eRGS0A+vyYP9t/LXlh5QMFFQ6cpLt2m0pmj3NDA==:
]]></sourcecode>
        <t>The signature base string for this message is:</t>
        <artwork><![CDATA[
"@method": GET
"@path": /demo
"@authority": example.org
"accept": application/json, */*
"@signature-params": ("@method" "@path" "@authority" "accept")\
  ;created=1618884473;keyid="test-key-ed25519"
]]></artwork>
        <t>The following message has been altered by adding the Accept-Language header as well as adding a query parameter. However, since neither the Accept-Language header nor the query are covered by the signature, the same signature is still valid:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

GET /demo?name1=Value1&Name2=value2&param=added HTTP/1.1
Host: example.org
Date: Fri, 15 Jul 2022 14:24:55 GMT
Accept: application/json
Accept: */*
Accept-Language: en-US,en;q=0.5
Signature-Input: transform=("@method" "@path" "@authority" \
  "accept");created=1618884473;keyid="test-key-ed25519"
Signature: transform=:ZT1kooQsEHpZ0I1IjCqtQppOmIqlJPeo7DHR3SoMn0s5J\
  Z1eRGS0A+vyYP9t/LXlh5QMFFQ6cpLt2m0pmj3NDA==:
]]></sourcecode>
        <t>The following message has been altered by removing the Date header, adding a Referer header, and collapsing the Accept header into a single line. The Date and Referrer headers are not covered by the signature, and the collapsing of the Accept header is an allowed transformation that is already accounted for by the canonicalization algorithm for HTTP field values. The same signature is still valid:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

GET /demo?name1=Value1&Name2=value2 HTTP/1.1
Host: example.org
Referer: https://developer.example.org/demo
Accept: application/json, */*
Signature-Input: transform=("@method" "@path" "@authority" \
  "accept");created=1618884473;keyid="test-key-ed25519"
Signature: transform=:ZT1kooQsEHpZ0I1IjCqtQppOmIqlJPeo7DHR3SoMn0s5J\
  Z1eRGS0A+vyYP9t/LXlh5QMFFQ6cpLt2m0pmj3NDA==:
]]></sourcecode>
        <t>The following message has been altered by re-ordering the field values of the original message, but not re-ordering the individual Accept headers. The same signature is still valid:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

GET /demo?name1=Value1&Name2=value2 HTTP/1.1
Accept: application/json
Accept: */*
Date: Fri, 15 Jul 2022 14:24:55 GMT
Host: example.org
Signature-Input: transform=("@method" "@path" "@authority" \
  "accept");created=1618884473;keyid="test-key-ed25519"
Signature: transform=:ZT1kooQsEHpZ0I1IjCqtQppOmIqlJPeo7DHR3SoMn0s5J\
  Z1eRGS0A+vyYP9t/LXlh5QMFFQ6cpLt2m0pmj3NDA==:
]]></sourcecode>
        <t>The following message has been altered by changing the method to POST and the authority to "example.com" (inside the Host header). Since both the method and authority are covered by the signature, the same signature is NOT still valid:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

POST /demo?name1=Value1&Name2=value2 HTTP/1.1
Host: example.com
Date: Fri, 15 Jul 2022 14:24:55 GMT
Accept: application/json
Accept: */*
Signature-Input: transform=("@method" "@path" "@authority" \
  "accept");created=1618884473;keyid="test-key-ed25519"
Signature: transform=:ZT1kooQsEHpZ0I1IjCqtQppOmIqlJPeo7DHR3SoMn0s5J\
  Z1eRGS0A+vyYP9t/LXlh5QMFFQ6cpLt2m0pmj3NDA==:
]]></sourcecode>
        <t>The following message has been altered by changing the order of the two instances of the Accept header. Since the order of fields with the same name is semantically significant in HTTP, this changes the value used in the signature base, and the same signature is NOT still valid:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

GET /demo?name1=Value1&Name2=value2 HTTP/1.1
Host: example.org
Date: Fri, 15 Jul 2022 14:24:55 GMT
Accept: */*
Accept: application/json
Signature-Input: transform=("@method" "@path" "@authority" \
  "accept");created=1618884473;keyid="test-key-ed25519"
Signature: transform=:ZT1kooQsEHpZ0I1IjCqtQppOmIqlJPeo7DHR3SoMn0s5J\
  Z1eRGS0A+vyYP9t/LXlh5QMFFQ6cpLt2m0pmj3NDA==:
]]></sourcecode>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>This specification was initially based on the <xref target="I-D.cavage-http-signatures"/> internet draft. The editors would like to thank the authors of that draft, Mark Cavage and Manu Sporny, for their work on that draft and their continuing contributions. The specification also includes contributions from the <xref target="I-D.ietf-oauth-signed-http-request"/> internet draft and other similar efforts.</t>
      <t>The editors would also like to thank the following individuals for feedback, insight, and implementation of this draft and its predecessors (in alphabetical order):
Mark Adamcin,
Mark Allen,
Paul Annesley,
<contact fullname="Karl Böhlmark"/>,
<contact fullname="Stéphane Bortzmeyer"/>,
Sarven Capadisli,
Liam Dennehy,
Stephen Farrell,
Phillip Hallam-Baker,
Tyler Ham,
Eric Holmes,
Andrey Kislyuk,
Adam Knight,
Dave Lehn,
Dave Longley,
Ilari Liusvaara,
James H. Manger,
Kathleen Moriarty,
Mark Nottingham,
Yoav Nir,
Adrian Palmer,
Lucas Pardue,
Roberto Polli,
Julian Reschke,
Michael Richardson,
Wojciech Rygielski,
Rich Salz,
Adam Scarr,
Cory J. Slep,
Dirk Stein,
Henry Story,
Lukasz Szewc,
Chris Webber, and
Jeffrey Yasskin.</t>
    </section>
    <section numbered="false" anchor="document-history">
      <name>Document History</name>
      <t><em>RFC EDITOR: please remove this section before publication</em></t>
      <ul spacing="normal">
        <li>
          <t>draft-ietf-httpbis-message-signatures  </t>
          <ul spacing="normal">
            <li>
              <t>-17
              </t>
              <ul spacing="normal">
                <li>Change encoding</li>
                <li>Remove sign-the-signature examples and add explanations of why not to do that.</li>
                <li>Query parameter values must be re-encoded for safety.</li>
                <li>Query parameters now carry a warning of limitations.</li>
                <li>Address field value encodings.</li>
                <li>Discuss history and positioning of this specification.</li>
                <li>Import obs-fold, reference US-ASCII, enforce ASCII-ness of Signature Base</li>
              </ul>
            </li>
            <li>
              <t>-16
              </t>
              <ul spacing="normal">
                <li>Editorial cleanup from AD review.</li>
                <li>Clarified dependency on structured field serialization rules.</li>
                <li>Define use of all parameters in Accept-Signature.</li>
                <li>Update example signature calculations.</li>
                <li>Clarify how combined fields are handled.</li>
                <li>Add more detailed instructions for IANA DE's.</li>
                <li>Fix some references and anchors.</li>
              </ul>
            </li>
            <li>
              <t>-15
              </t>
              <ul spacing="normal">
                <li>Editorial cleanup.</li>
                <li>Defined "signature context".</li>
              </ul>
            </li>
            <li>
              <t>-14
              </t>
              <ul spacing="normal">
                <li>Target raw non-decoded values for "@query" and "@path".</li>
                <li>Add method for signing trailers.</li>
                <li>Call out potential issues of list-based field values.</li>
                <li>Update IANA registry for header fields.</li>
                <li>Call out potential issues with Content-Digest in example.</li>
                <li>Add JWK formats for all keys.</li>
              </ul>
            </li>
            <li>
              <t>-13
              </t>
              <ul spacing="normal">
                <li>Renamed "context" parameter to "tag".</li>
                <li>Added discussion on messages with multiple known contexts.</li>
              </ul>
            </li>
            <li>
              <t>-12
              </t>
              <ul spacing="normal">
                <li>Added "context" parameter.</li>
                <li>Added set of safe transformation examples.</li>
                <li>Added ECDSA over P-384.</li>
                <li>Expanded definiton of message component source context.</li>
                <li>Sorted security considerations into categories.</li>
              </ul>
            </li>
            <li>
              <t>-11
              </t>
              <ul spacing="normal">
                <li>Added ABNF references, coalesced ABNF rules.</li>
                <li>Editorial and formatting fixes.</li>
                <li>Update examples.</li>
                <li>Added Byte Sequence field value wrapping.</li>
              </ul>
            </li>
            <li>
              <t>-10
              </t>
              <ul spacing="normal">
                <li>Removed "related response" and "@request-response" in favor of generic "req" parameter.</li>
                <li>Editorial fixes to comply with HTTP extension style guidelines.</li>
                <li>Add security consideration on message content.</li>
              </ul>
            </li>
            <li>
              <t>-09
              </t>
              <ul spacing="normal">
                <li>Explained key formats better.</li>
                <li>Removed "host" and "date" from most examples.</li>
                <li>Fixed query component  generation.</li>
                <li>Renamed "signature input" and "signature input string" to "signature base".</li>
                <li>Added consideration for semantically equivalent field values.</li>
              </ul>
            </li>
            <li>
              <t>-08
              </t>
              <ul spacing="normal">
                <li>Editorial fixes.</li>
                <li>Changed "specialty component" to "derived component".</li>
                <li>Expanded signature input generation and ABNF rules.</li>
                <li>Added Ed25519 algorithm.</li>
                <li>Clarified encoding of ECDSA signature.</li>
                <li>Clarified use of non-deterministic algorithms.</li>
              </ul>
            </li>
            <li>
              <t>-07
              </t>
              <ul spacing="normal">
                <li>Added security and privacy considerations.</li>
                <li>Added pointers to algorithm values from definition sections.</li>
                <li>Expanded IANA registry sections.</li>
                <li>Clarified that the signing and verification algorithms take application requirements as inputs.</li>
                <li>Defined "signature targets" of request, response, and related-response for specialty components.</li>
              </ul>
            </li>
            <li>
              <t>-06
              </t>
              <ul spacing="normal">
                <li>Updated language for message components, including identifiers and values.</li>
                <li>Clarified that Signature-Input and Signature are fields which can be used as headers or trailers.</li>
                <li>Add "Accept-Signature" field and semantics for signature negotiation.</li>
                <li>Define new specialty content identifiers, re-defined request-target identifier.</li>
                <li>Added request-response binding.</li>
              </ul>
            </li>
            <li>
              <t>-05
              </t>
              <ul spacing="normal">
                <li>Remove list prefixes.</li>
                <li>Clarify signature algorithm parameters.</li>
                <li>Update and fix examples.</li>
                <li>Add examples for ECC and HMAC.</li>
              </ul>
            </li>
            <li>
              <t>-04
              </t>
              <ul spacing="normal">
                <li>Moved signature component definitions up to intro.</li>
                <li>Created formal function definitions for algorithms to fulfill.</li>
                <li>Updated all examples.</li>
                <li>Added nonce parameter field.</li>
              </ul>
            </li>
            <li>
              <t>-03
              </t>
              <ul spacing="normal">
                <li>Clarified signing and verification processes.</li>
                <li>Updated algorithm and key selection method.</li>
                <li>Clearly defined core algorithm set.</li>
                <li>Defined JOSE signature mapping process.</li>
                <li>Removed legacy signature methods.</li>
                <li>Define signature parameters separately from "signature" object model.</li>
                <li>Define serialization values for signature-input header based on signature input.</li>
              </ul>
            </li>
            <li>
              <t>-02
              </t>
              <ul spacing="normal">
                <li>Removed editorial comments on document sources.</li>
                <li>Removed in-document issues list in favor of tracked issues.</li>
                <li>Replaced unstructured <tt>Signature</tt> header with <tt>Signature-Input</tt> and <tt>Signature</tt> Dictionary Structured Header Fields.</li>
                <li>Defined content identifiers for individual Dictionary members, e.g., <tt>"x-dictionary-field";key=member-name</tt>.</li>
                <li>Defined content identifiers for first N members of a List, e.g., <tt>"x-list-field":prefix=4</tt>.</li>
                <li>Fixed up examples.</li>
                <li>Updated introduction now that it's adopted.</li>
                <li>Defined specialty content identifiers and a means to extend them.</li>
                <li>Required signature parameters to be included in signature.</li>
                <li>Added guidance on backwards compatibility, detection, and use of signature methods.</li>
              </ul>
            </li>
            <li>
              <t>-01
              </t>
              <ul spacing="normal">
                <li>Strengthened requirement for content identifiers for header fields to be lower-case (changed from <bcp14>SHOULD</bcp14> to <bcp14>MUST</bcp14>).</li>
                <li>Added real example values for Creation Time and Expiration Time.</li>
                <li>Minor editorial corrections and readability improvements.</li>
              </ul>
            </li>
            <li>
              <t>-00
              </t>
              <ul spacing="normal">
                <li>Initialized from draft-richanna-http-message-signatures-00, following adoption by the working group.</li>
              </ul>
            </li>
          </ul>
        </li>
        <li>
          <t>draft-richanna-http-message-signatures  </t>
          <ul spacing="normal">
            <li>
              <t>-00
              </t>
              <ul spacing="normal">
                <li>Converted to xml2rfc v3 and reformatted to comply with RFC style guides.</li>
                <li>Removed Signature auth-scheme definition and related content.</li>
                <li>Removed conflicting normative requirements for use of algorithm parameter. Now <bcp14>MUST NOT</bcp14> be relied upon.</li>
                <li>Removed Extensions appendix.</li>
                <li>Rewrote abstract and introduction to explain context and need, and challenges inherent in signing HTTP messages.</li>
                <li>Rewrote and heavily expanded algorithm definition, retaining normative requirements.</li>
                <li>Added definitions for key terms, referenced RFC 7230 for HTTP terms.</li>
                <li>Added examples for canonicalization and signature generation steps.</li>
                <li>Rewrote Signature header definition, retaining normative requirements.</li>
                <li>Added default values for algorithm and expires parameters.</li>
                <li>Rewrote HTTP Signature Algorithms registry definition. Added change control policy and registry template. Removed suggested URI.</li>
                <li>Added IANA HTTP Signature Parameter registry.</li>
                <li>Added additional normative and informative references.</li>
                <li>Added Topics for Working Group Discussion section, to be removed prior to publication as an RFC.</li>
              </ul>
            </li>
          </ul>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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
HfeZy7hCJJCb/JqiUc400eVkb6vwTPh0SHgt8xj4Hcms3kFLJrRiFj0SU7gH
Gll2sXQbdXg3uqpXCPt5doOpQVgDBkkiGjWxT18a56nIW7FY/bEEXJ6N1Goo
Nwvh8+tXRDVqlkomvtO9nePDw72j3b1dYz0M786WXbIhZtJTkjRrFqgcXWdp
16ZI3HAvHcZdWDPukCpk5elolOhWRqYhzKHi68HZdfaeXS5bU6oq+TBAxszE
Z+NxJ88KpgsWpBQBZjGNTYQZxF1Zwz05g80Y7scHXIxThXLdHuRhwvsnk/c4
eopqXwtlEARujxX6lnhlxggIe38YJVfVV04Wb169Kb6cv/6YpWur4+5xOen2
Ng/Oz3pHV5NH+drKx2f7HzfffRifrI5f3txOXmRIqpdOW8/TR9ne/tL++N36
8fJm91G/fXtz8zTOlp5uX8bd9OP5o8fHCyeT5Ev/bPh5+/jtyfnt5rP+BLaz
kz7/goPsbDz+PGi9/ng9XtrZn+yPz1sfu8/ilc+v3r/vHw0ej97GL/bj/uv0
5fnwTfy5d7b6agIayrtJNvlwvrH6sbWBg1xO4vx2Oz0/2Hw8OHn35tHx28P1
1UfP3z59PhjuFa1H/bPkoNh7na2sn60c7feWd8Yfz7dPT15frq3kaxungxEO
8uHRi83k5enyzu76wYvX13FnuLa9enC79vTN9ttnn/uT0caL94NHrYWd8xfp
ytLJ0ZuPp6c742Ln7enHxbUjmB8HeXq0fw1jtjYP3vWWe+9fvHyUTM5Xt9Nn
bw+vDzvHVH1FZ0x+jxb/70qF/1X0919AeauL8HLh5fdv1nq75ETqODn4s5bs
ir/Vt3nBUmdZFs0URHyOWgO1lXtVYpodi7g7BTUkG6Wq4TU/2MFqLnQFKtfX
rSRPJh2nRpnuhzaIJxr8QytRMK7nDpT4JRuXmfGT2H9cY2cxHqFPQDuLK691
4lHcRtRKE67DgV14sO8KFdq+nThLtYqIWL0HO/1UehMLrJGNBp5Eb5jahWrt
w0ERIJ2lHTQ7YJGk1LLVWM6W6yS3hv8JN5deUgU6j40UTT8ZO1hiB4vG5Orc
5Ca6el2az/J0zWjbOwfOjrcL27I5WAr5F+5ajbr137qim1Va7V9U5O0OGti9
K7pRAbdKgbcpFd2quljS6VC8WaCk27u1YjTpru/sD7efrb0e7k6e9z5nraOD
ne6jp29OVl+9P/yy/Hrxxbt+e2Fh9eDj6Atx4UefrpPlm9Wjg8nnZHt8+Pjj
2e67R8VR3P+yvbHXasXPd1e2Z5YwYxsLQSkVh+mLic/QDTHtW0gJTCvTVY4Z
tQgvkSdSczKvAQPiKlfv0B0hkbjhcOTFtxqCVzwUyyubZIX6MzCBt9LE5TaJ
qwPFaAp6fAc11n8QNfQxbOEBP1naXG4uNpebS8srP+MynljI+TPZ8p7gIRR/
odR/C5RKC5Y8uNkH44yi+uLkhoulKJAK9SeEGQDn0F3MqLr0wOqE66CexVUV
G+y57JPMJCRvWrhs+rTqaap8FEN9PHKAlQCFFsTYTDK4pqZ1FnG/0G3TWPwj
T05f9VNRTFSzajWhruGXw8PX8ZTt/6Rd/LAq8kwN0K9Hdf3YosXLoHrZNzJK
hxsty1pIWqo0AqbOO27/g+pl1SUmT/TlDnlMxROjW+k4xir7J3t9qZHgnOPX
aKVsWjIhKyzcErKrTOb6vOFqizC5xR52lQtnz4sNwEbJV09L2I/bm7Ve3ZK5
6qFd9S7Y2EOHQ6DCBJOAlpLEIBtPCgB41QTIvUI0+dstS00HMgU3UhcQf7hC
OZbiIkDGgwnEwaNCNUQ7cPzdWe9eHcBm96SfyVj+3ZrUT+1HH+xi31OANXdP
DvYHtLcPc5LIWmOYq2wshozmcz8DiD+Z89J652gEKSmpRlhbXWTSv42IUQ37
UkHX9wKp1vqHLyfvWt3tw+OTj0cL6y/f9d6dHx0v9B6/Xe88Hzx++u79m6uV
97sLvdO4u/p0Jz79cHvy6MXzRxvv3i8drD/a2Jn8Wnu0c7h2ubmcPr+8LU9P
vjw6/DhMj+P3g+6n3c7w1WZnZ/TuRT95Vxx3Po3enPZXN5/dpJM3ow9Liy+f
Xx7vJUtLxa+125Vny5e3BxutxY/D29dPH52M1zfebF6/BTL3+fh8+/9n702b
Gze2NOHv/BWK6oi5dktykRQ3VYdjmvu+LxJ5e6IKJEESXACS4CqX//ub5+QO
gCrZvnd67jvjju62RTKRyOWsz3lOvjk+NKrV0TR16BaOyVomPkyfwp10cZFJ
HTbbU9It2P8VKm+er/fJ1/jqtT2zUo26MTLSKSs6Kp23mek8aSSy9dnZtveH
2frtNJq+pt3cU60U7Z3NU//+cyvTOoX/K5RJNOqN1fPTue9+Ps0qp6t5PzyW
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
xw+XbtUZZ7bVnJmpNd1ppVrYherFzWu2fcoXk0NzM7nkep3WJb02y+n5cNhZ
9rrTz+3MefDy3Dw3CgtztXeeOoe1ZQ/CRjK+nI3moZVtfh5aq0P3VCs+xdbn
6NvuNZPrZeONUqfZ3xV763ot1lo3Rt14x4r2Y0a2cYnu+63OpFpe58Ot0LF6
Kcd696WyUdieUvf76SBh9ufNfSZ6McuRabdQsD/b9inedEaVfDlzP9gcq/ZT
LtufZEfdwrodanVfu7NMzuoXF+fmOZl4OXa77iySi40/n2pOJRI+l3PpdjpD
NyPfyAVuhW+rOuVBupfX9iq/S5cz6fSf268QbNhf2a8QbNhf2a8QbNhf2a8Q
bNhf2a8QbNhH9yvtkMUufq6Mjt2XqTMoja14InRazrPz1XL+tF41I9V988ne
TzcJez9PP7eed0ZreTlWnRej2oxMMu11PrLtvmw/T6r2ZDjPxV8u+VB2m7Y7
/ddidFuMvU1Xb9nhW3oRse4nT7Fawhk5JdfaVxNOY5K3SyfzOp29VWrx56eY
Od8ktqncS+h+E+m0k+Fr/xA7dibhYdfZ3+8itWLlVGyXOmYh/LKpZEal/eIt
biaeWrskWbR5+XzM7Gqpbt1Ih66d10P1vlK8jLblTW933yid8i8v2WP4uZvd
hfepp9TEbJfj8e7pbdNbnXeH7H0q3Yu+FU5WfbSqdkJtJ9Ftuftd+XAZvXQO
16j1Zpx7hXBmFu9GB+lLsnmfODydM2474taIvdKdvz61x+t8bRg33HK4EhoW
3pK1Sj47H67S7s7sVza71/xTrZU6DJ3ysl5OV63e5tlJbN3WepLK7mvl52wp
3B8fjXS0km3WQ5NsY5fqXofj3m5uv6wzz6PZJL35PCls02SMifW8iZ+G1VSp
cWnv71OF7lPbSTWeO5UUOfjxrHsO5d7qw1lnvkjP+sXzZv2yjC+2kW37LX1c
nMfN18LhUi0N3Hpr8RYpZw6F52FqeZrv5sNSbby5WsdIaHOuxNO18HZYCBeT
l1Rku1+nO/3OueSEh7N4dJU/R6aX7eW+8prvJBftzkt7ZcU/N9x+/nC6T3V6
oZ0d3SR2BzOee61d7dTTOLLruJPu1M5mz9VD9aV/nMd30dH4PGhmK9nDpnPe
2K3IU2T90hnOlolkKPP5UomM0onXp2J+FnMbHbORPhjHSStvruedqO02wvNq
u5qxis6u9DKuRnbDU+byGn19Wo1budUp9Jy9n5CvjqbR1kvSKA5r2dIuabfG
m1luEL6WJi/L5uJ1lFp26stNujHofDZr7Wh+5nZq05fE89gOzZ5GuWSlG5md
i3bzybwUN6XmU2lUvE+kT8S5rQ4Hw0bJWDQK+XO856Yn7ZdcrbNdFa/jzOSy
GzmhVGSY3a131vQ8M5vx4WHdTJqHS+RSu+6MaMPNmsXndCrRXxbvDbNhv+bL
uVWklave549Wb1HuG6HP0TIRd5XqyzqSqe6j09glPeuER3Z+eOzsx2auPZz3
ypvmevaS+Fw8DsmXh/N8NVsoFXaVdC9dDJUvpf2OjNm0uufXabS4GQyG1/xm
MbLHk20qezHy9bZjni5kZcOuW68+nRN9N3c49U/DUyEa3YR2sMK5ePGc7765
hdb1qWiE66fRlkicRL7Srs1de3/ot0aX+7dofhu9hC+TuLO3zUx8VrwWIq3Q
y6F1PyvG24ncdvr2VOvMNvfVcyb7Uqi2l/PksXeZLM39IvOSH7Y2+Xp1eO5V
CvFWpvj8eTo9lWrtUL5tNrKpWak4j/Vf+6nNomR3M4enfDoS3rUrs07OjcTr
TymzGJ0Mz5lIa7TNlbqTnJ1Lh3/1qCSvymH2IM9ZBho1YNPoVhW1L5euY4eI
I5H/cve3//obRfSe9xTUCBSKd51C9i6VfI6GQr+F7u4+rQ7XT1/uPpF5fHrA
/7am8N+qLUQ/2MKf/4zUYELjv8ggHsHxNVBwPAYIDi43YJA/Kzs2Z/oiO3iR
U3c9f22PT6W3l82xnyl0Smlz2Vl8tY12Lzd4Ktql2HrSKR0LmcIo263Zqeil
3Y1+TV4KTZjDbmaMd7tIctWYnKqzt+npZVu8XCrRSbmW3oW3o24it9mP1qdM
P1ZeVaOjUtaYfH2dvQxGhcVja++WYJCveXuwym1nk2Hnq3WOFGLhbGQXP6c6
iZdMyTDPT930lk4Zt2ScWm/ilVF00Z8ea/busUkMkm4zZ760k/2dmzTNQ3S8
M4/pXPhrdOs8toqx3WLkOMnBuQBPy/Z7L+uKYT+fd9OLlW6tx/l2dZWdFjqT
sbEaLxvRXr2yrGdLL7X422x+2i02c/NaJfpmHjl3J+YzDJKsRL7WVyf7abZI
ZMc7+9wYJ8aDQu7Uq3SfrHjhrbOoWqfEvu8ON6lRelqIvXaM4aqwMo+l1jq5
n8Agj/tjv9dNL7OxonO6lC9OrlIww/vYalzYrKxRcx8Lm6nOaFhN9iLl6p7o
w9nlEk8v7XX1a3PU7GVxB8K15DnTGtdfHsuXTXtbyC635cfr0bGeCutR8alm
1Br7TP21Xfi6ro36uZKbTO6eZuniJfdyPm6ieJSqmdk0c+y3D8v17rxskyPR
ct1Vmy66CYsOBgk7Nhb8d2s1TndqzXP/a20y2revz5vNbNJy2uv0MXs1j5H2
s11KtoZde1zqFd421nEaK61T4/JrH573bIS/xlPjdc5prp9ak0PhcRzbp/OV
YX+bbeaO8Vbh2kgc84VhZ/44bJ+3y0x99bpK5cdPz5FoanJIwyCdTCxcu6Qm
Rm7RmfauRt6clotPk3butbtNr5/zzbfXFVmx2Hh0WaZL/efNqj6tnJuTeo69
2BSvsmE505G7f9laqVJhNpqZHTfV7H4N1+IXcv7WT8Pn8cEZzd2yuT9Ono+j
VOO1V55ejHoCJlGY2tdG/tocpiOD0nPskBt2Hi/5Q2S8jxynX6erlruuDb6m
jUlymswbw0lyMl2Nk072+ZBwt4vBPAyDTHf5cL+XWzfPmUtmWD8UN+1xxS28
Fbeb5dtgXt297CpPmedYck0s0uQh8VR6zZ+q2/0wyq7yFO/yOJx723br4/g2
Fp1O2vNmr5+q72PdRKWZX3T2X4fL/L6+2hqv/fzuNHpa5jPPpc5m0rHiMIni
4RBrZKxM3RomBs/jfcqIz5f5rZVuO+X+5MVZZeppMoJ53JNRE5VaZvo0NEaD
wbLcNQqb6QEFm32uFZz2JbtIfM1nI/vu9Xzez3Lb7rkZfe4+W6nXsWGwu2zD
lP+M08d8CFy4P+v3cTcCX/yWK/H1fdePeBJf0ZOAQf6k90ediUfiTOBhIg7F
Y5BD8VVxKB69DqDiT8AgHp/iK/MpPoV+p/pUjTig1u12MfLgDzhsXfe/J+gA
T/YEHlrZavffUt74w+wPxB+CYg/lZbqRma92i5VVfD6HM8SvLaTTTeLfptJq
bGIfO2w2T/to+GX6uTXenVoRNxq6bxNbenvsGIPUcBcLz5f9Tuoa7SwvRmK6
LUaLr6Vxa3aqu0Re3dcWkWIpFr9EU53zU+caf9ps7kNO+nV5bacSTTu3GsUb
qfVwPJ/nYk1i5NUT2/SptlqsnuNpe9rbW7NxudBq9FOtVr2ZbF73hXRpF5rn
3Dd72Spses1DNj9pREeRwvZlPlmcj8Naq3ZPLu1ufZhGIvZu92bdjyvPk1O3
ms4Np/10uhF/CfUPb9OtdU3Uxr1599JKOhOrH+vZ4Xm8nDByo0oynaq9OeFq
9zoaOulYKr7ZTZrh4iA9HZyf17tYyGj2nk+J6b09jo3txqo9WK1r7afZIH2q
bO4v01xz+1zLNrKNWGoQ3dq55qowSNz3n+1B3LlOEq/lUNQXnHgvMBEYlDjN
iZ+cS9f0jXTy83l3B59v5zJo4d3IEOzkX9nIEOzkX9nIEOzkX9nIEOzkX9nI
EOzkX9nIEOxkVI1atLP9TMra3q8qljUaVAup9G6W+Wz0W+FlL71rts1zNbKq
Vj5b7exrJrsLbcfOUyI8P00P4XgpPhh97uQGq/y8GV0lnwZdd3xc78y3qpvq
FNzoIb/p31eIX/VcN9uV1suklXgNGVXy7uWhG85HJy/zbaqYzs2djJtarzO7
cH/xGq7OZvN12TRXT3ZylCgeYsPC3Iz20pOX6Mu4EQu9zqrJ9XFbuDqJUun6
0rGGpXo93Wm/1ipmszvt2XGjnmmFW83YuH1dxZudS6/fNZsTq1XpF1aHdqi0
OhXH102yur/mZ+dSqrdyiWX2sni7thLhVu3p0n0uNJoVYuHfv70dzsPyazHX
Plbr0WLOLffMXCi6KUedktOqX4nlep6Wk5lzd/ASSW0ji/vlfDaJTdcm8R87
aaeYSTcHs6OVt5qTRXG+GMRPdrwR6uQa7iRdsLelZaQ9r+8Tn/vFcLzTm28m
tdnALUfKsXF3Nd6Xj4PqySoWZ0njsF51mulas/j50rmEcjVjOs/kzca1VIuv
3xLWom0UKrVBO3x86se6mUSyEh4eBs2nTmL9OikvM7nScZjqLoeVZNZKjBKh
0zE3cYz8kVioxOlcGPXLqTub9Cs45XrLzZZeD2bk+NJI74bGNPoyrS1buXX1
0K5UI1Mruwntd5tMdJ5q55+fF7lmqXxY5jL56fZayFSb5dZ9Yzs41KPV2qJj
LJeT2nNrkVruy7nEa39nrdrHgRWKVZ4Lg+gmFl2+1o+W0+tFnqxpulwz7OE8
lSP/frp+frJccrqajfDrUz89qO7n9bxthheV7apVCxWGu7l5OOVwytVaO1EZ
1cddM7xtlSurrrFpL1xzMa/FO248Yr3GNpG35L07LKQrs8Wp8dT+HGoWy6Vc
Z5soLev9yaW0LZ2T/ftupJfvXczWuVqza9VlYnFOLe3X6Gd71Jm/lN7mg8nw
3m25HZPsQqMymN1niV9xbR7e7NlrOLy9r7w0X6fdYWq+7nZLlXMnXXfm94tC
8SWSJuZT8pwKv2ZwxuVNJ9ToH+c7Yzs38ulUb1+4rCobe/46NNK7bTpskQOU
XJ2eurG2cWpl+sVDoVLKNPq1N+twna4ah8EoRMTWYj4hS/I87C16zme7Orlv
jnKj8XzWeHaTk3Yyfgm32tl0Mza7RFvPkfb9JveW6w96ZvEpvMmHDtHNUzc8
LZqxZMWqXKzZ4Ln1dG5kGvtRsVsuPG32zU5m0KCLXA63q3a0fEp2506s9/l1
2ciFpuvoatR73RXTq9S0udj2rfPn0rT+1Cy+jBelZbQxzb5l1lZz07q2D+l9
Mhkulnsvp3G6fF/uDK+FUDdZsFcJYp0OSu5leTBK18ixUiysjdFbtRNLFxtG
v9es1N1Ew5i+ZTfFVvrSaLeb2Z3TX9rEVwvtm8v98/kp9lxxnOLronkZH1N2
8/Kq6Kn/w6MVYEQpEYv44DFR7pbj17yRLbxuHmerSL4evZzTL+bKbA2y6etp
/9we99aFZnZ0Pjy/nJf95eJQ7RxdsCqteH/3WB6Ovh520ZdOPpZ2iWlZKOXr
h200ne/EnsqT0+a1tasWMk5/dRjkuslpb1Eu7V27Y0X6ySkMUtoNpmernq+b
8eWl2pjbbrW2JR58rHFdON1E03w5RroF5634XHm+tFdKmOL8eC5PzUjyJT4M
Z7eL7dNoFD7WU8TEjqRX+0G0XDWOu2HJyF3Svadovh6bWNF6Pd+J2mV4cD/v
xOZfY9H1S/ht6BwLhV2zcT6FH0vXpjtvbafdXbWTjb/U5nZ48GqMl0Zjck1U
F43Wq1kJp+eHHTobVu7cMivRr7WvZvXceGnHnjqzaTvT3x3T5+402c1vNu2U
O7B2mUQ0VVciFuv0rLybbbNDZzPoLmbpqn2eRde553L4XF2uSm72MMpas9gq
vT63d7uXROPxUK49jafNziM8ePAyC7cjo0w5d9g2nyP9fTG5NWz3um/lO+PG
vlNZt6xh/trqlVbZXsTOPa6jlnu0rsUauXJ2wanCILPMPB2rpsetyqhtHArl
wXPWfopVuiV724g/Rs3F3ixmhqXD6lwqHNabN7PwdD3Gx7vOZNdcXFLrFcat
Npm3XDrfL1yvr8uV3Y8/vizTvefc27EYrm+bvdWkH8nbS7u8vA4yo1o/E69d
Nqnt8bpLLUqpzFf0t+K1RvYx4kxSy8dD7vqc6p86vZ41PI1Obio5KWYLl3m4
Zi0bi3kym3+aP2+tBlnR3Ft9nn6ul7rNMwwyya8Hh1l1Opw5sdJTszR6dbub
/HsRi2WHGCFD6+uhml0uWs9mPdyIvhqddcN0htneJZworru1XGoafpvERqNj
3mwNI+FavfiCJygx/FrJhrOn06k9XDSMZze9jC0Ky/Kg5r6Yve16MOibb8Vm
xJnVXmKr4ctga9e3pXl6GNl26rHV9Q0GcSLbp3p1OEzl8pEM2Y3dotucLaZF
N9E8PeVmy/DGmo/MfLJwTF4nycJEDVM4h5yzXl0OlWR3lZpvOpXdKFu8JIrp
07r4Zr9UZtb4lbjJl3k/vX4spp6muVRsOJ80ijY+2axfOm95czXLHXrx2qDe
aRViX9POceLuWrtS7tqczsaP0zU5ArNmZnBZJs6Pl0K8lA+vB19jlUeM0+3L
iafm9HnW69qx9TA+jVSW1+ygUp7YmXz6auUS+f5o3M8sok+n3FtnkldjE9Yo
H+kmslui4J127tJ0X4vtjWFmpgsnu1vlupVFPnfsfp3WFpldKlVoG+H+apKP
tE8YZqw+VaLtaGRgz3K7YuaS7JYii2ahuXycbN9i8VVjfcyknqJvh0vuZJfa
z+lyOrn4Whp+fRrkEsNWvdHBa9SIjWfdYffJGE9rnfAouXQ3ZbtYeX4Nf52l
ieV4WI3K81fTcOP5Qj9cV8IUitvwlft/jx/zGuDJ4Dk8BriAjx91HFD83PAC
f+A7PArfAeMz4D88+hzBj7sPMEiwL8g8iMcgD+JR9yBgEOFFPCruYDQ4TJHP
Zu9aj9F44q4H0Ah/tMKcTB635PPbkYoAdWyu19aWkgRNjvuTjFbItnj07/ho
GcIIBYQw7rQQBp/Ou9iJvxS7KKzO+fOwVHVG5bdlmLi2wzL7d+KETXLteTq/
Kw+Go0Etu2+NSsXSshVJZnsv4c/3uefaLHQO51fLXSF5ycQK1il9ebMmT+FD
vR4rFu4XnUTuskhGRvHwoFicrqerVe51lLV7Ddt5bf/668dc9Xw2wFsvTcAL
z5cL1fFi1hjNtjn3JfZ0H76vLPv75+r9uGceL872mIg/3S8yxmsxnXSIkZjN
7ordeuw5lD7nS06//cP3u/V6oT/2fkHv8JetPNV+y2epkJnsTxhUh4MWbNDx
I6VYFf3tsZCKrB9XxDhdzpK92KbRPYX38UMjkSxam+TeniXyhe1kmGN24AV+
FbxsXx8Dlo3+Cidan8TsxnOtl2tmFjOnb85TQ/P5xZwWOgt79DqqpCPR9jb8
NkoUwsE3eBqNxyPPN+8v/fjm9bWDL6u4p/kpAP9d9hEb7f2go+fG0p/884OO
WeecaQ9z1ejgnL7m05V9u7aMtz6nnq3XfPf5/lSY78vX6PNkXXjOZj87rZZ7
fprEc+Gx+8F757902Ri5dGnx2Ey2nC9X7nPD0yLRze8GvU08nCsc6jmnba16
Gyu7s/aD0/Pmpfi8m3Xtwj/T41HvQrPa0i4DOzI3roP6IX5kxxrWY2lb7m4H
zbHdrr+Ez81FttppGuXqrnp4+RodDcfR7XN10lduA1v/r2z9H/X1/6quf+C5
7i4MOF9dqA1SMXsu/v3Rxb/7jjX99I5+CgctEbvbk3VzNuvro+Raovhf5fRl
DNdMxB5CHzvX2hy+sbP5MR/z+HaqzDKx41MjXLnGesnGKBmv5waTfeqt2yvb
5rRyWM0nx1hi+BJ7zVzfGpXlJTM9LPuraaWVOYB+H29Ki3LOSmwn69TSNdzl
ulc/5EC8skWksiALnXNuwY1vgNlphbVxVesZETOJbXg09LOnxo/1i7RN1+Wo
Yw0iD8j0KedHl/ul1Yx8oTVTvCE5q4mmS87++E2l9IYZBtHrfWwnkIni88xx
/icC5H9FXqP/0TIPv06duaAbDwGf9Rf+Lr9MnE0oR17/y10PCsej4bv0dk/+
XzRyF45+CSe/xON3xXovpFJafFFL0j7j7eQf5yzy2mR4cqAe45Hor19eRrmW
MbA/J1/nJSN9TW03zjK9Kr44nUu0X8guCrFIOuqeXu97cBKM1uY+PT6n55kX
e1+2huv1MZlpNK6msZ4OaqfOOb/plV5eT5Wzef711y/isTXTnh8WX+4iqVDo
t08LogEcDAU4+/X00++SJJG37PZuBf3rP3AvBLl7NBy+a1Z/sMSJv7TElXX+
Gh3P+m/Jl/1LeTmJ7AaJ6qC2ne4/J2vxz7XYItm9EAnuNjCwss21X3LZ2n3R
OBbaL5NR5jTILaxr00633cvbqDA8W+FzrnQf2QYucfQJlpitBizy3HGAcXT+
SZF5dcu2NoZa0tLHmgyeKiRzJ1Nnd5kDtBnKHCtO2O8lCl3h59cH+abws6KS
16/Xg+zHTESEGRK8SQLBHljYPdariSk78IHM01R6PcM3oJRphnWAgOuWxCmC
ioJX7D+KmhobaJgFkn5PT99Ur5XDuheLcW1+8Mx9UrppoARwyfb89PN/0MKa
6a+RRCSVSsViyaf/ILOzpr/6Y4BwQP4D5/frp/HTKrrdxlfJt8d4eG6ft79c
zc30k4K8V7hCdSHorXcCPS+Pgk60zUo61eZC/BYesQunXo2wNsbmGjvCPo6j
kW9//oZ65vjljg35a+CK4cLcWrUfrZh4lHzIl2l0u+mdNmN7knu6tDep/PNo
EE1FU5ll+6U4t85p4xwfp1dza9x3tuYGnl+rTF5y18/r1XhcSp/M2KSTPlye
IuVdMpXoJ63D/f15XryMD53LLNWfXpJvhZE7Wb29GpX6Kp3MLooYUYua3VXh
cl1VzMbO3b+U4t1759IorHOx6dvgeDZTuUWvuzRSl8u483kUnTSL0+z4rZOM
7ueFl8XbBR3ywTKzq7y5rVq93K4umrFc0Xx7/f/au9LlxJVk/d9PofBEzMw5
NjZgwOAbjnvFDgZsVhvH/WEBAgRasBYWd/QDzQvcF5gXu5VZVVJJQLe73afP
iZjuP21AqiUrK7fK+lKdzx83pXRmWCid3WfGcePu2ZluB7Y166/lVLXUWAzu
Hg157eqYkNE3C/PsYvjmDSrpx+7osl0aPJgP6Z4xls1GNTE7c87O1plJyska
8Vlhk5gO0pfdWq/xmjPmcyt7h2tydl16GPb62Vo/MWrMJ9v7dGvnZgtZuGPR
zmWfNrk2CDHkWeGCh1Bvm975FuQBot2CWDJW7o7pCRGWi93g5UAXkWvwFGHA
M/GGfuQOKSsaGYg8ev3rBdlHhD/UODQk3RMrqORkugEkS6TqKd1CCKoE12vC
eO9UlrGb5HyUeI8QyilEwfmoRY7dUagouP2JBbEi993DUGkcjoQV4Q5RTAC9
E0uJcnhTBlMDfhsQ/NCKONTyBRwKy4NiFJMLYkarYXg7Wqbi82e8kYQkYLgV
1NkKFh/GzZNZAtXBLnLyknt7IJfneAuSKoPgFl4I1ZADEwIWJBUgAAAHpAPA
HSRX0B2Rnp4Z3I4UG/EVBQ6G3Z7yL06HaqPR+3xwi4guM9RgEN2CSNNB7QLx
XmEAosiNwih1o9cWfXjNLq2XSyzuAlu2QrBs3tdVPi6bE66o5L//TyQZL81C
GS5sBB2oNO4jOEEh3D2oMKzuErG/32NZMF+fDxtva5FBg6ny4iqzlygYWQQB
LChT5wMrvLAS36zJlz/EHvCJdxo2+E85UNwEyXj6HfY6Ct/et9rrpyKyHdGb
hGa3p8RDISMgFuQRC0achxQdugQDOdrsb6i3v9UAIit6expeH2b2/Gy7J2Tt
JMHa+cHmTvL2Q+T9ZkvpIGn37CPCh43FyH3tj6bGerFIF9JLO9GfLVIPRmO4
3uY2g8XzupirOL1eqnxdscdt6LU0qb/NarnX6rZWUGbdeaOjNZq6XF+4r5lW
qlCc3rmLtVffldKv1eu7XrZfaC671uY+nzorFbYFAz3QrO3KxuIy/lB72mpx
OW5u73b5eK7TsgttbTTqL5xG9zI53JWHTyUv1evU22+dTcJulLzSdJi47tJ0
4+F81dOV183zwO1kW4Prs1T/brl4XY1lq/z6WG7PM0nnuqCfVZPTRb67ep0+
9+tjp7ZMtTIb7W6IJ+CphZrsX+qKuVSJKZN7eJ7mU4vhVS1tdwfJYjc/WHbL
Tr9TWwxL9r0Td8u9tuU0e7K1XV5exjv0KLf/qg2H2fw8rij90ihut/Wryydl
oKZGTz1vVlpUu5sD9tEvFfnjVGTZI/MtMPPkW3RiUOl0pB+skLevyv4ZxiPj
0GUuwJCCLNLRh/9NWumeQ8FP9muUnVPqvVMthnnmYOk8Xn2AgSupAfDPVwq1
iVYwLCdp9Y/QksAyp18Lf53+D9HucwvCxxBmI59XijsnnyDextUa+Xgo9PYe
RQxLdHog6PPnaWreMeWZU4ytHdHPSEHJJ5HEiMP1Blcih9QMzntf60R7/2Y9
/qdEKULa+urHxyaubv+atN7T31e3N6NRK2vJ9v12aO12ervd72faw43d85Rt
Y7OQC7npaJgsZ7qDx/U8vstj3liz1qncm83h5vky3exkpqP43Txh1zpyd7At
L9WKm8lenb12Vp1OP71Krq3e6jqTfbYL/dFV9i4+xetC21b8Pq4V0rni23Cb
LZZ1PV0xdpOHbdcw1Nw602+MmuWlfjZI5xO9h8vdw0AbXN85jZaxvtMa9Sqm
PqzKy/mlMpST1aen57dW/smoLa221ZhcD6ePucSylLMuCwWrkNg2d9d1OaGt
Nuu79dR2Mml9Yuge3vsarSoZOZc33ubeWzlb0oz0NOtpObWabTxXs7nMWbtW
ziSWylVukLetuZ3Tds1+fbXuPCWfR3M9/QyN1N+6ne2qvrNKz3K5kSz3rfS0
V3tzneLzXWnWTI37clh/a+EIQyCbQwCULxCP9gX1QYzKF8YBL2K80/dyEDOO
4aPysEQAVD/xfHy8qRJgJ0X79YuKI2Cpj+TjR2M5nBAfXzCkUKhkZWFp3YPt
CIU01hxr1Q/ysnYdWv6HFoCjgYw1oJZy9Ka9QR8DCuTFBLzVHjogw5EC8wBR
4DEc4kNx8/JA3MxQ3P1VCKZsAdyYe8ACcf1CJr+CID8zCMKgkRWpww6SmPGk
jicgIpPpDJhO5L/Dlp5fUImveeRQiv8VaJzANNvrQrDOTvi+gbOI/YyjPybk
AIhbHpgFyXj8Q+aNUXp8qnWvm0qj41Vm2/v85L6oXG1fm4mnSWm9tYbztV4o
11MgJRPt+qw+TlV6zsMqmdPTVuUpk9s8Tp52xq4ftxd1T5m/pvS0UplNG+3D
5k3y6mj4gc3pq5oUVW9Um75Hk/oZO3++2ZL68WZL6vY4DUMkO2qRvDfMENBx
zyRJ3d5sWka3L883o3Rj696796uWknlMbxfxzLWRnpftRfypnZquV0qhsY23
0H22xrOHV68x2ylz8w1wCPq7tFqY6MN+admoLc6ukpamOMdc6FKhSETsL/H6
48QrLWlA5d/cUMbfJVf3475CU+JxMpOfJyz55kiqzJ/lkH6/T/llL+6o6/Au
xyBEnr+APEv/eHmWvv2DiLUntNK3N6vtuL3JVK7khdvMtxcbK/v0tnyeXo42
Trqh6iOluUzblVrFLWW5EMpTiGPK386O+D2ujSjEPrwiAMyzIrhQJZQKjsBS
9GHq2d4E3PiJak2nTgQB3m/8q5uVJeF9dKPy3MuvGzk8SfOvGjD6eEToQ4EZ
gW9DKjhi2XyzAma5ln/+vs/8+H2f+WL45Y+m6J5wyBCL5nUsv46MYT250JIz
fSo3lc4uNbO94dDcJs1SuZWstjIL2yya7cIdhja8eLIyiqfWuVJxtuk/aF5K
jm8ya6+9Tuu1VfrxYZW/6xQCiwaSLxvdWA8VM/WrH2xrq0Em5qFsBpuVloGX
XOElyCmAoqjE8NhCNRmXAgkjPntQXSMoh4C7VtfAAPIr2Pp1ivwKUVh9FyPD
tLaP4bmeomNZC169ScPivbpOmxSHRIfi14TDluFNB4qCGwxvGeq84TFvAQcT
K6h2EOGGonk2r4X36VOhUSu1erFCqdODKmhMMjEAf9UJgfsiF2sOL6+eDyrs
HCjkrETIB/YaEAQLeAF+uYPY7By+Xaiw6Bc80aAUCCfcPxycqFB4CyhJT7WD
8jp+2Ty24wB1XYUyboiMCnUv1BUgcZuu7ldWoUtG2ldoRT0uf+lKwoI4ETHA
15J1gku3t0hUBQSre2hv/xXSX9+Th9qb82XkRXUD1iNSwmSZzcA96hYK7bAk
HZ+0+CBhQ4o9zIpOHuTPoBLlSsF+sOiSRfmV8gWvGK3aWCFtbiGALnFgXthX
F/yZCz9VQfqyYPfLsLGl/UkZzcfG+wetr0DvG+kGEGBei4WC3M/M5E0tL89q
+fybfJefzV7ny8X9Q7tdlBdyptlxNpX2sDhot++KII/z9ebzU9sc7/L5yVPH
en5Mx5XH1nxS6W8rb/JzftYa5OVms7Tc5msl3ZtUBrvR42CpPJbjz918sY2H
1rJa3sR3zaK8bfbau+ain2i+tRT8rke+WzT975pyfFt4k+u8XXlZLzbLeGH3
q7fEskPz6Wmq9GeG2XTvn/qXNXP8qOiduTqyn4wxNlLIriezemKVzqvp8uXV
sJC9d+fbZupsmWhmlJJcKo8rb8u61tpl6tnU7tp7s3LNTGvXrMqbAtAFj8/j
vbxc28hFeQrjrHabpUpRfpzlO8bV46KhXGX1UWlY8LTCw9iNPyvdUjFZlO/x
2XY2L0/xIL9E5lfIOzLMqzjoxPW8vNkUZmRem2E+3+6THmubaht/68jt6mU+
39yUhqWHodFZtCs4ktTwMbEZVfreMJlzm8L1Mmhbjs/kZqlfqOWrE+XSTqyV
BjHUB7rWSF0WtczwLt7GRMdRc6F2l4WrSblwf5/P9mStJG8vl9VuPuURQfcc
bz2l7fSTYhsPy/jG8HaT/MDqp+b5wXNiN18STXxUljyywkeKGIQ+uLFp5RFe
yca1PUcIy/vFOgT5gyFp0LVY6yhUPySkrNQjqtGvMhG17v2hMfFwZMAsJgF4
6rYqwJuzexm0iBF9F2dDq0VsyVcw8qBeuWgvsOxGXmbLVzq8TS5CJF9G/8OJ
egusdqM/HV/ufWOg9JvOj6O+hOg9HJV7p1RjxEBXnH6fjMIL1cUPyihopN37
oIxCzLOv32T9soxCNIDlB2UUNAIy40MyioJyflBGISLd4IMyClcn83EZdSx4
HjmeFl2nPZdJ4NcfHzf3h/dNG3U7aFYHK2WjyIXLeHdUte86Tk7L1q7Ueyfd
cXvNSuHxybjMmevnN6vq1GaZ5ljNXSXSvczWWuq7XXz3vydv82JOmafq1c6m
2bifGdrbhl9ue8SKC18cdGBJ0fKgfukPakUeM+X8RNR9QbbnM7uuvXr5Jrr8
Ms1+mWa/TLOb/VgRbKXbnyb3hKgQdnzz7fIKhrAnsw5KrC8Yor1jJlyoAte+
JGIxEnoZBO09XlsxbKH6zq/o+IKhh3XchKo2euBWT2jxolAqSQ8qoPqmrFjM
yOW/sCvY+BoUh7XGls5LFQtV8zCgY05CRY9ZEWjaDlxpEW//+FVKlemUVa2j
QXYDSuqOfYPSv4OKwZeLcBtCEF/xi1765aFsawRU46d3RlDy1lGDgbGxEl0T
HDKONXvsGVDZbIxFn0KlHsMqKVRdnI/LXwo2ng/G7L8zXlApEZ0E9bf+G3LU
E1QpJf7eIh+St3g6mTwWCLLsGdNGZVs7lxJpqe7poI2SUiJ1k0xxbQTlUVfu
AT3Ef/j98vcDQoHTHiTD12PHCrb1TllwIEAcdHfz3EssLavtlKqr53gtUVsU
Xt32anVv1F71+oNqXRernauu1TTjTrqOiD0JtVPpxuWz9W74kHMvG0/6PN1u
lsvtzHjVcJNGfGUsrlrFIO8sfL6MTpLj4o1bvxRmcK+aGRmCS0MWTXCHYPWO
HI/AEnHS7C/AOVL+mBX6RZr79H5v5mP0mEPcHns7AgsCsouCEz83m7JLrKGY
Mw8fZ26zI21UyPx2+MNK9A6TUNec3mM0Vc2dM3vuSLMmK/VFm1Js9Qs5bDyd
L1wCzHEh7QCl+ffH896xP/9OzUl61PMz9mqEYqQXM9bvnqvmf73exi/S/4F7
+X28jOVmOTcXUR0jr50HjNvB+nV28IMJ6f26rqyc8DbwcytNjGWzG3zASTQU
g83D2x2KZsKbDHJNjrMz1zVCx0zRRvp2aPVOMnXQpyFlSe0QeEInizjZ4cGP
h0EkEHGsU2LuWCbADmlvrPapn0kCT6HepBF5mijDMnP+tK32pe3Flu4Gu3Zu
Li/9WrMXwmNUWh/bZuf/obrwvfsnhvXC/RqIAmdwDiV0mGlgUYdwKYDfo29D
Efq1NoHjsRBb/4WY7F3S+D1ifZ9bf/HYYR4bz4lWC0qFAxnAU8DYDZeLPi3g
l1PhXPQUrpM52oS6bkB0xlO/XUhdNDxYhWm/aXSH/Oa+x8qAaq4/hDNpeOr7
5F9wJvzLFfg5rImijAs9uIsB7iu6ogd1Nee/0KssUyioFQ3MBWuP0o452QoU
NcezKwghmFjzFriAwXzgoNhxPM2TRcwwFpUN+ziBZfEHsvFPdGgDW/gAR/9n
cfHfCLstTWujq5MZIsJBnEiJfPX55NON6RkjYOjb06miO+qpXww7VEMeChOz
BBzCfSHcuE+farHixVhZE5aIIX8EAZ7Pn1lETXWlia1MafFrSZ1orkUsX3qg
q2tLlkukmEtBnrONo7BXz6WmYi+lAnaEjNtUTE/qrizb3J3zStCaTVolj3GD
F1/lbK7ZeJ9YMz12UExcfGKNYJIPtTFCk8ZkInZ91wk/Hhxg0OlrqjuNWTDu
GI0eUUqwENMeGYSjZUczNF2xJXVKZuDyZKMwhXAg+2QKpFRgOtFq1lNVnUCq
0zlIITj8pjs9Ag+I5IWrbv6QIPtqRZhBheAj9E/UJ+l9NVdGKkUjRVn1280J
roU8UYyxZp6zT7qukr8fFLJHZdNUHV3dnZ98+vTpTrF1Kf/v/5vrBnnu8+fP
+G3X/fe/SMNEcOTJxN8Mdafa+FtXsSFbv6CslInm6Nr5SUNTDKmokjbnpMWu
q64gJa2sEDdK10mPcw3gUqUqYU7FiOWVJfHUTno7nZC3qhjnJyXIHa5aOhFc
5yeyObHVnXRHmt55S/KZTEK6M5FKRNqsVamhzk3+pwVuHOm0RtZIkxqa56wV
4t2fn9QVuGpXvQAunEF/d0Ru6KAhmkRq4ME+JUvLwjzBOQxkaClrqaXZ0Ct5
yJQeFDIo8rHhjckOe1Dsiaeen3QssiXByCELTKZPhB4821Gd8XxJfm5qRMir
utSB/+0JuCknj9ZirKnjudTZzYgWcZbkPfhd6ir6G5tkd0wodn5SsOydVCcK
SFdXZJoaGSMhKSxjVTXJT13CeTsY0lJx3qTum7oZk5fmNuGUR3U0Yl7wSZ1w
LBByqDikN7ia9zepyFE5q5oDrRyWL7+DcigVa737zo1EOBKibeiKq5QfOTDm
iEbUKdAqsuzvJycxyq4x3HGwyUaawzWSIHlOiNSMSbHENfmf/PtdKqBepPCi
ZDn41x3aL7wYI3sqaEFAygSTcAKZbCtdMRU/EWQz36EfA/cicVu6F7zVdjjc
xV0iAyLbEONWYxzmFHaro0xVd3fsZcgb3UiwdMQeJYLYNpn/rxPJQXey478r
TwhzO47oiflTDp4q0jR5aU5XieaUWA7iF/nBhagO8N+uGZAOI1kjJ0Yk0ITh
DqtgzfS7MblbqNXOSadkZuQb/BgDBFJoNciNBmxXvkYZ3nIJpR4keY4JV5je
iopZuQi5o5q68YdQgN04Begynr853oHId1zbG7uYbEMp4KjQHA9m2J6uClRQ
p2C2cPAuYukINCdyj0XV/DH7L/ZXeBrEbwAIwGqKPoZrvKEloWPdSXNYRcsY
aSYfHQ39EL6c6HDQEywhu/aquoqmM+AImBdVPIRhanJLloqlfwSdlLWt5FiG
GqwF41tzDJr0gpM6fZTUEbJMpFMRMI5or6176jeT4g/3FHtGlJqtbNhVMMrV
jN9hrP7pIQyHWVfhuVLHCzcCz8iyYeK2QENYHTh3WllwUA7D1hyHRRkA7C5G
TZJQaCqyXEg0W52RpwnLQ3eh/Px39IV2eQS9i/AJt1bFSQXwz5QK0CZcP/Mp
eBUIIIrydcqJLIgN8GZdZRaiF/C8cMvF9IF66fAMT3c14Eqw9Ey+ckG/yXBT
B3qNdAbAdYTIIKOiEUUuISNv0CuDeFf9IXaVTfk/l7YrwgS4aadgTFITZA8V
RqL583zs/utdInUojDS90YNZbBO4wcfOAgm54EwVApZqMONEeHRyvlUWdglg
qypkDmP/p5CMCLYJsC+dOh57TrXtPosdIUh+R37rgikIMlIUzdxl8gcbD+sl
skAchJHfoOYbiZmWseB7uIigrC30JPFqIzF6yOuvh9Y2mBdOBDgN6K8zwFeM
8xLaqyZymeMSW0qaeRogKZrh+R1ZD4EzOYYPn2Q8JzCErqCwgVNUvl+IqSkO
1acE5HWz2dMrLKgcDAjq7BGeyEMfOS9gLInd+BS1mb//BO8X/EPWU+Rbdip4
ilsz7ExHd2mYHCjeRA+eLJ9GmACToUJSixEpe2SpAjmFBg0MEbS0orvCTOn4
9uCITve3YnR+AYVw/ge2BNvkrMJBgKO0r5u54QEMSYWCs6dLg6eZHt67URx0
ERDnOiqjGAv6YPzjqHiIDH9loUOGjB8ccXC1BXzFZBSyvzoOt+FTL6xT9p4L
JucngXAVByOlyBrjyEELGRPc+RHiF5ipoNnMjUdPnCxV1JAJMauLetk5BYr6
OcpcVFBnkAkWX4BQFt3npYDqmbC4I547P6JFqI49dK9zKcDy0uCODeKIUMMk
oqMjlPryvTqwmnioDFMPWZ41B8fnB2sQEYhaEiCxTqOW3alwyyTIZeEWCe3U
JHqFGAMh2cEsSFPdhAhHEcuEGQPpYxO2Slxw0yUSHouwaFTASyMNr376y5EO
S0gK+ku894iYYOankK/k83tg70Y1GWo7YlMe0miBZwQUgmJF8HS1KRf8ofn2
YRNFt2hJclkc7C8ONkN2pG0F42bQAKgViOzzTOoUiu9RyyrYNxZ5TJ9qun4R
5VSwv45oZ0QuFowuepuNz+Rqn0OPbmH/LtSB7sX7+KDsHIo6i1oS7F9hvVTF
1ncSZ5exFVoyYo7t7fv6fbck0NjgYVg6nD1FqqszkI/CCziCPcfoAGYS+Obw
AXPUUEwGMofImhHcNCQamZgJe42FHDHBPwhyXagCYka5H2KMKCh/YZLRaamB
R2MZVFQCu/CIBDUq96mhEXXDn2F2PkXPFqwpuMG2hGfxd6EJYr6A4eiZguP5
4osV/yIJ2lQvEaH2grwgPl3UkCMUjMH47VVpG+Wwl1L02WNP2iBZhcNUoVlD
hWAMkUfqxeziXHo53cYm/q8UeekUgtm39MEYmEYv7+5zqtmEcC3eC3rVUkMD
1RP0h94a7emGCqvb1EvEbiPyYG+z8q2EUmJCvWGMjNC8BryvObFWruBJ8/F+
UTYzxGVALUEJglYvRosNYaFR/04ObwmatyjAPB4wc6ioAQsajoSAMSE8y6o4
EZlItsVI0xEiGowfnB1V08wsOrBb2Ubw/RvCM5g/rnItw0wGXJtjaxa+o06n
Aukjdgyqy0j/HDMrEzd7t3rfbxThqWa/2/ttT2EpvpAVdzhKclitHuC7wJyI
/aTZwXd+O00NkrzEjYx3mlDWU5NFmSiUThDLtskGNkIWiu8+1ehZhfbGh06D
hjZETE1TiYnnWELUkLRwLoTVkaEwEknPfuFkAb6f2RYETPxY5NeajY6uYJlE
cTBYma2hJ+3pWFpfsTkyL5P+KnplEDYVXLF9WSaYSHgSMSZMrIqWrGD3BV5Z
pBHy/VTXaHJvUI0oZILCqvphsz1jAhBVN8gheIiI8U4sM+CtQn4X7a7EvUwH
TF6y9bSt8MzGBjQiZeTgJWJ2n10QALhh0Ynk4QJ8Bu4IslytuQLHEjNEDJnT
RGG2Q/dKHe33awK4kLLWwF/jNn8w44CwYOC5ZBDHaRYN4USsGDAJwOdxhGjq
BBf8OnkVD3Kv8JlIWyFzbD+ByxTFluDeOa662p/yHnrFxyapeLoryoKwIaSC
HCC/HLBD+Xhw1sGg5MDa892uYIQX3PWmsX48sbN04uwRft4x5mcvuSqhGdkH
Fz4jOt4MInrkr36nFpkJ+nmRoTz4FiNvNPKSUBEgIBfl4KlAPh6Jirzds1bc
CXlkYqcCYocH7wXH9JynzrOZEA/YwuChcHKC2bgmcNTFyf8Dl0oCwHhcAwA=

-->

</rfc>
