<?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.15 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-privacypass-auth-scheme-05" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.13.1 -->
  <front>
    <title abbrev="Privacy Pass Authentication">The Privacy Pass HTTP Authentication Scheme</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-auth-scheme-05"/>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <author initials="S." surname="Valdez" fullname="Steven Valdez">
      <organization>Google LLC</organization>
      <address>
        <email>svaldez@chromium.org</email>
      </address>
    </author>
    <author initials="C. A." surname="Wood" fullname="Christopher A. Wood">
      <organization>Cloudflare</organization>
      <address>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2022" month="August" day="05"/>
    <keyword>Internet-Draft</keyword>
    <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>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Privacy Pass tokens are unlinkable authenticators that can be used to
anonymously authorize a client (see <xref target="ARCHITECTURE"/>). A
client possessing such a token is able to prove that it was able to get a token
issued by a token issuer -- based on some check from a token issuer, such as
authentication or solving a CAPTCHA -- without allowing the relying party
redeeming the client's token (the origin) to link it with issuance flow.</t>
      <t>Different types of authenticators, using different token issuance protocols, can
be used as Privacy Pass tokens.</t>
      <t>This document defines a common HTTP authentication scheme (<xref target="RFC7235"/>),
PrivateToken, that allows clients to redeem various kinds of Privacy Pass
tokens.</t>
      <t>Clients and relying parties interact using this scheme to perform the token challenge
and token redemption flow. Clients use a token issuance protocol to actually fetch
tokens to redeem.</t>
      <figure anchor="fig-overview">
        <name>Token Architectural Components</name>
        <artwork><![CDATA[
 Client                             Relying Party (Origin)

    <------------------------------ Challenge \
                                              |
+----------------------------------\          |
|                                  |          |
|  Issuance Protocol               |          |
|                                  |          |
+----------------------------------/          |
                                              |
     Redemption -------------------------- >  /
]]></artwork>
      </figure>
      <t>In addition to working with different token issuance protocols, this scheme
supports optionally associating tokens with origin-chosen contexts and
specific origin names. Relying parties that request and redeem tokens can choose
a specific kind of token, as appropriate for its use case. These options allow
for different deployment models to prevent double-spending, and allow for both
interactive (online challenges) and non-interactive (pre-fetched) tokens.</t>
      <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>
        <!-- TODO: Remove duplicates that occur in Architecture doc -->

<t>Unless otherwise specified, this document encodes protocol messages in TLS
notation from <xref target="TLS13"/>, Section 3.</t>
        <t>This document uses the terms "Client", "Origin", "Issuer", "Issuance Protocol",
and "Token" as defined in <xref target="ARCHITECTURE"/>. It additionally
uses the following terms in more specific ways:</t>
        <ul spacing="normal">
          <li>Issuer key: Keying material that can be used with an issuance protocol
to create a signed token.</li>
          <li>Token challenge: A requirement for tokens sent from an origin to a client, using
the "WWW-Authenticate" HTTP header. This challenge is bound to a specific token
issuer and issuance protocol, and may be additionally bound to a specific context or origin name.</li>
          <li>Token redemption: An action by which a client presents a token to an origin,
using the "Authorization" HTTP header.</li>
        </ul>
      </section>
    </section>
    <section anchor="challenge-redemption">
      <name>HTTP Authentication Scheme</name>
      <t>Token redemption is performed using HTTP Authentication (<xref target="RFC7235"/>), with
the scheme "PrivateToken". Origins challenge clients to present a token
from a specific issuer (<xref target="challenge"/>). Once a client has received a token
from that issuer, or already has a valid token available, it presents the
token to the origin (<xref target="redemption"/>).</t>
      <section anchor="challenge">
        <name>Token Challenge</name>
        <t>Origins send a token challenge to clients in an "WWW-Authenticate" header with
the "PrivateToken" scheme. This challenge includes a TokenChallenge message,
along with information about what keys to use when requesting a token from
the issuer.</t>
        <t>Origins that support this authentication scheme need to handle the following
tasks:</t>
        <ol spacing="normal" type="1"><li>Select which issuer to use, and configure the issuer name and token-key to
include in WWW-Authenticate challenges.</li>
          <li>Determine a redemption context construction to include in the TokenChallenge, as
discussed in <xref target="context-construction"/>.</li>
          <li>Select the origin information to include in the TokenChallenge. This can
be empty to allow fully cross-origin tokens, a single origin name that
matches the origin itself, or a list of origin names containing the origin.</li>
        </ol>
        <t>The TokenChallenge message has the following structure:</t>
        <artwork><![CDATA[
struct {
    uint16_t token_type;
    opaque issuer_name<1..2^16-1>;
    opaque redemption_context<0..32>;
    opaque origin_info<0..2^16-1>;
} TokenChallenge;
]]></artwork>
        <t>The structure fields are defined as follows:</t>
        <ul spacing="normal">
          <li>"token_type" is a 2-octet integer, in network byte order. This type indicates
the issuance protocol used to generate the token. Values are registered
in an IANA registry, <xref target="token-types"/>. Challenges with unsupported token_type
values MUST be ignored.</li>
          <li>"issuer_name" is a string containing the name of the issuer. This is a
hostname that is used to identify the issuer that is allowed to issue
tokens that can be redeemed by this origin. The string is prefixed with a
2-octet integer indicating the length, in network byte order.</li>
          <li>"redemption_context" is an optional field. If present, it allows the origin
to require that clients fetch tokens bound to a specific context, as opposed
to reusing tokens that were fetched for other contexts. See <xref target="context-construction"/>
for example contexts that might be useful in practice. When present, this value
is a 32-byte context generated by the origin. Valid lengths for this field are
either 0 or 32 bytes. The field is prefixed with a single octet indicating the
length. Challenges with redemption_context values of invalid lengths MUST be
ignored.</li>
          <li>"origin_info" is an optional string containing one or more origin names, which
