<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.11 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-privacypass-architecture-11" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.10 -->
  <front>
    <title abbrev="Privacy Pass Architecture">The Privacy Pass Architecture</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-architecture-11"/>
    <author initials="A." surname="Davidson" fullname="Alex Davidson">
      <organization>LIP</organization>
      <address>
        <postal>
          <city>Lisbon</city>
          <country>Portugal</country>
        </postal>
        <email>alex.davidson92@gmail.com</email>
      </address>
    </author>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar">
      <organization>Fastly</organization>
      <address>
        <email>jri@fastly.com</email>
      </address>
    </author>
    <author initials="C. A." surname="Wood" fullname="Christopher A. Wood">
      <organization>Cloudflare</organization>
      <address>
        <postal>
          <street>101 Townsend St</street>
          <city>San Francisco</city>
          <country>United States of America</country>
        </postal>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2023" month="March" day="06"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document specifies the Privacy Pass architecture and requirements for
its constituent protocols used for constructing privacy-preserving
authentication mechanisms. It provides recommendations on how the architecture
should be deployed to ensure the privacy of clients and the security of all
participating entities.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Privacy Pass is an architecture for authorization based on privacy-preserving
authentication mechanisms. Typical approaches for authorizing clients,
such as through the use of long-term state (cookies), are not privacy-friendly
since they allow servers to track clients across sessions and interactions.
Privacy Pass takes a different approach: instead of presenting linkable
state-carrying information to servers, e.g., a cookie indicating whether
or not the client is an authorized user or has completed some prior
challenge, clients present unlinkable proofs that attest to this information.
These proofs, or tokens, are private in the sense that a given token cannot
be linked to the protocol interaction where that token was initially issued.</t>
      <t>At a high level, the Privacy Pass architecture consists of two protocols:
redemption and issuance. The redemption protocol, described in
<xref target="AUTHSCHEME"/>, runs between Clients and
Origins (servers). It allows Origins to challenge Clients to present tokens
for authorization. Depending on the type of token, e.g., whether or not it
can be cached, the Client either presents a previously obtained token or
invokes an issuance protocol, such as
<xref target="ISSUANCE"/>, to acquire a token to present as
authorization.</t>
      <t>This document describes requirements for both redemption and issuance
protocols and how they interact. It also provides recommendations on how
the architecture should be deployed to ensure the privacy of clients and
the security of all participating entities.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <t>The following terms are used throughout this document:</t>
      <dl>
        <dt>Client:</dt>
        <dd>
          <t>An entity that seeks authorization to an Origin.</t>
        </dd>
        <dt>Origin:</dt>
        <dd>
          <t>An entity that redeems tokens presented by Clients.</t>
        </dd>
        <dt>Issuer:</dt>
        <dd>
          <t>An entity that issues tokens to Clients for properties
attested to by the Attester.</t>
        </dd>
        <dt>Attester:</dt>
        <dd>
          <t>An entity that attests to properties of Clients for the
purposes of token issuance.</t>
        </dd>
        <dt>Attestation procedure:</dt>
        <dd>
          <t>The procedure by which an Attester determines whether or not a Client
is trusted with a specific set of properties for token issuance.</t>
        </dd>
      </dl>
    </section>
    <section anchor="architecture">
      <name>Architecture</name>
      <t>The Privacy Pass architecture consists of four logical entities --
Client, Origin, Issuer, and Attester -- that work in concert
for token redemption and issuance. This section presents an overview
of Privacy Pass, a high-level description of the threat model and
privacy goals of the architecture, and the goals and requirements of the
redemption and issuance protocols.</t>
      <section anchor="overview">
        <name>Overview</name>
        <t>The typical interaction flow for Privacy Pass uses the following steps:</t>
        <ol spacing="normal" type="1"><li>A Client interacts with an Origin by sending a request or otherwise
interacting with the Origin in a way that triggers a response containing
a token challenge. The token challenge indicates a specific Issuer to use.</li>
          <li>If the Client already has a token available that satisfies the token
challenge, e.g., because the Client has a cache of previously issued tokens,
it can skip to <xref format="none" target="step-redemption">step 6</xref> and redeem its
token; see <xref target="hoarding"/> for security considerations of cached tokens.</li>
          <li>If the Client does not have a token available and decides it wants to
obtain one (or more) bound to the token challenge, it then invokes the
issuance protocol. As a prerequisite to the issuance protocol, the Client
runs the deployment specific attestation process that is required for the
designated Issuer. Client attestation can be done via proof of solving a
CAPTCHA, checking device or hardware attestation validity, etc; see
<xref target="attester"/> for more details.</li>
          <li>If the attestation process completes successfully, the client creates a
Token Request to send to the designated Issuer (generally via the Attester,
though it is not required to be sent through the Attester).
The Attester and Issuer might be functions on the same server, depending on the
deployment model (see <xref target="deployment"/>). Depending on the attestation process, it
is possible for attestation to run alongside the issuance protocol, e.g., where
Clients send necessary attestation information to the Attester along with their
Token Request. If the attestation process fails, the Client receives an error
and issuance aborts without a token.</li>
          <li>The Issuer generates a Token Response based on the Token Request, which
is returned to the Client (generally via the Attester). Upon receiving the
Token Response, the Client computes a token from the token challenge and Token
Response. This token can be validated by anyone with the per-Issuer key, but
cannot be linked to the content of the Token Request or Token Response.</li>
          <li>
            <t anchor="step-redemption">If the Client has a token, it includes it in a subsequent request to
the Origin, as authorization. This token is sent only once.  The Origin
validates that the token was generated by the expected Issuer and has not
already been redeemed for the corresponding token challenge.  If the Client
does not have a token, perhaps because issuance failed, the client does not
reply to the Origin's challenge with a new request.</t>
          </li>
        </ol>
        <figure anchor="fig-overview">
          <name>Privacy pass redemption and issuance protocol interaction</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="224" width="520" viewBox="0 0 520 224" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 8,32 L 8,64" fill="none" stroke="black"/>
                <path d="M 40,64 L 40,208" fill="none" stroke="black"/>
                <path d="M 80,32 L 80,64" fill="none" stroke="black"/>
                <path d="M 184,32 L 184,64" fill="none" stroke="black"/>
                <path d="M 216,64 L 216,208" fill="none" stroke="black"/>
                <path d="M 256,32 L 256,64" fill="none" stroke="black"/>
                <path d="M 336,32 L 336,64" fill="none" stroke="black"/>
                <path d="M 376,64 L 376,144" fill="none" stroke="black"/>
                <path d="M 376,192 L 376,208" fill="none" stroke="black"/>
                <path d="M 424,32 L 424,64" fill="none" stroke="black"/>
                <path d="M 440,32 L 440,64" fill="none" stroke="black"/>
                <path d="M 472,64 L 472,208" fill="none" stroke="black"/>
                <path d="M 512,32 L 512,64" fill="none" stroke="black"/>
                <path d="M 8,32 L 80,32" fill="none" stroke="black"/>
                <path d="M 184,32 L 256,32" fill="none" stroke="black"/>
                <path d="M 336,32 L 424,32" fill="none" stroke="black"/>
                <path d="M 440,32 L 512,32" fill="none" stroke="black"/>
                <path d="M 8,64 L 80,64" fill="none" stroke="black"/>
                <path d="M 184,64 L 256,64" fill="none" stroke="black"/>
                <path d="M 336,64 L 424,64" fill="none" stroke="black"/>
                <path d="M 440,64 L 512,64" fill="none" stroke="black"/>
                <path d="M 48,96 L 88,96" fill="none" stroke="black"/>
                <path d="M 168,96 L 216,96" fill="none" stroke="black"/>
                <path d="M 40,112 L 56,112" fill="none" stroke="black"/>
                <path d="M 192,112 L 208,112" fill="none" stroke="black"/>
                <path d="M 224,126 L 240,126" fill="none" stroke="black"/>
                <path d="M 224,130 L 240,130" fill="none" stroke="black"/>
                <path d="M 352,126 L 368,126" fill="none" stroke="black"/>
                <path d="M 352,130 L 368,130" fill="none" stroke="black"/>
                <path d="M 216,160 L 288,160" fill="none" stroke="black"/>
                <path d="M 408,160 L 464,160" fill="none" stroke="black"/>
                <path d="M 224,176 L 288,176" fill="none" stroke="black"/>
                <path d="M 416,176 L 472,176" fill="none" stroke="black"/>
                <path d="M 48,192 L 64,192" fill="none" stroke="black"/>
                <path d="M 192,192 L 216,192" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="472,160 460,154.4 460,165.6" fill="black" transform="rotate(0,464,160)"/>
                <polygon class="arrowhead" points="376,128 364,122.4 364,133.6" fill="black" transform="rotate(0,368,128)"/>
                <polygon class="arrowhead" points="232,176 220,170.4 220,181.6" fill="black" transform="rotate(180,224,176)"/>
                <polygon class="arrowhead" points="232,128 220,122.4 220,133.6" fill="black" transform="rotate(180,224,128)"/>
                <polygon class="arrowhead" points="216,112 204,106.4 204,117.6" fill="black" transform="rotate(0,208,112)"/>
                <polygon class="arrowhead" points="56,192 44,186.4 44,197.6" fill="black" transform="rotate(180,48,192)"/>
                <polygon class="arrowhead" points="56,96 44,90.4 44,101.6" fill="black" transform="rotate(180,48,96)"/>
                <g class="text">
                  <text x="44" y="52">Origin</text>
                  <text x="220" y="52">Client</text>
                  <text x="380" y="52">Attester</text>
                  <text x="476" y="52">Issuer</text>
                  <text x="128" y="100">Request</text>
                  <text x="124" y="116">TokenChallenge</text>
                  <text x="296" y="132">Attestation</text>
                  <text x="348" y="164">TokenRequest</text>
                  <text x="352" y="180">TokenResponse</text>
                  <text x="128" y="196">Request+Token</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+--------+            +--------+         +----------+ +--------+
