<?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-rfc2629 version 1.6.2 (Ruby 3.0.3) -->
<?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-09" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.3 -->
  <front>
    <title>HTTP Message Signatures</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-message-signatures-09"/>
    <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">
      <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="2022" month="March" day="06"/>
    <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 important 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, or to use features necessary to provide message authenticity.  Furthermore, some applications require the binding of an application-level 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>This document defines a mechanism for providing end-to-end integrity and authenticity for components of an HTTP message.  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 any of the many 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.</li>
        <li>Algorithms for generating and verifying signatures over HTTP message components using this signature base through application of cryptographic primitives.</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.</li>
      </ul>
      <t>This document also provides a mechanism for a potential verifier to signal to a potential signer that a signature is desired in one or more subsequent messages. This optional negotiation mechanism can be used along with opportunistic or application-driven message signatures by either party.</t>
      <section anchor="requirements-discussion">
        <name>Requirements Discussion</name>
        <t>HTTP permits and sometimes requires intermediaries to transform messages in a variety of ways.  This may 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 a signature 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 must 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 body, or the <tt>Date</tt> header field) is relevant.  Thus a general purpose solution must 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 may occur under HTTP, provided as context:</t>
        <ul spacing="normal">
          <li>Re-ordering of header fields with different header field names (<xref section="3.2.2" sectionFormat="of" target="MESSAGING"/>).</li>
          <li>Combination of header fields with the same field name (<xref section="3.2.2" sectionFormat="of" target="MESSAGING"/>).</li>
          <li>Removal of header fields listed in the <tt>Connection</tt> header field (<xref section="6.1" sectionFormat="of" target="MESSAGING"/>).</li>
          <li>Addition of header fields that indicate control options (<xref section="6.1" sectionFormat="of" target="MESSAGING"/>).</li>
          <li>Addition or removal of a transfer coding (<xref section="5.7.2" sectionFormat="of" target="MESSAGING"/>).</li>
          <li>Addition of header fields such as <tt>Via</tt> (<xref section="5.7.1" sectionFormat="of" target="MESSAGING"/>) and <tt>Forwarded</tt> (<xref section="4" sectionFormat="of" target="RFC7239"/>).</li>
        </ul>
      </section>
      <section anchor="safe-transformations">
        <name>Safe Transformations</name>
        <t>Based on the definition of HTTP and the requirements described above, we can identify certain types of transformations that should not prevent signature verification, even when performed on message components covered by the signature.  The following list describes those transformations:</t>
        <ul spacing="normal">
          <li>Combination of header fields with the same field name.</li>
          <li>Reordering of header fields with different names.</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 header field names, request URI scheme, or host.</li>
          <li>Addition or removal of leading or trailing whitespace to a header field value.</li>
          <li>Addition or removal of <tt>obs-folds</tt>.</li>
          <li>Changes to the <tt>request-target</tt> and <tt>Host</tt> header field that when applied together do not
result in a change to the message's effective request URI, as defined in <xref section="5.5" sectionFormat="of" target="MESSAGING"/>.</li>
        </ul>
        <t>Additionally, all changes to components not covered by the signature are considered safe.</t>
      </section>
      <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",
<tt>absolute-form</tt>, <tt>absolute-path</tt>, "effective request URI",
"gateway", "header field", "intermediary", <tt>request-target</tt>,
"sender", and "recipient" are used as defined in <xref target="MESSAGING"/>.</t>
        <t>The term "method" is to be interpreted as defined in <xref section="4" sectionFormat="of" target="SEMANTICS"/>.</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 input string. The qualified term "digital signature" refers specifically to the output of an asymmetric cryptographic signing operation.</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>HTTP Message Component Identifier:</dt>
          <dd>
            <t>A value 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-header"/>) 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 processed by the cryptographic algorithm to produce or verify the HTTP Message Signature. The signature base is generated by the signer and verifier using the covered components set and the HTTP Message.</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>
        </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 '' 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="application">
        <name>Application of HTTP Message Signatures</name>
        <t>HTTP Message Signatures are designed to be a general-purpose security mechanism 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 all of the following items:</t>
        <ul spacing="normal">
          <li>The set of <xref target="covered-content">component identifiers</xref> that are expected and required. For example, an authorization protocol could mandate that the <tt>Authorization</tt> header be covered to protect the authorization credentials and mandate the signature parameters contain a <tt>created</tt> parameter, while an API expecting HTTP message bodies could require the <tt>Digest</tt> header to be present and covered.</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.</li>
          <li>A means of determining the signature algorithm used to verify the signature is appropriate for the key material. 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 presented in the request are appropriate for the request being made. 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>
        </ul>
        <t>An application using signatures also has to ensure that the verifier will have access to all required information 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 identifiers like <tt>@target-uri</tt>. Additionally, an application using signatures in responses would need to ensure that clients receiving signed responses have access to all the signed portions, including any portions of the request that were signed by the server.</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"/>.</t>
      </section>
    </section>
    <section anchor="covered-content">
      <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. The values for these items <bcp14>MUST</bcp14> be accessible to both the signer and the verifier of the message, which means these are usually derived from aspects of the HTTP message or signature itself.</t>
      <t>Some HTTP message components can undergo transformations that change the bitwise value without altering meaning of the component's value (for example, the merging together of header fields with the same name).  Message component values must therefore be canonicalized before it is 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>Component identifiers are serialized using the production grammar defined by <xref section="4" sectionFormat="comma" target="RFC8941"/>.
The component identifier itself is an <tt>sf-string</tt> value and <bcp14>MAY</bcp14> define parameters which are included using the <tt>parameters</tt> rule.</t>
      <sourcecode type="abnf"><![CDATA[
component-identifier = sf-string parameters
]]></sourcecode>
      <t>Note that this means the serialization of the component identifier itself is encased in double quotes, with parameters following as a semicolon-separated list, such as <tt>"cache-control"</tt>, <tt>"date"</tt>, or <tt>"@signature-params"</tt>.</t>
      <t>Component identifiers, including component identifiers with parameters, <bcp14>MUST NOT</bcp14> be repeated within a single list of covered components. Component identifiers with different parameter values <bcp14>MAY</bcp14> be repeated within a single list of covered components.</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.</t>
      <t>The following sections define component identifier types, their parameters, their associated values, and the canonicalization rules for their values. The method for combining component identifiers into the signature base is defined in <xref target="create-sig-input"/>.</t>
      <section anchor="http-header">
        <name>HTTP Fields</name>
        <t>The component identifier for an HTTP field is the lowercased form of its field name. 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 identifiers.</t>
        <t>Unless overridden by additional parameters and rules, the HTTP field value <bcp14>MUST</bcp14> be canonicalized as a single combined value as defined in <xref section="5.2" sectionFormat="of" target="SEMANTICS"/>.</t>
        <t>If the combined value is not available for a given header, the following algorithm will produce canonicalized results for an implementation:</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="MESSAGING"/>. Note that this behavior is specific to <xref target="MESSAGING"/> and does not apply to other versions of the HTTP specification.</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 canonicalized component value.</t>
        <t>Note that some HTTP fields have values with multiple valid serializations that have equivalent semantics. 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 canonicalized 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 canonicalized values for these example header fields, presented using the signature base format discussed 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>Since empty HTTP header fields are allowed, they are also able to be signed when present in a message. The canonicalized value is the empty string. This means that the following empty header:</t>
        <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

X-Empty-Header: \

]]></sourcecode>
        <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[
NOTE: '\' line wrapping per RFC 8792

"x-empty-header": \

]]></artwork>
        <t>Note: these are shown here using the line wrapping algorithm in <xref target="RFC8792"/> due to limitations in the document format that strips trailing spaces from diagrams.</t>
        <t>Any HTTP field component identifiers <bcp14>MAY</bcp14> have the following parameters in specific circumstances.</t>
        <dl>
          <dt>sf</dt>
          <dd>
            <t>A boolean flag indicating that the field value is to be canonicalized using strict encoding
of the structured field value. <xref target="http-header-structured"/></t>
          </dd>
          <dt>key</dt>
          <dd>
            <t>A string parameter used to select a single member value from a dictionary structured field. <xref target="http-header-dictionary"/></t>
          </dd>
        </dl>
        <section anchor="http-header-structured">
          <name>Canonicalized Structured HTTP Fields</name>
          <t>If value of the the HTTP field in question is a structured field (<xref target="RFC8941"/>), the component identifier <bcp14>MAY</bcp14> include the <tt>sf</tt> parameter to indicate it is a known structured field. If this
