<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.5 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-compression-dictionary-03" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.4 -->
  <front>
    <title>Compression Dictionary Transport</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-compression-dictionary-03"/>
    <author initials="P." surname="Meenan" fullname="Patrick Meenan" role="editor">
      <organization>Google LLC</organization>
      <address>
        <email>pmeenan@google.com</email>
      </address>
    </author>
    <author initials="Y." surname="Weiss" fullname="Yoav Weiss" role="editor">
      <organization>Google LLC</organization>
      <address>
        <email>yoavweiss@google.com</email>
      </address>
    </author>
    <date year="2024" month="February" day="27"/>
    <area>ART</area>
    <workgroup>HTTP</workgroup>
    <keyword>compression dictionary</keyword>
    <keyword>shared brotli</keyword>
    <keyword>zstandard dictionary</keyword>
    <keyword>delta compression</keyword>
    <abstract>
      <?line 52?>

<t>This specification defines a mechanism for using designated HTTP responses
as an external dictionary for future HTTP responses for compression schemes
that support using external dictionaries (e.g., Brotli (RFC 7932) and
Zstandard (RFC 8878)).</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-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 59?>

<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>
      <section anchor="notational-conventions">
        <name>Notational Conventions</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>
        <?line -18?>

<t>This document uses the following terminology from <xref section="3" sectionFormat="of" target="STRUCTURED-FIELDS"/> to
specify syntax and parsing: Dictionary, String, Inner List, Token, and Byte Sequence.</t>
        <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>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as described in
<xref target="RFC2119"/>.</t>
        <t>This document uses the line folding strategies described in <xref target="FOLDING"/>.</t>
        <t>This document also uses terminology from <xref target="HTTP"/> and <xref target="HTTP-CACHING"/>.</t>
      </section>
    </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"/> Dictionary with values for "match", "match-dest", "id",
and "type".</t>
        <section anchor="match">
          <name>match</name>
          <t>The "match" value of the Use-As-Dictionary header is a 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 <bcp14>MUST NOT</bcp14> be used:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let MATCH be the value of "match" for the given dictionary.</t>
            </li>
            <li>
              <t>Let URL be the URL of the dictionary request.</t>
            </li>
            <li>
              <t>Let PATTERN be a URLPattern constructed by setting input=MATCH,