| Origin |            | Client |         | Attester | | Issuer |
+---+----+            +---+----+         +----+-----+ +---+----+
    |                     |                   |           |
    |<----- Request ------+                   |           |
    +-- TokenChallenge -->|                   |           |
    |                     |<== Attestation ==>|           |
    |                     |                   |           |
    |                     +--------- TokenRequest ------->|
    |                     |<-------- TokenResponse -------+
    |<-- Request+Token ---+                   |           |
    |                     |                   |           |
]]></artwork>
          </artset>
        </figure>
      </section>
      <section anchor="privacy-and-trust">
        <name>Privacy Goals and Threat Model</name>
        <t>The end-to-end flow for Privacy Pass described in <xref target="overview"/> involves three
different types of contexts:</t>
        <dl>
          <dt>Redemption context:</dt>
          <dd>
            <t>The interactions and set of information shared
between the Client and Origin, i.e., the information that is provided or
otherwise available to the Origin during redemption that might be used
to identify a Client and construct a token challenge. This context includes all information associated
with redemption, such as the timestamp of the event, Client visible
information (including the IP address), and the Origin name.</t>
          </dd>
          <dt>Issuance context:</dt>
          <dd>
            <t>The interactions and set of information shared between the Client, Attester,
and Issuer, i.e., the information that is provided or otherwise available
to Attester and Issuer during issuance that might be used to identify a Client.
This context includes all information associated with issuance, such as the
timestamp of the event, any Client visible information (including the IP
address), and the Origin name (if revealed during issuance). This does not include
the token challenge in its entirety, as that is kept secret from the Issuer during the
issuance protocol.</t>
          </dd>
          <dt>Attestation context:</dt>
          <dd>
            <t>The interactions and set of information shared between
the Client and Attester only, for the purposes of attesting the vailidity of
the Client, that is provided or otherwise available during attestation that
might be used to identify the Client. This context includes all information
associated with attestation, such as the timestamp of the event and any Client
visible information, including information needed for the attestation
procedure to complete.</t>
          </dd>
        </dl>
        <t>The privacy goals of Privacy Pass assume a threat model in which Origins trust
specific Issuers to produce tokens, and Issuers in turn trust one or more
Attesters to correctly run the attestation procedure with Clients. This
arrangement ensures that tokens which validate for a given Issuer were only
issued to a Client that successfully completed attestation with an Attester that
the Issuer trusts. Moreover, this arrangement means that if an Origin accepts
tokens issued by an Issuer that trusts multiple Attesters, then a Client can
use any one of these Attesters to issue and redeem tokens for the Origin.</t>
        <t>The mechanisms for establishing trust between each entity in this arrangement
are deployment specific. For example, in settings where Clients interact with
Issuers through an Attester, Attesters and Issuers might use
mutually authenticated TLS to authenticate one another. In settings where
Clients do not communicate with Issuers through an Attester, the Attesters
might convey this trust via a digital signature over that Issuers can verify.</t>
        <t>Clients explicitly trust Attesters to perform attestation correctly and in a
way that does not violate their privacy. However, Clients assume Issuers and
Origins are malicious.</t>
        <t>Given this threat model, the privacy goals of Privacy Pass are oriented around
unlinkability based on redemption, issuance, and attestation contexts, as
described below.</t>
        <ol spacing="normal" type="1"><li>Origin-Client unlinkability. This means that given two redemption contexts,
the Origin cannot determine if both redemption contexts correspond to the same
Client or two different Clients. Informally, this means that a Client in a
redemption context is indistinguishable from any other Client that might use
the same redemption context. The set of Clients that share the same redemption
context is referred to as a redemption anonymity set.</li>
          <li>Issuer-Client unlinkability. This is similar to Origin-Client unlinkability
in that a Client in an issuance context is indistinguishable from any other
Client that might use the same issuance context. The set of Clients that share
the same issuance context is referred to as an issuance anonymity set.</li>
          <li>Attester-Origin unlinkability. This is similar to Origin-Client and
Issuer-Client unlinkability. It means that given two attestation contexts,
the Attester cannot determine if both contexts correspond to the same Origin
or two different Origins. The set of Clients that share the same attestation
context is referred to as an attestation anonymity set.</li>
        </ol>
        <t>By ensuring that different contexts cannot be linked in this way, only the
Client is able to correlate information that might be used to identify them with
activity on the Origin.  The Attester, Issuer, and Origin only receive the
information necessary to perform their respective functions.</t>
        <t>The manner in which Origin-Client, Issuer-Client, and Attester-Origin
unlinkability are achieved depends on the deployment model, type of
attestation, and issuance protocol details. For example, as discussed in
<xref target="deployment"/>, failure to use a privacy-enhancing proxy system such as Tor
<xref target="DMS2004"/> when interacting with Attesters, Issuers, or Origins allows
the set of possible Clients to be partitioned by the Client's IP address, and
can therefore lead to unlinkability violations. Similarly, malicious Origins
may attempt to link two redemption contexts together by using Client-specific
Issuer public keys. See <xref target="deployment"/> and <xref target="privacy"/> for more information.</t>
        <t>The remainder of this section describes the functional properties and security
requirements of the redemption and issuance protocols in more detail. <xref target="flow"/>
describes how information flows between Issuer, Origin, Client, and Attester
through these protocols.</t>
      </section>
      <section anchor="redemption">
        <name>Redemption Protocol</name>
        <t>The Privacy Pass redemption protocol, described in
<xref target="AUTHSCHEME"/>, is an authorization protocol
wherein Clients present tokens to Origins for authorization. Normally,
redemption follows a challenge-response flow, wherein the Origin challenges
Clients for a token with a TokenChallenge (<xref section="2.1" sectionFormat="comma" target="AUTHSCHEME"/>) and,
if possible, Clients present a valid Token (<xref section="2.2" sectionFormat="comma" target="AUTHSCHEME"/>)
in response. This interaction is shown below.</t>
        <figure anchor="fig-redemption">
          <name>Challenge-response redemption protocol interaction</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="176" width="432" viewBox="0 0 432 176" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 8,32 L 8,64" fill="none" stroke="black"/>
                <path d="M 40,64 L 40,160" fill="none" stroke="black"/>
                <path d="M 80,32 L 80,64" fill="none" stroke="black"/>
                <path d="M 184,32 L 184,64" fill="none" stroke="black"/>
                <path d="M 216,64 L 216,160" fill="none" stroke="black"/>
                <path d="M 256,32 L 256,64" fill="none" stroke="black"/>
                <path d="M 8,32 L 80,32" fill="none" stroke="black"/>
                <path d="M 184,32 L 256,32" fill="none" stroke="black"/>
                <path d="M 8,64 L 80,64" fill="none" stroke="black"/>
                <path d="M 184,64 L 256,64" fill="none" stroke="black"/>
                <path d="M 48,96 L 88,96" fill="none" stroke="black"/>
                <path d="M 168,96 L 216,96" fill="none" stroke="black"/>
                <path d="M 40,112 L 56,112" fill="none" stroke="black"/>
                <path d="M 192,112 L 208,112" fill="none" stroke="black"/>
                <path d="M 232,126 L 248,126" fill="none" stroke="black"/>
                <path d="M 232,130 L 248,130" fill="none" stroke="black"/>
                <path d="M 408,126 L 424,126" fill="none" stroke="black"/>
                <path d="M 408,130 L 424,130" fill="none" stroke="black"/>
                <path d="M 48,144 L 64,144" fill="none" stroke="black"/>
                <path d="M 192,144 L 216,144" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="432,128 420,122.4 420,133.6" fill="black" transform="rotate(0,424,128)"/>
                <polygon class="arrowhead" points="240,128 228,122.4 228,133.6" fill="black" transform="rotate(180,232,128)"/>
                <polygon class="arrowhead" points="216,112 204,106.4 204,117.6" fill="black" transform="rotate(0,208,112)"/>
                <polygon class="arrowhead" points="56,144 44,138.4 44,149.6" fill="black" transform="rotate(180,48,144)"/>
                <polygon class="arrowhead" points="56,96 44,90.4 44,101.6" fill="black" transform="rotate(180,48,96)"/>
                <g class="text">
                  <text x="44" y="52">Origin</text>
                  <text x="220" y="52">Client</text>
                  <text x="128" y="100">Request</text>
                  <text x="124" y="116">TokenChallenge</text>
                  <text x="292" y="132">Issuance</text>
                  <text x="364" y="132">protocol</text>
                  <text x="128" y="148">Request+Token</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+--------+            +--------+
| Origin |            | Client |
+---+----+            +---+----+
    |                     |
    |<----- Request ------+
    +-- TokenChallenge -->|
    |                     | <== Issuance protocol ==>
    |<-- Request+Token ---+
    |                     |
]]></artwork>
          </artset>
        </figure>
        <t>Alternatively, when configured to do so, Clients may opportunistically present
Token values to Origins without a corresponding TokenChallenge.</t>
        <t>The structure and semantics of the TokenChallenge and Token messages depend
on the issuance protocol and token type being used; see <xref target="AUTHSCHEME"/> for
more information.</t>
        <t>The challenge provides the client with the information necessary to obtain