parameter is included with a component identifier, the HTTP field value <bcp14>MUST</bcp14> be serialized using the rules specified in <xref section="4" sectionFormat="of" target="RFC8941"/> 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>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 input string as-is, it 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-header"/>.</t>
        </section>
        <section anchor="http-header-dictionary">
          <name>Dictionary Structured Field Members</name>
          <t>An individual member in the value of a Dictionary Structured Field is identified by using the parameter <tt>key</tt> to indicate the member key as an <tt>sf-string</tt> value.</t>
          <t>An individual member in the value of a Dictionary Structured Field is canonicalized by applying the serialization algorithm described in <xref section="4.1.2" sectionFormat="of" target="RFC8941"/> on the member value and its parameters, without the dictionary key.</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.</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 to be a Dictionary:</t>
          <sourcecode type="http-message"><![CDATA[
Example-Dict:  a=1, b=2;x=1;y=2, c=(a   b    c)
]]></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="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.</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, processing context, or other aspects of the HTTP message being signed. Such derived components can be included in the signature base by defining a component identifier and the derivation method for its component value.</t>
        <t>Derived component identifiers <bcp14>MUST</bcp14> start with the "at" <tt>@</tt> character. This differentiates derived component identifiers from HTTP field names, which cannot contain the <tt>@</tt> character as per <xref section="5.1" sectionFormat="of" target="SEMANTICS"/>. Processors of HTTP Message Signatures <bcp14>MUST</bcp14> treat derived component identifiers separately from field names, as discussed in <xref target="security-lazy-header-parser"/>.</t>
        <t>This specification defines the following derived component identifiers:</t>
        <dl>
          <dt>@signature-params</dt>
          <dd>
            <t>The signature metadata parameters for this signature. (<xref target="signature-params"/>)</t>
          </dd>
          <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-params</dt>
          <dd>
            <t>The parsed query parameters of the target URI for a request. (<xref target="content-request-query-params"/>)</t>
          </dd>
          <dt>@status</dt>
          <dd>
            <t>The status code for a response. (<xref target="content-status-code"/>).</t>
          </dd>
          <dt>@request-response</dt>
          <dd>
            <t>A signature from a request message that resulted in this response message. (<xref target="content-request-response"/>)</t>
          </dd>
        </dl>
        <t>Additional derived component identifiers <bcp14>MAY</bcp14> be defined and registered in the HTTP Signatures Derived Component Identifier Registry. (<xref target="content-registry"/>)</t>
        <t>Derived components can be applied in one or more of three targets:</t>
        <dl>
          <dt>request:</dt>
          <dd>
            <t>Values derived from and results applied to an HTTP request message as described in {{Section 3.4 of SEMANTICS.</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="SEMANTICS"/>.</t>
          </dd>
          <dt>related-response:</dt>
          <dd>
            <t>Values derived from an HTTP request message and results applied to the HTTP response message that is responding to that specific request.</t>
          </dd>
        </dl>
        <t>A component identifier definition <bcp14>MUST</bcp14> define all targets to which it can be applied.</t>
        <t>The component value <bcp14>MUST</bcp14> be derived from the HTTP message being signed or the context in which the derivation occurs. The derived component value <bcp14>MUST</bcp14> be of the following form:</t>
        <sourcecode type="abnf"><![CDATA[
derived-component-value = *VCHAR
]]></sourcecode>
        <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, such as the set of covered components, a timestamp, identifiers for verification key material, and other utilities.</t>
          <t>The signature parameters component identifier is <tt>@signature-params</tt>. This message component's value is <bcp14>REQUIRED</bcp14> as part of the <xref target="create-sig-input">signature base</xref> but the component identifier <bcp14>MUST NOT</bcp14> be enumerated within the set of covered components itself.</t>
          <t>The signature parameters component value is the serialization of the signature parameters for this signature, including the covered components set with all associated parameters. These parameters include any of the following:</t>
          <ul spacing="normal">
            <li>
              <tt>created</tt>: Creation time as an <tt>sf-integer</tt> 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 <tt>sf-integer</tt> UNIX timestamp value. Sub-second precision is not supported.</li>
            <li>
              <tt>nonce</tt>: A random unique value generated for this signature as an <tt>sf-string</tt> value.</li>
            <li>
              <tt>alg</tt>: The HTTP message signature algorithm from the HTTP Message Signature Algorithm Registry, as an <tt>sf-string</tt> value.</li>
            <li>
              <tt>keyid</tt>: The identifier for the key material as an <tt>sf-string</tt> value.</li>
          </ul>
          <t>Additional parameters can be defined in the <xref target="iana-param-contents">HTTP Signature Parameters Registry</xref>.</t>
          <t>The signature parameters component value is serialized as a parameterized inner list using the rules in <xref section="4" sectionFormat="of" target="RFC8941"/> 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 <tt>inner-list</tt> according to <xref section="4.1.1.1" sectionFormat="of" target="RFC8941"/> and append this to the output.</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 <tt>inner-list</tt> in the chosen order according to <xref section="4.1.1.2" sectionFormat="of" target="RFC8941"/>,
 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 <tt>inner-list</tt> serialization is used for the covered component value instead of the <tt>sf-list</tt> serialization
in order to facilitate this value's inclusion in message fields such as the <tt>Signature-Input</tt> field's dictionary,
as discussed in <xref target="signature-input-header"/>.</t>
          <t>This example shows a canonicalized value for the parameters of a given 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 an entry.</t>
        </section>
        <section anchor="content-request-method">
          <name>Method</name>
          <t>The <tt>@method</tt> component identifier refers to the HTTP method of a request message. The component value of 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="SEMANTICS"/>, and conventionally standardized method names are uppercase US-ASCII.
If used, the <tt>@method</tt> component identifier <bcp14>MUST</bcp14> occur only once in the covered components.</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> value:</t>
          <artwork><![CDATA[
"@method": POST
]]></artwork>
          <t>If used in a related-response, the <tt>@method</tt> component identifier refers to the associated component value of the request that triggered the response message being signed.</t>
        </section>
        <section anchor="content-target-uri">
          <name>Target URI</name>
          <t>The <tt>@target-uri</tt> component identifier 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="SEMANTICS"/>.
If used, the <tt>@target-uri</tt> component identifier <bcp14>MUST</bcp14> occur only once in the covered components.</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> value:</t>
          <artwork><![CDATA[
"@target-uri": https://www.example.com/path?param=value
]]></artwork>
          <t>If used in a related-response, the <tt>@target-uri</tt> component identifier refers to the associated component value of the request that triggered the response message being signed.</t>
        </section>
        <section anchor="content-request-authority">
          <name>Authority</name>
          <t>The <tt>@authority</tt> component identifier refers to the authority component of the target URI of the HTTP request message, as defined in <xref section="7.2" sectionFormat="comma" target="SEMANTICS"/>. In HTTP 1.1, this is usually conveyed using the <tt>Host</tt> header, while in HTTP 2 and HTTP 3 it is conveyed using the <tt>:authority</tt> 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="SEMANTICS"/>. Namely, the host name is normalized to lowercase and the default port is omitted.
If used, the <tt>@authority</tt> component identifier <bcp14>MUST</bcp14> occur only once in the covered components.</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[
"@authority": www.example.com
]]></artwork>
          <t>If used in a related-response, the <tt>@authority</tt> component identifier refers to the associated component value of the request that triggered the response message being signed.</t>
          <t>The <tt>@authority</tt> derived component <bcp14>SHOULD</bcp14> be used instead signing the <tt>Host</tt> header directly, see <xref target="security-not-fields"/>.</t>
        </section>
        <section anchor="content-request-scheme">
          <name>Scheme</name>
          <t>The <tt>@scheme</tt> component identifier refers to the scheme of the target URL of the HTTP request message. The component value is the scheme as a string as defined in <xref section="4.2" sectionFormat="comma" target="SEMANTICS"/>.
While the scheme itself is case-insensitive, it <bcp14>MUST</bcp14> be normalized to lowercase for
inclusion in the signature base.
If used, the <tt>@scheme</tt> component identifier <bcp14>MUST</bcp14> occur only once in the covered components.</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> value:</t>
          <artwork><![CDATA[
"@scheme": http
]]></artwork>
          <t>If used in a related-response, the <tt>@scheme</tt> component identifier refers to the associated component value of the request that triggered the response message being signed.</t>
        </section>
        <section anchor="content-request-target">
          <name>Request Target</name>
          <t>The <tt>@request-target</tt> component identifier refers to the full request target of the HTTP request message,
as defined in <xref section="7.1" sectionFormat="comma" target="SEMANTICS"/>. The component value of the request target can take different forms,
depending on the type of request, as described below.
If used, the <tt>@request-target</tt> component identifier <bcp14>MUST</bcp14> occur only once in the covered components.</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 identifier 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[
"@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[
"@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[
"@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[
"@request-target": *
]]></artwork>
          <t>If used in a related-response, the <tt>@request-target</tt> component identifier refers to the associated component value of the request that triggered the response message being signed.</t>
        </section>
        <section anchor="content-request-path">
          <name>Path</name>
          <t>The <tt>@path</tt> component identifier 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="RFC3986"/>, 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="SEMANTICS"/>. Namely, an empty path string is normalized as a single slash <tt>/</tt> character, and path components are represented by their values after decoding any percent-encoded octets.
If used, the <tt>@path</tt> component identifier <bcp14>MUST</bcp14> occur only once in the covered components.</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>@path</tt> value:</t>
          <artwork><![CDATA[
"@path": /path
]]></artwork>
          <t>If used in a related-response, the <tt>@path</tt> identifier refers to the associated component value of the request that triggered the response message being signed.</t>
        </section>
        <section anchor="content-request-query">
          <name>Query</name>
          <t>The <tt>@query</tt> component identifier refers to the query component of the HTTP request message. The component value is the entire normalized query string defined by <xref target="RFC3986"/>, including the leading <tt>?</tt> character. The value is normalized according to the rules in <xref section="4.2.3" sectionFormat="comma" target="SEMANTICS"/>. Namely, percent-encoded octets are decoded.
If used, the <tt>@query</tt> component identifier <bcp14>MUST</bcp14> occur only once in the covered components.</t>
          <t>For example, the following request message:</t>
          <sourcecode type="http-message"><![CDATA[
POST /path?param=value&foo=bar&baz=batman HTTP/1.1
Host: www.example.com
]]></sourcecode>
          <t>Would result in the following <tt>@query</tt> value:</t>
          <artwork><![CDATA[
"@query": ?param=value&foo=bar&baz=batman
]]></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> value:</t>
          <artwork><![CDATA[
"@query": ?queryString
]]></artwork>
          <t>If the query string is absent from the request message, the value is the leading <tt>?</tt> character alone:</t>
          <artwork><![CDATA[
"@query": ?
]]></artwork>
          <t>If used in a related-response, the <tt>@query</tt> component identifier refers to the associated component value of the request that triggered the response message being signed.</t>
        </section>
        <section anchor="content-request-query-params">
          <name>Query Parameters</name>
          <t>If a request target URI uses HTML form parameters in the query string as defined in <xref target="HTMLURL">HTMLURL, Section 5</xref>,
the <tt>@query-params</tt> component identifier allows addressing of individual query parameters. The query parameters <bcp14>MUST</bcp14> be parsed according to <xref target="HTMLURL">HTMLURL, Section 5.1</xref>, resulting in a list of (<tt>nameString</tt>, <tt>valueString</tt>) tuples.
The <bcp14>REQUIRED</bcp14> <tt>name</tt> parameter of each input identifier contains the <tt>nameString</tt> of a single query parameter as an <tt>sf-string</tt> value.
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.</t>
          <t>The component value of a single named parameter is the the <tt>valueString</tt> of the named query parameter defined by <xref target="HTMLURL">HTMLURL, Section 5.1</xref>, which is the value after percent-encoded octets are decoded.
Note that this 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> are included with an empty string as the component value.</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[
POST /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 in would result in the following <tt>@query-param</tt> value:</t>
          <artwork><![CDATA[
"@query-params";name="baz": batman
"@query-params";name="qux":
"@query-params";name="param": value
]]></artwork>
          <t>If a parameter name occurs multiple times in a request, all parameter values of that name <bcp14>MUST</bcp14> be included
in separate signature base lines in the order in which the parameters occur in the target URI. Note that in some implementations, the order of parsed query parameters is not stable, and this situation could lead to unexpected results. 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>If used in a related-response, the <tt>@query-params</tt> component identifier refers to the associated component value of the request that triggered the response message being signed.</t>
        </section>
        <section anchor="content-status-code">
          <name>Status Code</name>
          <t>The <tt>@status</tt> component identifier refers to the three-digit numeric HTTP status code of a response message as defined in <xref section="15" sectionFormat="comma" target="SEMANTICS"/>. The component value is the serialized three-digit integer of the HTTP response code, with no descriptive text.
If used, the <tt>@status</tt> component identifier <bcp14>MUST</bcp14> occur only once in the covered components.</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> value:</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 anchor="content-request-response">
          <name>Request-Response Signature Binding</name>
          <t>When a signed request message results in a signed response message, the <tt>@request-response</tt> component identifier can be used to cryptographically link the request and the response to each other by including the identified request signature value in the response's signature base without copying the value of the request's signature to the response directly. This component identifier has a single <bcp14>REQUIRED</bcp14> parameter:</t>
          <dl>
            <dt><tt>key</tt></dt>
            <dd>
              <t>Identifies which signature from the response to sign.</t>
            </dd>
          </dl>
          <t>The component value is the <tt>sf-binary</tt> representation of the signature value of the referenced request identified by the <tt>key</tt> parameter.</t>
          <t>For example, when serving this signed 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
Signature-Input: sig1=("@method" "@authority" "@path" \
  "content-digest" "content-length" "content-type")\
  ;created=1618884475;keyid="test-key-rsa-pss"
Signature:  sig1=:LAH8BjcfcOcLojiuOBFWn0P5keD3xAOuJRGziCLuD8r5MW9S0\
  RoXXLzLSRfGY/3SF8kVIkHjE13SEFdTo4Af/fJ/Pu9wheqoLVdwXyY/UkBIS1M8Br\
  c8IODsn5DFIrG0IrburbLi0uCc+E2ZIIb6HbUJ+o+jP58JelMTe0QE3IpWINTEzpx\
  jqDf5/Df+InHCAkQCTuKsamjWXUpyOT1Wkxi7YPVNOjW4MfNuTZ9HdbD2Tr65+BXe\
  TG9ZS/9SWuXAc+BZ8WyPz0QRz//ec3uWXd7bYYODSjRAxHqX+S1ag3LZElYyUKaAI\
  jZ8MGOt4gXEwCSLDv/zqxZeWLj/PDkn6w==:

{"hello": "world"}
]]></sourcecode>
          <t>This would result in the following unsigned response message:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 503 Service Unavailable
