<?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-02" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.1 -->
  <front>
    <title>Compression Dictionary Transport</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-compression-dictionary-02"/>
    <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="January" day="26"/>
    <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>
      <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"/> 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 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>
          <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 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="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>
            <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"/> 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>
        <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 MUST 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 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>
          <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 string and If DEST and REQUEST_DEST are not the
 same value, 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
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>
        <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 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>
        <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 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>
        <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 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>
            <ul spacing="normal">
              <li>
                <t>For any request that is same-origin:
                </t>
                <ul spacing="normal">
                  <li>
                    <t>Response MAY be used as a dictionary.</t>
                  </li>
                  <li>
                    <t>Response MAY 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 SHOULD 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 MAY be used as a dictionary.</t>
                  </li>
                  <li>
                    <t>Response MAY 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 MAY be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response MAY be compressed by an available dictionary.</t>
                          </li>
                        </ul>
                      </li>
                      <li>
                        <t>Else:
                        </t>
                        <ul spacing="normal">
                          <li>
                            <t>Response MUST NOT be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response MUST NOT 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 MUST NOT be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response MUST NOT 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 MUST NOT be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response MUST NOT 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 MAY be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response MAY 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 MAY be used as a dictionary.</t>
                          </li>
                          <li>
                            <t>Response MAY 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 MUST NOT be used as a dictionary.</t>
                  </li>
                  <li>
                    <t>Response MUST NOT 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 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>
      <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>
      </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 485?>



  </back>
  <!-- ##markdown-source:
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
4r8tJdh+GEoAAA==

-->

</rfc>