tokens that the server might subsequently accept in the redemption context.
There are a number of ways in which the token may vary based on this challenge,
including:</t>
        <ul spacing="normal">
          <li>Issuance protocol. The challenge identifies the type of issuance protocol
required for producing the token. Different issuance protocols have different
security properties, e.g., some issuance protocols may produce tokens that
are publicly verifiable, whereas others may not have this property.</li>
          <li>Issuer identity. Token challenges identify which Issuers are trusted for a
given issuance protocol. As described in <xref target="privacy-and-trust"/>, the choice
of Issuer determines the type of Attesters and attestation procedures possible
for a token from the specified Issuer, but the Client does not learn exactly
which Attester was used for a given token issuance event.</li>
          <li>Redemption context. Challenges can be bound to a given redemption context,
which influences a client's ability to pre-fetch and cache tokens. For
example, an empty redemption context always allows tokens to be issued and
redeemed non-interactively, whereas a fresh and random redemption context
means that the redeemed token must be issued only after the client receives
the challenge. See <xref section="2.1.1" sectionFormat="of" target="AUTHSCHEME"/> for more details.</li>
          <li>Per-Origin or cross-Origin. Challenges can be constrained to the Origin for
which the challenge originated (referred to as per-Origin tokens), or
can be used across multiple Origins (referred to as cross-Origin tokens).
The set of Origins for which a cross-Origin token is applicable is referred
to as the cross-Origin set.</li>
        </ul>
        <t>Origins that admit cross-Origin tokens bear some risk of allowing tokens
issued for one Origin to be spent in an interaction with another Origin.
In particular, depending on the use case, Origins may need to maintain
state to track redeemed tokens. For example, Origins that accept cross-Origin
tokens across shared redemption contexts SHOULD track which tokens have been
redeemed already in those redemption contexts, since these tokens can
be issued and then spent multiple times in response to any such challenge.
See <xref section="2.1.1" sectionFormat="of" target="AUTHSCHEME"/> for discussion.</t>
        <t>How Clients respond to token challenges can have privacy implications.
For example, if an Origin allows the Client to choose an Issuer, then the choice
of Issuer can reveal information about the Client used to partition anonymity
sets; see <xref target="rotation-and-consistency"/> for more information about these privacy
considerations.</t>
      </section>
      <section anchor="issuance-protocol">
        <name>Issuance Protocol</name>
        <t>The Privacy Pass issuance protocol, described in <xref target="ISSUANCE"/>, is a two-message
protocol that takes as input a TokenChallenge from the redemption protocol
(<xref section="2.1" sectionFormat="comma" target="AUTHSCHEME"/>) and produces a Token
(<xref section="2.2" sectionFormat="comma" target="AUTHSCHEME"/>), as shown in <xref target="fig-overview"/>.</t>
        <t>The structure and semantics of the TokenRequest and TokenResponse messages
depend on the issuance protocol and token type being used; see <xref target="ISSUANCE"/>
for more information.</t>
        <t>Clients interact with the Attester and Issuer to produce a token in response to
a challenge. The context in which an Attester vouches for a Client during
issuance is referred to as the attestation context. This context includes all
information associated with the issuance event, such as the timestamp of the
event and Client visible information, including the IP address or other
information specific to the type of attestation done.</t>
        <t>Each issuance protocol may be different, e.g., in the number and types of
participants, underlying cryptographic constructions used when issuing tokens,
and even privacy properties.</t>
        <t>Clients initiate the issuance protocol using the token challenge, a randomly
generated nonce, and public key for the Issuer, all of which are the Client's
private input to the protocol and ultimately bound to an output Token;
see <xref section="2.2" sectionFormat="of" target="AUTHSCHEME"/> for details. Future specifications
may change or extend the Client's input to the issuance protocol to produce
Tokens with a different structure.</t>
        <t>The issuance protocol itself can be any interactive protocol between Client,
Issuer, or other parties that produces a valid token bound to the Client's
private input, subject to the following security requirements.</t>
        <ol spacing="normal" type="1"><li>Unconditional input secrecy. The issuance protocol MUST NOT reveal anything
about the Client's private input, including the challenge and nonce, to the
Attester or Issuer, regardless of the hardness assumptions of the underlying
cryptographic protocol(s). This property is sometimes also referred to as
blindness.</li>
          <li>One-more forgery security. The issuance protocol MUST NOT allow malicious
Clients or Attesters (acting as Clients) to forge tokens offline or otherwise
without interacting with the Issuer directly.</li>
          <li>Concurrent security. The issuance protocol MUST be safe to run concurrently
with arbitrarily many Clients, Attesters and Issuers.</li>
        </ol>
        <t>See <xref target="extensions"/> for requirements on new issuance protocol variants and
related extensions.</t>
        <t>In the sections below, we describe the Attester and Issuer roles in more
detail.</t>
        <section anchor="attester">
          <name>Attester Role</name>
          <t>In Privacy Pass, attestation is the process by which an Attester bears
witness to, confirms, or authenticates a Client so as to verify properties
about the Client that are required for Issuance. Issuers trust Attesters
to perform attestation correctly.</t>
          <t><xref target="RFC9334"/> describes an architecture for attestation procedures. Using
that architecture as a conceptual basis, Clients are RATS attesters that
produce attestation evidence, and Attesters are RATS verifiers that
appraise the validity of attestation evidence.</t>
          <t>The type of attestation procedure is a deployment-specific option and outside
the scope of the issuance protocol. Example attestation procedures are below.</t>
          <ul spacing="normal">
            <li>Solving a CAPTCHA. Clients that solve CAPTCHA challenges can be attested to
have this capability for the purpose of being ruled out as a bot or otherwise
automated Client.</li>
            <li>Presenting evidence of Client device validity. Some Clients run on trusted
hardware that are capable of producing device-level attestation evidence.</li>
            <li>Proving properties about Client state. Clients can be associated with state
and the Attester can verify this state. Examples of state include the
Client's geographic region and whether the Client has a valid
application-layer account.</li>
          </ul>
          <t>Attesters may support different types of attestation procedures.</t>
          <t>In general, each attestation procedure has different security properties. For
example, attesting to having a valid account is different from attesting to
running on trusted hardware. In general, minimizing the set of supported
attestation procedures helps minimize the amount of information leaked through
a token.</t>
          <t>The role of the Attester in the issuance protocol and its impact on privacy
depends on the type of attestation procedure, issuance protocol, deployment
model. For instance, requiring a conjunction of attestation procedures could
decrease the overall anonymity set size. As an example, the number of Clients
that have solved a CAPTCHA in the past day, that have a valid account, and that
are running on a trusted device is less than the number of Clients that have
solved a CAPTCHA in the past day. Attesters SHOULD NOT be based on attestation
procedures that result in small anonymity sets.</t>
          <t>Depending on the issuance protocol, the Issuer might learn
information about the Origin. To ensure Issuer-Client unlinkability, the Issuer
should be unable to link that information to a specific Client. For such
issuance protocols where the Attester has access to Client-specific
information, such as is the case for attestation procedures that involve
Client-specific information (such as application-layer account information)
or for deployment models where the Attester learns Client-specific information
(such as Client IP addresses), Clients trust the Attester to not share any
Client-specific information with the Issuer. In deployments where the Attester
does not learn Client-specific information, the Client does not need to
explicitly trust the Attester in this regard.</t>
          <t>Issuers trust Attesters to correctly and reliably perform attestation. However,
certain types of attestation can vary in value over time, e.g., if the
attestation procedure is compromised. Broken
attestation procedures are considered exceptional events and require
configuration changes to address the underlying cause. For example, if
attestation is compromised because of a zero-day exploit on compliant devices,
then the corresponding attestation procedure should be untrusted until the
exploit is patched. Addressing changes in attestation quality is therefore a
deployment-specific task. In Split Attester and Issuer deployments (see
<xref target="deploy-split"/>), Issuers can choose to remove compromised Attesters from
their trusted set until the compromise is patched.</t>
          <t>From the perspective of an Origin, tokens produced by an Issuer with at least
one compromised Attester cannot be trusted assuming the Origin does not know
which attestation procedure was used for issuance. This is because the Origin
cannot distinguish between tokens that were issued via compromised Attesters
and tokens that were issued via uncompromised Attesters absent some
distinguishing information in the tokens themselves or from the Issuer. As a
result, until the attestation procedure is fixed, the Issuer cannot be trusted
by Origins. Moreover, as a consequence, any tokens issued by an Issuer with a
compromised attester may no longer be trusted by Origins, even if those tokens
were issued to Clients interacting with an uncompromised Attester.</t>
        </section>
        <section anchor="issuer-role">
          <name>Issuer Role</name>
          <t>In Privacy Pass, the Issuer is responsible for completing the issuance protocol
for Clients that complete attestation through a trusted Attester. As described
in <xref target="attester"/>, Issuers explicitly trust Attesters to correctly and reliably
perform attestation. Origins explicitly trust Issuers to only issue tokens
from trusted Attesters. Clients do not explicitly trust Issuers.</t>
          <t>Depending on the deployment model case, issuance may require some form of
Client anonymization service, similar to an IP-hiding proxy, so that Issuers
cannot learn information about Clients. This can be provided by an explicit
participant in the issuance protocol, or it can be provided via external means,
such as through the use of an IP-hiding proxy service like Tor.
In general, Clients SHOULD minimize or remove identifying
information where possible when invoking the issuance protocol.</t>
          <t>Issuers are uniquely identifiable by all Clients with a consistent