Date: Tue, 20 Apr 2021 02:07:56 GMT
Content-Type: application/json
Content-Length: 62

{"busy": true, "message": "Your call is very important to us"}
]]></sourcecode>
          <t>To cryptographically link the response to the request, the server signs the response with its own key and includes the signature of <tt>sig1</tt> from the request in the covered components of the response. The signature base for this example is:</t>
          <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

"@status": 503
"content-length": 62
"content-type": application/json
"@request-response";key="sig1": :LAH8BjcfcOcLojiuOBFWn0P5keD3xAOuJR\
  GziCLuD8r5MW9S0RoXXLzLSRfGY/3SF8kVIkHjE13SEFdTo4Af/fJ/Pu9wheqoLVd\
  wXyY/UkBIS1M8Brc8IODsn5DFIrG0IrburbLi0uCc+E2ZIIb6HbUJ+o+jP58JelMT\
  e0QE3IpWINTEzpxjqDf5/Df+InHCAkQCTuKsamjWXUpyOT1Wkxi7YPVNOjW4MfNuT\
  Z9HdbD2Tr65+BXeTG9ZS/9SWuXAc+BZ8WyPz0QRz//ec3uWXd7bYYODSjRAxHqX+S\
  1ag3LZElYyUKaAIjZ8MGOt4gXEwCSLDv/zqxZeWLj/PDkn6w==:
"@signature-params": ("@status" "content-length" "content-type" \
  "@request-response";key="sig1");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
Signature-Input: reqres=("@status" "content-length" "content-type" \
  "@request-response";key="sig1");created=1618884479\
  ;keyid="test-key-ecc-p256"
Signature: reqres=:JqzXLIjNd6VWVg/M7enbjWkOgsPmIK9vcoFQEkLD0SXNbFjR\
  6d+olsof1dv7xC7ygF1q0YKjVrbV2QlCpDxrHg==:

{"busy": true, "message": "Your call is very important to us"}
]]></sourcecode>
          <t>Since the request's signature value itself is not repeated in the response, the requester <bcp14>MUST</bcp14> keep the original signature value around long enough to validate the signature of the response that uses this component identifier.</t>
          <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>The <tt>@request-response</tt> component identifier <bcp14>MUST NOT</bcp14> be used in a request message.</t>
        </section>
      </section>
      <section anchor="create-sig-input">
        <name>Creating the Signature Base</name>
        <t>The signature base is a US-ASCII string containing the canonicalized HTTP message components covered by the signature. The input to the signature base creation algorithm is the list of covered component identifiers and their associated values, along with any additional signature parameters. 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-value )
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 identifier in the signature's covered components (including their parameters) using the following algorithm:</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>Append the component identifier for the covered component serialized according to the <tt>component-identifier</tt> rule. Note that this serialization places the component identifier 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 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 identifier, as in <xref target="derived-components"/>. If the derived component identifier is unknown or the value cannot be derived, produce an error.</li>
                  <li>If the component identifier does not start with an "at" character (<tt>@</tt>), canonicalize the HTTP field value as described in <xref target="http-header"/>. If the value cannot be calculated, 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"/>) 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. <tt>"@signature-params"</tt></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"/></li>
            </ol>
          </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 an input string. Such situations are included but not limited to:</t>
        <ul spacing="normal">
          <li>The signer or verifier does not understand the derived component identifier.</li>
          <li>The component identifier identifies a field that is not present in the message or whose value is malformed.</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 <tt>Example-Dict</tt> 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[
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>@path</tt>, and <tt>@authority</tt> derived component identifiers 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 assumed by the application to correctly 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>
          <artwork 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"
]]></artwork>
        </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 message and the requirements for the application. The output is a signature value and set of signature parameters that can be applied 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. 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 <tt>Signature-Input</tt> 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 message <xref target="http-header"/> or a derived component identifier listed in <xref target="derived-components"/> or its associated 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 is not explicitly listed in the list of covered component identifiers, because it is required to always be present as the last line in the signature base. This ensures that a signature always covers its own metadata.</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 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 <tt>Signature</tt> 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 message (including <tt>Signature</tt> and <tt>Signature-Input</tt> 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 <tt>Signature</tt> and <tt>Signature-Input</tt> 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 <tt>Signature</tt> value does not have a corresponding <tt>Signature-Input</tt> value,
 produce an error.</li>
            </ol>
          </li>
          <li>Parse the values of the chosen <tt>Signature-Input</tt> field as a parameterized structured field inner list item (<tt>inner-list</tt>) to get the signature parameters for the
 signature to be verified.</li>
          <li>Parse the value of the corresponding <tt>Signature</tt> 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>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 is explicitly stated in the signature parameters using a value from the
 HTTP Message Signatures registry, the verifier will use the referenced 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 specified in more that 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> vail the verification.</li>
            </ol>
          </li>
          <li>Use the received HTTP message and the signature's metadata to recreate 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 <tt>Signature-Input</tt> field for this signature serialized according to the rules described
 in <xref target="signature-params"/>, not including the signature's label from the <tt>Signature-Input</tt> 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, path, authority, and cache-control 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., <tt>Authorization</tt>, <tt>Digest</tt>).</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 a <tt>nonce</tt> value.</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 Algorithm Methods</name>
        <t>HTTP Message signatures <bcp14>MAY</bcp14> use any cryptographic digital signature or MAC method that is appropriate for the key material,
environment, and needs of the signer and verifier.</t>
        <t>Each signature algorithm method 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 algorithm method takes as its input the recalculated 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>This section contains several common algorithm methods. The 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.</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 <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 <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 are compared to the http message signature to determine 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 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 <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 in 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 <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-ed25519">
          <name>EdDSA using curve edwards25519</name>
          <t>To sign using this algorithm, the signer applies the <tt>Ed25519</tt> algorithm <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 <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. In fact, the explicit <tt>alg</tt> signature parameter is not used at all when using JOSE signing algorithms, as the JWS algorithm can be signaled using JSON Web Keys or other mechanisms common to JOSE implementations.</t>
        </section>
      </section>
    </section>
    <section anchor="including-a-message-signature-in-a-message">
      <name>Including a Message Signature in a Message</name>
      <t>Message signatures can be included within an HTTP message via the <tt>Signature-Input</tt> and <tt>Signature</tt> HTTP fields, both defined within this specification. When attached to a message, an HTTP message signature is identified by a label. This label <bcp14>MUST</bcp14> be unique within a given HTTP message and <bcp14>MUST</bcp14> be used in both the <tt>Signature-Input</tt> and <tt>Signature</tt>. The label is chosen by the signer, except where a specific label is dictated by protocol negotiations.</t>
      <t>An HTTP message signature <bcp14>MUST</bcp14> use both fields containing the same labels:
the <tt>Signature</tt> HTTP field contains the signature value, while the <tt>Signature-Input</tt> HTTP field identifies the covered components and parameters that describe how the signature was generated. Each field contains labeled values and <bcp14>MAY</bcp14> contain multiple labeled values, where the labels determine the correlation between the <tt>Signature</tt> and <tt>Signature-Input</tt> fields.</t>
      <section anchor="signature-input-header">
        <name>The 'Signature-Input' HTTP Field</name>
        <t>The <tt>Signature-Input</tt> HTTP field is a Dictionary Structured Field <xref target="RFC8941"/> 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 name is an identifier that uniquely identifies the message signature within the context of the HTTP message. The member's value is the serialization of the covered components including all signature metadata parameters, using the serialization process defined in <xref target="signature-params"/>.</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 <tt>Signature-Input</tt> field value <bcp14>MUST</bcp14> contain the same serialized value used
in generating the signature base's <tt>@signature-params</tt> value.</t>
        <t>The signer <bcp14>MAY</bcp14> include the <tt>Signature-Input</tt> 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="SEMANTICS"/>, it is <bcp14>RECOMMENDED</bcp14> that the <tt>Signature-Input</tt> HTTP field be included only as a header to avoid signatures being inadvertently stripped from a message.</t>
        <t>Multiple <tt>Signature-Input</tt> 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 <tt>Signature</tt> HTTP field is a Dictionary Structured field <xref target="RFC8941"/> containing one or more message signatures generated from components within the HTTP message. Each member's name is a signature identifier that is present as a member name in the <tt>Signature-Input</tt> Structured field within the HTTP message. Each member's value is a Byte Sequence containing the signature value for the message signature identified by the member name. Any member in the <tt>Signature</tt> HTTP field that does not have a corresponding member in the HTTP message's <tt>Signature-Input</tt> HTTP field <bcp14>MUST</bcp14> be ignored.</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 <tt>Signature</tt> 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="SEMANTICS"/>, it is <bcp14>RECOMMENDED</bcp14> that the <tt>Signature-Input</tt> HTTP field be included only as a header to avoid signatures being inadvertently stripped from a message.</t>
        <t>Multiple <tt>Signature</tt> 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. Since <tt>Signature-Input</tt> and <tt>Signature</tt> are both defined as Dictionary Structured fields, they can be used to include multiple signatures within the same HTTP message by using distinct signature labels. 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 is a non-normative example starts with a signed request from the client. The proxy takes this request 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-Digest: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+T\
  aPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
Content-Length: 18
Signature-Input: sig1=("@method" "@authority" "@path" \
  "content-digest" "content-length" "content-type")\
  ;created=1618884475;keyid="test-key-rsa-pss"
Signature:  sig1=:LAH8BjcfcOcLojiuOBFWn0P5keD3xAOuJRGziCLuD8r5MW9S0\
  RoXXLzLSRfGY/3SF8kVIkHjE13SEFdTo4Af/fJ/Pu9wheqoLVdwXyY/UkBIS1M8Br\
  c8IODsn5DFIrG0IrburbLi0uCc+E2ZIIb6HbUJ+o+jP58JelMTe0QE3IpWINTEzpx\
  jqDf5/Df+InHCAkQCTuKsamjWXUpyOT1Wkxi7YPVNOjW4MfNuTZ9HdbD2Tr65+BXe\
  TG9ZS/9SWuXAc+BZ8WyPz0QRz//ec3uWXd7bYYODSjRAxHqX+S1ag3LZElYyUKaAI\
  jZ8MGOt4gXEwCSLDv/zqxZeWLj/PDkn6w==:

{"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 <tt>Forwarded</tt> header 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-Digest: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+T\
  aPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
Content-Length: 18
Forwarded: for=192.0.2.123
Signature-Input: sig1=("@method" "@authority" "@path" \
  "content-digest" "content-length" "content-type")\
  ;created=1618884475;keyid="test-key-rsa-pss"
Signature:  sig1=:LAH8BjcfcOcLojiuOBFWn0P5keD3xAOuJRGziCLuD8r5MW9S0\
  RoXXLzLSRfGY/3SF8kVIkHjE13SEFdTo4Af/fJ/Pu9wheqoLVdwXyY/UkBIS1M8Br\
  c8IODsn5DFIrG0IrburbLi0uCc+E2ZIIb6HbUJ+o+jP58JelMTe0QE3IpWINTEzpx\
  jqDf5/Df+InHCAkQCTuKsamjWXUpyOT1Wkxi7YPVNOjW4MfNuTZ9HdbD2Tr65+BXe\
  TG9ZS/9SWuXAc+BZ8WyPz0QRz//ec3uWXd7bYYODSjRAxHqX+S1ag3LZElYyUKaAI\
  jZ8MGOt4gXEwCSLDv/zqxZeWLj/PDkn6w==:

{"hello": "world"}
]]></sourcecode>
        <t>The proxy includes the client's signature value under the label <tt>sig1</tt>, which the proxy signs in addition to the <tt>Forwarded</tt> header. Note that since the client's signature already covers the client's <tt>Signature-Input</tt> value for <tt>sig1</tt>, this value is transitively covered by the proxy's signature and need not be added explicitly. 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