and baseURL=URL (https://urlpattern.spec.whatwg.org/).</t>
            </li>
            <li>
              <t>If PATTERN has regexp groups then return FALSE
(https://urlpattern.spec.whatwg.org/#urlpattern-has-regexp-groups).</t>
            </li>
            <li>
              <t>Return True.</t>
            </li>
          </ol>
          <t>The "match" value is required and <bcp14>MUST</bcp14> be included in the
Use-As-Dictionary 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 an Inner List of
String values that provides a list of request destinations for the dictionary
to match (https://fetch.spec.whatwg.org/#concept-request-destination).</t>
          <t>An empty list for "match-dest" <bcp14>MUST</bcp14> match all destinations.</t>
          <t>For clients that do not support request destinations, the client <bcp14>MUST</bcp14> treat it
as an empty list and match all destinations.</t>
          <t>The "match-dest" value is optional and defaults to an empty list.</t>
        </section>
        <section anchor="id">
          <name>id</name>
          <t>The "id" value of the Use-As-Dictionary header is a String value that specifies
a server identifier for the dictionary. If an "id" value is present and has a
string length longer than zero then it <bcp14>MUST</bcp14> be sent to the server in a
"Dictionary-ID" request header when the dictionary is advertised as being
available.</t>
          <t>The server identifier <bcp14>MUST</bcp14> be treated as an opaque string by the client.</t>
          <t>The server identifier <bcp14>MUST NOT</bcp14> be relied upon by the server to guarantee the
contents of the dictionary. The dictionary hash <bcp14>MUST</bcp14> 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 and defaults to the empty string.</t>
        </section>
        <section anchor="type">
          <name>type</name>
          <t>The "type" value of the Use-As-Dictionary header is a Token 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
<bcp14>MUST NOT</bcp14> 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>
            <sourcecode type="http-message"><![CDATA[
NOTE: '\' line wrapping per RFC 8792

Use-As-Dictionary: \
  match="/product/*", match-dest=("document")
]]></sourcecode>
            <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.</t>
          </section>
          <section anchor="versioned-directories">
            <name>Versioned Directories</name>
            <t>A response that contained a response header:</t>
            <sourcecode type="http-message"><![CDATA[
Use-As-Dictionary: match="/app/*/main.js"
]]></sourcecode>
            <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"/> Byte Sequence containing the <xref target="SHA-256"/> hash of the
contents of a single available dictionary.</t>
        <t>The client <bcp14>MUST</bcp14> 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>
        <sourcecode type="http-message"><![CDATA[
Available-Dictionary: :pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4=:
]]></sourcecode>
        <section anchor="dictionary-freshness-requirement">
          <name>Dictionary freshness requirement</name>
          <t>To be considered as a match, the dictionary resource <bcp14>MUST</bcp14> be either fresh
<xref target="HTTP-CACHING"/> or allowed to be served stale (see eg <xref target="RFC5861"/>).</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 <bcp14>MUST</bcp14> 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>
          <ol spacing="normal" type="1"><li>
              <t>If the current client supports request destinations:
              </t>
              <ul spacing="normal">
                <li>
                  <t>Let DEST be the value of "match-dest" for the given dictionary.</t>
                </li>
                <li>
                  <t>Let REQUEST_DEST be the value of the destination for the current
 request.</t>
                </li>
                <li>
                  <t>If DEST is not an empty list and if REQUEST_DEST is not in the DEST list
 of destinations, return FALSE</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Let BASEURL be the URL of the dictionary request.</t>
            </li>
            <li>
              <t>Let URL represent the URL of the outbound request being checked.</t>
            </li>
            <li>
              <t>If the {Origin} of BASEURL and the {Origin} of URL are not the same, return
FALSE.</t>
            </li>
            <li>
              <t>Let MATCH be the value of "match" for the given dictionary.</t>
            </li>
            <li>
              <t>Let PATTERN be a URLPattern constructed by setting input=MATCH,
and baseURL=BASEURL (https://urlpattern.spec.whatwg.org/).</t>
            </li>
            <li>
              <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>
            </li>
          </ol>
        </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
<bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> 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"/>
String of up to 1024 characters (after any decoding) and <bcp14>MUST</bcp14> be identical to
the server-provided "id".</t>
        <t>For example:</t>
        <sourcecode type="http-message"><![CDATA[
Available-Dictionary: :pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4=:
Dictionary-ID: "/v1/main.js 33a64df551425fcc55e4d42a148795d9f25f89d4"
]]></sourcecode>
      </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 <bcp14>MUST</bcp14> 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"/> Byte Sequence containing the <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>
        <sourcecode type="http-message"><![CDATA[
Content-Dictionary: :pZGm1Av0IEBKARczz7exkNYsZb8LzaMrV7J32a2fFG4=:
]]></sourcecode>
      </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>
      <table>
        <thead>
          <tr>
            <th align="left">Content-Encoding</th>
            <th align="left">Description</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">br-d</td>
            <td align="left">Brotli using an external compression dictionary</td>
          </tr>
          <tr>
            <td align="left">zstd-d</td>
            <td align="left">Zstandard using an external compression dictionary</td>
          </tr>
        </tbody>
      </table>
      <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>
        <sourcecode type="http-message"><![CDATA[
Accept-Encoding: gzip, deflate, br, zstd, br-d, zstd-d
]]></sourcecode>
      </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>
        <sourcecode type="http-message"><![CDATA[
Content-Encoding: br-d
]]></sourcecode>
        <t>If the response is cacheable, it <bcp14>MUST</bcp14> 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>
        <sourcecode type="http-message"><![CDATA[
Vary: accept-encoding, available-dictionary
]]></sourcecode>
      </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>
        <table>
          <thead>
            <tr>
              <th align="left">Name</th>
              <th align="left">Description</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">br-d</td>
              <td align="left">A stream of bytes compressed using the Brotli protocol with an external dictionary</td>
              <td align="left">
                <xref target="RFC7932"/></td>
            </tr>
            <tr>
              <td align="left">zstd-d</td>
              <td align="left">A stream of bytes compressed using the Zstandard protocol with an external dictionary</td>
              <td align="left">
                <xref target="RFC8878"/></td>
            </tr>
          </tbody>
        </table>
      </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>
        <table>
          <thead>
            <tr>
              <th align="left">Field Name</th>
              <th align="left">Status</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Use-As-Dictionary</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="use-as-dictionary"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Available-Dictionary</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="available-dictionary"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Dictionary-ID</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="dictionary-id"/> of this document</td>
            </tr>
            <tr>
              <td align="left">Content-Dictionary</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="content-dictionary"/> of this document</td>
            </tr>
          </tbody>
        </table>
      </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 <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> 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>
            <ul spacing="normal">
              <li>
                <t>For any request that is same-origin:
                </t>
                <ul spacing="normal">
                  <li>
                    <t>Response <bcp14>MAY</bcp14> be used as a dictionary.</t>
                  </li>
                  <li>
                    <t>Response <bcp14>MAY</bcp14> be compressed by an available dictionary.</t>
                  </li>
                </ul>
              </li>
            </ul>
          </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 <bcp14>SHOULD</bcp14> allow for the dictionary compression to be used.</t>
            <ol spacing="normal" type="1"><li>
                <t>If the mode is "navigate" or "same-origin":
                </t>
                <ul spacing="normal">
                  <li>
                    <t>Response <bcp14>MAY</bcp14> be used as a dictionary.</t>
                  </li>
                  <li>
                    <t>Response <bcp14>MAY</bcp14> be compressed by an available dictionary.</t>
                  </li>
                </ul>
              </li>
              <li>
                <t>If the mode is "cors":
                </t>
                <ul spacing="normal">
                  <li>
                    <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.
                    </t>
                    <ul spacing="normal">
                      <li>
                        <t>If the CORS check passes:
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                      <li>
                        <t>Else:
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                    </ul>
                  </li>
                  <li>
                    <t>For servers:
                    </t>
                    <ul spacing="normal">
                      <li>
                        <t>If the response does not include an "Access-Control-Allow-Origin" response header:
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                      <li>
                        <t>If the request does not include an "Origin" request header:
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MUST NOT</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                      <li>
                        <t>If the value of the "Access-Control-Allow-Origin" response header is "*":
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                      <li>
                        <t>If the value of the "Access-Control-Allow-Origin" response header matches the value of the "Origin" request header:
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response <bcp14>MAY</bcp14> be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                    </ul>
                  </li>
                </ul>
              </li>
              <li>
                <t>If the mode is any other value (including "no-cors"):
                </t>
                <ul spacing="normal">
                  <li>
                    <t>Response <bcp14>MUST NOT</bcp14> be used as a dictionary.</t>
                  </li>
                  <li>
                    <t>Response <bcp14>MUST NOT</bcp14> be compressed by an available dictionary.</t>
                  </li>
                </ul>
              </li>
            </ol>
          </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 <bcp14>MUST</bcp14> 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>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <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"/>
            <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>
        <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"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="HTTP-CACHING">
          <front>
            <title>HTTP Caching</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"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
              <t>This document obsoletes RFC 7234.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="98"/>
          <seriesInfo name="RFC" value="9111"/>
          <seriesInfo name="DOI" value="10.17487/RFC9111"/>
        </reference>
        <reference anchor="RFC5861">
          <front>
            <title>HTTP Cache-Control Extensions for Stale Content</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document defines two independent HTTP Cache-Control extensions that allow control over the use of stale responses by caches. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5861"/>
          <seriesInfo name="DOI" value="10.17487/RFC5861"/>
        </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"/>
            <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"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="Origin">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents. Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites. In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string. It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </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"/>
            <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="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"/>
            <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="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"/>
            <abstract>
              <t>This specification defines a lossless compressed data format that compresses data using a combination of the LZ77 algorithm and Huffman coding, with efficiency comparable to the best currently available general-purpose compression methods.</t>
            </abstract>
          </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"/>
            <abstract>
              <t>Zstandard, or "zstd" (pronounced "zee standard"), is a lossless data compression mechanism. This document describes the mechanism and registers a media type, content encoding, and a structured syntax suffix to be used when transporting zstd-compressed content via MIME.</t>
              <t>Despite use of the word "standard" as part of Zstandard, readers are advised that this document is not an Internet Standards Track specification; it is being published for informational purposes only.</t>
              <t>This document replaces and obsoletes RFC 8478.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8878"/>
          <seriesInfo name="DOI" value="10.17487/RFC8878"/>
        </reference>
      </references>
    </references>
    <?line 516?>



  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