identifier. In a web context, this identifier might be the Issuer host name.
Issuers maintain one or more configurations, including issuance key pairs, for
use in the issuance protocol. Issuers can rotate these configurations as needed
to mitigate risk of compromise; see <xref target="rotation-and-consistency"/> for more
considerations around configuration rotation. The Issuer public key for each
active configuration is made available to Origins and Clients for use in the
issuance and redemption protocols.</t>
        </section>
        <section anchor="metadata">
          <name>Issuance Metadata</name>
          <t>Certain instantiations of the issuance protocol may permit public or private
metadata to be cryptographically bound to a token. As an example, one
trivial way to include public metadata is to assign a unique Issuer
public key for each value of metadata, such that N keys yields
log<sub>2</sub>(N) bits of metadata. Metadata may be public or private.</t>
          <t>Public metadata is that which clients can observe as part of the token
issuance flow. Public metadata can either be transparent or opaque. For
example, transparent public metadata is a value that the client either
generates itself, or the Issuer provides during the issuance flow and
the client can check for correctness. Opaque public metadata is metadata
the client can see but cannot check for correctness. As an example, the
opaque public metadata might be a "fraud detection signal", computed on
behalf of the Issuer, during token issuance. In normal circumstances,
Clients cannot determine if this value is correct or otherwise a tracking
vector.</t>
          <t>Private metadata is that which Clients cannot observe as part of the token
issuance flow. Such instantiations can be built on the Private Metadata Bit
construction from Kreuter et al. <xref target="KLOR20"/>
or the attribute-based VOPRF from Huang et al. <xref target="HIJK21"/>.</t>
          <t>Metadata can be arbitrarily long or bounded in length. The amount of permitted
metadata may be determined by application or by the underlying cryptographic
protocol. The total amount of metadata bits included in a token is the sum of
public and private metadata bits. Every bit of metadata can be used to
partition the Client issuance or redemption anonymity sets; see
<xref target="metadata-privacy"/> for more information.</t>
        </section>
        <section anchor="extensions">
          <name>Issuance Protocol Extensibility</name>
          <t>The Privacy Pass architecture and ecosystem are both intended to be receptive
to extensions that expand the current set of functionalities through new
issuance protocols. Each issuance protocol MUST include a detailed analysis
of the privacy impacts of the extension, why these impacts are justified,
and guidelines on how to deploy the protocol to minimize any privacy impacts.
Any extension to the Privacy Pass protocol MUST adhere to the guidelines
specified in <xref target="issuer-role"/> for managing Issuer public key data.</t>
        </section>
      </section>
      <section anchor="flow">
        <name>Information Flow</name>
        <t>The end-to-end process of redemption and issuance protocols involves information
flowing between Issuer, Origin, Client, and Attester. That information can
have implications on the privacy goals that Privacy Pass aims to provide
as outlined in <xref target="privacy-and-trust"/>. In this section, we describe the flow
of information between each party. How this information affects the privacy
goals in particular deployment models is further discussed in <xref target="deployment"/>.</t>
        <section anchor="challenge-flow">
          <name>Token Challenge Flow</name>
          <t>To use Privacy Pass, Origins choose an Issuer from which they are willing to
accept tokens. Origins then construct a token challenge using this specified
Issuer and information from the redemption context it shares with the Client. This token
challenge is then delivered to a Client. The token challenge conveys
information about the Issuer and the redemption context, such as whether the
Origin desires a per-Origin or cross-Origin token. Any entity that sees
the token challenge might learn things about the Client as known to the Origin.
This is why input secrecy is a requirement for issuance protocols, as it
ensures that the challenge is not directly available to the Issuer.</t>
        </section>
        <section anchor="attestation-flow">
          <name>Attestation Flow</name>
          <t>Clients interact with the Attester to prove that they meet some required
set of properties. In doing so, Clients contribute information to the
attestation context, which might include sensitive information such as
application-layer identities, IP addresses, and so on. Clients can choose
whether or not to contribute this information based on local policy or
preference.</t>
        </section>
        <section anchor="issue-flow">
          <name>Issuance Flow</name>
          <t>Clients use the issuance protocol to produce a token bound to a token
challenge. In doing so, there are several ways in which the issuance protocol
contributes information to the attestation or issuance contexts. For example, a
token request may contribute information to the attestation or issuance
contexts as described below.</t>
          <ul spacing="normal">
            <li>Issuance protocol. The type of issuance protocol can contribute information
about the Issuer's capabilities to the attestation or issuance contexts, as
well as the capabilities of a given Client. For example, if a Client is
presented with multiple issuance protocol options, then the choice of which
issuance protocol to use can contribute information about the Client's
capabilities.</li>
            <li>Issuer configuration. Information about the Issuer configuration, such as
its identity or the public key used to validate tokens it creates, can be
revealed during issuance and contribute to the attestation or issuance
contexts.</li>
            <li>Attestation information. The issuance protocol can contribute information to
the attestation or issuance contexts based on what attestation procedure the
Issuer uses to trust a token request. In particular, a token request that is
validated by a given Attester means that the Client which generated the token
request must be capable of the completing the designated attestation procedure.</li>
            <li>Origin information. The issuance protocol can contribute information about
the Origin that challenged the Client in <xref target="challenge-flow"/>. In particular,
a token request designated for a specific Issuer might imply that the resulting
token is for an Origin that trusts the specified Issuer. However, this is not
always true, as some token requests can correspond to cross-Origin tokens,
i.e., they are tokens that would be accepted at any Origin that accepts the
cross-Origin token.</li>
          </ul>
          <t>Moreover, a token response may contribute information to the issuance
attestation or contexts as described below.</t>
          <ul spacing="normal">
            <li>Origin information. The issuance protocol can contribute information about
the Origin in how it responds to a token request. For example, if an Issuer
learns the Origin during issuance and is also configured to respond in some way
on the basis of that information, and the Client interacts with the Issuer
transitively through the Attester, that response can reveal information to the
Attester.</li>
            <li>Token. The token produced by the issuance protocol can contain information
from the issuance context. In particular, depending on the issuance protocol,
tokens can contain public or private metadata, and Issuers can choose that
metadata on the basis of information in the issuance context.</li>
          </ul>
          <t>Exceptional cases in the issuance protocol, such as when either the
Attester or Issuer aborts the protocol, can contribute information to the
attestation or issuance contexts. The extent to which information in this
context harms the Issuer-Client or Attester-Origin unlinkability goals in
<xref target="privacy-and-trust"/> depends on deployment model; see <xref target="deployment"/>.
Clients can choose whether or not to contribute information to these contexts
based on local policy or preference.</t>
        </section>
        <section anchor="redemption-flow">
          <name>Token Redemption Flow</name>
          <t>Clients send tokens to Origins during the redemption protocol. Any information
that is added to the token during issuance can therefore be sent to the Origin.
Information can either be explicitly passed in a token, or it can be implicit
in the way the Client responds to a token challenge. For example, if a Client
fails to complete issuance, and consequently fails to redeem a token in
response to a token challenge, this can reveal information to the Origin that
it might not otherwise have access to. However, an Origin cannot necessarily
distinguish between a Client that fails to complete issuance and one that
ignores the token challenge altogether.</t>
        </section>
      </section>
    </section>
    <section anchor="deployment">
      <name>Deployment Configurations</name>
      <t>The Origin, Attester, and Issuer portrayed in <xref target="fig-overview"/> can be
instantiated and deployed in a number of ways. The deployment model directly
influences the manner in which attestation, issuance, and redemption contexts
are separated to achieve Origin-Client, Issuer-Client, and Attester-Origin
unlinkability.</t>
      <t>This section covers some expected deployment models and their corresponding
security and privacy considerations. Each deployment model is described in
terms of the trust relationships and communication patterns between Client,
Attester, Issuer, and Origin.</t>
      <t>The discussion below assumes non-collusion between entities that have access to
the attestation, issuance, and redemption contexts, as collusion between such
entities would enable linking of these contexts and may lead to unlinkability
violations. Generally, this means that entities operated by separate parties do
not collude. Mechanisms for enforcing non-collusion are out of scope for this
architecture.</t>
      <section anchor="deploy-shared">
        <name>Shared Origin, Attester, Issuer</name>
        <t>In this model, the Origin, Attester, and Issuer are all operated by the same