"signature";key="sig1": :LAH8BjcfcOcLojiuOBFWn0P5keD3xAOuJRGziCLuD8\
  r5MW9S0RoXXLzLSRfGY/3SF8kVIkHjE13SEFdTo4Af/fJ/Pu9wheqoLVdwXyY/UkB\
  IS1M8Brc8IODsn5DFIrG0IrburbLi0uCc+E2ZIIb6HbUJ+o+jP58JelMTe0QE3IpW\
  INTEzpxjqDf5/Df+InHCAkQCTuKsamjWXUpyOT1Wkxi7YPVNOjW4MfNuTZ9HdbD2T\
  r65+BXeTG9ZS/9SWuXAc+BZ8WyPz0QRz//ec3uWXd7bYYODSjRAxHqX+S1ag3LZEl\
  YyUKaAIjZ8MGOt4gXEwCSLDv/zqxZeWLj/PDkn6w==:
"forwarded": for=192.0.2.123
"@signature-params": ("signature";key="sig1" "forwarded")\
  ;created=1618884480;expires=1618884540;keyid="test-key-rsa"\
  ;alg="rsa-v1_5-sha256"
]]></artwork>
        <t>And a signature output value of:</t>
        <artwork><![CDATA[
NOTE: '\' line wrapping per RFC 8792

G1WLTL4/9PGSKEQbSAMypZNk+I2dpLJ6qvl2JISahlP31OO/QEUd8/HdO2O7vYLi5k3\
JIiAK3UPK4U+kvJZyIUidsiXlzRI+Y2se3SGo0D8dLfhG95bKr6ukYXl60QHpsGRTfS\
iwdtvYKXGpKNrMlISJYd+oGrGRyI9gbCy0aFhc6I/okIMLeK4g9PgzpC3YTwhUQ98KI\
BNLWHgREfBgJxjPbxFlsgJ9ykPviLj8GKJ81HwsK3XM9P7WaS7fMGOt8h1kSqgkZQB9\
YqiIo+WhHvJa7iPy8QrYFKzx9BBEY6AwfStZAsXXz3LobZseyxsYcLJLs8rY0wVA9NP\
sxKrHGA==
]]></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-Digest: sha-512=:WZDPaVn/7XgHaAy8pmojAkGWoRx2UFChF41A2svX+T\
  aPm+AbwAgBWnrIiYllu7BNNyealdVLvRwEmTHWXvJwew==:
Content-Length: 18
Forwarded: for=192.0.2.123
Signature-Input: sig1=("@method" "@authority" "@path" \
    "content-digest" "content-length" "content-type")\
    ;created=1618884475;keyid="test-key-rsa-pss", \
  proxy_sig=("signature";key="sig1" "forwarded")\
    ;created=1618884480;expires=1618884540;keyid="test-key-rsa"\
    ;alg="rsa-v1_5-sha256"
Signature:  sig1=:LAH8BjcfcOcLojiuOBFWn0P5keD3xAOuJRGziCLuD8r5MW9S0\
    RoXXLzLSRfGY/3SF8kVIkHjE13SEFdTo4Af/fJ/Pu9wheqoLVdwXyY/UkBIS1M8\
    Brc8IODsn5DFIrG0IrburbLi0uCc+E2ZIIb6HbUJ+o+jP58JelMTe0QE3IpWINT\
    EzpxjqDf5/Df+InHCAkQCTuKsamjWXUpyOT1Wkxi7YPVNOjW4MfNuTZ9HdbD2Tr\
    65+BXeTG9ZS/9SWuXAc+BZ8WyPz0QRz//ec3uWXd7bYYODSjRAxHqX+S1ag3LZE\
    lYyUKaAIjZ8MGOt4gXEwCSLDv/zqxZeWLj/PDkn6w==:, \
  proxy_sig=:G1WLTL4/9PGSKEQbSAMypZNk+I2dpLJ6qvl2JISahlP31OO/QEUd8/\
    HdO2O7vYLi5k3JIiAK3UPK4U+kvJZyIUidsiXlzRI+Y2se3SGo0D8dLfhG95bKr\
    6ukYXl60QHpsGRTfSiwdtvYKXGpKNrMlISJYd+oGrGRyI9gbCy0aFhc6I/okIML\
    eK4g9PgzpC3YTwhUQ98KIBNLWHgREfBgJxjPbxFlsgJ9ykPviLj8GKJ81HwsK3X\
    M9P7WaS7fMGOt8h1kSqgkZQB9YqiIo+WhHvJa7iPy8QrYFKzx9BBEY6AwfStZAs\
    XXz3LobZseyxsYcLJLs8rY0wVA9NPsxKrHGA==:

{"hello": "world"}
]]></sourcecode>
        <t>The proxy's signature and the client's original signature can be verified independently for the same message, based on the needs of the application. Since the proxy's signature covers the client signature, the backend service fronted by the proxy can trust that the proxy has validated the incoming signature.</t>
      </section>
    </section>
    <section anchor="requesting-signatures">
      <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 <tt>Accept-Signature</tt> field.</t>
      <t>The message to which the requested signature is applied is known as the "target message". When the <tt>Accept-Signature</tt> 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 <tt>Vary</tt> header field that lists <tt>Accept-Signature</tt>, in order to prevent a cache from returning a response with a signature intended for a different request.</t>
      <t>When the <tt>Accept-Signature</tt> 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 <tt>Accept-Signature</tt> field <bcp14>MUST</bcp14> include all labeled signatures indicated in the <tt>Accept-Header</tt> signature, each covering the same identified components of the <tt>Accept-Signature</tt> field.</t>
      <t>The sender of an <tt>Accept-Signature</tt> field <bcp14>MUST</bcp14> include identifiers that are appropriate for the type of the target message. For example, if the target message is a response, the identifiers can not include the <tt>@status</tt> identifier.</t>
      <section anchor="accept-signature-header">
        <name>The Accept-Signature Field</name>
        <t>The <tt>Accept-Signature</tt> HTTP header field is a Dictionary Structured field <xref target="RFC8941"/> 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 name is an identifier that uniquely identifies the requested message signature within the context of the target HTTP message. The member's value is the serialization of the desired covered components of the target message, including any allowed signature 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");\
  created=1618884475;keyid="test-key-rsa-pss"
]]></sourcecode>
        <t>The requested signature <bcp14>MAY</bcp14> include parameters, such as a desired algorithm or key identifier. These parameters <bcp14>MUST NOT</bcp14> include parameters that the signer is expected to generate, including the <tt>created</tt> and <tt>nonce</tt> parameters.</t>
      </section>
      <section anchor="processing-an-accept-signature">
        <name>Processing an Accept-Signature</name>
        <t>The receiver of an <tt>Accept-Signature</tt> 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 name of the member is 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>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 any additional parameters necessary for completing the signature</li>
              <li>Create the <tt>Signature-Input</tt> and <tt>Signature</tt> header values and associate them with the label</li>
            </ol>
          </li>
          <li>Optionally create any additional <tt>Signature-Input</tt> and <tt>Signature</tt> values, with unique labels not found in the <tt>Accept-Signature</tt> field</li>
          <li>Combine all labeled <tt>Signature-Input</tt> and <tt>Signature</tt> values and attach both headers to the target message</li>
        </ol>
        <t>Note that by this process, a signature applied to a target message <bcp14>MUST</bcp14> have the same label, <bcp14>MUST</bcp14> have the same set of covered component, and <bcp14>MAY</bcp14> have additional parameters. Also note that the target message <bcp14>MAY</bcp14> include additional signatures not specified by the <tt>Accept-Signature</tt> field.</t>
      </section>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>IANA is requested to create three registries and to populate those registries with initial values as described in this section.</t>
      <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"/> and shall follow the template presented in <xref target="iana-hsa-template"/>.</t>
        <t>Algorithms referenced by algorithm identifiers have to be fully defined with all parameters fixed. 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 here. 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.</t>
        <t>Algorithms added to this registry <bcp14>MUST NOT</bcp14> be aliases for other entries in the registry.</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 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 identifier <bcp14>MUST</bcp14> be unique within the context of the registry.</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.</t>
            </dd>
            <dt>Description:</dt>
            <dd>
              <t>A brief description of the algorithm used to sign the signature base.</t>
            </dd>
            <dt>Specification document(s):</dt>
            <dd>
              <t>Reference to the document(s) that specify the token endpoint
  authorization method, 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>
            <thead>
              <tr>
                <th align="left">Algorithm Name</th>
                <th align="left">Status</th>
                <th align="left">Description</th>
                <th align="left">Specification document(s)</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">
                  <tt>rsa-pss-sha512</tt></td>
                <td align="left">Active</td>
                <td align="left">RSASSA-PSS using SHA-512</td>
                <td align="left">[[This document]], <xref target="method-rsa-pss-sha512"/></td>
              </tr>
              <tr>
                <td align="left">
                  <tt>rsa-v1_5-sha256</tt></td>
                <td align="left">Active</td>
                <td align="left">RSASSA-PKCS1-v1_5 using SHA-256</td>
                <td align="left">[[This document]], <xref target="method-rsa-v1_5-sha256"/></td>
              </tr>
              <tr>
                <td align="left">
                  <tt>hmac-sha256</tt></td>
                <td align="left">Active</td>
                <td align="left">HMAC using SHA-256</td>
                <td align="left">[[This document]], <xref target="method-hmac-sha256"/></td>
              </tr>
              <tr>
                <td align="left">
                  <tt>ecdsa-p256-sha256</tt></td>
                <td align="left">Active</td>
                <td align="left">ECDSA using curve P-256 DSS and SHA-256</td>
                <td align="left">[[This document]], <xref target="method-ecdsa-p256-sha256"/></td>
              </tr>
              <tr>
                <td align="left">
                  <tt>ed25519</tt></td>
                <td align="left">Active</td>
                <td align="left">Edwards Curve DSA using curve edwards25519</td>
                <td align="left">[[This document]], <xref target="method-ed25519"/></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, the values of 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"/> and shall follow the template presented in <xref target="iana-param-template"/>.</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 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 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 token endpoint
  authorization method, 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 this document</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 this document</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 this document</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 this document</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 this document</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="content-registry">
        <name>HTTP Signature Derived Component Identifiers Registry</name>
        <t>This document defines a method for canonicalizing HTTP message components, including components that can be derived from the context of the HTTP message outside of the HTTP fields. These components are identified by a unique string, known as the component identifier. Component identifiers for derived components always start with the "@" (at) symbol to distinguish them from HTTP header fields. IANA is asked to create and maintain a new registry typed "HTTP Signature Derived Component Identifiers" to record and maintain the set of non-field component identifiers 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"/> and shall follow the template presented in <xref target="iana-content-template"/>.</t>
        <section anchor="iana-content-template">
          <name>Registration Template</name>
          <dl newline="true">
            <dt>Identifier:</dt>
            <dd>
              <t>An identifier for the HTTP derived component identifier. 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 identifier <bcp14>MUST</bcp14> be unique within the context of the registry.</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.</t>
            </dd>
            <dt>Target:</dt>
            <dd>
              <t>The valid message targets for the derived parameter. <bcp14>MUST</bcp14> be one of the values "Request", "Request, Response", "Request, Related-Response", or "Related-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 token endpoint
  authorization method, 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 Identifiers Registry.</t>
          <table>
            <name>Initial contents of the HTTP Signature Derived Component Identifiers Registry.</name>
            <thead>
              <tr>
                <th align="left">Identifier</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">Active</td>
                <td align="left">Request, Response</td>
                <td align="left">
                  <xref target="signature-params"/> of this document</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@method</tt></td>
                <td align="left">Active</td>
                <td align="left">Request, Related-Response</td>
                <td align="left">
                  <xref target="content-request-method"/> of this document</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@authority</tt></td>
                <td align="left">Active</td>
                <td align="left">Request, Related-Response</td>
                <td align="left">
                  <xref target="content-request-authority"/> of this document</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@scheme</tt></td>
                <td align="left">Active</td>
                <td align="left">Request, Related-Response</td>
                <td align="left">
                  <xref target="content-request-scheme"/> of this document</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@target-uri</tt></td>
                <td align="left">Active</td>
                <td align="left">Request, Related-Response</td>
                <td align="left">
                  <xref target="content-target-uri"/> of this document</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@request-target</tt></td>
                <td align="left">Active</td>
                <td align="left">Request, Related-Response</td>
                <td align="left">
                  <xref target="content-request-target"/> of this document</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@path</tt></td>
                <td align="left">Active</td>
                <td align="left">Request, Related-Response</td>
                <td align="left">
                  <xref target="content-request-path"/> of this document</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@query</tt></td>
                <td align="left">Active</td>
                <td align="left">Request, Related-Response</td>
                <td align="left">
                  <xref target="content-request-query"/> of this document</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@query-params</tt></td>
                <td align="left">Active</td>
                <td align="left">Request, Related-Response</td>
                <td align="left">
                  <xref target="content-request-query-params"/> of this document</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@status</tt></td>
                <td align="left">Active</td>
                <td align="left">Response</td>
                <td align="left">
                  <xref target="content-status-code"/> of this document</td>
              </tr>
              <tr>
                <td align="left">
                  <tt>@request-response</tt></td>
                <td align="left">Active</td>
                <td align="left">Related-Response</td>
                <td align="left">
                  <xref target="content-request-response"/> of this document</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>In order for an HTTP message to be considered covered 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>
      </ul>
      <section anchor="security-ignore">
        <name>Signature Verification Skipping</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 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 invalid, 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-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 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-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 input string based on 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 potential trusted algorithms.</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 input string 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-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"/>).</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. 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. This specification encourages this by requiring the verifier to derive these values from the message, but lazy cacheing or conveyance of the signature base to a processing system could lead to downstream verifiers accepting a message that does not match the presented signature.</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-labels">
        <name>Signature Labels</name>
        <t>HTTP Message Signature values are identified in the <tt>Signature</tt> and <tt>Signature-Input</tt> 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 adding its own signature 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 parmeters can be used to convey whatever additional meaning is required to be attached to and covered by the signature.</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-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 input string more than once and could be substituted or otherwise attacked in this way.</t>
        <t>To counter this, the entire field processing algorithm needs to be implemented by all implementations of signers and verifiers.</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-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 identifier (<xref target="content-request-authority"/>) in lieu of the <tt>Host</tt> header field. Applications should therefore prefer derived component identifiers for such options where possible.</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.</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="RFC8941"/>. In particular, <xref target="http-header-structured">normalization of HTTP structured field values</xref>, <xref target="http-header-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 <tt>Signature-Input</tt> 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-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> content identifier in favor of sub-indexing the query value using <tt>@query-params</tt> content identifier 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-lazy-header-parser">
        <name>Confusing HTTP Field Names for Derived Component Identifiers</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 identifiers 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 headers. 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.</t>
        <t>To combat this, when selecting values for a message component, if the component identifier 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 identifier 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-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-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.</t>
          </dd>
        </dl>
      </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 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>
    <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, 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>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <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="RFC3986">
          <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="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="RFC8941">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="P-H. Kamp" initials="P-H." surname="Kamp">
              <organization/>
            </author>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8941"/>
          <seriesInfo name="DOI" value="10.17487/RFC8941"/>
        </reference>
        <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="SEMANTICS">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="September" year="2021"/>
            <abstract>
              <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document describes the overall architecture of HTTP,
   establishes common terminology, and defines aspects of the protocol
   that are shared by all versions.  In this definition are core
   protocol elements, extensibility mechanisms, and the "http" and
   "https" Uniform Resource Identifier (URI) schemes.

   This document updates RFC 3864 and obsoletes RFC 2818, RFC 7231, RFC
   7232, RFC 7233, RFC 7235, RFC 7538, RFC 7615, RFC 7694, and portions
   of RFC 7230.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-19"/>
        </reference>
        <reference anchor="MESSAGING">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="September" year="2021"/>
            <abstract>
              <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document specifies the HTTP/1.1 message syntax,
   message parsing, connection management, and related security
   concerns.

   This document obsoletes portions of RFC 7230.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-messaging-19"/>
        </reference>
        <reference anchor="HTMLURL" target="https://url.spec.whatwg.org/">
          <front>
            <title>URL (Living Standard)</title>
            <author>
              <organization/>
            </author>
            <date year="2021"/>
          </front>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="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>
      </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>
        <referencegroup anchor="BCP195" target="https://www.rfc-editor.org/info/bcp195">
          <!-- reference.RFC.7525.xml -->
<reference anchor="RFC7525" target="https://www.rfc-editor.org/info/rfc7525">
            <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">
                <organization/>
              </author>
              <author fullname="R. Holz" initials="R." surname="Holz">
                <organization/>
              </author>
              <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
                <organization/>
              </author>
              <date month="May" year="2015"/>
              <abstract>
                <t>Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) are widely used to protect data exchanged over application protocols such as HTTP, SMTP, IMAP, POP, SIP, and XMPP.  Over the last few years, several serious attacks on TLS have emerged, including attacks on its most commonly used cipher suites and their modes of operation.  This document provides recommendations for improving the security of deployed services that use TLS and DTLS. The recommendations are applicable to the majority of use cases.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="195"/>
            <seriesInfo name="RFC" value="7525"/>
            <seriesInfo name="DOI" value="10.17487/RFC7525"/>
          </reference>
          <!-- reference.RFC.8996.xml -->
<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">
                <organization/>
              </author>
              <author fullname="S. Farrell" initials="S." surname="Farrell">
                <organization/>
              </author>
              <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>
        </referencegroup>
        <reference anchor="I-D.ietf-httpbis-client-cert-field">
          <front>
            <title>Client-Cert HTTP Header Field</title>
            <author fullname="Brian Campbell">
              <organization>Ping Identity</organization>
            </author>
            <author fullname="Mike Bishop">
              <organization>Akamai</organization>
            </author>
            <date day="25" month="January" year="2022"/>
            <abstract>
              <t>   This document defines HTTP extension header fields that allow a TLS
   terminating reverse proxy to convey the client certificate
   information of a mutually-authenticated TLS connection to the origin
   server in a common and predictable manner.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-client-cert-field-01"/>
        </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 <tt>Signature</tt> 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 <tt>Signature-Input</tt> field defined in this specification to detect that this standard is in use and not an alternative. If the <tt>Signature-Input</tt> field is present, all <tt>Signature</tt> fields can be parsed and interpreted in the context of this draft.</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 these keys directly, and may require additional processing.</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>
        </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>
        </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>
        </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>
        </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[
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[
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 <tt>Signature-Input</tt> and <tt>Signature</tt> headers 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 in <tt>test-request</tt> using the <tt>rsa-pss-sha512</tt> algorithm.</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==:
"@signature-params": ("@authority" "content-digest")\
  ;created=1618884473;keyid="test-key-rsa-pss"
]]></artwork>
          <t>This results in the following <tt>Signature-Input</tt> and <tt>Signature</tt> headers 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")\
  ;created=1618884473;keyid="test-key-rsa-pss"
Signature: sig-b22=:Fee1uy9YGZq5UUwwYU6vz4dZNvfw3GYrFl1L6YlVIyUMuWs\
  wWDNSvql4dVtSeidYjYZUm7SBCENIb5KYy2ByoC3bI+7gydd2i4OAT5lyDtmeapnA\
  a8uP/b9xUpg+VSPElbBs6JWBIQsd+nMdHDe+ls/IwVMwXktC37SqsnbNyhNp6kcvc\
  WpevjzFcD2VqdZleUz4jN7P+W5A3wHiMGfIjIWn36KXNB+RKyrlGnIS8yaBBrom5r\
  cZWLrLbtg6VlrH1+/07RV+kgTh/l10h8qgpl9zQHu7mWbDKTq0tJ8K4ywcPoC4s2I\
  4rU88jzDKDGdTTQFZoTVZxZmuTM1FvHfzIw==:
]]></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 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 <tt>Signature-Input</tt> and <tt>Signature</tt> headers 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=:JlEy2bfUz7WrWIjc1qV6KVLpdr/7L5/L4h7Sxvh6\
  sNHpDQWDCL+GauFQWcZBvVDhiyOnAQsxzZFYwi0wDH+1pw==:
"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 <tt>Signature-Input</tt> and <tt>Signature</tt> headers 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=:0Ry6HsvzS5VmA6HlfBYS/fYYeNs7fYuA7s0tAdxfUlPGv0C\
  SVuwrrzBOjcCFHTxVRJ01wjvSzM2BetJauj8dsw==:
]]></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 <tt>Signature-Input</tt> and <tt>Signature</tt> headers 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 <tt>Signature-Input</tt> and <tt>Signature</tt> headers 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="I-D.ietf-httpbis-client-cert-field"/>, 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>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>This specification was initially based on the draft-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 draft-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,
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>-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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
VgM0OQdAogJIlS2T6KzK/Xsp3f4R4c9TJGfBfVQD0KmH5FxbL6dk6nmbJx2h
Y52wW8iJRqfCTXonPuqSgxIb1/Dx6l4Ts6Svh4Xns4wGIpmIaJSi/B8nUf68
mxTMEw8v/rpGtGBHUOlsMoJ3Lba6cJUlQ/0zN2LbCrLLsLa2tPx86/zT7kn4
frjw7MPFQbg92RgNkqvt65fnyend8rv9ncv91aXt5ezmw9MzjPsPTwZPt9u3
2xcvzodpI/7Y74+fvXjzZhKF/e77w5vT273B2cH5h5tXt9Ht8+dbetrDaHiR
X24FSxsVL+diC4936fkTHQvtpS2wvTXAyecUuejSJubMgz4Nbz1AP78kN5Sk
KkzLdzBr2wp4WVuH2wcbL646vc5x5zC5isfHL/bPh4sna9fR7srd9vH41enL
L/HO4Xh3I107Ot9sLuKcp8mHD4dfDpunvZcfF1aa+xvX7xvXB1d7SyvNvf3u
WbK63VvovVo4GW8CsH1ODt93bz9MPi68u37RaC4dbbxIKcVio3G8mw3Xdvcb
6cvFRtoep+3DeHG803m6t/yp0WivH7TfvXqaPL06Wdt4FfWPzqLFt3srjdF5
483Z3pfRHQ5y9Xm3t7aw23vaGB7sbF+/3Tkbv87CwdX5h3ejyfHZ0vn1Xfzs
48n7N8dX56tHvTfjs0+bB9327vJZur729MWHCAc5e7n5qbmw2Twff9juPH3x
aeN8cvJl8e3pl4WFqLMyPv/Qfdb++PF4t3l1un138PnD0+ZSeLFy+Gmv/3Hy
7nW43aCVfNo4enmcr1582LvdaR7u3ix8+Xz3KTo/vFo42b0erhO4VL7OXUbA
uoAvzd0mab87900xpzi7R50YD6fwgZncdm1xBbPebmLg7u+GOt77QfWWH4hy
CvbXl3F/7XGGRro8xaHnZD2434/JGJlQvy993ycowSdpHnLwBzBrdRb3MCdD
aS1+UFVCFfXDgoPK3LdJaMKKRljrS/WxE+XFzwsDYttC7GgVLZhTBSRDoVWp
kLOiKqwz1pQKHGePyn+yxBq414pPHugKXBJRcm1zBYFBCnThluGDB5AEhHeP
LDyeJOAgHll4PEnAQTyy8HiSgIN4ZOHxJAEH8cjCg0hCSTecreCJvun7eAAz
jplXOl9kEZulaXFRp1MbLa+tzxmBeQrJ0YD7PWLCv4g2FfgynBnm8/2rz9ri
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
Z3WyGb8tcGOOx5tRHwhPt+JhqybtBTerR/aqfuLaPMf9sf1KwA37mf1KwA37
mf1KwA37mf1KwA37mf1KwA373v3iLEDsZrqzOU+XsrVobbViKXE5qDX1eFDz
+nGY7TrDvOnIRsl0VK46qp7E0eF67lpLsTvMSvxYr2ft6dJOS11TWqtCcXmt
J2o2Z07mq2bObhbu8vFeW9+5fVZLSflCr2RtrJarOd2SNZDqZuui3OTdvdMr
VvMFRTVKdkVYJlJGdjIuZ25zr3CeSJn11HJSp2yv2bk0x62J0sgsjQ6/aTn7
e1Ep5UenMiCa2vbP/KlXmfZFLnGbrLxuqtO8buy2MTulBq1LfbmsnTPVae2U
cSr5iqSM28Xi9HI3Zkf/5NVSFW6WuzcuWn9z7E4SY6s0HbnOqe1dN8uJd8tp
d9GfNTL8rjjNLbhreZgqeXmfd8dZtwc0j6m6yo+3er23LopuO9NJrBv3cq9T
r6nrI+eelHnHOK3q+d6o4q2t9qHf5rrazKhaJdsd6VKl5vTa1VorM9+eRS7X
qQ37Cak2OFWmt/V2dlLNpc5XNzuJM9JSw+bAGJJWNYqXdbfSGlzHTqrSmObH
VmVQnXQq4OAXa66fEO799W6i7rndvOkb+vJQ3NtZe3znznt/O1w1vGu3tXD7
o/092+a9RnVdOVzUk7pu9bbGTTtnE4bfKXK9jL1uZJrlayVrOzo3mU/8lpVZ
74q5Y93Pylf7muqs6pPyfjxZjo9aMT1w53XvkqpMZomTmTNKJ08pCqvezazk
t9nTxJWmslmr+V2vu5yf1eIpt9n6i2GtU/OMiW+Yo2w+qy8n692hVE7w6Wsn
u+FKq3yzviu4g4ky4DzxLI3qiq5OcqY7yKjdcZfXmtaptdx2s6f1hb+ucqv8
cTsSjpdEtZaSwKMbOTdalsXmuldrncrmaGvshEXm1pKWh+F+takcJv2DwQ0W
k7TSG+fqO3fSk5el6tZM7PIbodyZZnd+0xzmlWvTaA3zrU0zVeIuwEjtrhfr
QUvcDxp1vzhzOWm8FHoT+9i8bXnpetpYiUp2XTvpJ032d8qwuPb0YVnxrtlr
73YScwO3pjSrXKU0PzRTojIwV/W2cMyOhG6qftZm+/ZcTKRzbcDuOt2lnuW7
Tk4uXLndJLMx6+vzxNkqwnitztrGUN8tS+nmeQ0eXqv1bq3Rapw63IxrJtrX
lnMCYw61qb+Sc01jsVjf6sZ+Y24lu1K7ivX+2FIuV0DZjOv2u3m/NHcF7zK/
rC+NXM5InCCFhWLTr0/vbmN0yzfFTP+ysQHHKdU7457qmo43H22uqXuubueu
matUtBxT4Yu75q2RHSWW3ii1axbHJcGW7/neZGekuj5fWza644NaPs+u0kFx
9vyyvh4Z9X537c86jeKIb1bTsnxp9caJ+lgZ1Cq7VlMtzFfzirFvmVPey9e5
bOY07uwmgpst9vMVpZmT1j6fHW1soTWVBFPgMp9jIikucpBix2pINJsfakqP
CpLtun+NkgTfHFOURrXu9G+VuL60+wF96Zmu1D5wA149nvZHrVn1MzyQww2O
GwJ5XOFYXcopeIaRd3KZpZwebU+XUdbNJVJjcPft80RcVNanQkY9zCeVW25y
uIol2W7mmqvWdrS79N2K5KV6+2yzVShec5WJn5/cinnDSCUsbnW4jSuloSkc
N8VBRV9vVVUoDMGh7Jds7tI77o/VImfKM2DIbNuN0WBeGY36w/Lw5jS41imh
Cu7dPIwaxmzo1erSILfJNuylKu3987o36qWW1vGke3I2a55Ody217VSly7TL
CWt5znGD4jIx9+6yrd1Kve1MnV5HZUvS5oWZmVGL7ZIobDplrtK7W5nu9LZZ
W1yhUjRO0jDTXHDywq/qp0JCHM6ql5KcMreFrTk4jhdHvTfO7xbcpWOkrrIw
tKu92qA2KFQWOdsUhsfGopSaV81F0bpJpVU7kXtQpr6mSD1Voi4qkOsC14tu
pFVX1ekJfm+roZIV38gE3Mmf2cgE3Mmf2cgE3Mmf2cgE3Mmf2cgE3Mmf2cgE
3Mkcq2WNa3O+otmpY0fTNotuo8KddnxanI8yhxl3Go4Vv5s9djtpbVxb8bVT
wt5a+VJGvcheptgqLjbpibA41tVh7ljOL6bu9qyflHvXrUwabs6rG/NUB8iB
al8Zd0ZLaVRaJcQuWHt77WbqOWmp2pUmJ6gW71Z0nT9l5vtVprvbqXpbUY55
s7wpNb3CuqEquRknLXPL7aCQWO26Zf1sN25WqdW6LSfautXvc5PxqtdRhlN5
ZhbFPj/KjIaF7fh2LA4n19l8qgwlbdSZN47eONE6Xprbm1HuOrf6zm9VZkc3
0ysv9/fbqJQZ9fLXabUxGHaAKpO63z1/3V41hfG52881Bbc9U4REzmjnrJY1
6t84IePL7TLvTxfLbMXO7lMHdScVZF0B8m7CWU2eGy52Z62uDaV9U90vihez
OEhMhIErcQ3Tbh2yY7XvlNLzZqY4mamG1Nst3Ha2XdhOj1unfV50L1qzuSuL
nn6cDLnesJm+Tq4JoSfKKl9XBrdWr6jfS9p+LDY6vcU4c87PC1O+VO5k1t5i
mJ+U9JXUPvBC67yuTA/rTrmmlTZAmT4LkiXWzwdTB0JyL/avl+lOmnfQlPsj
t9ZaeUr2vBxwp7Uo55Zy7zAS9K437nSzslYzEs7J4HNqZVyvVvfCsNX2DgJf
l+1bg+8O26PUwF54/Vy3t5+Ih4PUq472lYPTFkqr+Uk7js8LLVHoVBuLnFHI
HVb9s2bNZtm8JnPtnmiu1YoA/n25pfOaC07XcJBZ5efcouuo/bqpZPYd+zjq
JRrrk6p4FwFNudsblzqb/naqZOxRu3OcisZ47yp7tVecuMWstioY2Xs55a4b
XGe3vwzy43Ri2Gy3hIldah36c+naslt+eZ6aZmf12VUZ+d2e2eseSnu/cjBX
ubS5majL1l1dSOuUO3InCtiFQWexS9V2+9Jt6N3N3SqTsVOd5XAlT9cVVZ9O
Wx1/wvUtNbVvNJdZDtiMZb+SWfFoxm1jkhgAVfMk2qpY5yozp3E9dgxTXa1F
7mRzGQ0coPLxkp8WxuJlxM+bXqPT4gfz3l3zbvJx4C02CcC29qoESFJdz/Yz
K212pdRwI2y26m5QdcvSuFy8ZkbjGjcs7K65UTU7ThnCXZgvZkoznzHqCS9n
5KcZuakUyh2tc9V2i+oo7w/4gbNpTtuNvOEMJ/xigInczoy7Zq59KU9VqzBL
rw4DISHrueNmtjo1uWNFHu7tueanW3I/P2wut/vWITeQa3de14bG6Db2OKdc
zjTbs+Vly7VT7cn61khMyw3zWNosFouWez14YuuWPXeaDV3c3LuTAtcciPPZ
sNN3SwNRvteM5oi7DsbjYe1kzQ9mYTVJOMODU/XzhWrHspqr/fC6PVfM4XXF
yKlvalf1Wi05essVS8kZ9EA9KlmKJL3Z4PuPFawnOpWi65qNEvyT0hnWeFAl
i2kMjz5Hrw41r8QTzSsZ0bzodL7qovoplatx9Ov+utW1Nu37IQMk8rpN/g1k
hySMVa5+ai/Wm0Wv5ow2rWbrMMqWa7NlJp0Sqr1dws/Uj4dTo3zlCw3twl3v
mpTPeP1+odlI7Scl4bovZzfFzKLZlHX5eBRWm5o5G5jWavz58/dpGPXaEyWj
JUHlod5udLf73WCzswV3WcinMqnOYe5Uu6ntTDlfLftcKuZTe15cNbmyBc52
rXZqTvuFaoLz6y1rPv7m+j5aXuLH1vdsDY+HU84Vi9nqh0cTf/3hyTSfn8Pg
CNZlmATgkq/IaF83A2KHEf/kH28G1CyfH6+Fbm7hc7c613HGvUNxlK5UtVV9
Wk1dGqrTvuWqkt6o1mppazRy/bxUFDJb9zuP1ON5qhXAeeKC1/K1dr3dSQnr
y740rZ8WM6OYERpeX7DG2nFmaLWT5iwuVWPZrJ52U7PxIzxoCtHR5eQUps2w
TnCEmi6/uejzh13G3ybxt5DupULSAUzIMvTbW1h+h0NjzGbwoquUCq+J79vm
yBy+kK0aDGf19+Qv//kLhqP2HRGDkkCgqkmjlqyUq7lE4ny/dHZ84ZwfZDq3
wqw82JSLfWEhOZX7dNY2FbnjHVXpXCitl4UVf7sPOocrL3uH+VHujHjvPxPJ
5NZo7duCVrIlvXJwRfegz/qeAC8SISK+GjVY5PNRJO6DOC/pRnljU/1QEAJV
DEUCgw+Yhahc2kQNTWbRGJdIgrZBQ6ZwvyLpFO84nYgkw9EUYUxy8uEXFnoV
zhAHg5IIlo18lRgNp7NkemdZ/xtFhT+j4r3/NVK8z7KFX5nOfsomIIzoO53l
J8kyEgJY2HtyBjOkc5kkZzvgP7lsMpN7z5Tfi8Vksz9LkLyzt9nNBs8yeVjp
g2uZwdeCBhYEhgdH5a2YzX1+X26Ekbgw0+WV2hK5W8U2rAN3bC6tyTU3b9T2
jUKWy7mXVWoG91gcGSlu63MqvzSdtrbW9XOZHwxuiqjLi95l4teNWWu5unR8
xf/8+T14bU8xVW//nsxWEonfXvaA1Vkv78kX33J0+eV3fEAwjV0bZpXFiYw/
/S4qUzoCGmWSw+43iFf6KeJ19Pott93N7+Wls2wfpOxpUeouerbspMu9YrpX
2JenV8CE3AEkXssWxkuh1ks1xXNjvJQ2/GUh7LXb0OTG7vW+aax9LeMLrVTW
fkq8XB4Sj6wTkk+1LBmwAZVS8G+ooZ6pGUCEhEX7c5RiQP1PYO5g6uT+0XBj
UCcu4vYVkf42DG5kdJAvbD9sKKeiV+IVZymS9A0lYcXwQdznecrbaHJsWLYe
KU8GT8C8nB1KayPgFExfkaAqAgav34IUERMCuQdxYQefKzma+kWadr//CPd8
YRACMUYW2J6///rvpDr7c7aUrVQqhUI5/+9gdpr8+SXunXuBB+Tf0fw+v2zz
x5xtF4/l+1sxo5q+/emmGPILE0emaRhanHE9pu5Em0/R0kuKkBgpWqK3CyNt
RSPruKXTF1gdvM1lvzy7ed9Hq9gE35NkyM9P6YXI8hHNvkWv4FXhS97lnG3M
LsbWlIT8dWxU6tXNIlfJVfjDeNlUNZ8T/eKWO6radm7ZigHf3+tIS+GW1o/b
bYu7KAVpwnnXfLZ9KldK87LmpVK+2rxuvcl1V5nL1/K9sXGl430ldvpHrlzb
N+EgxZwyPTaut2NHGZxcZ9kqTlPWddDQhYJ8X5x9pSLsZ9ODWLlet5P0JicN
m3Jte5+Uc47aWO7vVzhIbnHgT527O+r12+PuflgQmsp9pez3S79eLK1r9dSw
JGWM7sbdXReOpc4vXKFV7x0W3aXBXTy9BAeZmzVg5q/v50WzuJxu0+P6YmSO
ijND4sxeK6um3FTqUpILbsXIqDU/u1sU09P2rHeqGvu9VemiPUmV66P1bF5p
z7Pb3l6+DouDm1epVWDawLhaWfnVMWRh6MQyyQpBDSxNYGa4AcLAhEzJsL0b
4f9sHSfthUSqNmI53Thd/myidPNYQiSpSA8ZHs5l+oKOzxcGxQFlyBGADo9F
AyY1ReF0UE4TvkIY+QDmjEX6RWBORtKig3aoMBkOVvjGQfexQYpeh4vqYSIj
KrSLJW/HGkqT2hob1kvGKIYoQsF6Q8Qk2l6Ndj82McGf7YiLdVVYVEEwgDH2
w1N4B5RdQ3qEoyIMbC2Emw/nHaAdsag0cCa0lPcBNec16JXGlidFuhWclRBV
k6CAKJh0qBH1PgKC40K45DDVjx0kEBNoMiQTKMgCjtRcBl0mSLEy7ODCKvKx
oUP8NjZJLuysSpW9OHUfUKV+Jxk5UwwRdoEQpnjbGAye87cFPulPH8GIDX4P
tiSm3H6PCvAPEashPkZUI36hyB0yUsle/oBCi7jY7EcV2ueSPgLkEZ/br0iG
/YAqgLnmP1fQR8R7Dor3P1m+5z7/2VR6kO5g8xuKkj3fquvm5lScz31/PS9d
7gV5M7js/Hxz7TT0bK+01hft27x/Xrrwnf5SGEwvJ70gL7yposnrw3ozN8pT
vlYftLfF7vqW429WLb9tp8rqTZZzWmHIzYr6TfAAZ7JNDtlFlfMova1e57aa
WkxHdX3Lu6XOkm+PXTll9uWWoKR0N932F31/dfRq+fL05JrbwW0/sEtH6SLB
QZa2cjncG5KQW5zkja7M74XDoDxKLYtc3m9p/eaufWgvzXypuxrwqUn35uhN
sz2t3ESeB+Ko6MBBpM2y5/S2nlpa6E4rm0pnypNF6qjO9mk9m9lXTqqtV+/j
1rlsLLdCd3bKeJ1Kt3DzpZFVK7i5Nhyk4MwrlcNd6ApNeTYbNzbWbLG5bozz
rJ9tXFq7e9t/It3/xeD/PAbfOIP11ohw/RGOHtb/b3F1SoyV/z1aB0pLRlFH
R8hBdGRs/pq09bOLi04ecdReMam+Tywkowfkaf8cjA0ZFLUpYcHVt7q1MApb
iED8p8shBL31LQ/My//BfS/Bg9DTA/62RW8P/oIuH/AXglAGfz7z/nyPqINb
9PLEO/HXyUL6YnxmXpB75wMBicHLAhIlCXGSlCxJOIXnAgKt+0FeJONv/4Ni
9q+Tsvk/34jOf/6fSekHUZ3//L7dDioW5wyva+t208fj+bw0XvvO7Cxee/6B
q1V323WuUZoulpd95sbDd2r99qQ5NPtrf5Mu9iel3TbT3Wed9oSbLq6No9L0
SpV86jSxJ5N50c5drJldLlU2Tm2+zVe6md0cDnIdZIYZrVasCvf1tSI0dL3Y
NG7y6Do1DKV6Kc17237jqKcWRT47G6Vvo4W2KHfd3sC4dLVep5WFg9iN4z4t
rrlca7Xa3Af8ymgfrbHVk8vr3bKaPdarVrpWs2rZa/9W7nBZzfYv3cvOcUtF
XTb0cxU5zO1miavyxn1/vjcqdc0o7ipnraq0Kr1Nq1ItpcbtRil7FPPVBZDv
e6eq3frzjn2ZrHKb7V4vbuAgnft0crU7N6u+4Rq9XGNuFXez9t1zhU23rvYL
0pyLimotagqHnDlS9v8Fuk0DNv0UGeDrgIioUpegUlD7mYSeoEl5DqqSd2JY
rRZ/b4Cqg2AigvqpwGlIi7ge4RAjNr1tUVT3x3HCuZNQWwhtQmtVKGYl7mGJ
Le4LxIoI6uXik/6oPJsijj5vZEg1AdSIBdntIejbHsNBUY1C9B53IVyyBYs8
vSfKRoC/+i9r/Z9qrRMQGjE5IZEMojopkgxZZK5YgooT+M9zpS7ehCIeFaH/
CiVOqJg9vILRzRL03kCX+WPawpd/jKfcA7+GSkEuk/kp5eZ7gy+QS7qDHw2+
PCo3ufyH1j9Z0zclKRK9cWn6PZKUbslfrrQU/nylpfD5YwpGCPahPvK9cYOQ
ig8KSeHze2ZyK7Xcy31aXBhcqaXv+PU0vVuvlYFb3q3PXNnNeJx83c31UfOS
qcE3TBdn33Hu/PAg1Rqt2XUx6WSy/uEyvfdzvOJ1xPOhIrsf2coY7v1fzPXP
Y664dyvmfntDlP4QV330eTJDsTFPwj0TJKvjgxyMv8oY/eP25NctuA8Nh+8y
CyLk+cu5WfHP52bFz/8gUj2wrOLnd/sqjf1SM88dvD4/PvhWZXU/bnbpre8W
e4q+FfvHotNsN716hbIgHoPKxJuCMgXtENILgl5qMIblKphthFpiAAxGbiZE
6pIVa7dzY5hbweDfvKokNe1nrynNcPu2gkNT4f6nuop+3hf0Uy4Z5txGBHBM
q/lh8YvJ/pff+tKff+tLX3W8/KPp+cAaSp/f/ZPEnbbGupM7aDlV33F9cXIr
qM55vTavObPeGORag9LBMQVzXOsip8Y5k2tuM4VLtS6o/nyknQtcxi9dzuNL
UW/bxeXI5ruTWqjNwIy+3vRthoQytqhHuGUawtZ8CLg7BL4T/shjfoRwWF2k
dFwhYqeHgVsQHlaIZhjCz6E7qyOc57CvEO3YQRu4o+A79ghj/FTjjBCzIYwg
UjiOCgavR/DUcEh2SngqVOHBwXr4S9cDW2MwbTbher7U0GTeaooTerZFCbAV
maAc/fZb+034pCne7g2eua3mvuEFvEngN9go//33wN9AcNRifZzR4YYN1TFo
Oh+Cm6KPWY/6K4LrY6kKVThIJ9QLG8JIuQgii6JokZUy7B0hQkG0XEzPX1y0
fqbDCmo/DTE9GWTToDMIuYgQ/EqBDTkQPgWEH0TdPXD3MpoPhgjxC+xYRjsw
MRsM98mN8Qa6xeQlaEcf9g7LhXDT/6cmZH5PZiSCxkGrom26whMJmIephK2U
CGC1GyUtehCcNIwAg1NDnh/bsL0I6teG0bV1Cx9jfC4IBDmEmwQqQhJ28YAm
AVCAyUef6DOfCM1ozvmH3P5sEiwfsrV/nD//0JZ+NN9/0P4y9H5PvsNy2JNQ
q3Hzksr5bZ5T2zx/57q8qp72x8NwNB4L3IEr9Seu3xyvhcV43BUgm+Y7/c1q
bEo3npdXE2uzLGbE5WAvN+fX5p3b8OpgwXP9fv145dt1/Sw3F7ftcnEUl43M
ZsoLY5TIyykNP3PrC9y1Pxvf+od5tn8fiOizGfjs0A8+63OZa+3Odei43LEj
9BtHFDr/Vu1JZW2uVjtxrhpm3xuu5um2KS1FfbJXts7KkNAgtcpFVjtZu8gr
xUY6v65Vht7+2i+kjtl+Saxz9YbUvB872uBW6lQKt/L5blX7pcGt3+L8GqQL
HGSSmfFc2+cEbgfn2Zr2602BW6r8xMgvDz0xX9G39XXtrNVGkpfZiNO6kBO4
IXp2XOG5HRykUgfrq/EuB9clLCYZned8v6aCdflrnh/PwRvbfmuMvptw41aa
5/t+fV0frY3JYdxEMymsl1l/25yf17mq12eKVuDYXEbl+vV5rc23ZDHtZC9i
D2jvC13rFdKCVlp3M2Pkrtr2D8r0WMvLjdpwyFdmnFbnrulja8oXzoDRbTKD
VdEprkTHGB0zvnG+yfzCmhf2/GKTve2PQEB/yEuWBH9WZL3STy82aRuhUJDw
s8v46QPMRIb/7Gn3DwQ5G4FxjAgr5QOJGUD9xVX+YGqEPXwwYeKmgKhWjsKA
TJEaAIwli38bNJqGXPUVzTzsgMiqESQvj6IdB0KHjklZSDLg0b+4cRMC9V11
w3zngO/9oOf0h8LJcQODNSk+5HsvjFby8sd4FDy+XeEneRQcZDz7SR4FB/mO
+riv8yiUUnP8SR4FB4E846d4FOLau5/kUXCQ5uIneRTandLP86iPvOmxeDVr
UT1YUsx5/fMd6cH0fuiiXhf91sIWfZGrpTPTbcvpTtyqVmnnlaFbnHizfrO2
XBnpqnnZ3K2W21ZLfUmp5rPFWelqHfXbLXP7z8R9L1TFfaHTmvj93lA1tLtP
C6mWCPfuq5MONSncmSFAYMRa5EeqXABe+cjIHkxpz3PsLz9El3+pZv9Szf6l
mr0/upDgVfr8T+N7jLMIvfj9x/kVnMIDz3rKsb6iiM4+UuEiMMiPnIj4SEjf
XKjvUYj7qIYaGL+s4QsVPQSnzWCL6qFZLSMQYk6CXQ10RVYV3GTrt7+JsY9+
T/z2bp6NLczy+PyyE3VXeQngZSOIzD7CoEa+FPCiSLkpgj1+k8QLMG+RX+gt
4oWHpFE8Ao6MwGSTiqx5EJseq+a6diReIdHE/XvwMXEDNHz029dkX3SOyRp6
DyJfXzTPySnQss3bK0VW1RzcGZkCo6OfUmJrqIWFp5lnovJ7jrY9kx6nKH4Y
hdGGbiGSl+lGHw9FEV69Baf8hmUWpgEVXFECMNYB7f+r7MDUPeovipIGzeCR
PqGUhJ0wLpp8Bg8S/HzcwQPCpbvQfiHdfh4aW4eA1UFPUmAfyAptG/B3Da7f
3gMpiWv5UaeFX98TaBM4WTQkzXwlf+m6Av49Es96kgNmlKsrt9fEb7/91hUd
Pcn/9//b6wZ47vfff0efTr3//r9gYCBhebDwu6HcFAd9NxUdGIOtibYoa66u
vSZ6mmgkBQWMuQcjTj3Fhl7Fhgi7cejgjXsNgg0kW+BQisYbLx4V5zVRh4Gg
lqXD7j0JzpQd5ZbsgvFu5yP4G8w82TURaYAQvijJnrI36T8t2H0KvKkNNkZL
9rSzexGBkH9NdESYM9X6BM+cCl/SBUxOhzewD/gZMsgwLQYWcvvuReM1sbbE
S3KgOfCt4CEzORLBpMCfvbMErtNIdGQg/xMTC9w/sL8jsKtgzZ2zDp+dKK60
P4Kv+0BNEoGqMoH/dWQg+V8TS+sgaQpQnyY3VVN09wh+B79PTkX9ThY5lQCZ
XoGW4NySnU/Jqa7YYJkamCOgI9y7lmKCr6bguN3glI6ie09O74ovgR/tHXA8
lsp2Cyu1wAFJdMAxhYRcA7P0qKHW2kmBVu63EKb97Tkz+TeoOtWF9mw4eU+C
YwhNyaBxAlM8T9pEYGQTdE7/LZF4I/cr4nMmrjSGzSQAJ39LvmWq4L/gf/+W
rF9ROx/SFQZb8AgyH/Zvpg9N0Cxk2sEX3gPanRjebtRhO0TlJj9qaFfwEyTb
mARupj8gM7wpQljqFwbXGUpK8qbYp9AnDw7OC7zpL1HL+yUYkkPhIYnt6oZb
Nn/Q3JXtFfuJEqkSEAnxGugd34FFhUus7eEhh1PE/Vc9ZqV4fg8Z7OEUAeVF
1Ckgvj62gyJYP8cPGriHXWx1FICEqcii84K3EnXPQdASpCEsTj8Je4Q8Pk1K
BL/ayZ4SpxydTBAdDpB2pFuU/vHpo7YdqLucxeRYkJwRdK6YRrnk7LuP1Gtz
Aw5cExVMFBy0h+fCxUUQzlEIMYA4D8RYgEkO+49GmtsQ2GysH9AWmOFrBNKl
gTmQuM2Q+wIpGvixaOYeljakdjXI7MNH9PEshVQv0RfObZyZo4MTeIZyHuV3
PjQOYruBsPjspP3EWfmQUjGtFf0ixBiAOT2kAwSGZY/15aLBWtxvWdNhx2Fm
+5MvHOp7+xaMyDY6p5cUS+qQoqaiWkCvivAOTHiYhBQhHC5yYVYMSf9Ge2nQ
9t+kE1T4WOyI0ueC/dnihr/BdhSjHBKXNAP1IMYmEGVvrE4bnPcwwPYpurWI
EmCcR8YK6RdgmkAKQZgs+HSrz9WCqRXo433EutnCasqL2T4wOENZgy29wnmT
jDIkFfSgg2Pkd6itAXNvLPCYvgPaxqf4SYWVSs/WQmEamHxm2tQJryT/eEI/
vMJBvOzJ69k0LijsXFxTC3umIbuL2S8F6GO3oPUK6uEV/t5VvId73xlO6wyN
DeoQwdN5EKS6okL+yPwAzSDOT54l2kM9AP6B7BjEJkOeA3jNFgapYSMmRX8Y
TIEiLNKvOHbDcB946p8PbJeYgAo2JhdflhLIyaBfMTwuVPvB8fxHamhA3NBn
NNeF08LYAEBmixfccQt1dYTPou+ZIYD6Ant1nGFbk7PkoUjAY9oIdnV9O8lE
0HCTUqTvBeO18BgNxPAe9v4Jt0FkDU0OdlhDgYof4EfKJ/XTa/LLy/VNDr7F
mQEv0Jr/jB98g6rRl+9+J+4xNKBvwW1behoUPeH7IHHJm94xs/pc+BLT2wA/
eLis9CohLiGf8d0xYV9w3CYUxvRly0atOGLz/Spvxg1BwgZ9ytVTsB1qMBtN
+u09vRK4Aw1TGfhEzcGsRj1rMmrwCBVpcKQIyBrTMgqYyEFfLiymaV/hx9tK
LkKWvgOcGeRjVKiUISoD2puP9oyNxNOloK7dbxDtKvl3iWiZ6LJPW8N5T4BP
wQ4zvz4ILDFgsuwNR5wc7tYMpgXDNQH9SXPCz4Jx+poJm6YwFxnFvXCnZaSy
iDLt7AyMZQdcYCOioWToSG3sBEEdx7A6hwwUB1pnpim+scF+xkIBI7wydjs6
UMjqwaU10GcBP1cd62x/Cu2ebw0bn13NMoHgINnIV0PPOTspecmTNWI7iHyL
uggSiCFoorneDVAXHqQnvIxRkZCjQwKHWGE1WUbvoyfiYRDYIlXXcPe4EB0t
ooLuSK8X1NH1QZmARbh+pAcReCXS8O2I3YVfV4f3Dfc+g43VAdu6Ms/4sAlt
Uty6KNGEtvgKGQC6sMiIDJr1oHZjCmqkB/4FNgb6PXCfuj1OYic39AF67fG9
JsxJFy8atNeozh+uOCQsVPBg9/iPaRa7K3EtBqoE0OZxX9keUHDDy7l8Bj2C
poqeiY0VUceAKmzBLsmBqEU6bXAuGPPO9RT7ccnhESKc4ecWKZ51j+UFUUVI
gXxAcZ/poXQ+aNXhpLhQ2wvMrnCGn6jpjZgWbRILjD1wnm/k8JMfwdaG8B58
Cg6ie1ZV3CRpPmnHVoLsvNhURoHGSAeN/YjBOwnJhU/wjiEf2e048WaWTY2Q
JWE7Tch2gDgPkqNdKigw33bISoAFbKEaP8ZLgxrWmfBEfUr8f/9LGJS0TgIA

-->

</rfc>