allows a token to be scoped to a specific set of origins. The string is prefixed
with a 2-octet integer indicating the length, in network byte order. If empty, any
non-origin-specific token can be redeemed. If the string contains multiple
origin names, they are delimited with commas "," without any whitespace.</li>
        </ul>
        <t>When used in an authentication challenge, the "PrivateToken" scheme uses the
following attributes:</t>
        <ul spacing="normal">
          <li>"challenge", which contains a base64url-encoded <xref target="RFC4648"/> TokenChallenge
value. Since the length of the challenge is not fixed, the base64url data MUST
include padding. This MUST be unique for every 401 HTTP response to prevent
replay attacks. This attribute is required for all challenges.</li>
          <li>"token-key", which contains a base64url encoding of the public key for
use with the issuance protocol indicated by the challenge. Since the length of
the key is not fixed, the base64url data MUST include padding. This attribute MAY
be omitted in deployments where clients are able to retrieve the issuer key using
an out-of-band mechanism.</li>
          <li>"max-age", an optional attribute that consists of the number of seconds for which
the challenge will be accepted by the origin.</li>
        </ul>
        <t>Clients can ignore the challenge if the token-key is invalid or otherwise untrusted.</t>
        <t>The header MAY also include the standard "realm" attribute, if desired. Issuance protocols
MAY require other attributes.</t>
        <t>As an example, the WWW-Authenticate header could look like this:</t>
        <artwork><![CDATA[
WWW-Authenticate: PrivateToken challenge=abc..., token-key=123...
]]></artwork>
        <t>Upon receipt of this challenge, a client uses the message and keys in the
issuance protocol indicated by the token_type. If the TokenChallenge has a
token_type the client does not recognize or support, it MUST NOT parse or
respond to the challenge. If the TokenChallenge contains a non-empty
origin_info field, the client MUST validate that the name of the origin
that issued the authentication challenge is included in the list of origin
names. Clients MAY have further restrictions and requirements around
validating when a challenge is considered acceptable or valid. For example,
clients can choose to reject challenges that list origin names for which
current connection is not authoritative (according to the TLS certificate).</t>
        <t>Caching and pre-fetching of tokens is discussed in <xref target="caching"/>.</t>
        <t>Note that it is possible for the WWW-Authenticate header to include multiple
challenges. This allows the origin to indicate support for different token
types, issuers, or to include multiple redemption contexts. For example,
the WWW-Authenticate header could look like this:</t>
        <artwork><![CDATA[
WWW-Authenticate: PrivateToken challenge=abc..., token-key=123...,
PrivateToken challenge=def..., token-key=234...
]]></artwork>
        <t>Origins should only include challenges for different types of issuance protocols with
functionally equivalent properties. For instance, both issuance protocols in <xref target="ISSUANCE"/>
have the same functional properties, albeit with different mechanisms for verifying the
resulting tokens during redemption. Since clients are free to choose which challenge they want
to consume when presented with options, mixing multiple challenges with different functional
properties for one use case is nonsensical.</t>
        <section anchor="context-construction">
          <name>Redemption Context Construction</name>
          <t>The TokenChallenge redemption context allows the origin to determine the context
in which a given token can be redeemed. This value can be a unique per-request
nonce, constructed from 32 freshly generated random bytes. It can also represent
state or properties of the client session. Some example properties and methods
for constructing the corresponding context are below. This list is not exhaustive.</t>
          <ul spacing="normal">
            <li>Context bound to a given time window: Construct redemption context as
SHA256(current time window).</li>
            <li>Context bound to a client location: Construct redemption context as
SHA256(client IP address prefix).</li>
            <li>Context bound to a given time window and location: Construct redemption
context as SHA256(current time window, client IP address prefix).</li>
          </ul>
          <t>An empty redemption context is not bound to any property of the client session.
Preventing double spending on tokens requires the origin to keep state associated
with the redemption context. The size of this state varies based on the size of the
redemption context. For example, double spend state for unique, per-request redemption
contexts does only needs to exist within the scope of the request connection or session.
In contrast, double spend state for empty redemption contexts must be stored and shared
across all requests until token-key expiration or rotation.</t>
          <t>Origins that share redemption contexts, i.e., by using the same redemption context,
choosing the same issuer, and providing the same origin_info field in the TokenChallenge,
must necessarily share state required to enforce double spend prevention. Origins
should consider the operational complexity of this shared state before choosing
to share redemption contexts. Failure to successfully synchronize this state and use
it for double spend prevention can allow Clients to redeem tokens to one Origin that
were issued after an interaction with another Origin that shares the context.</t>
        </section>
        <section anchor="caching">
          <name>Token Caching</name>
          <t>Clients can generate multiple tokens from a single TokenChallenge, and cache
them for future use. This improves privacy by separating the time of token
issuance from the time of token redemption, and also allows clients to avoid
any overhead of receiving new tokens via the issuance protocol.</t>
          <t>Cached tokens can only be redeemed when they match all of the fields in the
TokenChallenge: token_type, issuer_name, redemption_context, and origin_info.
Clients ought to store cached tokens based on all of these fields, to
avoid trying to redeem a token that does not match. Note that each token
has a unique client nonce, which is sent in token redemption (<xref target="redemption"/>).</t>
          <t>If a client fetches a batch of multiple tokens for future use that are bound
to a specific redemption context (the redemption_context in the TokenChallenge
was not empty), clients SHOULD discard these tokens upon flushing state such as
HTTP cookies <xref target="COOKIES"/>, or changing networks.
Using these tokens in a context that otherwise would not be linkable to the
original context could allow the origin to recognize a client.</t>
        </section>
      </section>
      <section anchor="redemption">
        <name>Token Redemption</name>
        <t>The output of the issuance protocol is a token that corresponds to the origin's
challenge (see <xref target="challenge"/>). A token is a structure that begins with a two-octet
field that indicates a token type, which MUST match the token_type in the TokenChallenge
structure.</t>
        <artwork><![CDATA[
struct {
    uint16_t token_type;
    uint8_t nonce[32];
    uint8_t challenge_digest[32];
    uint8_t token_key_id[Nid];
    uint8_t authenticator[Nk];
} Token;
]]></artwork>
        <t>The structure fields are defined as follows:</t>
        <ul spacing="normal">
          <li>"token_type" is a 2-octet integer, in network byte order. This value must