entity, as shown in <xref target="fig-deploy-shared"/>.</t>
        <figure anchor="fig-deploy-shared">
          <name>Shared Deployment Model</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="256" width="528" viewBox="0 0 528 256" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 8,48 L 8,80" fill="none" stroke="black"/>
                <path d="M 40,80 L 40,240" fill="none" stroke="black"/>
                <path d="M 80,48 L 80,80" fill="none" stroke="black"/>
                <path d="M 144,32 L 144,80" fill="none" stroke="black"/>
                <path d="M 168,48 L 168,80" fill="none" stroke="black"/>
                <path d="M 216,80 L 216,104" fill="none" stroke="black"/>
                <path d="M 216,120 L 216,160" fill="none" stroke="black"/>
                <path d="M 256,48 L 256,80" fill="none" stroke="black"/>
                <path d="M 304,48 L 304,80" fill="none" stroke="black"/>
                <path d="M 344,80 L 344,96" fill="none" stroke="black"/>
                <path d="M 344,128 L 344,192" fill="none" stroke="black"/>
                <path d="M 376,48 L 376,80" fill="none" stroke="black"/>
                <path d="M 424,48 L 424,80" fill="none" stroke="black"/>
                <path d="M 456,80 L 456,208" fill="none" stroke="black"/>
                <path d="M 496,48 L 496,80" fill="none" stroke="black"/>
                <path d="M 520,48 L 520,80" fill="none" stroke="black"/>
                <path d="M 144,32 L 504,32" fill="none" stroke="black"/>
                <path d="M 8,48 L 80,48" fill="none" stroke="black"/>
                <path d="M 168,48 L 256,48" fill="none" stroke="black"/>
                <path d="M 304,48 L 376,48" fill="none" stroke="black"/>
                <path d="M 424,48 L 496,48" fill="none" stroke="black"/>
                <path d="M 8,80 L 80,80" fill="none" stroke="black"/>
                <path d="M 168,80 L 256,80" fill="none" stroke="black"/>
                <path d="M 304,80 L 376,80" fill="none" stroke="black"/>
                <path d="M 424,80 L 496,80" fill="none" stroke="black"/>
                <path d="M 160,96 L 208,96" fill="none" stroke="black"/>
                <path d="M 224,96 L 336,96" fill="none" stroke="black"/>
                <path d="M 352,96 L 448,96" fill="none" stroke="black"/>
                <path d="M 464,96 L 504,96" fill="none" stroke="black"/>
                <path d="M 48,112 L 304,112" fill="none" stroke="black"/>
                <path d="M 440,112 L 456,112" fill="none" stroke="black"/>
                <path d="M 48,142 L 72,142" fill="none" stroke="black"/>
                <path d="M 48,146 L 72,146" fill="none" stroke="black"/>
                <path d="M 184,142 L 208,142" fill="none" stroke="black"/>
                <path d="M 184,146 L 208,146" fill="none" stroke="black"/>
                <path d="M 40,176 L 128,176" fill="none" stroke="black"/>
                <path d="M 248,176 L 336,176" fill="none" stroke="black"/>
                <path d="M 48,192 L 128,192" fill="none" stroke="black"/>
                <path d="M 256,192 L 344,192" fill="none" stroke="black"/>
                <path d="M 40,224 L 208,224" fill="none" stroke="black"/>
                <path d="M 272,224 L 456,224" fill="none" stroke="black"/>
                <path d="M 504,32 C 512.83064,32 520,39.16936 520,48" fill="none" stroke="black"/>
                <path d="M 160,96 C 151.16936,96 144,88.83064 144,80" fill="none" stroke="black"/>
                <path d="M 504,96 C 512.83064,96 520,88.83064 520,80" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="464,224 452,218.4 452,229.6" fill="black" transform="rotate(0,456,224)"/>
                <polygon class="arrowhead" points="344,176 332,170.4 332,181.6" fill="black" transform="rotate(0,336,176)"/>
                <polygon class="arrowhead" points="216,144 204,138.4 204,149.6" fill="black" transform="rotate(0,208,144)"/>
                <polygon class="arrowhead" points="56,192 44,186.4 44,197.6" fill="black" transform="rotate(180,48,192)"/>
                <polygon class="arrowhead" points="56,144 44,138.4 44,149.6" fill="black" transform="rotate(180,48,144)"/>
                <polygon class="arrowhead" points="56,112 44,106.4 44,117.6" fill="black" transform="rotate(180,48,112)"/>
                <g class="text">
                  <text x="44" y="68">Client</text>
                  <text x="212" y="68">Attester</text>
                  <text x="340" y="68">Issuer</text>
                  <text x="460" y="68">Origin</text>
                  <text x="372" y="116">TokenChallenge</text>
                  <text x="128" y="148">Attestation</text>
                  <text x="188" y="180">TokenRequest</text>
                  <text x="192" y="196">TokenResponse</text>
                  <text x="240" y="228">Token</text>
                  <text x="456" y="244">|</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                 +---------------------------------------------.
+--------+       |  +----------+     +--------+     +--------+  |
| Client |       |  | Attester |     | Issuer |     | Origin |  |
+---+----+       |  +-----+----+     +----+---+     +---+----+  |
    |             `-------|---------------|-------------|------'
    |<-------------------------------- TokenChallenge --+
    |                     |               |             |
    |<=== Attestation ===>|               |             |
    |                     |               |             |
    +----------- TokenRequest ----------->|             |
    |<---------- TokenResponse -----------+             |
    |                                                   |
    +--------------------- Token ----------------------->
    |                                                   |
]]></artwork>
          </artset>
        </figure>
        <t>This model represents the initial deployment of Privacy Pass, as described in
<xref target="PrivacyPassCloudflare"/>. In this model, the Attester, Issuer, and Origin
share the attestation, issuance, and redemption contexts. As a result,
attestation mechanisms that can uniquely identify a Client, e.g., requiring
that Clients authenticate with some type of application-layer account, are
not appropriate, as they could lead to unlinkability violations.</t>
        <t>Origin-Client, Issuer-Client, and Attester-Origin unlinkability requires that
issuance and redemption events be separated over time, such as through the use
of tokens that correspond to token challenges with an empty redemption context
(see <xref target="redemption"/>), or be separated over space, such as through the use of an
anonymizing proxy when connecting to the Origin.</t>
      </section>
      <section anchor="deploy-joint-issuer">
        <name>Joint Attester and Issuer</name>
        <t>In this model, the Attester and Issuer are operated by the same entity
that is separate from the Origin. The Origin trusts the joint Attester
and Issuer to perform attestation and issue Tokens. Clients interact
with the joint Attester and Issuer for attestation and issuance. This
arrangement is shown in <xref target="fig-deploy-joint-issuer"/>.</t>
        <figure anchor="fig-deploy-joint-issuer">
          <name>Joint Attester and Issuer Deployment Model</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="256" width="520" viewBox="0 0 520 256" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 8,48 L 8,80" fill="none" stroke="black"/>
                <path d="M 40,80 L 40,240" fill="none" stroke="black"/>
                <path d="M 80,48 L 80,80" fill="none" stroke="black"/>
                <path d="M 160,32 L 160,80" fill="none" stroke="black"/>
                <path d="M 184,48 L 184,80" fill="none" stroke="black"/>
                <path d="M 232,80 L 232,104" fill="none" stroke="black"/>
                <path d="M 232,120 L 232,160" fill="none" stroke="black"/>
                <path d="M 272,48 L 272,80" fill="none" stroke="black"/>
                <path d="M 320,48 L 320,80" fill="none" stroke="black"/>
                <path d="M 360,80 L 360,96" fill="none" stroke="black"/>
                <path d="M 360,128 L 360,192" fill="none" stroke="black"/>
                <path d="M 392,48 L 392,80" fill="none" stroke="black"/>
                <path d="M 416,48 L 416,80" fill="none" stroke="black"/>
                <path d="M 440,48 L 440,80" fill="none" stroke="black"/>
                <path d="M 472,80 L 472,208" fill="none" stroke="black"/>
                <path d="M 512,48 L 512,80" fill="none" stroke="black"/>
                <path d="M 160,32 L 400,32" fill="none" stroke="black"/>
                <path d="M 8,48 L 80,48" fill="none" stroke="black"/>
                <path d="M 184,48 L 272,48" fill="none" stroke="black"/>
                <path d="M 320,48 L 392,48" fill="none" stroke="black"/>
                <path d="M 440,48 L 512,48" fill="none" stroke="black"/>
                <path d="M 8,80 L 80,80" fill="none" stroke="black"/>
                <path d="M 184,80 L 272,80" fill="none" stroke="black"/>
                <path d="M 320,80 L 392,80" fill="none" stroke="black"/>
                <path d="M 440,80 L 512,80" fill="none" stroke="black"/>
                <path d="M 176,96 L 224,96" fill="none" stroke="black"/>
                <path d="M 240,96 L 352,96" fill="none" stroke="black"/>
                <path d="M 368,96 L 400,96" fill="none" stroke="black"/>
                <path d="M 48,112 L 320,112" fill="none" stroke="black"/>
                <path d="M 456,112 L 472,112" fill="none" stroke="black"/>
                <path d="M 48,142 L 80,142" fill="none" stroke="black"/>
                <path d="M 48,146 L 80,146" fill="none" stroke="black"/>
                <path d="M 192,142 L 224,142" fill="none" stroke="black"/>
                <path d="M 192,146 L 224,146" fill="none" stroke="black"/>
                <path d="M 40,176 L 144,176" fill="none" stroke="black"/>
                <path d="M 264,176 L 352,176" fill="none" stroke="black"/>
                <path d="M 48,192 L 136,192" fill="none" stroke="black"/>
                <path d="M 264,192 L 360,192" fill="none" stroke="black"/>
                <path d="M 40,224 L 224,224" fill="none" stroke="black"/>
                <path d="M 288,224 L 472,224" fill="none" stroke="black"/>
                <path d="M 400,32 C 408.83064,32 416,39.16936 416,48" fill="none" stroke="black"/>
                <path d="M 176,96 C 167.16936,96 160,88.83064 160,80" fill="none" stroke="black"/>
                <path d="M 400,96 C 408.83064,96 416,88.83064 416,80" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="480,224 468,218.4 468,229.6" fill="black" transform="rotate(0,472,224)"/>
                <polygon class="arrowhead" points="360,176 348,170.4 348,181.6" fill="black" transform="rotate(0,352,176)"/>
                <polygon class="arrowhead" points="232,144 220,138.4 220,149.6" fill="black" transform="rotate(0,224,144)"/>
                <polygon class="arrowhead" points="56,192 44,186.4 44,197.6" fill="black" transform="rotate(180,48,192)"/>
                <polygon class="arrowhead" points="56,144 44,138.4 44,149.6" fill="black" transform="rotate(180,48,144)"/>
                <polygon class="arrowhead" points="56,112 44,106.4 44,117.6" fill="black" transform="rotate(180,48,112)"/>
                <g class="text">
                  <text x="44" y="68">Client</text>
                  <text x="228" y="68">Attester</text>
                  <text x="356" y="68">Issuer</text>
                  <text x="476" y="68">Origin</text>
                  <text x="388" y="116">TokenChallenge</text>
                  <text x="136" y="148">Attestation</text>
                  <text x="204" y="180">TokenRequest</text>
                  <text x="200" y="196">TokenResponse</text>
                  <text x="256" y="228">Token</text>
                  <text x="472" y="244">|</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                   +------------------------------.
+--------+         |  +----------+     +--------+  |  +--------+
| Client |         |  | Attester |     | Issuer |  |  | Origin |
+---+----+         |  +-----+----+     +----+---+  |  +---+----+
    |               `-------|---------------|-----'       |
    |<---------------------------------- TokenChallenge --+
    |                       |               |             |
    |<==== Attestation ====>|               |             |
    |                       |               |             |
    +------------- TokenRequest ----------->|             |
    |<----------- TokenResponse ------------+             |
    |                                                     |
    +----------------------- Token ----------------------->
    |                                                     |
]]></artwork>
          </artset>
        </figure>
        <t>This model is useful if an Origin wants to offload attestation and issuance to
