<?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.29 (Ruby 3.1.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-privacypass-architecture-12" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.1 -->
  <front>
    <title abbrev="Privacy Pass Architecture">The Privacy Pass Architecture</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-architecture-12"/>
    <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="May" day="02"/>
    <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 Models</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="deployment-considerations">
      <name>Deployment Considerations</name>
      <t><xref target="deployment"/> discusses deployment models that are possible in practice.
Beyond possible implications on security and privacy properties of the
resulting system, Privacy Pass deployments can impact the overall ecosystem
in two important ways: (1) discriminatory treatment of Clients and the viability
of an open Web, and (2) centralization. This section describes considerations
relevant to these topics.</t>
      <section anchor="discriminatory-treatment">
        <name>Discriminatory Treatment</name>
        <t>Origins can use tokens as a signal for distinguishing between Clients
that are capable of completing attestation with one Attester trusted by the
Origin's chosen Issuer, and Clients that are not capable of doing the same. A
consequence of this is that Privacy Pass could enable discriminatory treatment
of Clients based on Attestation support. This could lead to harmful ecosystem
effects if left unresolved.</t>
        <t>In principle, Issuers should strive to work with a set of Attesters that are
suitable for all Clients, thereby mitigating such discriminatory behavior.
In practice, this may require tradeoffs in what type of attestation Issuers are
willing to trust so as to enable more widespread support.</t>
        <t>For example, to disallow discriminatory behavior between Clients with and
without device attestation support, an Issuer may wish to support Attesters
that support CAPTCHA-based attestation. This means that the overall attestation
value of a Privacy Pass token is bound by the difficulty in spoofing or
bypassing either one of these attestation procedures.</t>
      </section>
      <section anchor="centralization">
        <name>Centralization</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>
    <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>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </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="6" month="March" 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-09"/>
        </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="6" month="March" 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-10"/>
        </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">
          <front>
            <title>Anonymous Tokens with Private Metadata Bit</title>
            <author fullname="Ben Kreuter" initials="B." surname="Kreuter">
              <organization/>
            </author>
            <author fullname="Tancrède Lepoint" initials="T." surname="Lepoint">
              <organization/>
            </author>
            <author fullname="Michele Orrù" initials="M." surname="Orrù">
              <organization/>
            </author>
            <author fullname="Mariana Raykova" initials="M." surname="Raykova">
              <organization/>
            </author>
            <date year="2020"/>
          </front>
          <seriesInfo name="Advances in Cryptology - CRYPTO 2020" value="pp. 308-336"/>
          <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+1965Ybx3Xu/3qKPuQPkUsAJFJObDOmnPGQsmjzdjijeCVZ
WXEDaAxaBLqR7saMYJJ5ljzLebKzr1W7qguYoZT8C5MlkwC6umrXrn399q7p
dOqGethUT4p7l+uqeNvV1+XiULwt+7446xbreqgWw76r7rlyPu+q6yfHf+KW
7aIptzDUsitXw7SuhtV0x7/ewY+npfnx9NFjtyyH6olbwH+v2u7wpKibVetc
veueFEO374fHX3/9268fu/fV4abtlk+KF81QdU01TJ/h+M71Q9ks/73ctA28
81D1blc/Kf51aBeTom+7oatWPfztsMW//Jtz5X5Yt90TV0xdAX/qpn9SnM2K
Z+V1vezbhj7k+Z9tqp/iz9vu6knx8sVb+seiHmC2L+t+Lt8u2n0z4Arewmv3
V+WGPq22Zb15UpQw2Gwpg/328T9e4cezRbuNJvKnWfHiUDVXZWfm8aeyKaOP
aRrflf2wOdhX/NjV/7iiT0fjns9wjX9p26UZ93zd1f3Q7tZVF31Lw59v2v1y
tSlhQ/GzHuhYDU+KR18/Ki7bm6avmmVxMRhCXJRN8V1XNou6X7QxPX5oYL/x
57DHfdGuirNt1dWL0k5+Ud7847oqd3VzNa+HfgYb7FzTdttyqK+BPxyyhf9X
ofyH7Pf8p6Fq+rptntCAwsgRg/6ha296WKb/Kf+y7K5wUeth2PVPvvrqqh7W
+zkS7yvDsF8t1uVmA9SvpnPm4MqMYuYRSBZNJHxcXOx3O+CNPppcdirzTXs1
W/gnaU7hn9NeBtKDNaWJ0kievwu/+69n8ObNBn7ZyMfjLX726gIO2q+imd+7
hIEKFAgX1aJtltM/Vk3VwRa0TfGmwf++a/dwGO/RQ3SOCxxk+vVvokXd01X1
181saLtd1/4I538Gs8CPvpJ/918tq76+amAxu6r7Cn445Q9m62G7uZdZ3ZTX
9w6OL/DNplrWTRV/BUt/VQ7r6kaPsP/mLRDlcF11/MX3L/7058eP4tXTJg0V
si38/lk1fbGsmqFe1cDLZzAP/AeKrWXxsr26ggkU5VBcLOCk38vuaVf1FQq/
2crwGJwIHN9QEI47UPHxo9x65X9lXy9mxff7srk6+q0VGrnv/1Qdyq7cerYY
/+LP+359U67z34NU+fOseFlV+a//Bb7bt/nvgPqv2jUwbbXJ/wAE0rvyar1v
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

-->

</rfc>