match the value in the challenge (<xref target="challenge"/>).</li>
          <li>"nonce" is a 32-octet message containing a client-generated random
nonce.</li>
          <li>"challenge_digest" is a 32-octet message containing the hash of the
original TokenChallenge, SHA256(TokenChallenge).</li>
          <li>"token_key_id" is an Nid-octet identifier for the the token authentication
key. The value of this field is defined by the token_type and corresponding
issuance protocol.</li>
          <li>"authenticator" is a Nk-octet authenticator that covers the preceding fields in
the token. The value of this field is defined by the token_type and corresponding
issuance protocol.</li>
        </ul>
        <t>The authenticator value in the Token structure is computed over the token_type,
nonce, context, and token_key_id fields.</t>
        <t>When used for client authorization, the "PrivateToken" authentication
scheme defines one parameter, "token", which contains the base64url-encoded
Token struct. Since the length of the Token struct is not fixed, the base64url
data MUST include padding. All unknown or unsupported parameters to "PrivateToken"
authentication credentials MUST be ignored.</t>
        <t>Clients present this Token structure to origins in a new HTTP request using
the Authorization header as follows:</t>
        <artwork><![CDATA[
Authorization: PrivateToken token=abc...
]]></artwork>
        <t>For token types that support public verifiability, origins verify the token
authenticator using the public key of the issuer, and validate that the signed
message matches the concatenation of the client nonce and the hash of a
valid TokenChallenge. For context-bound tokens, origins store or reconstruct the
contexts of previous TokenChallenge structures in order to validate the token.
A TokenChallenge MAY be bound to a specific HTTP session with client, but
origins can also accept tokens for valid challenges in new sessions.
Origins SHOULD implement some form of double-spend prevention that prevents
a token with the same nonce from being redeemed twice. This prevents clients
from "replaying" tokens for previous challenges. For context-bound tokens,
this double-spend prevention can require no state or minimal state, since
the context can be used to verify token uniqueness.</t>
        <t>If a client is unable to fetch a token, it MUST react to the challenge as
if it could not produce a valid Authorization response.</t>
      </section>
    </section>
    <section anchor="user-interaction">
      <name>User Interaction</name>
      <t>When used in contexts like websites, origins that challenge clients for
tokens need to consider how to optimize their interaction model to ensure a
good user experience.</t>
      <t>Tokens challenges can be performed without explicit user involvement, depending
on the issuance protocol. If tokens are scoped to a specific origin,
there is no need for per-challenge user interaction. Note that the issuance
protocol may separately involve user interaction if the client needs to be newly
validated.</t>
      <t>If a client cannot use cached tokens to respond to a challenge (either because
it has run out of cached tokens or the associated context is unique), the token
issuance process can add user-perceivable latency. Origins need not block useful
work on token authentication. Instead, token authentication can be used in similar
ways to CAPTCHA validation today, but without the need for user interaction. If issuance
is taking a long time, a website could show an indicator that it is waiting,
or fall back to another method of user validation.</t>
      <t>An origin MUST NOT use more than one redemption context value for a given token type
and issuer per client request. If an origin issues a large number of challenges with
unique contexts, such as more than once for each request, this can indicate that the
origin is either not functioning correctly or is trying to attack or overload the client
or issuance server. In such cases, a client MUST ignore redundant token challenges for
the same request and SHOULD alert the user if possible.</t>
      <t>Origins MAY include multiple challenges, where each challenge refers to a different issuer
or a different token type, to allow clients to choose a preferred issuer or type.</t>
      <t>An origin MUST NOT assume that token challenges will always yield a valid token.
Clients might experience issues running the issuance protocol, e.g., because the attester
or issuer is unavailable, or clients might simply not support the requested token type.
Origins SHOULD account for such operational or interoperability failures by offering
clients an alternative type of challenge such as CAPTCHA for accessing a resource.</t>
      <t>To mitigate the risk of deployments becoming dependent on tokens, clients and servers SHOULD grease
their behavior unless explicitly configured not to. In particular, clients SHOULD
ignore token challenges with some non-zero probability. Likewise, origins SHOULD
randomly choose to not challenge clients for tokens with some non-zero probability.
Moreover, origins SHOULD include random token types in token challenges with some
non-zero probability.</t>
    </section>
    <section anchor="sec-considerations">
      <name>Security Considerations</name>
      <t>The security properties of token challenges vary depending on whether the challenge
contains a redemption context or not, as well as whether the challenge is per-origin
or not. For example, cross-origin tokens with empty contexts can be replayed from one
party by another, as shown below.</t>
      <figure anchor="fig-replay">
        <name>Token Architectural Components</name>
        <artwork><![CDATA[
 Client          Attacker                  Origin

                       <----------- Challenge \
                                              |
   <--------- Challenge                       |
                                              |
   Redemption ---->                           |
                                              |
                       Redemption ----------> /
]]></artwork>
      </figure>
      <t>Token challenges that include non-empty origin_info bind tokens to one or more specific
origins. As described in <xref target="challenge"/>, clients only accept such challenges from
origin names listed in the origin_info string. Even if multiple origins are listed, a
token can only be redeemed for an origin if the challenge has an exact match for
the origin_info. For example, if "a.example.com" issues a challenge with an origin_info
string of "a.example.com,b.example.com", a client could redeem a token fetched for this
challenge if and only if "b.example.com" also included an origin_info string of
"a.example.com,b.example.com". On the other hand, if "b.example.com" had an origin_info
string of "b.example.com" or "b.example.com,a.example.com" or
"a.example.com,b.example.com,c.example.com", the string would not match and the client
would need to use a different token.</t>
      <t>Context-bound token challenges require clients to obtain matching tokens when challenged,