a trusted entity. In this model, the Attester and Issuer share an attestation
and issuance context for the Client, which is separate from the Origin's
redemption context.</t>
        <t>For certain types of issuance protocols, this model achieves
Origin-Client, Issuer-Client, and Attester-Origin
unlinkability. However, issuance protocols that require the Issuer to
learn information about the Origin, such as that which is described in
<xref target="RATE-LIMITED"/>, are not appropriate since
they could lead to Attester-Origin unlinkability violations through the Origin
name.</t>
      </section>
      <section anchor="deploy-joint-origin">
        <name>Joint Origin and Issuer</name>
        <t>In this model, the Origin and Issuer are operated by the same entity, separate
from the Attester, as shown in the figure below. The Issuer accepts token
requests that come from trusted Attesters. Since the Attester and Issuer are
separate entities, this model requires some mechanism by which Issuers
establish trust in the Attester (as described in <xref target="privacy-and-trust"/>).
For example, in settings where the Attester is a Client-trusted service that
directly communicates with the Issuer, one way to establish this trust is via
mutually-authenticated TLS. However, alternative authentication mechanisms are
possible. This arrangement is shown in <xref target="fig-deploy-joint-origin"/>.</t>
        <figure anchor="fig-deploy-joint-origin">
          <name>Joint Origin and Issuer Deployment Model</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="256" width="528" viewBox="0 0 528 256" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px">
                <path d="M 8,48 L 8,80" fill="none" stroke="black"/>
                <path d="M 40,80 L 40,240" fill="none" stroke="black"/>
                <path d="M 80,48 L 80,80" fill="none" stroke="black"/>
                <path d="M 168,48 L 168,80" fill="none" stroke="black"/>
                <path d="M 216,80 L 216,104" fill="none" stroke="black"/>
                <path d="M 216,120 L 216,160" fill="none" stroke="black"/>
                <path d="M 256,48 L 256,80" fill="none" stroke="black"/>
                <path d="M 280,40 L 280,80" fill="none" stroke="black"/>
                <path d="M 304,48 L 304,80" fill="none" stroke="black"/>
                <path d="M 344,80 L 344,96" fill="none" stroke="black"/>
                <path d="M 344,128 L 344,192" fill="none" stroke="black"/>
                <path d="M 376,48 L 376,80" fill="none" stroke="black"/>
                <path d="M 424,48 L 424,80" fill="none" stroke="black"/>
                <path d="M 456,80 L 456,208" fill="none" stroke="black"/>
                <path d="M 496,48 L 496,80" fill="none" stroke="black"/>
                <path d="M 520,48 L 520,80" fill="none" stroke="black"/>
                <path d="M 272,32 L 504,32" fill="none" stroke="black"/>
                <path d="M 8,48 L 80,48" fill="none" stroke="black"/>
                <path d="M 168,48 L 256,48" fill="none" stroke="black"/>
                <path d="M 304,48 L 376,48" fill="none" stroke="black"/>
                <path d="M 424,48 L 496,48" fill="none" stroke="black"/>
                <path d="M 8,80 L 80,80" fill="none" stroke="black"/>
                <path d="M 168,80 L 256,80" fill="none" stroke="black"/>
                <path d="M 304,80 L 376,80" fill="none" stroke="black"/>
                <path d="M 424,80 L 496,80" fill="none" stroke="black"/>
                <path d="M 296,96 L 336,96" fill="none" stroke="black"/>
                <path d="M 352,96 L 448,96" fill="none" stroke="black"/>
                <path d="M 464,96 L 504,96" fill="none" stroke="black"/>
                <path d="M 48,112 L 304,112" fill="none" stroke="black"/>
                <path d="M 440,112 L 456,112" fill="none" stroke="black"/>
                <path d="M 48,142 L 72,142" fill="none" stroke="black"/>
                <path d="M 48,146 L 72,146" fill="none" stroke="black"/>
                <path d="M 184,142 L 208,142" fill="none" stroke="black"/>
                <path d="M 184,146 L 208,146" fill="none" stroke="black"/>
                <path d="M 40,176 L 136,176" fill="none" stroke="black"/>
                <path d="M 256,176 L 336,176" fill="none" stroke="black"/>
                <path d="M 48,192 L 128,192" fill="none" stroke="black"/>
                <path d="M 256,192 L 344,192" fill="none" stroke="black"/>
                <path d="M 40,224 L 208,224" fill="none" stroke="black"/>
                <path d="M 272,224 L 456,224" fill="none" stroke="black"/>
                <path d="M 504,32 C 512.83064,32 520,39.16936 520,48" fill="none" stroke="black"/>
                <path d="M 296,96 C 287.16936,96 280,88.83064 280,80" fill="none" stroke="black"/>
                <path d="M 504,96 C 512.83064,96 520,88.83064 520,80" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="464,224 452,218.4 452,229.6" fill="black" transform="rotate(0,456,224)"/>
                <polygon class="arrowhead" points="344,176 332,170.4 332,181.6" fill="black" transform="rotate(0,336,176)"/>
                <polygon class="arrowhead" points="216,144 204,138.4 204,149.6" fill="black" transform="rotate(0,208,144)"/>
                <polygon class="arrowhead" points="56,192 44,186.4 44,197.6" fill="black" transform="rotate(180,48,192)"/>
                <polygon class="arrowhead" points="56,144 44,138.4 44,149.6" fill="black" transform="rotate(180,48,144)"/>
                <polygon class="arrowhead" points="56,112 44,106.4 44,117.6" fill="black" transform="rotate(180,48,112)"/>
                <g class="text">
                  <text x="44" y="68">Client</text>
                  <text x="212" y="68">Attester</text>
                  <text x="340" y="68">Issuer</text>
                  <text x="460" y="68">Origin</text>
                  <text x="372" y="116">TokenChallenge</text>
                  <text x="128" y="148">Attestation</text>
                  <text x="196" y="180">TokenRequest</text>
                  <text x="192" y="196">TokenResponse</text>
                  <text x="240" y="228">Token</text>
                  <text x="456" y="244">|</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
                                 +-----------------------------.
