<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.4 (Ruby 2.6.4) -->
<?rfc-ext html-pretty-print="prettyprint https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"?>
<rfc xmlns:x="http://purl.org/net/xml2rfc/ext"
      category="std"
      consensus="true"
      docName="draft-ietf-httpbis-compression-dictionary-01"
      ipr="trust200902"
      sortRefs="true"
      symRefs="true"
      tocInclude="true">
   <x:feedback template="mailto:quic@ietf.org?subject={docname},%20%22{section}%22\&amp;amp;body=%3c{ref}%3e:"/>
   <front>
      <title abbrev="compression-dictionary">Compression Dictionary Transport</title>
      <author fullname="Patrick Meenan"
               initials="P."
               role="editor"
               surname="Meenan">
         <organization>Google LLC</organization>
         <address>
            <email>pmeenan@google.com</email>
         </address>
      </author>
      <author fullname="Yoav Weiss"
               initials="Y."
               role="editor"
               surname="Weiss">
         <organization>Google LLC</organization>
         <address>
            <email>yoavweiss@google.com</email>
         </address>
      </author>
      <date day="11" month="December" year="2023"/>
      <area>ART</area>
      <workgroup>HTTP</workgroup>
      <keyword>compression dictionary</keyword>
      <keyword>shared brotli</keyword>
      <keyword>zstandard dictionary</keyword>
      <keyword>delta compression</keyword>
      <abstract><?line 53?>
         <t>This specification defines a mechanism for using designated <xref target="HTTP"/> responses as an external dictionary for future HTTP responses for compression schemes that support using external dictionaries (e.g., Brotli <xref target="RFC7932"/> and Zstandard <xref target="RFC8878"/>).</t>
      </abstract>
      <note removeInRFC="true" title="About This Document">
         <t>Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-compression-dictionary/"/>.</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/compression-dictionary"/>.</t>
      </note>
   </front>
   <middle><?line 60?>
      <section anchor="introduction">
         <name>Introduction</name>
         <t>This specification defines a mechanism for using designated <xref target="HTTP"/> responses as an external dictionary for future HTTP responses for compression schemes that support using external dictionaries (e.g., Brotli <xref target="RFC7932"/> and Zstandard <xref target="RFC8878"/>).</t>
         <t>This document describes the HTTP headers used for negotiating dictionary usage and registers media types for content encoding Brotli and Zstandard using a negotiated dictionary.</t>
         <t>This document uses the line folding strategies described in <xref target="FOLDING"/>.</t>
      </section>
      <section anchor="dictionary-negotiation">
         <name>Dictionary Negotiation</name>
         <section anchor="use-as-dictionary">
            <name>Use-As-Dictionary</name>
            <t>When responding to a HTTP Request, a server can advertise that the response can be used as a dictionary for future requests for URLs that match the rules specified in the Use-As-Dictionary response header.</t>
            <t>The Use-As-Dictionary response header is a Structured Field <xref target="STRUCTURED-FIELDS"/> sf-dictionary with values for "match", "match-dest", "ttl", "id", and "type".</t>
            <section anchor="match">
               <name>match</name>
               <t>The "match" value of the Use-As-Dictionary header is a sf-string value that provides the URLPattern to use for request matching (https://urlpattern.spec.whatwg.org/).</t>
               <t>The URLPattern used for matching does not support using Regular expressions.</t>
               <t>The following algorithm will return TRUE for a valid match pattern and FALSE for an invalid pattern that MUST NOT be used:</t>
               <t>
                  <list style="numbers">
                     <t>Let MATCH be the value of "match" for the given dictionary.</t>
                     <t>Let URL be the URL of the dictionary request.</t>
                     <t>Let PATTERN be a URLPattern constructed by setting input=MATCH, and baseURL=URL (https://urlpattern.spec.whatwg.org/).</t>
                     <t>If PATTERN has regexp groups then return FALSE (https://urlpattern.spec.whatwg.org/#urlpattern-has-regexp-groups).</t>
                     <t>Return True.</t>
                  </list>
               </t>
               <t>The "match" value is required and MUST be included in the Use-As-Dictionary sf-dictionary for the dictionary to be considered valid.</t>
            </section>
            <section anchor="match-dest">
               <name>match-dest</name>
               <t>The "match-dest" value of the Use-As-Dictionary header is a sf-string value that provides a request destination (https://fetch.spec.whatwg.org/#concept-request-destination).</t>
               <t>An empty string for "match-dest" MUST match all destinations.</t>
               <t>For clients that do not support request destinations or if the value of "match-dest" is a value that is not supported by the client then the client MUST treat it as an empty string and match all destinations.</t>
               <t>The "match-dest" value is optional and defaults to the empty string.</t>
            </section>
            <section anchor="ttl">
               <name>ttl</name>
               <t>The "ttl" value of the Use-As-Dictionary header is a sf-integer value that provides the time in seconds that the dictionary is valid for (time to live).</t>
               <t>The "ttl" is independent of the cache lifetime of the resource being used for the dictionary. If the underlying resource is evicted from cache then it is also removed but this allows for setting an explicit time to live for use as a dictionary independent of the underlying resource in cache. Expired resources can still be useful as dictionaries while they are in cache and can be used for fetching updates of the expired resource. It can also be useful to artificially limit the life of a dictionary in cases where the dictionary is updated frequently which can help limit the number of possible incoming dictionary variations.</t>
               <t>The "ttl" value is optional and defaults to 1209600 (14 days).</t>
            </section>
            <section anchor="id">
               <name>id</name>
               <t>The "id" value of the Use-As-Dictionary header is a sf-string value that specifies a server identifier for the dictionary. If an "id" value is present then it MUST be sent to the server in a "Dictionary-ID" request header when the dictionary is advertised as being available.</t>
               <t>The server identifier MUST be treated as an opaque string by the client.</t>
               <t>The server identifier MUST NOT be relied upon by the server to guarantee the contents of the dictionary. The dictionary hash MUST be validated before use.</t>
               <t>The "id" value string length (after any decoding) supports up to 1024 characters.</t>
               <t>The "id" value is optional.</t>
            </section>
            <section anchor="type">
               <name>type</name>
               <t>The "type" value of the Use-As-Dictionary header is a sf-string value that describes the file format of the supplied dictionary.</t>
               <t>"raw" is the only defined dictionary format which represents an unformatted blob of bytes suitable for any compression scheme to use.</t>
               <t>If a client receives a dictionary with a type that it does not understand, it MUST NOT use the dictionary.</t>
               <t>The "type" value is optional and defaults to "raw".</t>
            </section>
            <section anchor="examples">
               <name>Examples</name>
               <section anchor="path-prefix">
                  <name>Path Prefix</name>
                  <t>A response that contained a response header:</t>
                  <figure>
                     <sourcecode type="http-message" x:line-folding="\">
Use-As-Dictionary: \
  match="/product/*", match-dest="document", ttl=604800
</sourcecode>
                  </figure>
                  <t>Would specify matching any document request for a URL with a path prefix of /product/ on the same <xref target="Origin"/> as the original request, and expiring as a dictionary in 7 days independent of the cache lifetime of the resource.</t>
               </section>
               <section anchor="versioned-directories">
                  <name>Versioned Directories</name>
                  <t>A response that contained a response header:</t>
                  <figure>
                     <sourcecode type="http-message">
Use-As-Dictionary: match="/app/*/main.js"
</sourcecode>
                  </figure>
                  <t>Would match main.js in any directory under /app/ and expiring as a dictionary in one year.</t>
               </section>
            </section>
         </section>
         <section anchor="available-dictionary">
            <name>Available-Dictionary</name>
            <t>When a HTTP client makes a request for a resource for which it has an appropriate dictionary, it can add a "Available-Dictionary" request header to the request to indicate to the server that it has a dictionary available to use for compression.</t>
            <t>The "Available-Dictionary" request header is a Structured Field <xref target="STRUCTURED-FIELDS"/> sf-binary <xref target="SHA-256"/> hash of the contents of a single available dictionary.</t>
            <t>The client MUST only send a single "Available-Dictionary" request header with a single hash value for the best available match that it has available.</t>
            <t>For example:</t>
            <figure>
               <sourcecode type="http-message">
Available-Dictionary: :pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4=:
</sourcecode>
            </figure>
            <section anchor="dictionary-freshness-requirement">
               <name>Dictionary freshness requirement</name>
               <t>To be considered as a match, the dictionary must not yet be expired as a dictionary. When iterating through dictionaries looking for a match, the expiration time of the dictionary is calculated by taking the last time the dictionary was fetched and adding the "ttl" seconds from the "Use-As-Dictionary" response. If the current time is beyond the expiration time of the dictionary, it MUST be ignored.</t>
            </section>
            <section anchor="dictionary-url-matching">
               <name>Dictionary URL matching</name>
               <t>When a dictionary is stored as a result of a "Use-As-Dictionary" directive, it includes "match" and "match-dest" strings that are used to match an outgoing request from a client to the available dictionaries.</t>
               <t>Dictionaries MUST have been served from the same {Origin} as the outgoing request to match.</t>
               <t>To see if an outbound request matches a given dictionary, the following algorithm will return TRUE for a successful match and FALSE for no-match:</t>
               <t>
                  <list style="numbers">
                     <t>If the current client supports request destinations: <list style="symbols">
                           <t>Let DEST be the value of "match-dest" for the given dictionary.</t>
                           <t>Let REQUEST_DEST be the value of the destination for the current request.</t>
                           <t>If DEST is not an empty string and If DEST and REQUEST_DEST are not the same value, return FALSE</t>
                        </list>
                     </t>
                     <t>Let BASEURL be the URL of the dictionary request.</t>
                     <t>Let URL represent the URL of the outbound request being checked.</t>
                     <t>If the {Origin} of BASEURL and the {Origin} of URL are not the same, return FALSE.</t>
                     <t>Let MATCH be the value of "match" for the given dictionary.</t>
                     <t>Let PATTERN be a URLPattern constructed by setting input=MATCH, and baseURL=BASEURL (https://urlpattern.spec.whatwg.org/).</t>
                     <t>Return the result of running the "test" method of PATTERN with input=URL (https://urlpattern.spec.whatwg.org/#ref-for-dom-urlpattern-test)</t>
                  </list>
               </t>
            </section>
            <section anchor="multiple-matching-dictionaries">
               <name>Multiple matching dictionaries</name>
               <t>When there are multiple dictionaries that match a given request URL, the client MUST pick a single dictionary using the following rules: 1. For clients that support request destinations, a dictionary that specifies and matches a "match-dest" takes precedence over a match that does not use a destination. 1. Given equivalent destination precedence, the dictionary with the longest "match" takes precedence. 1. Given equivalent destination and match length precedence, the most recently fetched dictionary takes precedence.</t>
            </section>
         </section>
         <section anchor="dictionary-id">
            <name>Dictionary-ID</name>
            <t>When a HTTP client makes a request for a resource for which it has an appropriate dictionary and the dictionary was stored with a server-provided "id" in the Use-As-Dictionary response then the client MUST echo the stored "id" in a "Dictionary-ID" request header.</t>
            <t>The "Dictionary-ID" request header is a Structured Field <xref target="STRUCTURED-FIELDS"/> sf-string of up to 1024 characters (after any decoding) and MUST be identical to the server-provided "id".</t>
            <t>For example:</t>
            <figure>
               <sourcecode type="http-message">
Available-Dictionary: :pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4=:
Dictionary-ID: "/v1/main.js 33a64df551425fcc55e4d42a148795d9f25f89d4"
</sourcecode>
            </figure>
         </section>
         <section anchor="content-dictionary">
            <name>Content-Dictionary</name>
            <t>When a HTTP server responds with a resource that is encoded with a dictionary the server MUST send the hash of the dictionary that was used in the "Content-Dictionary" response header.</t>
            <t>The "Content-Dictionary" response header is a Structured Field <xref target="STRUCTURED-FIELDS"/> sf-dictionary <xref target="SHA-256"/> hash of the contents of the dictionary that was used to encode the response.</t>
            <t>If the HTTP response contains a "Content-Dictionary" response header with the hash of a dictionary that the client does not have available then the client cannot decode or use the HTTP response.</t>
            <t>For example:</t>
            <figure>
               <sourcecode type="http-message">
Content-Dictionary: :pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4=:
</sourcecode>
            </figure>
         </section>
      </section>
      <section anchor="negotiating-the-compression-algorithm">
         <name>Negotiating the compression algorithm</name>
         <t>When a compression dictionary is available for use for a given request, the algorithm to be used is negotiated through the regular mechanism for negotiating content encoding in HTTP.</t>
         <t>This document introduces two new content encoding algorithms:</t>
         <texttable>
            <ttcol align="left">Content-Encoding</ttcol>
            <ttcol align="left">Description</ttcol>
            <c>br-d</c>
            <c>Brotli using an external compression dictionary</c>
            <c>zstd-d</c>
            <c>Zstandard using an external compression dictionary</c>
         </texttable>
         <t>The dictionary to use is negotiated separately and advertised in the "Available-Dictionary" request header.</t>
         <section anchor="accept-encoding">
            <name>Accept-Encoding</name>
            <t>The client adds the algorithms that it supports to the "Accept-Encoding" request header. e.g.:</t>
            <figure>
               <sourcecode type="http-message">
Accept-Encoding: gzip, deflate, br, zstd, br-d, zstd-d
</sourcecode>
            </figure>
         </section>
         <section anchor="content-encoding">
            <name>Content-Encoding</name>
            <t>If a server supports one of the dictionary algorithms advertised by the client and chooses to compress the content of the response using the dictionary that the client has advertised then it sets the "Content-Encoding" response header to the appropriate value for the algorithm selected. e.g.:</t>
            <figure>
               <sourcecode type="http-message">
Content-Encoding: br-d
</sourcecode>
            </figure>
            <t>If the response is cacheable, it MUST include a "Vary" header to prevent caches serving dictionary-compressed resources to clients that don't support them or serving the response compressed with the wrong dictionary:</t>
            <figure>
               <sourcecode type="http-message">
Vary: accept-encoding, available-dictionary
</sourcecode>
            </figure>
         </section>
      </section>
      <section anchor="iana-considerations">
         <name>IANA Considerations</name>
         <section anchor="content-encoding-1">
            <name>Content Encoding</name>
            <t>IANA is asked to update the "HTTP Content Coding Registry" registry (<xref target="HTTP"/>) according to the table below:</t>
            <texttable>
               <ttcol align="left">Name</ttcol>
               <ttcol align="left">Description</ttcol>
               <ttcol align="left">Reference</ttcol>
               <c>br-d</c>
               <c>A stream of bytes compressed using the Brotli protocol with an external dictionary</c>
               <c>
                  <xref target="RFC7932"/>
               </c>
               <c>zstd-d</c>
               <c>A stream of bytes compressed using the Zstandard protocol with an external dictionary</c>
               <c>
                  <xref target="RFC8878"/>
               </c>
            </texttable>
         </section>
         <section anchor="header-field-registration">
            <name>Header Field Registration</name>
            <t>IANA is asked to update the "Hypertext Transfer Protocol (HTTP) Field Name Registry" registry (<xref target="HTTP"/>) according to the table below:</t>
            <texttable>
               <ttcol align="left">Field Name</ttcol>
               <ttcol align="left">Status</ttcol>
               <ttcol align="left">Reference</ttcol>
               <c>Use-As-Dictionary</c>
               <c>permanent</c>
               <c>
                  <xref target="use-as-dictionary"/> of this document</c>
               <c>Available-Dictionary</c>
               <c>permanent</c>
               <c>
                  <xref target="available-dictionary"/> of this document</c>
               <c>Dictionary-ID</c>
               <c>permanent</c>
               <c>
                  <xref target="dictionary-id"/> of this document</c>
               <c>Content-Dictionary</c>
               <c>permanent</c>
               <c>
                  <xref target="content-dictionary"/> of this document</c>
            </texttable>
         </section>
      </section>
      <section anchor="compatibility-considerations">
         <name>Compatibility Considerations</name>
         <t>To minimize the risk of middle-boxes incorrectly processing dictionary-compressed responses, compression dictionary transport MUST only be used in secure contexts (HTTPS).</t>
      </section>
      <section anchor="security-considerations">
         <name>Security Considerations</name>
         <t>The security considerations for Brotli <xref target="RFC7932"/> and Zstandard <xref target="RFC8878"/> apply to the dictionary-based versions of the respective algorithms.</t>
         <section anchor="changing-content">
            <name>Changing content</name>
            <t>The dictionary must be treated with the same security precautions as the content, because a change to the dictionary can result in a change to the decompressed content.</t>
            <t>The dictionary is validated using a SHA-256 hash of the content to make sure that the client and server are both using the same dictionary. The strength of the SHA-256 hash algorithm isn't explicitly needed to counter attacks since the dictionary is being served from the same origin as the content. That said, if a weakness is discovered in SHA-256 and it is determined that the dictionary negotiation should use a different hash algorithm, the "Use-As-Dictionary" response header can be extended to specify a different algorithm and the server would just ignore any "Available-Dictionary" requests that do not use the updated hash.</t>
         </section>
         <section anchor="reading-content">
            <name>Reading content</name>
            <t>The CRIME attack shows that it's a bad idea to compress data from mixed (e.g. public and private) sources -- the data sources include not only the compressed data but also the dictionaries. For example, if you compress secret cookies using a public-data-only dictionary, you still leak information about the cookies.</t>
            <t>Not only can the dictionary reveal information about the compressed data, but vice versa, data compressed with the dictionary can reveal the contents of the dictionary when an adversary can control parts of data to compress and see the compressed size. On the other hand, if the adversary can control the dictionary, the adversary can learn information about the compressed data.</t>
         </section>
         <section anchor="security-mitigations">
            <name>Security Mitigations</name>
            <t>If any of the mitigations do not pass, the client MUST drop the response and return an error.</t>
            <section anchor="cross-origin-protection">
               <name>Cross-origin protection</name>
               <t>To make sure that a dictionary can only impact content from the same origin where the dictionary was served, the URLPattern used for matching a dictionary to requests is guaranteed to be for the same origin that the dictionary is served from.</t>
            </section>
            <section anchor="response-readability">
               <name>Response readability</name>
               <t>For clients, like web browsers, that provide additional protection against the readability of the payload of a response and against user tracking, additional protections MUST be taken to make sure that the use of dictionary-based compression does not reveal information that would not otherwise be available.</t>
               <t>In these cases, dictionary compression MUST only be used when both the dictionary and the compressed response are fully readable by the client.</t>
               <t>In browser terms, that means that both are either same-origin to the context they are being fetched from or that the response is cross-origin and passes the CORS check (https://fetch.spec.whatwg.org/#cors-check).</t>
               <section anchor="same-origin">
                  <name>Same-Origin</name>
                  <t>On the client-side, same-origin determination is defined in the fetch spec (https://html.spec.whatwg.org/multipage/browsers.html#origin).</t>
                  <t>On the server-side, a request with a "Sec-Fetch-Site:" request header with a value of "same-origin" is to be considered a same-origin request.</t>
                  <t>
                     <list style="symbols">
                        <t>For any request that is same-origin: <list style="symbols">
                              <t>Response MAY be used as a dictionary.</t>
                              <t>Response MAY be compressed by an available dictionary.</t>
                           </list>
                        </t>
                     </list>
                  </t>
               </section>
               <section anchor="cross-origin">
                  <name>Cross-Origin</name>
                  <t>For requests that are not same-origin (<xref target="same-origin"/>), the "mode" of the request can be used to determine the readability of the response.</t>
                  <t>For clients that conform to the fetch spec, the mode of the request is stored in the RequestMode attribute of the request (https://fetch.spec.whatwg.org/#requestmode).</t>
                  <t>For servers responding to clients that expose the request mode information, the value of the mode is sent in the "Sec-Fetch-Mode" request header.</t>
                  <t>If a "Sec-Fetch-Mode" request header is not present, the server SHOULD allow for the dictionary compression to be used.</t>
                  <t>
                     <list style="numbers">
                        <t>If the mode is "navigate" or "same-origin": <list style="symbols">
                              <t>Response MAY be used as a dictionary.</t>
                              <t>Response MAY be compressed by an available dictionary.</t>
                           </list>
                        </t>
                        <t>If the mode is "cors": <list style="symbols">
                              <t>For clients, apply the CORS check from the fetch spec (https://fetch.spec.whatwg.org/#cors-check) which includes credentials checking restrictions that may not be possible to check on the server. <list style="symbols">
                                    <t>If the CORS check passes: <list style="symbols">
                                          <t>Response MAY be used as a dictionary.</t>
                                          <t>Response MAY be compressed by an available dictionary.</t>
                                       </list>
                                    </t>
                                    <t>Else: <list style="symbols">
                                          <t>Response MUST NOT be used as a dictionary.</t>
                                          <t>Response MUST NOT be compressed by an available dictionary.</t>
                                       </list>
                                    </t>
                                 </list>
                              </t>
                              <t>For servers: <list style="symbols">
                                    <t>If the response does not include an "Access-Control-Allow-Origin" response header: <list style="symbols">
                                          <t>Response MUST NOT be used as a dictionary.</t>
                                          <t>Response MUST NOT be compressed by an available dictionary.</t>
                                       </list>
                                    </t>
                                    <t>If the request does not include an "Origin" request header: <list style="symbols">
                                          <t>Response MUST NOT be used as a dictionary.</t>
                                          <t>Response MUST NOT be compressed by an available dictionary.</t>
                                       </list>
                                    </t>
                                    <t>If the value of the "Access-Control-Allow-Origin" response header is "*": <list style="symbols">
                                          <t>Response MAY be used as a dictionary.</t>
                                          <t>Response MAY be compressed by an available dictionary.</t>
                                       </list>
                                    </t>
                                    <t>If the value of the "Access-Control-Allow-Origin" response header matches the value of the "Origin" request header: <list style="symbols">
                                          <t>Response MAY be used as a dictionary.</t>
                                          <t>Response MAY be compressed by an available dictionary.</t>
                                       </list>
                                    </t>
                                 </list>
                              </t>
                           </list>
                        </t>
                        <t>If the mode is any other value (including "no-cors"): <list style="symbols">
                              <t>Response MUST NOT be used as a dictionary.</t>
                              <t>Response MUST NOT be compressed by an available dictionary.</t>
                           </list>
                        </t>
                     </list>
                  </t>
               </section>
            </section>
         </section>
      </section>
      <section anchor="privacy-considerations">
         <name>Privacy Considerations</name>
         <t>Since dictionaries are advertised in future requests using the hash of the content of the dictionary, it is possible to abuse the dictionary to turn it into a tracking cookie.</t>
         <t>To mitigate any additional tracking concerns, clients MUST treat dictionaries in the same way that they treat cookies. This includes partitioning the storage as cookies are partitioned as well as clearing the dictionaries whenever cookies are cleared.</t>
      </section>
   </middle>
   <back>
      <references anchor="sec-normative-references" title="Normative References">
         <reference anchor="FOLDING">
            <front>
               <title>Handling Long Lines in Content of Internet-Drafts and RFCs</title>
               <author fullname="K. Watsen" initials="K." surname="Watsen"/>
               <author fullname="E. Auerswald" initials="E." surname="Auerswald"/>
               <author fullname="A. Farrel" initials="A." surname="Farrel"/>
               <author fullname="Q. Wu" initials="Q." surname="Wu"/>
               <date month="June" year="2020"/>
            </front>
            <seriesInfo name="RFC" value="8792"/>
            <seriesInfo name="DOI" value="10.17487/RFC8792"/>
         </reference>
         <reference anchor="HTTP">
            <front>
               <title>HTTP Semantics</title>
               <author fullname="R. Fielding"
                        initials="R."
                        role="editor"
                        surname="Fielding"/>
               <author fullname="M. Nottingham"
                        initials="M."
                        role="editor"
                        surname="Nottingham"/>
               <author fullname="J. Reschke"
                        initials="J."
                        role="editor"
                        surname="Reschke"/>
               <date month="June" year="2022"/>
            </front>
            <seriesInfo name="STD" value="97"/>
            <seriesInfo name="RFC" value="9110"/>
            <seriesInfo name="DOI" value="10.17487/RFC9110"/>
         </reference>
      </references>
      <references anchor="sec-informative-references" title="Informative References">
         <reference anchor="Origin">
            <front>
               <title>The Web Origin Concept</title>
               <author fullname="A. Barth" initials="A." surname="Barth"/>
               <date month="December" year="2011"/>
            </front>
            <seriesInfo name="RFC" value="6454"/>
            <seriesInfo name="DOI" value="10.17487/RFC6454"/>
         </reference>
         <reference anchor="ABNF">
            <front>
               <title>Augmented BNF for Syntax Specifications: ABNF</title>
               <author fullname="D. Crocker"
                        initials="D."
                        role="editor"
                        surname="Crocker"/>
               <author fullname="P. Overell" initials="P." surname="Overell"/>
               <date month="January" year="2008"/>
            </front>
            <seriesInfo name="STD" value="68"/>
            <seriesInfo name="RFC" value="5234"/>
            <seriesInfo name="DOI" value="10.17487/RFC5234"/>
         </reference>
         <reference anchor="STRUCTURED-FIELDS">
            <front>
               <title>Structured Field Values for HTTP</title>
               <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
               <author fullname="P-H. Kamp" surname="P-H. Kamp"/>
               <date month="February" year="2021"/>
            </front>
            <seriesInfo name="RFC" value="8941"/>
            <seriesInfo name="DOI" value="10.17487/RFC8941"/>
         </reference>
         <reference anchor="URL">
            <front>
               <title>Uniform Resource Identifier (URI): Generic Syntax</title>
               <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
               <author fullname="R. Fielding" initials="R." surname="Fielding"/>
               <author fullname="L. Masinter" initials="L." surname="Masinter"/>
               <date month="January" year="2005"/>
            </front>
            <seriesInfo name="STD" value="66"/>
            <seriesInfo name="RFC" value="3986"/>
            <seriesInfo name="DOI" value="10.17487/RFC3986"/>
         </reference>
         <reference anchor="SHA-256">
            <front>
               <title>US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF)</title>
               <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
               <author fullname="T. Hansen" initials="T." surname="Hansen"/>
               <date month="May" year="2011"/>
            </front>
            <seriesInfo name="RFC" value="6234"/>
            <seriesInfo name="DOI" value="10.17487/RFC6234"/>
         </reference>
         <reference anchor="RFC7932">
            <front>
               <title>Brotli Compressed Data Format</title>
               <author fullname="J. Alakuijala" initials="J." surname="Alakuijala"/>
               <author fullname="Z. Szabadka" initials="Z." surname="Szabadka"/>
               <date month="July" year="2016"/>
            </front>
            <seriesInfo name="RFC" value="7932"/>
            <seriesInfo name="DOI" value="10.17487/RFC7932"/>
         </reference>
         <reference anchor="RFC8878">
            <front>
               <title>Zstandard Compression and the 'application/zstd' Media Type</title>
               <author fullname="Y. Collet" initials="Y." surname="Collet"/>
               <author fullname="M. Kucherawy"
                        initials="M."
                        role="editor"
                        surname="Kucherawy"/>
               <date month="February" year="2021"/>
            </front>
            <seriesInfo name="RFC" value="8878"/>
            <seriesInfo name="DOI" value="10.17487/RFC8878"/>
         </reference>
      </references>
      <?line 508?>
   </back>
</rfc>