rather than presenting a token that was obtained from a different context in the past. This
can make it more likely that issuance and redemption events will occur at approximately the
same time. For example, if a client is challenged for a token with a unique context at
time T1 and then subsequently obtains a token at time T2, a colluding issuer and origin can
link this to the same client if T2 is unique to the client. This linkability is less
feasible as the number of issuance events at time T2 increases. Depending on the "max-age"
token challenge attribute, clients MAY try to augment the time between getting challenged
then redeeming a token so as to make this sort of linkability more difficult. For more
discussion on correlation risks between token issuance and redemption, see
<xref target="I-D.ietf-privacypass-architecture"/>.</t>
      <t>As discussed in <xref target="challenge"/>, clients SHOULD discard any context-bound tokens upon flushing
cookies or changing networks, to prevent an origin using the redemption context state as
a cookie to recognize clients.</t>
      <t>Applications SHOULD constrain tokens to a single origin unless the use case can
accommodate such replay attacks.</t>
      <t>All random values in the challenge and token MUST be generated using a cryptographically
secure source of randomness.</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <section anchor="authentication-scheme">
        <name>Authentication Scheme</name>
        <t>This document registers the "PrivateToken" authentication scheme in the "Hypertext
Transfer Protocol (HTTP) Authentication Scheme Registry" established by <xref target="RFC7235"/>.</t>
        <t>Authentication Scheme Name: PrivateToken</t>
        <t>Pointer to specification text: <xref target="challenge-redemption"/> of this document</t>
      </section>
      <section anchor="token-types">
        <name>Token Type Registry</name>
        <t>IANA is requested to create a new "Privacy Pass Token Type" registry in a new "Privacy Pass
Parameters" page to list identifiers for issuance protocols defined for use with the Privacy
Pass token authentication scheme. These identifiers are two-byte values, so the maximum
possible value is 0xFFFF = 65535.</t>
        <t>Template:</t>
        <ul spacing="normal">
          <li>Value: The two-byte identifier for the algorithm</li>
          <li>Name: Name of the issuance protocol</li>
          <li>Publicly Verifiable: A Y/N value indicating if the output tokens are publicly verifiable</li>
          <li>Public Metadata: A Y/N value indicating if the output tokens can contain public metadata.</li>
          <li>Private Metadata: A Y/N value indicating if the output tokens can contain private metadata.</li>
          <li>Nk: The length in bytes of an output authenticator</li>
          <li>Nid: The length of the token key identifier</li>
          <li>Reference: Where this algorithm is defined</li>
        </ul>
        <t>New entries in this registry are subject to the Specification Required registration policy
(<xref section="4.6" sectionFormat="comma" target="RFC8126"/>). Designated experts need to ensure that the token type
is sufficiently clearly defined to be used for both token issuance and redemption,
and meets the common security and privacy requirements for issuance protocols defined
in <xref section="3.2" sectionFormat="of" target="ARCHITECTURE"/>.</t>
        <t>This registry also will also allow provisional registrations to allow for experimentation
with protocols being developed. Designated experts review, approve, and revoke provisional
registrations.</t>
        <t>This document defines several Reserved values, which can be used by clients and servers
to send "greased" values in token challenges and responses to ensure that implementations
remain able to handle unknown token types gracefully (this technique is inspired by
<xref target="RFC8701"/>). Implemenations SHOULD select reserved values at random when including
them in greased messages. Servers can include these in TokenChallenge structures, either
as the only challenge when no real token type is desired, or as one challenge in a list
of challenges that include real values. Clients can include these in Token structures
when they are not able to present a real token response. The contents of the Token
structure SHOULD be filled with random bytes when using greased values.</t>
        <t>The initial contents for this registry are defined in the table below.</t>
        <table anchor="aeadid-values">
          <name>Token Types</name>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Name</th>
              <th align="left">Publicly Verifiable</th>
              <th align="left">Public Metadata</th>
              <th align="left">Private Metadata</th>
              <th align="left">Nk</th>
              <th align="left">Nid</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0000</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x02AA</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x1132</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x2E96</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x3CD3</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x4473</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x5A63</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x6D32</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x7F3F</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x8D07</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x916B</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xA6A4</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xBEAB</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xC3F3</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xDA42</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xE944</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xF057</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC7235">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Authentication</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypermedia information systems.  This document defines the HTTP Authentication framework.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7235"/>
          <seriesInfo name="DOI" value="10.17487/RFC7235"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <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>
        <reference anchor="TLS13">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes.  It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="ARCHITECTURE">
          <front>
            <title>Privacy Pass Architectural Framework</title>
            <author fullname="Alex Davidson">
              <organization>LIP</organization>
            </author>
            <author fullname="Jana Iyengar">
              <organization>Fastly</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="5" month="August" year="2022"/>
            <abstract>
              <t>   This document specifies the architectural framework for constructing
   secure and anonymity-preserving instantiations of the Privacy Pass
   protocol.  It provides recommendations on how the protocol ecosystem
   should be constructed to ensure the privacy of clients, and the
   security of all participating entities.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-architecture-06"/>
        </reference>
        <reference anchor="COOKIES">
          <front>
            <title>Cookies: HTTP State Management Mechanism</title>
            <author fullname="Lily Chen">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Steven Englehardt">
              <organization>Mozilla</organization>
            </author>
            <author fullname="Mike West">
              <organization>Google LLC</organization>
            </author>
            <author fullname="John Wilander">
              <organization>Apple, Inc</organization>
            </author>
            <date day="24" month="April" year="2022"/>
            <abstract>
              <t>   This document defines the HTTP Cookie and Set-Cookie header fields.
   These header fields can be used by HTTP servers to store state
   (called cookies) at HTTP user agents, letting the servers maintain a
   stateful session over the mostly stateless HTTP protocol.  Although
   cookies have many historical infelicities that degrade their security
   and privacy, the Cookie and Set-Cookie header fields are widely used
   on the Internet.  This document obsoletes RFC 6265.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-rfc6265bis-10"/>
        </reference>
        <reference anchor="I-D.ietf-privacypass-architecture">
          <front>
            <title>Privacy Pass Architectural Framework</title>
            <author fullname="Alex Davidson">
              <organization>LIP</organization>
            </author>
            <author fullname="Jana Iyengar">
              <organization>Fastly</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="5" month="August" year="2022"/>
            <abstract>
              <t>   This document specifies the architectural framework for constructing
   secure and anonymity-preserving instantiations of the Privacy Pass
   protocol.  It provides recommendations on how the protocol ecosystem
   should be constructed to ensure the privacy of clients, and the
   security of all participating entities.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-architecture-06"/>
        </reference>
        <reference anchor="RFC8701">
          <front>
            <title>Applying Generate Random Extensions And Sustain Extensibility (GREASE) to TLS Extensibility</title>
            <author fullname="D. Benjamin" initials="D." surname="Benjamin">
              <organization/>
            </author>
            <date month="January" year="2020"/>
            <abstract>
              <t>This document describes GREASE (Generate Random Extensions And Sustain Extensibility), a mechanism to prevent extensibility failures in the TLS ecosystem. It reserves a set of TLS protocol values that may be advertised to ensure peers correctly handle unknown values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8701"/>
          <seriesInfo name="DOI" value="10.17487/RFC8701"/>
        </reference>
        <reference anchor="ISSUANCE">
          <front>
            <title>Privacy Pass Issuance Protocol</title>
            <author fullname="Sofía Celi">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Alex Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Armando Faz-Hernandez">
              <organization>Cloudflare</organization>
            </author>
            <author fullname="Steven Valdez">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="6" month="July" year="2022"/>
            <abstract>
              <t>   This document specifies two variants of the the two-message issuance
   protocol for Privacy Pass tokens: one that produces tokens that are
   privately verifiable, and another that produces tokens that are
   publicly verifiable.  The privately verifiable issuance protocol
   optionally supports public metadata during the issuance flow.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-protocol-06"/>
        </reference>
      </references>
    </references>
    <section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>This section includes test vectors for the challenge and redemption functionalities