+--------+          +----------+  |  +--------+     +--------+  |
| Client |          | Attester |  |  | Issuer |     | Origin |  |
+---+----+          +-----+----+  |  +----+---+     +---+----+  |
    |                     |        `------|-------------|------'
    |<-------------------------------- TokenChallenge --+
    |                     |               |             |
    |<=== Attestation ===>|               |             |
    |                     |               |             |
    +------------ TokenRequest ---------->|             |
    |<---------- TokenResponse -----------+             |
    |                                                   |
    +--------------------- Token ----------------------->
    |                                                   |
]]></artwork>
          </artset>
        </figure>
        <t>This model is useful for Origins that require Client-identifying attestation,
e.g., through the use of application-layer account information, but do not
otherwise want to learn information about individual Clients beyond what is
observed during the token redemption, such as Client IP addresses.</t>
        <t>In this model, attestation contexts are separate from issuer and redemption
contexts. As a result, any type of attestation is suitable in this model.</t>
        <t>Moreover, any type of token challenge is suitable assuming there is more than
one Origin involved, since no single party will have access to the identifying
Client information and unique Origin information. Issuers that produce tokens
for a single Origin are not suitable in this model since an Attester can
infer the Origin from a token request, as described in <xref target="issue-flow"/>. However,
since the issuance protocol provides input secrecy, the Attester does not learn
details about the corresponding token challenge, such as whether the token
challenge is per-Origin or cross-Origin.</t>
      </section>
      <section anchor="deploy-split">
        <name>Split Origin, Attester, Issuer</name>
        <t>In this model, the Origin, Attester, and Issuer are all operated by different
entities, as shown in the figure below. As with the joint Origin and Issuer
model, the Issuer accepts token requests that come from trusted Attesters, and
the details of that trust establishment depend on the issuance protocol and
relationship between Attester and Issuer; see <xref target="privacy-and-trust"/>. This
arrangement is shown in <xref target="fig-overview"/>.</t>
        <t>This is the most general deployment model, and is necessary for some
types of issuance protocols where the Attester plays a role in token
issuance; see <xref target="RATE-LIMITED"/> for one such type of issuance protocol.</t>
        <t>In this model, the Attester, Issuer, and Origin have a separate view
of the Client: the Attester sees potentially sensitive Client identifying
information, such as account identifiers or IP addresses, the Issuer
sees only the information necessary for issuance, and the Origin sees
token challenges, corresponding tokens, and Client source information,
such as their IP address. As a result, attestation, issuance, and redemption
contexts are separate, and therefore any type of token challenge is suitable in
this model as long as there is more than a single Origin.</t>
        <t>As in the Joint Origin and Issuer model in <xref target="deploy-joint-origin"/>, and as
described in <xref target="issue-flow"/>, if the Issuer produces tokens for a single Origin,
then per-Origin tokens are not appropriate since the Attester can infer the
Origin from a token request.</t>
      </section>
    </section>
    <section anchor="centralization-considerations">
      <name>Centralization Considerations</name>
      <t>A consequence of limiting the number of participants (Attesters or Issuers) in
Privacy Pass deployments for meaningful privacy is that it forces concentrated
centralization amongst those participants.
<xref target="CENTRALIZATION"/> discusses
several ways in which this might be mitigated. For example, a multi-stakeholder
governance model could be established to determine what candidate participants
are fit to operate as participants in a Privacy Pass deployment. This is
precisely the system used to control the Web's trust model.</t>
      <t>Alternatively, Privacy Pass deployments might mitigate this problem through
implementation. For example, rather than centralize the role of attestation
in one or few entities, attestation could be a distributed function performed
by a quorum of many parties, provided that neither Issuers nor Origins learn
which Attester implementations were chosen. As a result, Clients could have
more opportunities to switch between attestation participants.</t>
    </section>
    <section anchor="privacy">
      <name>Privacy Considerations</name>
      <t>The previous section discusses the impact of deployment details on
Origin-Client, Issuer-Client, and Attester-Origin unlinkability.
The value these properties affords to end users depends on
the size of anonymity sets in which Clients or Origins are
unlinkable. For example, consider two different deployments, one wherein
there exists a redemption anonymity set of size two and another
wherein there redemption anonymity set of size 2<sup>32</sup>. Although
Origin-Client unlinkabiity guarantees that the Origin cannot link any two
requests to the same Client based on these contexts, respectively, the
probability of determining the "true" Client is higher the smaller these
sets become.</t>
      <t>In practice, there are a number of ways in which the size of anonymity sets
may be reduced or partitioned, though they all center around the concept of
consistency. In particular, by definition, all Clients in an anonymity set
share a consistent view of information needed to run the issuance and
redemption protocols. An example type of information needed to run these
protocols is the Issuer public key. When two Clients have inconsistent
information, these Clients effectively have different redemption contexts and
therefore belong in different anonymity sets.</t>
      <t>The following sections discuss issues that can influence anonymity set size.
For each issue, we discuss mitigations or safeguards to protect against the
underlying problem.</t>
      <section anchor="metadata-privacy">
        <name>Partitioning by Issuance Metadata</name>
        <t>Any metadata bits of information can be used to further segment the size
of the Client's anonymity set. Any Issuer that wanted to track a single
Client could add a single metadata bit to Client tokens. For the tracked
Client it would set the bit to <tt>1</tt>, and <tt>0</tt> otherwise. Adding additional
bits provides an exponential increase in tracking granularity similarly to
introducing more Issuers (though with more potential targeting).</t>
        <t>For this reason, the amount of metadata used by an Issuer in creating
redemption tokens must be taken into account -- together with the bits
of information that Issuers may learn about Clients otherwise. Since this
metadata may be useful for practical deployments of Privacy Pass, Issuers
must balance this against the reduction in Client privacy.</t>
        <t>In general, limiting the amount of metadata permitted helps limit the extent
to which metadata can uniquely identify individual Clients. Clients SHOULD
bound the number of possible metadata values in practice. Most token types do
not admit any metadata, so this bound is implicitly enforced. Moreover,
Privacy Pass deployments SHOULD NOT use metadata unless its value has been
assessed and weighed against the corresponding reduction in Client privacy.</t>
      </section>
      <section anchor="rotation-and-consistency">
        <name>Partitioning by Issuance Consistency</name>
        <t>Anonymity sets can be partitioned by information used for the issuance
protocol, including: metadata, Issuer configuration (keys), and Issuer
selection.</t>
        <t>Any issuance metadata bits of information can be used to partition the Client
anonymity set. For example, any Issuer that wanted to track a single Client
could add a single metadata bit to Client tokens. For the tracked Client it
would set the bit to <tt>1</tt>, and <tt>0</tt> otherwise. Adding additional bits provides an
exponential increase in tracking granularity similarly to introducing more
Issuers (though with more potential targeting).</t>
        <t>The number of active Issuer configurations also contributes to anonymity set
partitioning. In particular, when an Issuer updates their configuration and
the corresponding key pair, any Client that invokes the issuance protocol with
this configuration becomes be part of a set of Clients which also ran the
issuance protocol using the same configuration. Issuer configuration updates,
e.g., due to key rotation, are an important part of hedging against long-term
private key compromise. In general, key rotations represent a trade-off between
Client privacy and Issuer security. Therefore, it is important that key
rotations occur on a regular cycle to reduce the harm of an Issuer key
compromise.</t>
        <t>Lastly, if Clients are willing to issue and redeem tokens from a large number
of Issuers for a specific Origin, and that Origin accepts tokens from all
Issuers, segregation can occur. In particular, if a Client obtains tokens from
many Issuers and an Origin later challenges that Client for a token from each
Issuer, the Origin can learn information about the Client. Each per-Issuer
token that a Client holds essentially corresponds to a bit of information about
the Client that Origin learns. Therefore, there is an exponential loss in
privacy relative to the number of Issuers.</t>
        <t>The fundamental problem here is that the number of possible issuance
configurations, including the keys in use and the Issuer identities themselves,
can partition the Client anonymity set. To mitigate this problem, Clients
SHOULD bound the number of active issuance configurations per Origin as well as
across Origins. Moreover, Clients SHOULD employ some form of consistency
mechanism to ensure that they receive the same configuration information and
are not being actively partitioned into smaller anonymity sets. See
<xref target="CONSISTENCY"/> for possible consistency
mechanisms. Depending on the deployment, the Attester might assist the Client
in applying these consistency checks across clients. Failure to apply a
consistency check can allow Client-specific keys to violate Origin-Client
unlinkability.</t>
      </section>
      <section anchor="partitioning-by-side-channels">
        <name>Partitioning by Side-Channels</name>
        <t>Side-channel attacks, such as those based on timing correlation, could be
used to reduce anonymity set size. In particular,
for interactive tokens that are bound to a Client-specific redemption
context, the anonymity set of Clients during the issuance protocol consists
of those Clients that started issuance between the time of the Origin's
challenge and the corresponding token redemption. Depending on the number
of Clients using a particular Issuer during that time window, the set can
be small. Appliations should take such side channels into consideration before
choosing a particular deployment model and type of token challenge and
redemption context.</t>
      </section>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>This document describes security and privacy requirements for the Privacy Pass
redemption and issuance protocols. It also describes deployment models and
privacy considerations for using Privacy Pass within those models. Ensuring
Client privacy -- separation of attestation and redemption contexts -- requires
active work on behalf of the Client, especially in the presence of malicious
Issuers and Origins. Implementing mitigations discused in <xref target="deployment"/>
and <xref target="privacy"/> is therefore necessary to ensure that Privacy Pass offers
meaningful privacy improvements to end-users.</t>
      <section anchor="hoarding">
        <name>Token Caching</name>
        <t>Depending on the Origin's token challenge, Clients can request and cache more
than one token using an issuance protocol. Cached tokens help improve privacy by
separating the time of token issuance from the time of token redemption, and
also allow Clients to reduce the overhead of receiving new tokens via the
issuance protocol.</t>
        <t>As a consequence, Origins that send token challenges which are compatible with
cached tokens need to take precautions to ensure that tokens are not replayed.
This is typically done via keeping track of tokens that are redeemed for the
period of time in which cached tokens would be accepted for particular
challenges.</t>
        <t>Moreover, since tokens are not intrinsically bound to Clients, it is possible
for malicious Clients to collude and share tokens in a so-called "hoarding
attack." As an example of this attack, many distributed Clients could obtain
cacheable tokens and them share them with a single Client to redeem in a way
that would violate an Origin's attempt to limit tokens to any one particular
Client. Depending on the deployment model, it can be possible to detect these
types of attacks by comparing issuance and redemption contexts; for example,
this is possible in the Joint Origin and Issuer model.</t>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="PrivacyPassExtension" target="https://github.com/privacypass/challenge-bypass-extension">
          <front>
            <title>Privacy Pass Browser Extension</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="PrivacyPassCloudflare" target="https://blog.cloudflare.com/cloudflare-supports-privacy-pass/">
          <front>
            <title>Cloudflare Supports Privacy Pass</title>
            <author initials="N." surname="Sullivan">
              <organization>Cloudflare</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="DMS2004" target="https://svn.torproject.org/svn/projects/design-paper/tor-design.html">
          <front>
            <title>Tor: The Second-Generation Onion Router</title>
            <author initials="R." surname="Dingledine">
              <organization/>
            </author>
            <author initials="N." surname="Mathewson">
              <organization/>
            </author>
            <author initials="P." surname="Syverson">
              <organization/>
            </author>
            <date year="2004" month="August"/>
          </front>
        </reference>
        <reference anchor="HIJK21" target="https://research.fb.com/privatestats">
          <front>
            <title>PrivateStats: De-Identified Authenticated Logging at Scale</title>
            <author initials="S." surname="Huang">
              <organization/>
            </author>
            <author initials="S." surname="Iyengar">
              <organization/>
            </author>
            <author initials="S." surname="Jeyaraman">
              <organization/>
            </author>
            <author initials="S." surname="Kushwah">
              <organization/>
            </author>
            <author initials="C. K." surname="Lee">
              <organization/>
            </author>
            <author initials="Z." surname="Luo">
              <organization/>
            </author>
            <author initials="P." surname="Mohassel">
              <organization/>
            </author>
            <author initials="A." surname="Raghunathan">
              <organization/>
            </author>
            <author initials="S." surname="Shaikh">
              <organization/>
            </author>
            <author initials="Y. C." surname="Sung">
              <organization/>
            </author>
            <author initials="A." surname="Zhang">
              <organization/>
            </author>
            <date year="2021" month="January"/>
          </front>
        </reference>
        <reference anchor="AUTHSCHEME">
          <front>
            <title>The Privacy Pass HTTP Authentication Scheme</title>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Steven Valdez" initials="S." surname="Valdez">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="30" month="January" year="2023"/>
            <abstract>
              <t>   This document defines an HTTP authentication scheme that can be used
   by clients to redeem Privacy Pass tokens with an origin.  It can also
   be used by origins to challenge clients to present an acceptable
   Privacy Pass token.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-auth-scheme-08"/>
        </reference>
        <reference anchor="ISSUANCE">
          <front>
            <title>Privacy Pass Issuance Protocol</title>
            <author fullname="Sofia Celi" initials="S." surname="Celi">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Alex Davidson" initials="A." surname="Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Armando Faz-Hernandez" initials="A." surname="Faz-Hernandez">
              <organization>Cloudflare</organization>
            </author>
            <author fullname="Steven Valdez" initials="S." surname="Valdez">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="30" month="January" year="2023"/>
            <abstract>
              <t>   This document specifies two variants of the two-message issuance
   protocol for Privacy Pass tokens: one that produces tokens that are
   privately verifiable using the issuance private key, and another that
   produces tokens that are publicly verifiable using the issuance
   public key.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-protocol-08"/>
        </reference>
        <reference anchor="RFC9334">
          <front>
            <title>Remote ATtestation procedureS (RATS) Architecture</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz">
              <organization/>
            </author>
            <author fullname="D. Thaler" initials="D." surname="Thaler">
              <organization/>
            </author>
            <author fullname="M. Richardson" initials="M." surname="Richardson">
              <organization/>
            </author>
            <author fullname="N. Smith" initials="N." surname="Smith">
              <organization/>
            </author>
            <author fullname="W. Pan" initials="W." surname="Pan">
              <organization/>
            </author>
            <date month="January" year="2023"/>
            <abstract>
              <t>In network protocol exchanges, it is often useful for one end of a communication to know whether the other end is in an intended operating state. This document provides an architectural overview of the entities involved that make such tests possible through the process of generating, conveying, and evaluating evidentiary Claims.  It provides a model that is neutral toward processor architectures, the content of Claims, and protocols.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9334"/>
          <seriesInfo name="DOI" value="10.17487/RFC9334"/>
        </reference>
        <reference anchor="KLOR20" target="http://dx.doi.org/10.1007/978-3-030-56784-2_11">
          <front>
            <title>Anonymous Tokens with Private Metadata Bit</title>
            <author fullname="Ben Kreuter" surname="Kreuter"/>
            <author fullname="Tancrède Lepoint" surname="Lepoint"/>
            <author fullname="Michele Orrù" surname="Orrù"/>
            <author fullname="Mariana Raykova" surname="Raykova"/>
            <author>
              <organization>Springer International Publishing</organization>
            </author>
            <date year="2020"/>
          </front>
          <refcontent>Advances in Cryptology – CRYPTO 2020, pp. 308-336</refcontent>
          <seriesInfo name="DOI" value="10.1007/978-3-030-56784-2_11"/>
        </reference>
        <reference anchor="RATE-LIMITED">
          <front>
            <title>Rate-Limited Token Issuance Protocol</title>
            <author fullname="Scott Hendrickson" initials="S." surname="Hendrickson">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Jana Iyengar" initials="J." surname="Iyengar">
              <organization>Fastly</organization>
            </author>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Steven Valdez" initials="S." surname="Valdez">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="6" month="July" year="2022"/>
            <abstract>
              <t>   This document specifies a variant of the Privacy Pass issuance
   protocol that allows for tokens to be rate-limited on a per-origin
   basis.  This enables origins to use tokens for use cases that need to
   restrict access from anonymous clients.

Discussion Venues

   This note is to be removed before publishing as an RFC.

   Source for this draft and an issue tracker can be found at
   https://github.com/tfpauly/privacy-proxy.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-privacypass-rate-limit-tokens-03"/>
        </reference>
        <reference anchor="CENTRALIZATION">
          <front>
            <title>Internet Centralization: What Can Standards Do?</title>
            <author fullname="Mark Nottingham" initials="M." surname="Nottingham">
         </author>
            <date day="17" month="February" year="2023"/>
            <abstract>
              <t>   Despite the Internet being designed and operated as a decentralized
   network-of-networks, forces often (and increasingly) encourage
   consolidation of power over its functions into few hands.

   This document discusses centralization in Internet protocols and
   relates it to consolidation of power, explains why both are
   undesirable, identifies forces that contribute to them, catalogues
   limitations of common approaches to decentralization, and explores
   what Internet standards efforts can do.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-nottingham-avoiding-internet-centralization-09"/>
        </reference>
        <reference anchor="CONSISTENCY">
          <front>
            <title>Key Consistency and Discovery</title>
            <author fullname="Alex Davidson" initials="A." surname="Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Matthew Finkel" initials="M." surname="Finkel">
              <organization>The Tor Project</organization>
            </author>
            <author fullname="Martin Thomson" initials="M." surname="Thomson">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="24" month="October" year="2022"/>
            <abstract>
              <t>   This document describes the key consistency and correctness
   requirements of protocols such as Privacy Pass, Oblivious DoH, and
   Oblivious HTTP for user privacy.  It discusses several mechanisms and
   proposals for enabling user privacy in varying threat models.  In
   concludes with discussion of open problems in this area.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-key-consistency-00"/>
        </reference>
      </references>
    </references>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>The authors would like to thank Eric Kinnear, Scott Hendrickson, Tommy Pauly,
Christopher Patton, Benjamin Schwartz, Martin Thomson, Steven Valdez and other
contributors of the Privacy Pass Working Group for many helpful contributions
to this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+1965bbxpXu/3oKnNYPS8skbcmZXJTISaclx4p1O+r2ZCWz
Zk1AEmzCAgEGALvNSJ1nmWc5T3b2tWoXUGR3x5N/o5nlSCRRqNq1a+9vX2s6
nbq+7KviaXZysS6yd215lS/22bu867LTdrEu+2LR79rixOXzeVtcPT38E7ds
FnW+gaGWbb7qp2XRr6Zb/vUWfjzNzY+njx+7Zd4XT90C/nvZtPunWVmvGufK
bfs069td1z/58stfffnEfSj21027fJq9rPuirYt++hzHd67r83r5X3nV1PDO
fdG5bfk0+4++WUyyrmn7tlh18Lf9Bv/yn87lu37dtE9dNnUZ/Cnr7ml2Osue
51flsmtq+pDnf1oVP8afN+3l0+zVy3f0j0XZw2xfld1cvl00u7rHFbyD1+4u
84o+LTZ5WT3NchhstpTBfvXkd5f48WzRbKKJ/HGWvdwX9WXemnn8Ma/z6GOa
xjd511d7+4of2vJ3K/p0NO7ZDNf4p6ZZmnHP1m3Z9c12XbTRtzT8WdXslqsq
hw3FzzqgY9E/zR5/+Ti7aK7rrqiX2XlvCHGe19k3bV4vym7RxPT4vob9xp/D
HndZs8pON0VbLnI7+UV+/bt1kW/L+nJe9t0MNti5umk3eV9eAX84ZAv/r0z5
D9nvxY99UXdlUz+lAYWRIwb9fdtcd7BM/1P+Zd5e4qLWfb/tnn7xxWXZr3dz
JN4XhmG/WKzzqgLqF9M5c3BhRjHzCCSLJhI+zs532y3wRhdNLjmVedVczhb+
SZpT+Oe0k4H0YE1pojSS5+/M7/6bGby5quCXtXw83uLnr8/hoP0smvnJBQyU
oUA4LxZNvZz+oaiLFragqbO3Nf73fbODw3hCD9E5znCQ6Ze/jBZ1oqvqrupZ
37TbtvkBzv8MZoEffSH/7r5YFl15WcNitkX7Bfxwyh/M1v2mOkmsbsrrew/H
F/imKpZlXcRfwdJf5/26uNYj7L95B0TZXxUtf/Htyz9+9+RxvHrapL5AtoXf
Py+mL5dF3ZerEnj5FOaB/0CxtcxeNZeXMIEs77PzBZz0k+SetkVXoPCbrQyP
wYnA8Q0F4bgDFZ88Tq1X/lf29XyWfbvL68uD31qhkfr+j8U+b/ONZ4vxL77b
devrfJ3+HqTKd7PsVVGkv/4LfLdr0t8B9V83a2Daokr/AATS+/xyvath947M
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

-->

</rfc>