described in <xref target="challenge"/> and <xref target="redemption"/>. Each test vector lists the following values:</t>
      <ul spacing="normal">
        <li>token_type: The type of token issuance protocol, a value from <xref target="token-types"/>. For these test vectors,
token_type is 0x0002, corresponding to the issuance protocol in <xref target="ISSUANCE"/>.</li>
        <li>issuer_name: The name of the issuer in the TokenChallenge structure, represented as a hexadecimal string.</li>
        <li>redemption_context: The redemption context in the TokenChallenge structure, represented as a hexadecimal string.</li>
        <li>origin_info: The origin info in the TokenChallenge structure, represented as a hexadecimal string.</li>
        <li>nonce: The nonce in the Token structure, represented as a hexadecimal string.</li>
        <li>token_key: The public token-key, encoded based on the corresponding token type, represented as a hexadecimal string.</li>
        <li>token_authenticator_input: The values in the Token structure used to compute the Token authenticator value, represented as a hexadecimal string.</li>
        <li>token_authenticator: The output Token authenticator which verifies under token_key, represented as a hexadecimal string.</li>
      </ul>
      <t>Test vectors are provided for each of the following TokenChallenge configurations:</t>
      <ul spacing="normal">
        <li>TokenChallenge with a single origin and non-empty redemption context</li>
        <li>TokenChallenge with a single origin and empty redemption context</li>
        <li>TokenChallenge with an empty origin and redemption context</li>
        <li>TokenChallenge with an empty origin and redemption context</li>
        <li>TokenChallenge with an empty origin and non-empty redemption context</li>
        <li>TokenChallenge with a multiple origins and non-empty redemption context</li>
      </ul>
      <t>These test vectors are below.</t>
      <artwork><![CDATA[
token_type: 2
issuer_name: 6973737565722e6578616d706c65
redemption_context:
40ff3cdc296a1e823f43b49355df1a2ee4c5f65e5d38ebb3e24ecf4d874997c6
origin_info: 6f726967696e2e6578616d706c65
nonce: 4437fb872eab95b5831a5d01005ee2995e417862ecfd2079ee4c246859a060ae
token_key: 30820252303d06092a864886f70d01010a3030a00d300b060960864801650
3040202a11a301806092a864886f70d010108300b0609608648016503040202a20302013
00382020f003082020a0282020100d730ce8b3ec7336b48a4f5897564d87c87627298f21
ba4bf34e7931142875c0e52c5aef3222d67e86124403e436d0136ebd806de37730427f81
4f7f0485eace93015471d14e56f3824e8bc5fbe44cf67e241c7642ac3a39452a283ff806
84ddbd66929a371d01e50feef1faee7f63f3ceb4b5ceacb939e06a558c2a6bccfd96fb74
16d3edce151bc7b0a6582f0ce99a7c0e7d5793b13d41292105e510e1aa00e082975a1386
6dfaf3a0a51c0dd1ecb64cc55cc607ca1813b5f91fd8e9cb9db18ffd81ac985a6cfdd5cc
2a0b8a5e4e9fa1ea5f149c1662155bb071c95218cae9ae4af613351baf470b1597bb984c
5ea8326f98aff64f72b60bcd035f6b970eb6edd2f9f2180d5aa8a17ed400056af3faa520
4b73c89b4eada6a057dd3dda9d8e18b3a6d2347c1027e2711f21eb7d96fef50cc3dacb2f
5ccc36e4c138ab75953974ade74982f85b91f419654d390378e2ea5aae33f1b4acf534d0
6de2f114acfdd88d6d708f4d2b646a8112b0fe181489916e2ba5c634cdf9b95762d1e120
169482dd27f959132705079fc4a00eee1f353a81c1e810ade20d070d839277169e09150c
08605afe7cea2aec41d2f85c2af7bef5d577343b4385e2c6c159926c1c8267d00433b88b
ad314a5ddcef58936126f1dd8da7b5728da192f54b304e60f4088e5b0620404f82a5939d
975e6714453a533c172c8a9b4b5da976ea60a5aa91fef0203010001
token_authenticator_input: 00024437fb872eab95b5831a5d01005ee2995e417862e
cfd2079ee4c246859a060ae055038620bd58190f057b86af2883352fd9ec612487979b00
74a489aece337e79f9293b4d62e4b4759af064df8fa5759c79ab51a00f692541b26d466d
ab48091
token_authenticator: 9c2fc25cb429a7cfe6e21193b6122ffe18c2c09c1df10dfea3d
155c297ce3f4132d273bf2ad490c41e592219bb253378c21215657905fe713aca31f6ab7
1206c1c872210c71d53a8d9b3ee635cf22c47d518454f9f5a898218ed7aae78414e9d85f
4a62244babdb63accc1257f1f1824493549465a3c63d69e9e307a328121402022a4f1aea
a7e6ff46edf4884b5ab47531b8c949a225a9f5a9c1b7608af0641c2070533402683e6f86
d547b6083d6cfa2a985f4673bf46ae09864d31613acd5a7d61dae7a29133e37093baabe1
20e59714d662162324406403c1fb44312b03c509202041a44dc351ea3659d446ea024e96
23b522171d9af0c8ac81f8a6a0018cb049bda21d12c9783ae6f7057144f8d26699d20f19
023269256ff607ca1ab37b0d95704aa0299e64b3b823c148ff8c46e835c7060dbb3c247e
6034892b3f6b7401fb67366e8afe8267182d6f36bf3618712371e6ae4654c0897f7475d3
9e9c186189162e29a9d8b3e37860457843a1c2fa3cacc133bdb8c7f77aae0ea3a5649300
35a7689f3a24ea726d4506d19f0b1aedb8739cb3fe7177cfaed08c8902162ed530ef19a0
266ca61a1a0b1bfc329fd2d1c1ad307a32f531f5be6faf75d96a49020acca8e37a4cb55f
f4072916711c397daf5bcbd229132b47d10b16f646d1d675cdf58c6f057333b1cbb94b2d
c44320cd2e9cba6f1c33a708ae1bb97f0739a

token_type: 2
issuer_name: 6973737565722e6578616d706c65
redemption_context:
origin_info: 6f726967696e2e6578616d706c65
nonce: 4437fb872eab95b5831a5d01005ee2995e417862ecfd2079ee4c246859a060ae
token_key: 30820252303d06092a864886f70d01010a3030a00d300b060960864801650
3040202a11a301806092a864886f70d010108300b0609608648016503040202a20302013
00382020f003082020a0282020100d730ce8b3ec7336b48a4f5897564d87c87627298f21
ba4bf34e7931142875c0e52c5aef3222d67e86124403e436d0136ebd806de37730427f81
4f7f0485eace93015471d14e56f3824e8bc5fbe44cf67e241c7642ac3a39452a283ff806
84ddbd66929a371d01e50feef1faee7f63f3ceb4b5ceacb939e06a558c2a6bccfd96fb74
16d3edce151bc7b0a6582f0ce99a7c0e7d5793b13d41292105e510e1aa00e082975a1386
6dfaf3a0a51c0dd1ecb64cc55cc607ca1813b5f91fd8e9cb9db18ffd81ac985a6cfdd5cc
2a0b8a5e4e9fa1ea5f149c1662155bb071c95218cae9ae4af613351baf470b1597bb984c
5ea8326f98aff64f72b60bcd035f6b970eb6edd2f9f2180d5aa8a17ed400056af3faa520
4b73c89b4eada6a057dd3dda9d8e18b3a6d2347c1027e2711f21eb7d96fef50cc3dacb2f
5ccc36e4c138ab75953974ade74982f85b91f419654d390378e2ea5aae33f1b4acf534d0
6de2f114acfdd88d6d708f4d2b646a8112b0fe181489916e2ba5c634cdf9b95762d1e120
169482dd27f959132705079fc4a00eee1f353a81c1e810ade20d070d839277169e09150c
08605afe7cea2aec41d2f85c2af7bef5d577343b4385e2c6c159926c1c8267d00433b88b
ad314a5ddcef58936126f1dd8da7b5728da192f54b304e60f4088e5b0620404f82a5939d
975e6714453a533c172c8a9b4b5da976ea60a5aa91fef0203010001
token_authenticator_input: 00024437fb872eab95b5831a5d01005ee2995e417862e
cfd2079ee4c246859a060ae11e15c91a7c2ad02abd66645802373db1d823bea80f08d452
541fb2b62b5898b9f9293b4d62e4b4759af064df8fa5759c79ab51a00f692541b26d466d
ab48091
token_authenticator: 4be4655a33566de7409e7cfdcdb764c251c04138602a046a7d7
1540aa9bcdb34e7df5dfabe17e16a3569f67c36460a79e9e7278b454c4f505580ae99750
b9308022b20aa8807ee054881126d9a4afd134331d0ebb3f9a4f2948731cd0ad2fe468b1
f8c6fcf2d5b9a2991a684b3fb0dec6a3e32fd3335e546f58c2217736683d378076355727
0493eb0f607c7936633a0532d1828dc860f0bf3954c82f0e1ab6089eae92d9d97e3237f2
58c5c82e711bef1682deb6edd19b24bb543f4418825e5d41e126de82f1a4b63321f07c12
3029a7499356fa8bdc11982451c69fa3d1940a4781b646c99e33e83b95810dc1e7a32a25
953ba0a0e37917c9f85bb4f0e7687c826e7138c9a2e71e87644b36c3891b4fec6af02519
aafaa36d559c71d090ea081ceed6cb738ffb730fa5dcbe889362591eb0a89f8ba4057f09
3ca35cc684f3b4cdc7c177f275a9d74a75e98eb395689842a5626d61af84072c9eb858ea
ed7e467b570c771e6530e02dda20b47f6860bb341ca4f849168dc7b6cb8c6743b8113c3e
f09ce9b9b2eaf172204cc26ea7c3de962cc1a851195cf143c9f27cb8f1df219df1209097
5ba657de1d021f2044829a689decf1072e5f79fbef0d3ae6085532f81b32b2a47968b073
2928193894dabb521c3f4c4a6858d43c8abd4695db4e49d3b5d46059032819d8485b0ccb
c3d24c5c72ac3e44d9ff94946cb8f8ca69fb1

token_type: 2
issuer_name: 6973737565722e6578616d706c65
redemption_context:
origin_info:
nonce: 4437fb872eab95b5831a5d01005ee2995e417862ecfd2079ee4c246859a060ae
token_key: 30820252303d06092a864886f70d01010a3030a00d300b060960864801650
3040202a11a301806092a864886f70d010108300b0609608648016503040202a20302013
00382020f003082020a0282020100d730ce8b3ec7336b48a4f5897564d87c87627298f21
ba4bf34e7931142875c0e52c5aef3222d67e86124403e436d0136ebd806de37730427f81
4f7f0485eace93015471d14e56f3824e8bc5fbe44cf67e241c7642ac3a39452a283ff806
84ddbd66929a371d01e50feef1faee7f63f3ceb4b5ceacb939e06a558c2a6bccfd96fb74
16d3edce151bc7b0a6582f0ce99a7c0e7d5793b13d41292105e510e1aa00e082975a1386
6dfaf3a0a51c0dd1ecb64cc55cc607ca1813b5f91fd8e9cb9db18ffd81ac985a6cfdd5cc
2a0b8a5e4e9fa1ea5f149c1662155bb071c95218cae9ae4af613351baf470b1597bb984c
5ea8326f98aff64f72b60bcd035f6b970eb6edd2f9f2180d5aa8a17ed400056af3faa520
4b73c89b4eada6a057dd3dda9d8e18b3a6d2347c1027e2711f21eb7d96fef50cc3dacb2f
5ccc36e4c138ab75953974ade74982f85b91f419654d390378e2ea5aae33f1b4acf534d0
6de2f114acfdd88d6d708f4d2b646a8112b0fe181489916e2ba5c634cdf9b95762d1e120
169482dd27f959132705079fc4a00eee1f353a81c1e810ade20d070d839277169e09150c
08605afe7cea2aec41d2f85c2af7bef5d577343b4385e2c6c159926c1c8267d00433b88b
ad314a5ddcef58936126f1dd8da7b5728da192f54b304e60f4088e5b0620404f82a5939d
975e6714453a533c172c8a9b4b5da976ea60a5aa91fef0203010001
token_authenticator_input: 00024437fb872eab95b5831a5d01005ee2995e417862e
cfd2079ee4c246859a060aeb741ec1b6fd05f1e95f8982906aec1612896d9ca97d53eef9
4ad3c9fe023f7a49f9293b4d62e4b4759af064df8fa5759c79ab51a00f692541b26d466d
ab48091
token_authenticator: 31c2ae70c45f171ed822a9397ba844d6ee20d09323491f4f9fb
3db54d7d3c7b403fd8ee1e2eedebd693d2493b3b1973142cd85f54257c009edda7cd5ad5
3cf8a07d8a3252c62da14d688d225727faa294b5ed57bd0913482c845b502fd967c27b92
d7c4ee7566894134fc71999e55073bf9d19f95b10f0d2044bef815dccfa7632903af7fd2
09af17c008c93fe76e6c4dffd90de933d711366ee72adc32d1289205a306de9b15bb6639
9b2e89c7cb129eadf062be9c4fd54b1ffea79840d0451544f30cc4eab6c36a06ad6dac87
741059803aa57006ce5aea4e71e053f4901f9901dd1f9fa489763f1c499fdf8ec1903a31
79259c79f7a496eefbe937f5b6d69f17f2b96b184cfab98dc0e46b2b0f5fb57764f894bf
2025d5f26505d70d3fa8766406d246bc037d588f035ea7230969323cb237da949a87db95
854f09ba24363a608d0a56427fac57907204aa8c57dc29633a36a83cff385f1eefcfffc9
730eda756d80109a20394c21b40ddc3e0121bd08e4a1eae48daa3a3c7a78f682ee208a78
686960c270e0ffd0042f38e9f786276ef01f7bda5ee323692c8de4f590014c4f4ea1f583
bf3db5cee7ba39d612c73535ef488c796ea33d2f9049a3b34cbc7db3d58208a11ceaf1b0
ab7853b817f53a3ff470bd3e353ca9d4365de09b6a70d94ee4e9118a0901013026360e99
64b2d6c51d47d4307328cedff3561d65a5583

token_type: 2
issuer_name: 6973737565722e6578616d706c65
redemption_context:
40ff3cdc296a1e823f43b49355df1a2ee4c5f65e5d38ebb3e24ecf4d874997c6
origin_info:
6f726967696e2e6578616d706c652c6f726967696e322e6578616d706c65
nonce: 4437fb872eab95b5831a5d01005ee2995e417862ecfd2079ee4c246859a060ae
token_key: 30820252303d06092a864886f70d01010a3030a00d300b060960864801650
3040202a11a301806092a864886f70d010108300b0609608648016503040202a20302013
00382020f003082020a0282020100d730ce8b3ec7336b48a4f5897564d87c87627298f21
ba4bf34e7931142875c0e52c5aef3222d67e86124403e436d0136ebd806de37730427f81
4f7f0485eace93015471d14e56f3824e8bc5fbe44cf67e241c7642ac3a39452a283ff806
84ddbd66929a371d01e50feef1faee7f63f3ceb4b5ceacb939e06a558c2a6bccfd96fb74
16d3edce151bc7b0a6582f0ce99a7c0e7d5793b13d41292105e510e1aa00e082975a1386
6dfaf3a0a51c0dd1ecb64cc55cc607ca1813b5f91fd8e9cb9db18ffd81ac985a6cfdd5cc
2a0b8a5e4e9fa1ea5f149c1662155bb071c95218cae9ae4af613351baf470b1597bb984c
5ea8326f98aff64f72b60bcd035f6b970eb6edd2f9f2180d5aa8a17ed400056af3faa520
4b73c89b4eada6a057dd3dda9d8e18b3a6d2347c1027e2711f21eb7d96fef50cc3dacb2f
5ccc36e4c138ab75953974ade74982f85b91f419654d390378e2ea5aae33f1b4acf534d0
6de2f114acfdd88d6d708f4d2b646a8112b0fe181489916e2ba5c634cdf9b95762d1e120
169482dd27f959132705079fc4a00eee1f353a81c1e810ade20d070d839277169e09150c
08605afe7cea2aec41d2f85c2af7bef5d577343b4385e2c6c159926c1c8267d00433b88b
ad314a5ddcef58936126f1dd8da7b5728da192f54b304e60f4088e5b0620404f82a5939d
975e6714453a533c172c8a9b4b5da976ea60a5aa91fef0203010001
token_authenticator_input: 00024437fb872eab95b5831a5d01005ee2995e417862e
cfd2079ee4c246859a060ae175a86e01410befaee0307ec86990b8a6e1b8192dfca7f0a9
692e06813ec9d199f9293b4d62e4b4759af064df8fa5759c79ab51a00f692541b26d466d
ab48091
token_authenticator: 6b25498e0c809b8c83ec22f6d46a98cd866354ad56b7aa78ef3
fc237ebe9b7fc5ea3346257ddf085166931653d94016e37896df38a767c438d4b2ca440c
47ae62f5e9074f9a72b06bdf103b4f205b20075d07465750a06e463106bb1ff0f9393f00
1ac5377b9ba7edc28b88aeab4e0d4ca9bd101af13967a4d681be02f8f3308224c0115ef8
7ed890e04441486db438538a3a8a82050377d5882001689216c82bb74513ecab47eebaa4
17f030ee887a83f0cc805becc5dd417a3c1c79f828d28068872b0102e8b2fd21743d4aea
4d4bbe8193b496d4167c312c1bea39c5c337701b33f07706daf2e07d8e0ad178878604b3
adcd766ea93e70a70a0b7d1447d20a6af222d8a785db417f462639e89aa57fd664c1c93d
b0b75dc2189345ab83aa823a7b1eb7c3f965fca97780e46d019044dc9583fc3a4e13705c
7c97594c4e983c975f2ac6e5a3a3fe46bc811e9bb46e8f1d2997152d19eff15e2e238f7b
541413f05141d31154e4a59c4b552192ef1d39b0399c5a9b935d4133f4d4e2b3737e7f45
8f92a90719cf5620b05884a74a16db6dbc48b7e819543290cef76d0e761dff156a6800a7
4430a79cba2cc46178ab72b169222fb082f9e05874ccaf0734e2b24315fb2c429c0b1b42
dc6513d76b891b7ce1c9c819303a050c9251aaa8ea2bb61a3bbbfc770ccad6a53dfd29d9
a65f81e91de499d752b29a43294f0cdaf361a
]]></artwork>
    </section>
  </back>
  <!-- ##markdown-source:
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
mpTTVYbtHUquZ8XP7wECKG3ax780mFurOwOt+SzpsGXhrx8I6pGoF2HE0v3c
TrkEP4O5mmi3pAlhagtaOLAysa3tTFnTdi0Fptv56DoQk7k1hZbpdPXAiODR
folzW3gRFuZziO2F+zT7hrCcXHlkMOaCj2WbK4tMK5J/b5a9xkgsK0mLDA4P
ajY8n699fPneqsXcjy25b2D07k1296J5a55K8WwwGbVu5gP0BqXMTUKWNTX1
PWLh9iSefyjM0MVgQ8cJuxGTm+02HfUpzVNNd6AsDKl3fSFbNd6Ey2D+2Xhh
uuWVveqJdNwpdzp9Ojkr+uTAf9GYb3jkrsHfk3ewWb4/P7EpvOmHwz+nvzj+
9MRz5iP/b+877Dp8F+IPrerZ62ff//HZ06Ndv/jN1QlaHH564jnzkft7aabs
1PHV1SeaOoqS+BNNHT+r8k80dXL9NPlEU6dp8ammzq7yTzV1/vSTiVnxdfL1
J5q6fBoWn2jqKsr/8Immvsqv0k809R+eXX2qXV8nX38q5Xp6lX4q5XpWpZ+K
11+H2adQLqorSi2brrmwsHlRWqR0DtcRL/g/hqHeUFbuhpp2/gjI3SOeMIHK
4O4+cXe9UmdJcG+emVIdy3Sh/99JmK5b6KgELx6vKPKby1Nwl8EzPl43z8io
+fDaTrM9Pmgznz6w6RnbO3IQ0nr3M7teMXNdt58o+2By3AZm+7s+F8HiZNNg
QFl8fnAlgU0AnLqPiM64uds5Tv/nUdzDFPde+IcjzcaOr6c8fcJqDgvO5+sZ
zAElGdzpd7LRynYSc/kVcx0fAjRTnjrH/xea0qsXmrm8i2j/YpNwq7elHvfi
nT7W8ovHm06ymDFtXmw63n4euIvwFpcFHIrI3I72q6Zd5LtAuO3ecmmZxj88
4eH6we25He+ZE+d+/jNLsmw0yblTM5i0hklRaqq/mVMJlqS/cGpx4xsjTn7y
QX6bzeI+QXcQeTIXB4LkmrNM5uHJdNv69UFV/6Dm4v77Do9djvArhvm1Q7iL
NbwhPt3L/080OO7t+LmRxM2RGfauejENTb7xj8XCZOZVkeB/WZ4Vcazxd5lH
eVOEucozccLgiTRs20Q1Kq5yGekyTto0qdMqybKmjWSsdaqyNs901iSlrutE
x6lWbdqURVpVhcrFwqTlbRHnVV7g//poemuX0jQp2rosYi3rKquzMolk1oRR
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
mQAA

-->

</rfc>
