<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.24 (Ruby 3.3.6) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-status-list-09" category="std" consensus="true" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.28.0 -->
  <front>
    <title>Token Status List</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-status-list-09"/>
    <author fullname="Tobias Looker">
      <organization>MATTR</organization>
      <address>
        <email>tobias.looker@mattr.global</email>
      </address>
    </author>
    <author fullname="Paul Bastian">
      <organization/>
      <address>
        <email>paul.bastian@posteo.de</email>
      </address>
    </author>
    <author fullname="Christian Bormann">
      <organization>SPRIND</organization>
      <address>
        <email>chris.bormann@gmx.de</email>
      </address>
    </author>
    <date year="2025" month="March" day="03"/>
    <area>Security</area>
    <workgroup>Web Authorization Protocol</workgroup>
    <abstract>
      <?line 119?>

<t>This specification defines a mechanism, data structures and processing rules for representing the status of tokens secured by JSON Object Signing and Encryption (JOSE) or CBOR Object Signing and Encryption (COSE), such as JWT, SD-JWT VC, CBOR Web Token and ISO mdoc. It also defines an extension point and a registry for future status mechanisms.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://oauth-wg.github.io/draft-ietf-oauth-status-list/draft-ietf-oauth-status-list.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-oauth-status-list/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Web Authorization Protocol Working Group mailing list (<eref target="mailto:oauth@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/oauth/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/oauth/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/oauth-wg/draft-ietf-oauth-status-list"/>.</t>
    </note>
  </front>
  <middle>
    <?line 123?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Token formats secured by JOSE <xref target="IANA.JOSE"/> or COSE <xref target="RFC9052"/>, such as JWTs <xref target="RFC7519"/>, SD-JWT VCs <xref target="SD-JWT.VC"/>, CWTs <xref target="RFC8392"/> and ISO mdoc <xref target="ISO.mdoc"/>, have vast possible applications. Some of these applications can involve issuing a token whereby certain semantics about the token or its validity may change over time. Communicating these changes to relying parties in an interoperable manner, such as whether the token is considered invalidated or suspended by its issuer is important for many of these applications.</t>
      <t>This document defines a Status List data structure that describes the individual statuses of multiple Referenced Tokens. A Referenced Token may be of any format, but is most commonly a data structures secured by JOSE or COSE. The Referenced Token is referenced by the Status List, which describes the status of the Referenced Token. The statuses of all Referenced Tokens are conveyed via a bit array in the Status List. Each Referenced Token is allocated an index during issuance that represents its position within this bit array. The value of the bit(s) at this index corresponds to the Referenced Token's status. A Status List is provided within a Status List Token protected by cryptographic signature or MAC and this document defines its representations in JWT and CWT format.</t>
      <t>The following diagram depicts the relationship between the artifacts:</t>
      <artwork type="ascii-art"><![CDATA[
┌────────────────┐  describes status ┌──────────────────┐
│  Status List   ├──────────────────►│ Referenced Token │
│ (JSON or CBOR) │◄──────────────────┤ (JOSE, COSE, ..) │
└─────┬──────────┘    references     └──────────────────┘
      │
      │ embedded in
      ▼
┌───────────────────┐
│ Status List Token │
│  (JWT or CWT)     │
└───────────────────┘

]]></artwork>
      <t>An Issuer issues Referenced Tokens to a Holder, the Holder uses and presents those Referenced Tokens to a Relying Party. The Issuer gives updated status information to the Status Issuer, who issues a Status List Token. The Status Issuer can be either the Issuer or an entity that has been authorized by the Issuer to issue Status List Tokens. The Status Issuer provides the Status List Token to the Status Provider, who serves the Status List Token on a public, resolvable endpoint. The Relying Party or the Holder may fetch the Status List Token to retrieve the status of the Referenced Token.</t>
      <t>The roles of the Issuer (of the Referenced Token), the Status Issuer and the Status Provider may be fulfilled by the same entity. If not further specified, the term Issuer may refer to an entity acting for all three roles. This document describes how an Issuer references a Status List Token and how a Relying Party fetches and validates Status Lists.</t>
      <t>The following diagram depicts the relationship between the involved roles (Relying Party is equivalent to Verifier of <xref target="SD-JWT.VC"/>):</t>
      <artwork type="ascii-art"><![CDATA[
           issue                 present
           Referenced            Referenced
┌────────┐ Token      ┌────────┐ Token      ┌───────────────┐
│ Issuer ├───────────►│ Holder ├───────────►│ Relying Party │
└─┬──────┘            └───┬────┘            └──┬────────────┘
  ▼ update status         │                    │
┌───────────────┐         │                    │
│ Status Issuer │         │                    │
└─┬─────────────┘         │                    │
  ▼ provide Status List   │                    │
┌─────────────────┐       │                    │
│ Status Provider │◄──────┴────────────────────┘
└─────────────────┘     fetch Status List Token

]]></artwork>
      <t>Status Lists may be composed to express a range of Status Types. This document defines basic Status Types for the most common use cases as well as an extensibility mechanism for custom Status Types.</t>
      <t>Furthermore, the document defines an extension point that enables other specifications to describe additional status mechanisms and creates an IANA registry.</t>
      <section anchor="example-use-cases">
        <name>Example Use Cases</name>
        <t>An example of the usage of a Status List is to manage the status of issued access tokens as defined in section 1.4 of <xref target="RFC6749"/>. Token Introspection <xref target="RFC7662"/> defines another way to determine the status of an issued access token, but it requires the party trying to validate the state of access tokens to directly contact the token issuer, whereas the mechanism defined in this specification does not have this limitation.</t>
        <t>Another possible use case for the Status List is to express the status of verifiable credentials (Referenced Tokens) issued by an Issuer in the Issuer-Holder-Verifier model <xref target="SD-JWT.VC"/>.</t>
      </section>
      <section anchor="rationale">
        <name>Rationale</name>
        <t>Revocation mechanisms are an essential part of most identity ecosystems. In the past, revocation of X.509 TLS certificates has been proven difficult. Traditional certificate revocation lists (CRLs) have limited scalability; Online Certificate Status Protocol (OCSP) has additional privacy risks, since the client is leaking the requested website to a third party. OCSP stapling is addressing some of these problems at the cost of less up-to-date data. Modern approaches use accumulator-based revocation registries and Zero-Knowledge-Proofs to accommodate for this privacy gap, but face scalability issues again. Another alternative is short-lived Referenced Tokens with regular re-issuance, but this puts additional burden on the Issuer's infrastructure.</t>
        <t>This specification seeks to find a balance between scalability, security and privacy by minimizing the status information to mere bits (often a single bit) and compressing the resulting binary data. Thereby, a Status List may contain statuses of many thousands or millions Referenced Tokens while remaining as small as possible. Placing large amounts of Referenced Tokens into the same list also enables herd privacy relative to the Status Provider.</t>
      </section>
      <section anchor="design-considerations">
        <name>Design Considerations</name>
        <t>The decisions taken in this specification aim to achieve the following design goals:</t>
        <ul spacing="normal">
          <li>
            <t>the specification shall favor a simple and easy-to-understand concept</t>
          </li>
          <li>
            <t>the specification shall be easy, fast and secure to implement in all major programming languages</t>
          </li>
          <li>
            <t>the specification shall be optimized to support the most common use cases and avoid unnecessary complexity of corner cases</t>
          </li>
          <li>
            <t>the Status List shall scale up to millions of tokens to support large-scale government or enterprise use cases</t>
          </li>
          <li>
            <t>the Status List shall enable caching policies and offline support</t>
          </li>
          <li>
            <t>the specification shall support JSON and CBOR based tokens</t>
          </li>
          <li>
            <t>the specification shall not specify key resolution or trust frameworks</t>
          </li>
          <li>
            <t>the specification shall define an extension point that enables other mechanisms to convey information about the status of a Referenced Token</t>
          </li>
        </ul>
      </section>
      <section anchor="prior-work">
        <name>Prior Work</name>
        <t>Representing a status with bits in array is a rather old and well-known concept in computer science and there has been prior work to use this for revocation and status management such as a paper by Smith et al. <xref target="smith2020let"/> that proposed a mechanism called Certificate Revocation Vectors based on xz compressed bit vectors for each expiration day and the W3C bit Status List <xref target="W3C.SL"/> that similarly uses a compressed bit representation.</t>
      </section>
      <section anchor="status-mechanisms-registry">
        <name>Status Mechanisms Registry</name>
        <t>This specification establishes the IANA "Status Mechanisms" registry for status mechanisms and registers the members defined by this specification. Other specifications can register other members used for status retrieval.</t>
        <t>Other status mechanisms may have different tradeoffs regarding security, privacy, scalability and complexity. The privacy and security considerations in this document only represent the properties of the Status List mechanism.</t>
      </section>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

</section>
    <section anchor="terminology">
      <name>Terminology</name>
      <dl>
        <dt>Issuer:</dt>
        <dd>
          <t>An entity that issues the Referenced Token.</t>
        </dd>
        <dt>Status Issuer:</dt>
        <dd>
          <t>An entity that issues the Status List Token about the status information of the Referenced Token. This role may be fulfilled by the Issuer.</t>
        </dd>
        <dt>Status Provider:</dt>
        <dd>
          <t>An entity that provides the Status List Token on a public endpoint. This role may be fulfilled by the Status Issuer.</t>
        </dd>
        <dt>Holder:</dt>
        <dd>
          <t>An entity that receives Referenced Tokens from the Issuer and presents them to Relying Parties.</t>
        </dd>
        <dt>Relying Party:</dt>
        <dd>
          <t>An entity that relies on the Referenced Token and fetches the corresponding Status List Token to validate the status of that Referenced Token. Also known as Verifier.</t>
        </dd>
        <dt>Status List:</dt>
        <dd>
          <t>An object in JSON or CBOR representation containing a compressed byte array that represents the statuses of many Referenced Tokens.</t>
        </dd>
        <dt>Status List Token:</dt>
        <dd>
          <t>A token in JWT (as defined in <xref target="RFC7519"/>) or CWT (as defined in <xref target="RFC8392"/>) representation that contains a cryptographically secured Status List.</t>
        </dd>
        <dt>Referenced Token:</dt>
        <dd>
          <t>A cryptographically secured data structure that contains a "status" claim that is referencing a mechanism to retrieve status information about this Referenced Token. This document defines the Status List mechanism in which case the Referenced Token contains a reference to an entry in a Status List Token. It is <bcp14>RECOMMENDED</bcp14> to use JSON <xref target="RFC8259"/> with JOSE as defined in <xref target="RFC7515"/> or CBOR <xref target="RFC8949"/> with COSE as defined in <xref target="RFC9052"/>. Examples for Referenced Tokens are SD-JWT VC and ISO mdoc.</t>
        </dd>
        <dt>base64url:</dt>
        <dd>
          <t>Denotes the URL-safe base64 encoding without padding as defined in Section 2 of <xref target="RFC7515"/> as "Base64url Encoding".</t>
        </dd>
      </dl>
    </section>
    <section anchor="status-list">
      <name>Status List</name>
      <t>A Status List is a data structure that contains the statuses of many Referenced Tokens represented by one or multiple bits. The <xref target="status-list-byte-array">first section</xref> describes how to construct a compressed byte array that is the base component for the Status List data structure. The second and third section describe how to encode such a Status List in JSON and CBOR representation.</t>
      <section anchor="status-list-byte-array">
        <name>Compressed Byte Array</name>
        <t>A compressed byte array containing the status information of the Referenced Token is composed by the following algorithm:</t>
        <ol spacing="normal" type="1"><li>
            <t>The Status Issuer <bcp14>MUST</bcp14> define a number of bits (<tt>bits</tt>) of either 1,2,4 or 8, that represents the amount of bits used to describe the status of each Referenced Token within this Status List. Therefore up to 2,4,16 or 256 statuses for a Referenced Token are possible, depending on the bit size. This limitation is intended to limit bit manipulation necessary to a single byte for every operation and thus keeping implementations simpler and less error-prone.</t>
          </li>
          <li>
            <t>The Status Issuer creates a byte array of size = amount of Referenced Tokens * <tt>bits</tt> / 8 or greater. Depending on the <tt>bits</tt>, each byte in the array corresponds to 8/(<tt>bits</tt>) statuses (8,4,2 or 1).</t>
          </li>
          <li>
            <t>The Status Issuer sets the status values for all Referenced Tokens within the byte array. The status of each Referenced Token is identified using an index that maps to one or more specific bits within the byte array. The index starts counting at 0 and ends with amount of Referenced Tokens - 1 (being the last valid entry). The bits within an array are counted from the least significant bit ("0") to the most significant bit ("7"). All bits of the byte array at a particular index are set to a status value.</t>
          </li>
          <li>
            <t>The Status Issuer compresses the byte array using DEFLATE <xref target="RFC1951"/> with the ZLIB <xref target="RFC1950"/> data format. Implementations are <bcp14>RECOMMENDED</bcp14> to use the highest compression level available.</t>
          </li>
        </ol>
        <t>The following example illustrates the byte array of a Status List that represents the statuses of 16 Referenced Tokens with a <tt>bits</tt> of 1, requiring 2 bytes (16 bits) for the uncompressed byte array:</t>
        <artwork type="ascii-art"><![CDATA[
status[0] = 1
status[1] = 0
status[2] = 0
status[3] = 1
status[4] = 1
status[5] = 1
status[6] = 0
status[7] = 1
status[8] = 1
status[9] = 1
status[10] = 0
status[11] = 0
status[12] = 0
status[13] = 1
status[14] = 0
status[15] = 1
]]></artwork>
        <t>These bits are concatenated:</t>
        <artwork type="ascii-art"><![CDATA[
byte no            0                  1               2
bit no      7 6 5 4 3 2 1 0    7 6 5 4 3 2 1 0    7
           +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+  +-+...
values     |1|0|1|1|1|0|0|1|  |1|0|1|0|0|0|1|1|  |0|...
           +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+  +-+...
index       7 6 5 4 3 2 1 0   15   ...  10 9 8   23
           \_______________/  \_______________/
byte value       0xB9               0xA3

]]></artwork>
        <t>In the following example, the Status List additionally includes the Status Type "SUSPENDED". As the Status Type value for "SUSPENDED" is 0x02 and does not fit into 1 bit, the <tt>bits</tt> is required to be 2. This example illustrates the byte array of a Status List that represents the statuses of 12 Referenced Tokens with a <tt>bits</tt> of 2, requiring 3 bytes (24 bits) for the uncompressed byte array:</t>
        <artwork type="ascii-art"><![CDATA[
status[0] = 1
status[1] = 2
status[2] = 0
status[3] = 3
status[4] = 0
status[5] = 1
status[6] = 0
status[7] = 1
status[8] = 1
status[9] = 2
status[10] = 3
status[11] = 3
]]></artwork>
        <t>These bits are concatenated:</t>
        <artwork type="ascii-art"><![CDATA[
byte no            0                  1                  2
bit no      7 6 5 4 3 2 1 0    7 6 5 4 3 2 1 0    7 6 5 4 3 2 1 0
           +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+
values     |1|1|0|0|1|0|0|1|  |0|1|0|0|0|1|0|0|  |1|1|1|1|1|0|0|1|
           +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+
            \ / \ / \ / \ /    \ / \ / \ / \ /    \ / \ / \ / \ /
status       3   0   2   1      1   0   1   0      3   3   2   1
index        3   2   1   0      7   6   5   4      11  10  9   8
             \___________/      \___________/      \___________/
byte value       0xC9               0x44               0xF9

]]></artwork>
      </section>
      <section anchor="status-list-json">
        <name>Status List in JSON Format</name>
        <t>This section defines the data structure for a JSON-encoded Status List:</t>
        <ul spacing="normal">
          <li>
            <t><tt>status_list</tt>: <bcp14>REQUIRED</bcp14>. JSON Object that contains a Status List. It <bcp14>MUST</bcp14> contain at least the following claims:
            </t>
            <ul spacing="normal">
              <li>
                <t><tt>bits</tt>: <bcp14>REQUIRED</bcp14>. JSON Integer specifying the number of bits per Referenced Token in the compressed byte array (<tt>lst</tt>). The allowed values for <tt>bits</tt> are 1,2,4 and 8.</t>
              </li>
              <li>
                <t><tt>lst</tt>: <bcp14>REQUIRED</bcp14>. JSON String that contains the status values for all the Referenced Tokens it conveys statuses for. The value <bcp14>MUST</bcp14> be the base64url-encoded compressed byte array as specified in <xref target="status-list-byte-array"/>.</t>
              </li>
              <li>
                <t><tt>aggregation_uri</tt>: <bcp14>OPTIONAL</bcp14>. JSON String that contains a URI to retrieve the Status List Aggregation for this type of Referenced Token or Issuer. See section <xref target="aggregation"/> for further details.</t>
              </li>
            </ul>
          </li>
        </ul>
        <t>The following example illustrates the JSON representation of the Status List with <tt>bits</tt> 1 from the example above:</t>
        <artwork><![CDATA[
byte_array = [0xb9, 0xa3] 
encoded:
{
  "bits": 1,
  "lst": "eNrbuRgAAhcBXQ"
}
]]></artwork>
        <t>The following example illustrates the JSON representation of the Status List with <tt>bits</tt> 2 from the example above:</t>
        <artwork><![CDATA[
byte_array = [0xc9, 0x44, 0xf9] 
encoded:
{
  "bits": 2,
  "lst": "eNo76fITAAPfAgc"
}
]]></artwork>
        <t>See section <xref target="test-vectors"/> for more test vectors.</t>
      </section>
      <section anchor="status-list-cbor">
        <name>Status List in CBOR Format</name>
        <t>This section defines the data structure for a CBOR-encoded Status List:</t>
        <ul spacing="normal">
          <li>
            <t>The <tt>StatusList</tt> structure is a map (Major Type 5) and defines the following entries:
            </t>
            <ul spacing="normal">
              <li>
                <t><tt>bits</tt>: <bcp14>REQUIRED</bcp14>. Unsigned integer (Major Type 0) that contains the number of bits per Referenced Token in the compressed byte array (<tt>lst</tt>). The allowed values for <tt>bits</tt> are 1, 2, 4 and 8.</t>
              </li>
              <li>
                <t><tt>lst</tt>: <bcp14>REQUIRED</bcp14>. Byte string (Major Type 2) that contains the status values for all the Referenced Tokens it conveys statuses for. The value <bcp14>MUST</bcp14> be the compressed byte array as specified in <xref target="status-list-byte-array"/>.</t>
              </li>
              <li>
                <t><tt>aggregation_uri</tt>: <bcp14>OPTIONAL</bcp14>. Text string (Major Type 3) that contains a URI to retrieve the Status List Aggregation for this type of Referenced Token. See section <xref target="aggregation"/> for further detail.</t>
              </li>
            </ul>
          </li>
        </ul>
        <t>The following is the CDDL definition of the StatusList structure:</t>
        <sourcecode type="cddl"><![CDATA[
StatusList = {
    bits: 1 / 2 / 4 / 8, ; The number of bits used per Referenced Token
    lst: bstr, ; Byte string that contains the Status List
    ? aggregation_uri: tstr, ; link to the Status List Aggregation
}
]]></sourcecode>
        <t>The following example illustrates the CBOR representation of the Status List in Hex:</t>
        <artwork><![CDATA[
byte_array = [0xb9, 0xa3] 
encoded:
a2646269747301636c73744a78dadbb918000217015d
]]></artwork>
        <t>The following is the CBOR Annotated Hex output of the example above:</t>
        <artwork><![CDATA[
a2                              # map(2)
  64                            #   string(4)
    62697473                    #     "bits"
  01                            #   uint(1)
  63                            #   string(3)
    6c7374                      #     "lst"
  4a                            #   bytes(10)
    78dadbb918000217015d        #     "xÚÛ¹\x18\x00\x02\x17\x01]"
]]></artwork>
        <t>See section <xref target="test-vectors"/> for more test vectors.</t>
      </section>
    </section>
    <section anchor="status-list-token">
      <name>Status List Token</name>
      <t>A Status List Token embeds the Status List into a token that is cryptographically signed and protects the integrity of the Status List. This allows for the Status List Token to be hosted by third parties or be transferred for offline use cases.</t>
      <t>This section specifies Status List Tokens in JSON Web Token (JWT) and CBOR Web Token (CWT) format.</t>
      <section anchor="status-list-token-jwt">
        <name>Status List Token in JWT Format</name>
        <t>The Status List Token <bcp14>MUST</bcp14> be encoded as a "JSON Web Token (JWT)" according to <xref target="RFC7519"/>.</t>
        <t>The following content applies to the JWT Header:</t>
        <ul spacing="normal">
          <li>
            <t><tt>typ</tt>: <bcp14>REQUIRED</bcp14>. The JWT type <bcp14>MUST</bcp14> be <tt>statuslist+jwt</tt>.</t>
          </li>
        </ul>
        <t>The following content applies to the JWT Claims Set:</t>
        <ul spacing="normal">
          <li>
            <t><tt>sub</tt>: <bcp14>REQUIRED</bcp14>. As generally defined in <xref target="RFC7519"/>. The <tt>sub</tt> (subject) claim <bcp14>MUST</bcp14> specify the URI of the Status List Token. The value <bcp14>MUST</bcp14> be equal to that of the <tt>uri</tt> claim contained in the <tt>status_list</tt> claim of the Referenced Token.</t>
          </li>
          <li>
            <t><tt>iat</tt>: <bcp14>REQUIRED</bcp14>. As generally defined in <xref target="RFC7519"/>. The <tt>iat</tt> (issued at) claim <bcp14>MUST</bcp14> specify the time at which the Status List Token was issued.</t>
          </li>
          <li>
            <t><tt>exp</tt>: <bcp14>OPTIONAL</bcp14>. As generally defined in <xref target="RFC7519"/>. The <tt>exp</tt> (expiration time) claim, if present, <bcp14>MUST</bcp14> specify the time at which the Status List Token is considered expired by the Status Issuer.</t>
          </li>
          <li>
            <t><tt>ttl</tt>: <bcp14>OPTIONAL</bcp14>. The <tt>ttl</tt> (time to live) claim, if present, <bcp14>MUST</bcp14> specify the maximum amount of time, in seconds, that the Status List Token can be cached by a consumer before a fresh copy <bcp14>SHOULD</bcp14> be retrieved. The value of the claim <bcp14>MUST</bcp14> be a positive number encoded in JSON as a number.</t>
          </li>
          <li>
            <t><tt>status_list</tt>: <bcp14>REQUIRED</bcp14>. The <tt>status_list</tt> (status list) claim <bcp14>MUST</bcp14> specify the Status List conforming to the rules outlined in <xref target="status-list-json"/>.</t>
          </li>
        </ul>
        <t>The following additional rules apply:</t>
        <ol spacing="normal" type="1"><li>
            <t>The JWT <bcp14>MAY</bcp14> contain other claims.</t>
          </li>
          <li>
            <t>The JWT <bcp14>MUST</bcp14> be secured using a cryptographic signature or MAC algorithm. Relying Parties <bcp14>MUST</bcp14> reject JWTs with an invalid signature.</t>
          </li>
          <li>
            <t>Relying Parties <bcp14>MUST</bcp14> reject JWTs that are not valid in all other respects per "JSON Web Token (JWT)" <xref target="RFC7519"/>.</t>
          </li>
          <li>
            <t>Application of additional restrictions and policies are at the discretion of the Relying Party.</t>
          </li>
        </ol>
        <t>The following is a non-normative example of a Status List Token in JWT format:</t>
        <artwork><![CDATA[
{
  "alg": "ES256",
  "kid": "12",
  "typ": "statuslist+jwt"
}
.
{
  "exp": 2291720170,
  "iat": 1686920170,
  "status_list": {
    "bits": 1,
    "lst": "eNrbuRgAAhcBXQ"
  },
  "sub": "https://example.com/statuslists/1",
  "ttl": 43200
}
]]></artwork>
      </section>
      <section anchor="status-list-token-cwt">
        <name>Status List Token in CWT Format</name>
        <t>The Status List Token <bcp14>MUST</bcp14> be encoded as a "CBOR Web Token (CWT)" according to <xref target="RFC8392"/>.</t>
        <t>The following content applies to the protected header of the CWT:</t>
        <ul spacing="normal">
          <li>
            <t><tt>16</tt> (type): <bcp14>REQUIRED</bcp14>. The type of the CWT <bcp14>MUST</bcp14> be <tt>application/statuslist+cwt</tt> as defined in <xref target="RFC9596"/>.</t>
          </li>
        </ul>
        <t>The following content applies to the CWT Claims Set:</t>
        <ul spacing="normal">
          <li>
            <t><tt>2</tt> (subject): <bcp14>REQUIRED</bcp14>. As generally defined in <xref target="RFC8392"/>. The subject claim <bcp14>MUST</bcp14> specify the URI of the Status List Token. The value <bcp14>MUST</bcp14> be equal to that of the <tt>uri</tt> claim contained in the <tt>status_list</tt> claim of the Referenced Token.</t>
          </li>
          <li>
            <t><tt>6</tt> (issued at): <bcp14>REQUIRED</bcp14>. As generally defined in <xref target="RFC8392"/>. The issued at claim <bcp14>MUST</bcp14> specify the time at which the Status List Token was issued.</t>
          </li>
          <li>
            <t><tt>4</tt> (expiration time): <bcp14>OPTIONAL</bcp14>. As generally defined in <xref target="RFC8392"/>. The expiration time claim, if present, <bcp14>MUST</bcp14> specify the time at which the Status List Token is considered expired by its issuer.</t>
          </li>
          <li>
            <t><tt>65534</tt> (time to live): <bcp14>OPTIONAL</bcp14>. Unsigned integer (Major Type 0). The time to live claim, if present, <bcp14>MUST</bcp14> specify the maximum amount of time, in seconds, that the Status List Token can be cached by a consumer before a fresh copy <bcp14>SHOULD</bcp14> be retrieved. The value of the claim <bcp14>MUST</bcp14> be a positive number.</t>
          </li>
          <li>
            <t><tt>65533</tt> (status list): <bcp14>REQUIRED</bcp14>. The status list claim <bcp14>MUST</bcp14> specify the Status List conforming to the rules outlined in <xref target="status-list-cbor"/>.</t>
          </li>
        </ul>
        <t>The following additional rules apply:</t>
        <ol spacing="normal" type="1"><li>
            <t>The CWT <bcp14>MAY</bcp14> contain other claims.</t>
          </li>
          <li>
            <t>The CWT <bcp14>MUST</bcp14> be secured using a cryptographic signature or MAC algorithm. Relying Parties <bcp14>MUST</bcp14> reject CWTs with an invalid signature.</t>
          </li>
          <li>
            <t>Relying Parties <bcp14>MUST</bcp14> reject CWTs that are not valid in all other respects per "CBOR Web Token (CWT)" <xref target="RFC8392"/>.</t>
          </li>
          <li>
            <t>Application of additional restrictions and policies are at the discretion of the Relying Party.</t>
          </li>
        </ol>
        <t>The following is a non-normative example of a Status List Token in CWT format in Hex:</t>
        <artwork><![CDATA[
d2845820a2012610781a6170706c69636174696f6e2f7374617475736c6973742b63
7774a1044231325850a502782168747470733a2f2f6578616d706c652e636f6d2f73
74617475736c697374732f31061a648c5bea041a8898dfea19fffe19a8c019fffda2
646269747301636c73744a78dadbb918000217015d5840cf9679674d39578b2c60b4
9fa5f2a695dfcfff009797e67ec9edc378b7ea1961b7cf2b742fa2185e3c79dd9ba1
61844589950ca9efcd3df6afcc3f8cdad0a14f
]]></artwork>
        <t>The following is the CBOR Annotated Hex output of the example above:</t>
        <artwork><![CDATA[
d2                              # tag(18)
  84                            #   array(4)
    58 20                       #     bytes(32)
      a2012610781a6170706c6963  #       "¢\x01&\x10x\x1aapplic"
      6174696f6e2f737461747573  #       "ation/status"
      6c6973742b637774          #       "list+cwt"
    a1                          #     map(1)
      04                        #       uint(4)
      42                        #       bytes(2)
        3132                    #         "12"
    58 50                       #     bytes(80)
      a502782168747470733a2f2f  #       "¥\x02x!https://"
      6578616d706c652e636f6d2f  #       "example.com/"
      7374617475736c697374732f  #       "statuslists/"
      31061a648c5bea041a8898df  #       "1\x06\x1ad\x8c[ê\x04\x1a\x88\x98ß"
      ea19fffe19a8c019fffda264  #       "ê\x19ÿþ\x19¨À\x19ÿý¢d"
      6269747301636c73744a78da  #       "bits\x01clstJxÚ"
      dbb918000217015d          #       "Û¹\x18\x00\x02\x17\x01]"
    58 40                       #     bytes(64)
      cf9679674d39578b2c60b49f  #       "Ï\x96ygM9W\x8b,`´\x9f"
      a5f2a695dfcfff009797e67e  #       "¥ò¦\x95ßÏÿ\x00\x97\x97æ~"
      c9edc378b7ea1961b7cf2b74  #       "ÉíÃx·ê\x19a·Ï+t"
      2fa2185e3c79dd9ba1618445  #       "/¢\x18^<yÝ\x9b¡a\x84E"
      89950ca9efcd3df6afcc3f8c  #       "\x89\x95\x0c©ïÍ=ö¯Ì?\x8c"
      dad0a14f                  #       "ÚÐ¡O"
]]></artwork>
      </section>
    </section>
    <section anchor="referenced-token">
      <name>Referenced Token</name>
      <section anchor="status-claim">
        <name>Status Claim</name>
        <t>By including a "status" claim in a Referenced Token, the Issuer is referencing a mechanism to retrieve status information about this Referenced Token. The claim contains members used to reference to a Status List Token as defined in this specification. Other members of the "status" object may be defined by other specifications. This is analogous to "cnf" claim in Section 3.1 of <xref target="RFC7800"/> in which different authenticity confirmation methods can be included.</t>
      </section>
      <section anchor="referenced-token-jose">
        <name>Referenced Token in JOSE</name>
        <t>The Referenced Token <bcp14>MAY</bcp14> be encoded as a "JSON Web Token (JWT)" according to <xref target="RFC7519"/> or other formats based on JOSE.</t>
        <t>The following content applies to the JWT Claims Set:</t>
        <ul spacing="normal">
          <li>
            <t><tt>status</tt>: <bcp14>REQUIRED</bcp14>. The <tt>status</tt> (status) claim <bcp14>MUST</bcp14> specify a JSON Object that contains at least one reference to a status mechanism.
            </t>
            <ul spacing="normal">
              <li>
                <t><tt>status_list</tt>: <bcp14>REQUIRED</bcp14> when the status mechanism defined in this specification is used. It contains a reference to a Status List Token. It <bcp14>MUST</bcp14> at least contain the following claims:
                </t>
                <ul spacing="normal">
                  <li>
                    <t><tt>idx</tt>: <bcp14>REQUIRED</bcp14>. The <tt>idx</tt> (index) claim <bcp14>MUST</bcp14> specify an Integer that represents the index to check for status information in the Status List for the current Referenced Token. The value of <tt>idx</tt> <bcp14>MUST</bcp14> be a non-negative number, containing a value of zero or greater.</t>
                  </li>
                  <li>
                    <t><tt>uri</tt>: <bcp14>REQUIRED</bcp14>. The <tt>uri</tt> (URI) claim <bcp14>MUST</bcp14> specify a String value that identifies the Status List Token containing the status information for the Referenced Token. The value of <tt>uri</tt> <bcp14>MUST</bcp14> be a URI conforming to <xref target="RFC3986"/>.</t>
                  </li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
        <t>Application of additional restrictions and policies are at the discretion of the Relying Party.</t>
        <t>The following is a non-normative example of a decoded header and payload of a Referenced Token:</t>
        <artwork type="ascii-art"><![CDATA[
{
  "alg": "ES256",
  "kid": "11"
}
.
{
  "status": {
    "status_list": {
      "idx": 0,
      "uri": "https://example.com/statuslists/1"
    }
  }
}
]]></artwork>
        <t>SD-JWT-based Verifiable Credentials <xref target="SD-JWT.VC"/> introduce the usage of a status mechanism in Section 3.2.2.2. The "status" object uses the same encoding as a JWT as defined in <xref target="referenced-token-jose"/>.</t>
        <t>The following is a non-normative example of a Referenced Token in SD-JWT-VC serialized form as received from an Issuer:</t>
        <artwork type="ascii-art"><![CDATA[
eyJhbGciOiAiRVMyNTYiLCAidHlwIjogImV4YW1wbGUrc2Qtand0In0.eyJfc2QiOiBb
Ikh2cktYNmZQVjB2OUtfeUNWRkJpTEZIc01heGNEXzExNEVtNlZUOHgxbGciXSwgImlz
cyI6ICJodHRwczovL2V4YW1wbGUuY29tL2lzc3VlciIsICJpYXQiOiAxNjgzMDAwMDAw
LCAiZXhwIjogMTg4MzAwMDAwMCwgInN1YiI6ICI2YzVjMGE0OS1iNTg5LTQzMWQtYmFl
Ny0yMTkxMjJhOWVjMmMiLCAic3RhdHVzIjogeyJzdGF0dXNfbGlzdCI6IHsiaWR4Ijog
MCwgInVyaSI6ICJodHRwczovL2V4YW1wbGUuY29tL3N0YXR1c2xpc3RzLzEifX0sICJf
c2RfYWxnIjogInNoYS0yNTYifQ.-kgS-R-Z4DEDlqb8kb6381_gHHNatsoF1fcVKZk3M
06CrnV8F8k9d2w2V_YAOvgcb0f11FqDFezXBXH30d4vcw~WyIyR0xDNDJzS1F2ZUNmR2
ZyeU5STjl3IiwgInN0cmVldF9hZGRyZXNzIiwgIlNjaHVsc3RyLiAxMiJd~WyJlbHVWN
U9nM2dTTklJOEVZbnN4QV9BIiwgImxvY2FsaXR5IiwgIlNjaHVscGZvcnRhIl0~WyI2S
Wo3dE0tYTVpVlBHYm9TNXRtdlZBIiwgInJlZ2lvbiIsICJTYWNoc2VuLUFuaGFsdCJd~
WyJlSThaV205UW5LUHBOUGVOZW5IZGhRIiwgImNvdW50cnkiLCAiREUiXQ~WyJRZ19PN
jR6cUF4ZTQxMmExMDhpcm9BIiwgImFkZHJlc3MiLCB7Il9zZCI6IFsiNnZoOWJxLXpTN
EdLTV83R3BnZ1ZiWXp6dTZvT0dYcm1OVkdQSFA3NVVkMCIsICI5Z2pWdVh0ZEZST0NnU
nJ0TmNHVVhtRjY1cmRlemlfNkVyX2o3NmttWXlNIiwgIktVUkRQaDRaQzE5LTN0aXotR
GYzOVY4ZWlkeTFvVjNhM0gxRGEyTjBnODgiLCAiV045cjlkQ0JKOEhUQ3NTMmpLQVN4V
GpFeVc1bTV4NjVfWl8ycm8yamZYTSJdfV0~
]]></artwork>
        <t>The resulting payload of the example above:</t>
        <artwork type="ascii-art"><![CDATA[
{
  "_sd": [
    "HvrKX6fPV0v9K_yCVFBiLFHsMaxcD_114Em6VT8x1lg"
  ],
  "iss": "https://example.com/issuer",
  "iat": 1683000000,
  "exp": 1883000000,
  "sub": "6c5c0a49-b589-431d-bae7-219122a9ec2c",
  "status": {
    "status_list": {
      "idx": 0,
      "uri": "https://example.com/statuslists/1"
    }
  },
  "_sd_alg": "sha-256"
}
]]></artwork>
      </section>
      <section anchor="referenced-token-cose">
        <name>Referenced Token in COSE</name>
        <t>The Referenced Token <bcp14>MAY</bcp14> be encoded as a "COSE Web Token (CWT)" object according to <xref target="RFC8392"/> or other formats based on COSE.</t>
        <t>The following content applies to the CWT Claims Set:</t>
        <ul spacing="normal">
          <li>
            <t><tt>65535</tt> (status): <bcp14>REQUIRED</bcp14>. The status claim is encoded as a <tt>Status</tt> CBOR structure and <bcp14>MUST</bcp14> include at least one data item that refers to a status mechanism. Each data item in the <tt>Status</tt> CBOR structure comprises a key-value pair, where the key must be a CBOR text string (Major Type 3) specifying the identifier of the status mechanism and the corresponding value defines its contents. This specification defines the following data items:
            </t>
            <ul spacing="normal">
              <li>
                <t><tt>status_list</tt> (status list): <bcp14>REQUIRED</bcp14> when the status mechanism defined in this specification is used. It has the same definition as the <tt>status_list</tt> claim in <xref target="referenced-token-jose"/> but <bcp14>MUST</bcp14> be encoded as a <tt>StatusListInfo</tt> CBOR structure with the following fields:
                </t>
                <ul spacing="normal">
                  <li>
                    <t><tt>idx</tt>: <bcp14>REQUIRED</bcp14>. Unsigned integer (Major Type 0) The <tt>idx</tt> (index) claim <bcp14>MUST</bcp14> specify an Integer that represents the index to check for status information in the Status List for the current Referenced Token. The value of <tt>idx</tt> <bcp14>MUST</bcp14> be a non-negative number, containing a value of zero or greater.</t>
                  </li>
                  <li>
                    <t><tt>uri</tt>: <bcp14>REQUIRED</bcp14>. Text string (Major Type 3). The <tt>uri</tt> (URI) claim <bcp14>MUST</bcp14> specify a String value that identifies the Status List Token containing the status information for the Referenced Token. The value of <tt>uri</tt> <bcp14>MUST</bcp14> be a URI conforming to <xref target="RFC3986"/>.</t>
                  </li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
        <t>Application of additional restrictions and policies are at the discretion of the Relying Party.</t>
        <t>The following is a non-normative example of a Referenced Token in CWT format in Hex:</t>
        <artwork><![CDATA[
d28443a10126a1044231325866a502653132333435017368747470733a2f2f657861
6d706c652e636f6d061a648c5bea041a8898dfea19ffffa16b7374617475735f6c69
7374a2636964780063757269782168747470733a2f2f6578616d706c652e636f6d2f
7374617475736c697374732f315840a151af9e36d104855391044a2401027848924c
3402cb3a989377072c847a09ba3fd524053fcbe2b288c227fc03361c840b34e4b05c
fae6afa8b291730573f09c
]]></artwork>
        <t>The following is the CBOR Annotated Hex output of the example above:</t>
        <artwork><![CDATA[
d2                              # tag(18)
  84                            #   array(4)
    43                          #     bytes(3)
      a10126                    #       "¡\x01&"
    a1                          #     map(1)
      04                        #       uint(4)
      42                        #       bytes(2)
        3132                    #         "12"
    58 66                       #     bytes(102)
      a50265313233343501736874  #       "¥\x02e12345\x01sht"
      7470733a2f2f6578616d706c  #       "tps://exampl"
      652e636f6d061a648c5bea04  #       "e.com\x06\x1ad\x8c[ê\x04"
      1a8898dfea19ffffa16b7374  #       "\x1a\x88\x98ßê\x19ÿÿ¡kst"
      617475735f6c697374a26369  #       "atus_list¢ci"
      647800637572697821687474  #       "dx\x00curix!htt"
      70733a2f2f6578616d706c65  #       "ps://example"
      2e636f6d2f7374617475736c  #       ".com/statusl"
      697374732f31              #       "ists/1"
    58 40                       #     bytes(64)
      a151af9e36d104855391044a  #       "¡Q¯\x9e6Ñ\x04\x85S\x91\x04J"
      2401027848924c3402cb3a98  #       "$\x01\x02xH\x92L4\x02Ë:\x98"
      9377072c847a09ba3fd52405  #       "\x93w\x07,\x84z\x09º?Õ$\x05"
      3fcbe2b288c227fc03361c84  #       "?Ëâ²\x88Â'ü\x036\x1c\x84"
      0b34e4b05cfae6afa8b29173  #       "\x0b4ä°\úæ¯¨²\x91s"
      0573f09c                  #       "\x05sð\x9c"
]]></artwork>
        <t>ISO mdoc <xref target="ISO.mdoc"/> may utilize the Status List mechanism by introducing the <tt>status</tt> parameter in the Mobile Security Object (MSO) as specified in Section 9.1.2. The <tt>status</tt> parameter uses the same encoding as a CWT as defined in <xref target="referenced-token-cose"/>.</t>
        <t>It is <bcp14>RECOMMENDED</bcp14> to use <tt>status</tt> for the label of the field that contains the <tt>Status</tt> CBOR structure.</t>
        <t>Application of additional restrictions and policies are at the discretion of the Relying Party.</t>
        <t>The following is a non-normative example of an IssuerAuth as specified in ISO mDL (also referred to as signed MSO) in Hex:</t>
        <artwork type="ascii-art"><![CDATA[
8443a10126a118215901f3308201ef30820195a00302010202140bfec7da97e048e
15ac3dacb9eafe82e64fd07f5300a06082a8648ce3d040302302331143012060355
04030c0b75746f7069612069616361310b3009060355040613025553301e170d323
4313030313030303030305a170d3235313030313030303030305a30213112301006
035504030c0975746f706961206473310b300906035504061302555330593013060
72a8648ce3d020106082a8648ce3d03010703420004ace7ab7340e5d9648c5a72a9
a6f56745c7aad436a03a43efea77b5fa7b88f0197d57d8983e1b37d3a539f4d5883
65e38cbbf5b94d68c547b5bc8731dcd2f146ba381a83081a5301c0603551d1f0415
30133011a00fa00d820b6578616d706c652e636f6d301e0603551d1204173015811
36578616d706c65406578616d706c652e636f6d301d0603551d0e0416041414e290
17a6c35621ffc7a686b7b72db06cd12351301f0603551d2304183016801454fa238
3a04c28e0d930792261c80c4881d2c00b300e0603551d0f0101ff04040302078030
150603551d250101ff040b3009060728818c5d050102300a06082a8648ce3d04030
20348003045022100b7103fd4b90529f50bd6f70c5ae5ce7f4f3d4d15a4e082812f
9fa1f5c2e5aa0a0220070b2822ec7ce6c56804923a85b2cfbffd054cf9a915f070c
fef7179a4bc6569590320d81859031ba766737461747573a16b7374617475735f6c
697374a26369647819019c63757269782168747470733a2f2f6578616d706c652e6
36f6d2f7374617475736c697374732f3167646f6354797065756f72672e69736f2e
31383031332e352e312e6d444c6776657273696f6e63312e306c76616c696469747
9496e666fa3667369676e6564c074323032342d31302d30315431333a33303a3032
5a6976616c696446726f6dc074323032342d31302d30315431333a33303a30325a6
a76616c6964556e74696cc074323032352d31302d30315431333a33303a30325a6c
76616c756544696765737473a1716f72672e69736f2e31383031332e352e31ac005
820a81d65ed5075fbd7ee19fa66e2bb3047ed826e2769873e7ef07c923da7a6f243
01582048701a9546492284d266ed81d439230a582d0e1f17a08ab1859a3efe98069
0a4025820d11fe48c8835b30bfb3895c3905436ddfb63f59ab9eee181b110985329
2a8f62035820a741bf05e20a8bc359e32426106ed0899b2c60262cc3acc637ddc99
41095fb7a045820ab67cb9a8f20a8572f77f02727367d08dc8e57fb89deb46b9c62
6e94457b7d8b055820bacddb4142b3842bd555206eb5acb27ded063294995c7e7fe
fbf93ece522604d065820bfd02b3aebdc05b53b5539226c38088d6d784b0ea0fab6
9eb9311650a48d325307582027dab70fe71da63e5e5d199e8ae5b79cbe8904bc30c
5b7544fb809e02ccb3e6a0858200dbd7ccc9c7727d3d17295f1b6f1914071670ee2
3d4d33530c31f1f406b8e3b7095820a5beb5efadf37f21637209abc519830681cc5
1f334818a823fec13b29552f5ba0a5820d8047c95f9272d7d07b2c13a9f5ac2ee02
380ab272a165e569391d89a2152c3c0b582004939930ffb4911ef03487a153605a3
0368b69f2437d6d21b4c90f92bc144c3e6d6465766963654b6579496e666fa16964
65766963654b6579a40102200121582096313d6c63e24e3372742bfdb1a33ba2c89
7dcd68ab8c753e4fbd48dca6b7f9a2258201fb3269edd418857de1b39a4e4a44b92
fa484caa722c228288f01d0c03a2c3d66f646967657374416c676f726974686d675
348412d3235365840b7c2d4abe85aa5ba814ef95de0385c71c802be8ac33a4a971a
85ed800ba7acb59cb21035f4a68fc0caa450cbefd3b255aec72f83595f0ae7b7d50
fe8a1c4cafe
]]></artwork>
        <t>The following is the CBOR Diagnostic Notation of the example above:</t>
        <artwork><![CDATA[
[
  << {
    1: -7
  } >>,
  {
    33: h'308201ef30820195a00302010202140bfec7da97e048e15ac3dacb9ea
    fe82e64fd07f5300a06082a8648ce3d04030230233114301206035504030c0b
    75746f7069612069616361310b3009060355040613025553301e170d3234313
    030313030303030305a170d3235313030313030303030305a30213112301006
    035504030c0975746f706961206473310b30090603550406130255533059301
    306072a8648ce3d020106082a8648ce3d03010703420004ace7ab7340e5d964
    8c5a72a9a6f56745c7aad436a03a43efea77b5fa7b88f0197d57d8983e1b37d
    3a539f4d588365e38cbbf5b94d68c547b5bc8731dcd2f146ba381a83081a530
    1c0603551d1f041530133011a00fa00d820b6578616d706c652e636f6d301e0
    603551d120417301581136578616d706c65406578616d706c652e636f6d301d
    0603551d0e0416041414e29017a6c35621ffc7a686b7b72db06cd12351301f0
    603551d2304183016801454fa2383a04c28e0d930792261c80c4881d2c00b30
    0e0603551d0f0101ff04040302078030150603551d250101ff040b300906072
    8818c5d050102300a06082a8648ce3d0403020348003045022100b7103fd4b9
    0529f50bd6f70c5ae5ce7f4f3d4d15a4e082812f9fa1f5c2e5aa0a0220070b2
    822ec7ce6c56804923a85b2cfbffd054cf9a915f070cfef7179a4bc6569'
  },
  << 24( << {
    "status": {
      "status_list": {
        "idx": 412,
        "uri": "https://example.com/statuslists/1"
      }
    },
    "docType": "org.iso.18013.5.1.mDL",
    "version": "1.0",
    "validityInfo": {
      "signed": 2024-10-01 13:30:02+00:00,
      "validFrom": 2024-10-01 13:30:02+00:00,
      "validUntil": 2025-10-01 13:30:02+00:00
    },
    "valueDigests": {
      "org.iso.18013.5.1": {
        0: h'a81d65ed5075fbd7ee19fa66e2bb3047ed826e2769873e7ef07c92
        3da7a6f243',
        1: h'48701a9546492284d266ed81d439230a582d0e1f17a08ab1859a3e
        fe980690a4',
        2: h'd11fe48c8835b30bfb3895c3905436ddfb63f59ab9eee181b11098
        53292a8f62',
        3: h'a741bf05e20a8bc359e32426106ed0899b2c60262cc3acc637ddc9
        941095fb7a',
        4: h'ab67cb9a8f20a8572f77f02727367d08dc8e57fb89deb46b9c626e
        94457b7d8b',
        5: h'bacddb4142b3842bd555206eb5acb27ded063294995c7e7fefbf93
        ece522604d',
        6: h'bfd02b3aebdc05b53b5539226c38088d6d784b0ea0fab69eb93116
        50a48d3253',
        7: h'27dab70fe71da63e5e5d199e8ae5b79cbe8904bc30c5b7544fb809
        e02ccb3e6a',
        8: h'0dbd7ccc9c7727d3d17295f1b6f1914071670ee23d4d33530c31f1
        f406b8e3b7',
        9: h'a5beb5efadf37f21637209abc519830681cc51f334818a823fec13
        b29552f5ba',
        10: h'd8047c95f9272d7d07b2c13a9f5ac2ee02380ab272a165e569391
        d89a2152c3c',
        11: h'04939930ffb4911ef03487a153605a30368b69f2437d6d21b4c90
        f92bc144c3e'
      }
    },
    "deviceKeyInfo": {
      "deviceKey": {
        1: 2,
        -1: 1,
        -2: h'96313d6c63e24e3372742bfdb1a33ba2c897dcd68ab8c753e4fbd
        48dca6b7f9a',
        -3: h'1fb3269edd418857de1b39a4e4a44b92fa484caa722c228288f01
        d0c03a2c3d6'
      }
    },
    "digestAlgorithm": "SHA-256"
  } >> ) >>,
  h'b7c2d4abe85aa5ba814ef95de0385c71c802be8ac33a4a971a85ed800ba7acb
  59cb21035f4a68fc0caa450cbefd3b255aec72f83595f0ae7b7d50fe8a1c4cafe'
]
]]></artwork>
      </section>
    </section>
    <section anchor="status-types">
      <name>Status Types</name>
      <t>This document defines the statuses of Referenced Tokens as Status Type values. A status describes the state, mode, condition or stage of an entity that is represented by the Referenced Token.</t>
      <t>A Status List can not represent multiple statuses per Referenced Token. If the Status List contains more than one bit per token (as defined by <tt>bits</tt> in the Status List), then the whole value of bits <bcp14>MUST</bcp14> describe one value. Status Types <bcp14>MUST</bcp14> have a numeric value between 0 and 255 for their representation in the Status List. The issuer of the Status List <bcp14>MUST</bcp14> choose an adequate <tt>bits</tt> value (bit size) to be able to describe the required Status Types for its application.</t>
      <section anchor="status-types-values">
        <name>Status Types Values</name>
        <t>This document creates a registry in <xref target="iana-status-types"/> that includes the most common Status Type values. Additional values may defined for particular use cases. Status Types described by this document comprise:</t>
        <ul spacing="normal">
          <li>
            <t>0x00 - "VALID" - The status of the Referenced Token is valid, correct or legal.</t>
          </li>
          <li>
            <t>0x01 - "INVALID" - The status of the Referenced Token is revoked, annulled, taken back, recalled or cancelled.</t>
          </li>
          <li>
            <t>0x02 - "SUSPENDED" - The status of the Referenced Token is temporarily invalid, hanging, debarred from privilege. This state is reversible.</t>
          </li>
        </ul>
        <t>The Status Type value 0x03 and Status Type values in the range 0x0B until 0x0F are permanently reserved as application specific. Meaning the processing of Status Types using these values is application specific. All other Status Type values are reserved for future registration.</t>
        <t>The processing rules for Referenced Tokens (such as JWT or CWT) precede any evaluation of a Referenced Token's status. For example, if a token is evaluated as being expired through the "exp" (Expiration Time) but also has a status of 0x00 ("VALID"), the token is considered expired.</t>
        <t>See <xref target="privacy-status-types"/> for privacy considerations on status types.</t>
      </section>
    </section>
    <section anchor="verification-and-processing">
      <name>Verification and Processing</name>
      <t>The fetching, processing and verifying of a Status List Token may be done by either the Holder or the Relying Party. In the following section is described from the role of the Relying Party, however the same rules would also apply for the Holder.</t>
      <section anchor="status-list-request">
        <name>Status List Request</name>
        <t>To obtain the Status List Token, the Relying Party <bcp14>MUST</bcp14> send an HTTP GET request to the URI provided in the Referenced Token.</t>
        <t>The HTTP endpoint <bcp14>SHOULD</bcp14> support the use of Cross-Origin Resource Sharing (CORS) <xref target="CORS"/> and/or other methods as appropriate to enable Browser-based clients to access it.</t>
        <t>The Relying Party <bcp14>SHOULD</bcp14> send the following Accept-Header to indicate the requested response type:</t>
        <ul spacing="normal">
          <li>
            <t>"application/statuslist+jwt" for Status List Token in JWT format</t>
          </li>
          <li>
            <t>"application/statuslist+cwt" for Status List Token in CWT format</t>
          </li>
        </ul>
        <t>If the Relying Party does not send an Accept Header, the response type is assumed to be known implicitly or out-of-band.</t>
        <t>A successful response that contains a Status List Token <bcp14>MUST</bcp14> use an HTTP status code in the 2xx range.</t>
        <t>A response <bcp14>MAY</bcp14> also choose to redirect the client to another URI using an HTTP status code in the 3xx range, which clients <bcp14>SHOULD</bcp14> follow. A client <bcp14>SHOULD</bcp14> detect and intervene in cyclical redirections (i.e., "infinite" redirection loops).</t>
        <t>The following are non-normative examples of a request and response for a Status List Token with type <tt>application/statuslist+jwt</tt>:</t>
        <artwork type="ascii-art"><![CDATA[
GET /statuslists/1 HTTP/1.1
Host: example.com
Accept: application/statuslist+jwt
]]></artwork>
        <artwork type="ascii-art"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/statuslist+jwt

eyJhbGciOiJFUzI1NiIsImtpZCI6IjEyIiwidHlwIjoic3RhdHVzbGlzdCtqd3QifQ.e
yJleHAiOjIyOTE3MjAxNzAsImlhdCI6MTY4NjkyMDE3MCwiaXNzIjoiaHR0cHM6Ly9le
GFtcGxlLmNvbSIsInN0YXR1c19saXN0Ijp7ImJpdHMiOjEsImxzdCI6ImVOcmJ1UmdBQ
WhjQlhRIn0sInN1YiI6Imh0dHBzOi8vZXhhbXBsZS5jb20vc3RhdHVzbGlzdHMvMSIsI
nR0bCI6NDMyMDB9.Y_-b0JGnwCYI7NQKrFsyxsJyDEEFIqqsIP03RfSBTQoxAFKjuFkE
oPSyklPbci-XnsApdQmlJkT1LQXk9h-lEg
]]></artwork>
      </section>
      <section anchor="status-list-response">
        <name>Status List Response</name>
        <t>In the successful response, the Status Provider <bcp14>MUST</bcp14> use the following content-type:</t>
        <ul spacing="normal">
          <li>
            <t>"application/statuslist+jwt" for Status List Token in JWT format</t>
          </li>
          <li>
            <t>"application/statuslist+cwt" for Status List Token in CWT format</t>
          </li>
        </ul>
        <t>In the case of "application/statuslist+jwt", the response <bcp14>MUST</bcp14> be of type JWT and follow the rules of <xref target="status-list-token-jwt"/>.
In the case of "application/statuslist+cwt", the response <bcp14>MUST</bcp14> be of type CWT and follow the rules of <xref target="status-list-token-cwt"/>.</t>
        <t>The HTTP response <bcp14>SHOULD</bcp14> use gzip Content-Encoding as defined in <xref target="RFC9110"/>.</t>
        <t>If caching-related HTTP headers are present in the HTTP response, Relying Parties <bcp14>SHOULD</bcp14> prioritize the exp and ttl claims within the Status List Token over the HTTP headers for determining caching behavior.</t>
      </section>
      <section anchor="validation-rules">
        <name>Validation Rules</name>
        <t>Upon receiving a Referenced Token, a Relying Party <bcp14>MUST</bcp14> first perform the validation of the Referenced Token - e.g., checking for expected attributes, valid signature and expiration time. The processing rules for Referenced Tokens (such as JWT or CWT) precede any evaluation of a Referenced Token's status. For example, if a token is evaluated as being expired through the "exp" (Expiration Time) but also has a status of 0x00 ("VALID"), the token is considered expired. As this is out of scope for this document, this validation is not described here, but is expected to be done according to the format of the Referenced Token.</t>
        <t>If this validation is not successful, the Referenced Token <bcp14>MUST</bcp14> be rejected. If the validation was successful, the Relying Party <bcp14>MUST</bcp14> perform the following validation steps to evaluate the status of the reference token:</t>
        <ol spacing="normal" type="1"><li>
            <t>Check for the existence of a <tt>status</tt> claim, check for the existence of a <tt>status_list</tt> claim within the <tt>status</tt> claim and validate that the content of <tt>status_list</tt> adheres to the rules defined in <xref target="referenced-token-jose"/> for JOSE-based Referenced Tokens and <xref target="referenced-token-cose"/> for COSE-based Referenced Tokens. Other formats of Referenced Tokens may define other encoding of the URI and index.</t>
          </li>
          <li>
            <t>Resolve the Status List Token from the provided URI</t>
          </li>
          <li>
            <t>Validate the Status List Token:
            </t>
            <ol spacing="normal" type="1"><li>
                <t>Validate the Status List Token by following the rules defined in section 7.2 of <xref target="RFC7519"/> for JWTs and section 7.2 of <xref target="RFC8392"/> for CWTs. This step might require the resolution of a public key as described in <xref target="key-management"/>.</t>
              </li>
              <li>
                <t>Check for the existence of the required claims as defined in <xref target="status-list-token-jwt"/> and <xref target="status-list-token-cwt"/> depending on the token type</t>
              </li>
            </ol>
          </li>
          <li>
            <t>All existing claims in the Status List Token <bcp14>MUST</bcp14> be checked according to the rules in <xref target="status-list-token-jwt"/> and <xref target="status-list-token-cwt"/>
            </t>
            <ol spacing="normal" type="1"><li>
                <t>The subject claim (<tt>sub</tt> or <tt>2</tt>) of the Status List Token <bcp14>MUST</bcp14> be equal to the <tt>uri</tt> claim in the <tt>status_list</tt> object of the Referenced Token</t>
              </li>
              <li>
                <t>If the Relying Party has custom policies regarding the freshness of the Status List Token, it <bcp14>SHOULD</bcp14> check the issued at claim (<tt>iat</tt> or <tt>6</tt>)</t>
              </li>
              <li>
                <t>If the expiration time is defined (<tt>exp</tt> or <tt>4</tt>), it <bcp14>MUST</bcp14> be checked if the Status List Token is expired</t>
              </li>
              <li>
                <t>If the Relying Party is using a system for caching the Status List Token, it <bcp14>SHOULD</bcp14> check the <tt>ttl</tt> claim of the Status List Token and retrieve a fresh copy if (time status was resolved + ttl &lt; current time)</t>
              </li>
            </ol>
          </li>
          <li>
            <t>Decompress the Status List with a decompressor that is compatible with DEFLATE <xref target="RFC1951"/> and ZLIB <xref target="RFC1950"/></t>
          </li>
          <li>
            <t>Retrieve the status value of the index specified in the Referenced Token as described in <xref target="status-list"/>. Fail if the provided index is out of bounds of the Status List</t>
          </li>
          <li>
            <t>Check the status value as described in <xref target="status-types"/></t>
          </li>
        </ol>
        <t>If any of these checks fails, no statement about the status of the Referenced Token can be made and the Referenced Token <bcp14>SHOULD</bcp14> be rejected.</t>
      </section>
      <section anchor="historical-resolution">
        <name>Historical resolution</name>
        <t>By default, the status mechanism defined in this specification only conveys information about the state of Reference Tokens at the time the Status List Token was issued. The validity period for this information, as defined by the issuer, is explicitly stated by the <tt>iat</tt> (issued at) and <tt>exp</tt> (expiration time) claims for JWT and their corresponding ones for the CWT representation. If support for historical status information is required, this can be achieved by extending the request for the Status List Token as defined in <xref target="status-list-request"/> with a timestamp. This feature has additional privacy implications as described in <xref target="privacy-historical"/>.</t>
        <t>To obtain the Status List Token, the Relying Party <bcp14>MUST</bcp14> send an HTTP GET request to the URI provided in the Referenced Token with the additional query parameter <tt>time</tt> and its value being a unix timestamp. The response for a valid request <bcp14>SHOULD</bcp14> contain a Status List Token that was valid for that specified time or an error.</t>
        <t>If the Server does not support the additional query parameter, it <bcp14>SHOULD</bcp14> return a status code of 501 (Not Implemented) or if the requested time is not supported it <bcp14>SHOULD</bcp14> return a status code of 406 (Not Acceptable). A Status List Token might be served via static file hosting (e.g., leveraging a Content Delivery Network), which would result in the client not being able to retrieve those status codes. Thus, the client <bcp14>MUST</bcp14> verify support for this feature by verifying that the requested timestamp is within the valid time of the returned token signaled via <tt>iat</tt> (<tt>6</tt> for CWT) and <tt>exp</tt> (<tt>4</tt> for CWT).</t>
        <t>The following is a non-normative example of a GET request using the <tt>time</tt> query parameter:</t>
        <artwork type="ascii-art"><![CDATA[
GET /statuslists/1?time=1686925000 HTTP/1.1
Host: example.com
Accept: application/statuslist+jwt
]]></artwork>
        <t>The following is a non-normative example of a response for the above Request:</t>
        <artwork type="ascii-art"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/statuslist+jwt

eyJhbGciOiJFUzI1NiIsImtpZCI6IjEyIiwidHlwIjoic3RhdHVzbGlzdCtqd3QifQ.e
yJleHAiOjIyOTE3MjAxNzAsImlhdCI6MTY4NjkyMDE3MCwiaXNzIjoiaHR0cHM6Ly9le
GFtcGxlLmNvbSIsInN0YXR1c19saXN0Ijp7ImJpdHMiOjEsImxzdCI6ImVOcmJ1UmdBQ
WhjQlhRIn0sInN1YiI6Imh0dHBzOi8vZXhhbXBsZS5jb20vc3RhdHVzbGlzdHMvMSIsI
nR0bCI6NDMyMDB9.Y_-b0JGnwCYI7NQKrFsyxsJyDEEFIqqsIP03RfSBTQoxAFKjuFkE
oPSyklPbci-XnsApdQmlJkT1LQXk9h-lEg
]]></artwork>
      </section>
    </section>
    <section anchor="aggregation">
      <name>Status List Aggregation</name>
      <t>Status List Aggregation is an optional mechanism to retrieve a list of URIs to all Status List Tokens, allowing a Relying Party to fetch all relevant Status Lists for a specific type of Referenced Token or Issuer. This mechanism is intended to support fetching and caching mechanisms and allow offline validation of the status of a reference token for a period of time.</t>
      <t>If a Relying Party encounters an invalid Status List referenced in the response from the Status List Aggregation endpoint, it <bcp14>SHOULD</bcp14> continue processing the other valid Status Lists referenced in the response.</t>
      <t>There are two options for a Relying Party to retrieve the Status List Aggregation.
An Issuer <bcp14>MAY</bcp14> support any of these mechanisms:</t>
      <ul spacing="normal">
        <li>
          <t>Issuer metadata: The Issuer of the Referenced Token publishes an URI which links to Status List Aggregation, e.g. in publicly available metadata of an issuance protocol</t>
        </li>
        <li>
          <t>Status List Parameter: The Status Issuer includes an additional claim in the Status List Token that contains the Status List Aggregation URI.</t>
        </li>
      </ul>
      <t>~~~ ascii art
                                      ┌─────────────────┐
                                      │                 │
                                      │ Issuer Metadata │
                                      │                 │
                                      └───┬─────────────┘
                                          │
  ┌───────────────────┐                   │ link within metadata
 ┌───────────────────┐│  link all         ▼
┌───────────────────┐││◄───────┐  ┌─────────────────────────┐
│                   ││◄────────┤  │                         │
│ Status List Token │◄┴────────┴──┤ Status List Aggregation │
│                   │┘            │                         │
└───────┬───────────┘             └─────────────────────────┘
        │                                 ▲
        │   link by aggregation_uri       │
        └─────────────────────────────────┘
~~~</t>
      <section anchor="issuer-metadata">
        <name>Issuer Metadata</name>
        <t>The Issuer <bcp14>MAY</bcp14> link to the Status List Aggregation URI in metadata that can be provided by different means like .well-known metadata as is used commonly in OAuth and OpenID or via a VICAL extension for ISO mDoc / mDL. If the Issuer is an OAuth Authorization Server according to <xref target="RFC6749"/>, it is <bcp14>RECOMMENDED</bcp14> to use <tt>status_list_aggregation_endpoint</tt> for its metadata defined by <xref target="RFC8414"/>.</t>
        <t>The concrete specification on how this is implemented depends on the specific ecosystem and is out of scope of this specification.</t>
      </section>
      <section anchor="status-list-parameter">
        <name>Status List Parameter</name>
        <t>The URI to the Status List Aggregation <bcp14>MAY</bcp14> be provided as the optional parameter <tt>aggregation_uri</tt> in the Status List itself as explained in <xref target="status-list-cbor"/> and <xref target="status-list-json"/> respectively. A Relying Party may use this URI to retrieve an up-to-date list of relevant Status Lists.</t>
      </section>
      <section anchor="status-list-aggregation-in-json-format">
        <name>Status List Aggregation in JSON Format</name>
        <t>This section defines the structure for a JSON-encoded Status List Aggregation:</t>
        <ul spacing="normal">
          <li>
            <t><tt>status_lists</tt>: <bcp14>REQUIRED</bcp14>. JSON array of strings that contains URIs linking to Status List Tokens.</t>
          </li>
        </ul>
        <t>The Status List Aggregation URI provides a list of Status List URIs. This aggregation in JSON and the media type return <bcp14>SHOULD</bcp14> be <tt>application/json</tt>. A Relying Party can iterate through this list and fetch all Status List Tokens before encountering the specific URI in a Referenced Token.</t>
        <t>The following is a non-normative example for media type <tt>application/json</tt>:</t>
        <sourcecode type="json"><![CDATA[
{
   "status_lists" : [
      "https://example.com/statuslists/1",
      "https://example.com/statuslists/2",
      "https://example.com/statuslists/3"
   ]
}
]]></sourcecode>
      </section>
    </section>
    <section anchor="x509-certificate-extensions">
      <name>X.509 Certificate Extensions</name>
      <section anchor="eku">
        <name>Extended Key Usage Extension</name>
        <t><xref target="RFC5280"/> specifies the Extended Key Usage (EKU) X.509 certificate extension for use on end entity certificates. The extension indicates one or more purposes for which the certified public key is valid. The EKU extension can be used in conjunction with the Key Usage (KU) extension, which indicates the set of basic cryptographic operations for which the certified key may be used. A certificate's issuer explicitly delegates Status List Token signing authority by issuing a X.509 certificate containing the KeyPurposeId defined below in the extended key usage extension.</t>
        <t>The following OID is defined for usage in the EKU extension</t>
        <t>```
   id-kp  OBJECT IDENTIFIER  ::=
       { iso(1) identified-organization(3) dod(6) internet(1)
         security(5) mechanisms(5) pkix(7) 3 }</t>
        <t>id-kp-oauthStatusListSigning             OBJECT IDENTIFIER ::= { id-kp TBD }
```</t>
      </section>
    </section>
    <section anchor="Security">
      <name>Security Considerations</name>
      <t>The Status List as defined in <xref target="status-list"/> only exists in cryptographically secured containers which allows checking the integrity and origin without relying on other aspects like transport security (e.g., the web PKI).</t>
      <section anchor="correct-decoding-and-parsing-of-the-encoded-status-list">
        <name>Correct decoding and parsing of the encoded Status List</name>
        <t>Implementers should be particularly careful for the correct parsing and decoding of the Status List. Incorrect implementations might check the index on the wrong data or miscalculate the bit and byte index leading to an erroneous status of the Referenced Token. Beware, that bits are indexed (bit order) from least significant bit to most significant bit (also called "right to left") while bytes are indexed (byte order) in their natural incrementing byte order (usually written for display purpose from left to right). Endianness does not apply here because each status value fits within a single byte.</t>
        <t>Implementations are <bcp14>RECOMMENDED</bcp14> to verify correctness using the test vectors given by this specification.</t>
      </section>
      <section anchor="security-guidance-for-jwt-and-cwt">
        <name>Security Guidance for JWT and CWT</name>
        <t>A Status List Token in the JWT format should follow the security considerations of <xref target="RFC7519"/> and the best current practices of <xref target="RFC8725"/>.</t>
        <t>A Status List Token in the CWT format should follow the security considerations of <xref target="RFC8392"/>.</t>
      </section>
      <section anchor="key-management">
        <name>Key Resolution and Trust Management</name>
        <t>This specification does not mandate specific methods for key resolution and trust management, however the following recommendations are made for specifications, profiles, or ecosystems that are planning ot make use of the Status List mechanism:</t>
        <t>If the Issuer of the Referenced Token is the same entity as the Status Issuer, then the same key that is embedded into the Referenced Token may be used for the Status List Token. In this case the Status List Token may use:
- the same <tt>x5c</tt> value or an <tt>x5t</tt>, <tt>x5t#S256</tt> or <tt>kid</tt> parameter referencing to the same key as used in the Referenced Token for JOSE.
- the same <tt>x5chain</tt> value or an <tt>x5t</tt> or <tt>kid</tt> parameter referencing to the same key as used in the Referenced Token for COSE.</t>
        <t>Alternatively, the Status Issuer may use the same web-based key resolution that is used for the Referenced Token. In this case the Status List Token may use:
- an <tt>x5u</tt>, <tt>jwks</tt>, <tt>jwks_uri</tt> or <tt>kid</tt> parameter referencing to a key using the same web-based resolution as used in the Referenced Token for JOSE.
- an <tt>x5u</tt> or <tt>kid</tt> parameter referencing to a key using the same web-based resolution as used in the Referenced Token for COSE.</t>
        <artwork type="ascii-art"><![CDATA[
┌────────┐  host keys  ┌──────────────────────┐
│ Issuer ├────────┬───►│ .well-known metadata │
└─┬──────┘        │    └──────────────────────┘
  ▼ update status │
┌───────────────┐ │
│ Status Issuer ├─┘
└─┬─────────────┘
  ▼ provide Status List
┌─────────────────┐
│ Status Provider │
└─────────────────┘
]]></artwork>
        <t>If the Issuer of the Referenced Token is a different entity than the Status Issuer, then the keys used for the Status List Token may be cryptographically linked, e.g. by an Certificate Authority through an x.509 PKI. The certificate of the Issuer for the Referenced Token and the Status Issuer should be issued by the same Certificate Authority and the Status Issuer's certificate should utilize <xref target="eku">extended key usage</xref>.</t>
        <artwork type="ascii-art"><![CDATA[
┌───────────────────────┐
│ Certificate Authority │
└─┬─────────────────────┘
  │ authorize
  │  ┌────────┐
  ├─►│ Issuer │
  │  └─┬──────┘
  │    ▼ update status
  │  ┌───────────────┐
  └─►│ Status Issuer │
     └─┬─────────────┘
       ▼ provide Status List
     ┌─────────────────┐
     │ Status Provider │
     └─────────────────┘
]]></artwork>
      </section>
      <section anchor="status-list-caching">
        <name>Status List Caching</name>
        <t>When fetching a Status List Token, Relying Parties must carefully evaluate how long a Status List is cached for. Collectively the <tt>iat</tt>, <tt>exp</tt> and <tt>ttl</tt> claims when present in a Status List Token communicate how long a Status List should be cached and should be considered valid for. The following diagram illustrates the relationship between these claims and how they are designed to influence caching.</t>
        <artwork type="ascii-art"><![CDATA[
Time of fetching

         │
         │            Check for        Check for        Check for
         │             updates          updates          updates
         │
 iat     │                │                │                │    exp
         │                │                │                │
  │      │                │                │                │     │
  │      │                │                │                │     │
  │      │                │                │                │     │
  │      │                │                │                │     │
  │      │      ttl       │      ttl       │      ttl       │     │
  │      │ ─────────────► │ ─────────────► │ ─────────────► │ ──► │
  │      │                │                │                │     │
  │      │                │                │                │     │
  │                                                               │
──┼───────────────────────────────────────────────────────────────┼─►
  │                                                               │
]]></artwork>
        <t>It is essential to understand the distinct purposes of the <tt>ttl</tt> and <tt>exp</tt> claims. The <tt>ttl</tt> claim represents a duration to be interpreted relative to the time the Status List is fetched, indicating when a new version of the Status List may be available. In contrast, the <tt>exp</tt> claim specifies an absolute timestamp, marking the point in time when the Status List expires and <bcp14>MUST NOT</bcp14> be relied upon any longer. Together, these claims provide guidance on when to check for updates (<tt>ttl</tt> claim) and when the Status List must be refreshed or replaced (<tt>exp</tt> claim).</t>
      </section>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <section anchor="privacy-issuer">
        <name>Observability of Issuers</name>
        <t>The main privacy consideration for a Status List, especially in the context of the Issuer-Holder-Verifier model <xref target="SD-JWT.VC"/>, is to prevent the Issuer from tracking the usage of the Referenced Token when the status is being checked. If an Issuer offers status information by referencing a specific token, this would enable him to create a profile for the issued token by correlating the date and identity of Relying Parties, that are requesting the status.</t>
        <t>The Status List approaches these privacy implications by integrating the status information of many Referenced Tokens into the same list. Therefore, the Issuer does not learn for which Referenced Token the Relying Party is requesting the Status List. The privacy of the Holder is protected by the anonymity within the set of Referenced Tokens in the Status List, also called herd privacy. This limits the possibilities of tracking by the Issuer.</t>
        <t>The herd privacy is depending on the number of entities within the Status List called its size. A larger size results in better privacy but also impacts the performance as more data has to be transferred to read the Status List.</t>
        <t>Additionally, the Issuer may analyse data from the HTTP request to identify the Relying Party, e.g. through the sender's IP address.</t>
        <t>This behaviour may be mitigated by:</t>
        <ul spacing="normal">
          <li>
            <t>private relay protocols or other mechanisms hiding the original sender like <xref target="RFC9458"/>.</t>
          </li>
          <li>
            <t>using trusted Third Party Hosting, see <xref target="third-party-hosting"/>.</t>
          </li>
        </ul>
      </section>
      <section anchor="malicious-issuers">
        <name>Malicious Issuers</name>
        <t>A malicious Issuer could bypass the privacy benefits of the herd privacy by generating a unique Status List for every Referenced Token. By these means, he could maintain a mapping between Referenced Tokens and Status Lists and thus track the usage of Referenced Tokens by utilizing this mapping for the incoming requests. This malicious behaviour could be detected by Relying Parties that request large amounts of Referenced Tokens by comparing the number of different Status Lists and their sizes.</t>
      </section>
      <section anchor="privacy-relying-party">
        <name>Observability of Relying Parties</name>
        <t>Once the Relying Party receives the Referenced Token, this enables them to request the Status List to validate its status through the provided <tt>uri</tt> parameter and look up the corresponding <tt>index</tt>. However, the Relying Party may persistently store the <tt>uri</tt> and <tt>index</tt> of the Referenced Token to request the Status List again at a later time. By doing so regularly, the Relying Party may create a profile of the Referenced Token's validity status. This behaviour may be intended as a feature, e.g. for a KYC process that requires regular validity checks, but might also be abused in cases where this is not intended and unknown to the Holder, e.g. profiling the suspension of a driving license or checking the employment status of an employee credential.</t>
        <t>This behaviour could be mitigated by:</t>
        <ul spacing="normal">
          <li>
            <t>regular re-issuance of the Referenced Token, see <xref target="implementation-lifecycle"/>.</t>
          </li>
        </ul>
      </section>
      <section anchor="privacy-outsider">
        <name>Observability of Outsiders</name>
        <t>Outside actors may analyse the publicly available Status Lists to get information on the internal processes of the Issuer and his related business. This data may allow inferences on the total number of issued Reference Tokens and the revocation rate. Additionally, actors may regularly fetch this data or use the historic data functionality to learn how these numbers change over time.</t>
        <t>This behaviour could be mitigated by:</t>
        <ul spacing="normal">
          <li>
            <t>disable the historical data feature <xref target="historical-resolution"/></t>
          </li>
          <li>
            <t>disable the Status List Aggregation <xref target="aggregation"/></t>
          </li>
          <li>
            <t>choose non-sequential, pseudo-random or random indices</t>
          </li>
          <li>
            <t>use decoy entries to obfuscate the real number of Referenced Tokens within a Status List</t>
          </li>
          <li>
            <t>choose to deploy and utilize multiple Status Lists simultaneously</t>
          </li>
        </ul>
      </section>
      <section anchor="unlinkability">
        <name>Unlinkability</name>
        <t>The tuple of uri and index inside the Referenced Token are unique and therefore is traceable data.</t>
        <section anchor="colluding-relying-parties">
          <name>Colluding Relying Parties</name>
          <t>Two or more colluding Relying Parties may link two transactions involving the same Referenced Token by comparing the status claims of received Referenced Tokens and therefore determine that they have interacted with the same Holder.</t>
          <t>To avoid privacy risks for colluding Relying Parties, it is <bcp14>RECOMMENDED</bcp14> that Issuers provide the ability to issue batches of one-time-use Referenced Tokens, enabling Holders to use in a single interaction with a Relying Party before discarding. See <xref target="implementation-lifecycle"/> to avoid further correlatable information by the values of <tt>uri</tt> and <tt>index</tt>, Status Issuers are <bcp14>RECOMMENDED</bcp14> to:</t>
          <ul spacing="normal">
            <li>
              <t>choose non-sequential, pseudo-random or random indices</t>
            </li>
            <li>
              <t>use decoy entries to obfuscate the real number of Referenced Tokens within a Status List</t>
            </li>
            <li>
              <t>choose to deploy and utilize multiple Status Lists simultaneously</t>
            </li>
          </ul>
        </section>
        <section anchor="colluding-status-issuer-and-relying-party">
          <name>Colluding Status Issuer and Relying Party</name>
          <t>A Status Issuer and a Relying Party Issuer may link two transaction involving the same Referenced Tokens by comparing the status claims of the Referenced Token and therefore determine that they have interacted with the same Holder. It is therefore recommended to use Status Lists for Referenced Token formats that have similar unlinkability properties.</t>
        </section>
      </section>
      <section anchor="third-party-hosting">
        <name>External Status Provider for Privacy</name>
        <t>If the roles of the Status Issuer and the Status Provider are performed by different entities, this may give additional privacy assurances as the Issuer has no means to identify the Relying Party or its request.</t>
        <t>Third-Party hosting may also allow for greater scalability, as the Status List Tokens may be served by operators with greater resources, like CDNs, while still ensuring authenticity and integrity of Token Status List, as it is signed by the Status Issuer.</t>
      </section>
      <section anchor="privacy-historical">
        <name>Historical Resolution</name>
        <t>By default, this specification only supports providing Status List information for the most recent status information and does not allow the lookup of historical information like a validity state at a specific point in time. There exists optional support for a query parameter that allows these kind of historic lookups as described in <xref target="historical-resolution"/>. There are scenarios where such a functionality is necessary, but this feature should only be implemented when the scenario and the consequences of enabling historical resolution are fully understood.</t>
        <t>There are strong privacy concerns that have to be carefully taken into consideration when providing a mechanism that allows historic requests for status information - see <xref target="privacy-relying-party"/> for more details. Support for this functionality is optional and Implementers are <bcp14>RECOMMENDED</bcp14> to not support historic requests unless there are strong reasons to do so and after carefully considering the privacy implications.</t>
      </section>
      <section anchor="privacy-status-types">
        <name>Status Types</name>
        <t>As previously explained, there is the potential risk of observability by Relying Parties (see <xref target="privacy-relying-party"/>) and Outsiders (see <xref target="privacy-outsider"/>). That means that any Status Type that transports special information about a Token can leak information to other parties. This documents defines one additional Status Type with "SUSPENDED" that conveys such additional information. Depending on the use-case, suspended could for example provide information that an authorization in the Token is suspended, but the token itself is still valid.</t>
        <t>A concrete example would be a driver's license, where the digital driver's license might still be useful to prove other information about its holder, but suspended could signal that it should not be considered valid in the scope of being allowed to drive a car. This case could be solved by either introducing a special status type, or by revoking the Token and re-issuing with changed attributes. For such a case, the status type suspended might be dangerous as it would leak the information of a suspended driver's license even if the driver's license is used as a mean of identification and not in the context of driving a car. This could also allow for the unwanted collection of statistical data on the status of driver's licenses.</t>
        <t>Ecosystems that want to use other Status Types than "VALID" and "INVALID" should consider the possible leakage of data and profiling possibilities before doing so and evaluate if revocation and re-issuance might a better fit for their use-case.</t>
      </section>
    </section>
    <section anchor="implementation">
      <name>Implementation Considerations</name>
      <section anchor="implementation-lifecycle">
        <name>Token Lifecycle</name>
        <t>The lifetime of a Status List Token depends on the lifetime of its Referenced Tokens. Once all Referenced Tokens are expired, the Issuer may stop serving the Status List Token.</t>
        <t>Referenced Tokens may be regularly re-issued to mitigate the linkability of presentations to Relying Parties. In this case, every re-issued Referenced Token <bcp14>MUST</bcp14> have a fresh Status List entry in order to prevent this from becoming a possible source of correlation.</t>
        <t>Referenced Tokens may also be issued in batches and be presented by Holders in a one-time-use policy to avoid linkability. In this case, every Referenced Token <bcp14>MUST</bcp14> have a dedicated Status List entry and <bcp14>MAY</bcp14> be spread across multiple Status Lists. Revoking batch-issued Referenced Tokens might reveal this correlation later on.</t>
      </section>
      <section anchor="default-values-and-double-allocation">
        <name>Default Values and Double Allocation</name>
        <t>Implementations producing Status Lists are <bcp14>RECOMMENDED</bcp14> to initialize the Status List byte array with a default value and provide this as an initialization parameter to the Issuer. The Issuer is <bcp14>RECOMMENDED</bcp14> to use a default value that represents the most common value for its Referenced Tokens to avoid an update during issuance.</t>
        <t>Implementations producing Status Lists are <bcp14>RECOMMENDED</bcp14> to prevent double allocation, i.e. re-using the same <tt>uri</tt> and <tt>index</tt> for multiple Referenced Tokens. The Issuer <bcp14>MUST</bcp14> prevent any unintended double allocation by using the Status List.</t>
      </section>
      <section anchor="status-list-size">
        <name>Status List Size</name>
        <t>The storage and transmission size of the Status Issuer's Status List Tokens depends on:
- the size of the Status List, i.e. the number of Referenced Tokens
- the revocation rate and distribution of the Status List data (due to compression, revocation rates close to 0% or 100% create lowest sizes while revocation rates closer to 50% and random distribution create highest sizes)
- the lifetime of Referenced Tokens (shorter lifetimes allows for earlier retirement of Status List Tokens)</t>
        <t>The Status List Issuer may increase the size of a Status List if it requires indices for additional Referenced Tokens. It is <bcp14>RECOMMENDED</bcp14> that the size of a Status List in bits is divisible in bytes (8 bits) without a remainder, i.e. <tt>size-in-bits</tt> % 8 = 0.</t>
        <t>The Status List Issuer may divide its Referenced Tokens up into multiple Status Lists to reduce the transmission size of an individual Status List Token. This may be useful for setups where some entities operate in constrained environments, e.g. for mobile internet or embedded devices. The Status List Issuer may organize the Status List Tokens depending on the Referenced Token's expiry date to align their lifecycles and allow for easier retiring of Status List Tokens, however the Status Issuer must be aware of possible privacy risks due to correlations.</t>
      </section>
      <section anchor="external-status-issuer">
        <name>External Status Issuer</name>
        <t>If the roles of the Issuer of the Referenced Token and the Status Issuer are performed by different entities, this may allow for use case that require revocations of Referenced Tokens to be managed by a different entities, e.g. for regulatory or privacy reasons. In this scenario both parties must align on:</t>
        <ul spacing="normal">
          <li>
            <t>the key and trust management as described in <xref target="key-management"/></t>
          </li>
          <li>
            <t>parameters for the Status List
            </t>
            <ul spacing="normal">
              <li>
                <t>number of <tt>bits</tt> for the Status Type as described in <xref target="status-list"/></t>
              </li>
              <li>
                <t>update cycle of the Issuer used for <tt>ttl</tt> in the Status List Token as described in <xref target="status-list-token"/></t>
              </li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="external-status-provider-for-scalability">
        <name>External Status Provider for Scalability</name>
        <t>If the roles of the Status Issuer and the Status Provider are performed by different entities, this may allow for greater scalability, as the Status List Tokens may be served by operators with greater resources, like CDNs. At the same time the authenticity and integrity of Token Status List is still guaranteed, as it is signed by the Status Issuer.</t>
      </section>
      <section anchor="relying-parties-avoiding-correlatable-information">
        <name>Relying Parties avoiding correlatable Information</name>
        <t>If the Relying Party does not require the Referenced Token and the Status List Token after the presentation, e.g. for subsequent status checks or audit trail, it is <bcp14>RECOMMENDED</bcp14> to delete correlatable information, in particular:</t>
        <ul spacing="normal">
          <li>
            <t>the <tt>status</tt> claim in the Referenced Token</t>
          </li>
          <li>
            <t>the Status List Token itself</t>
          </li>
        </ul>
        <t>The Relying Party should instead only keep the relevant payload from the Referenced Token.</t>
      </section>
      <section anchor="status-list-formats">
        <name>Status List Formats</name>
        <t>This specification defines 2 different token formats of the Status List:</t>
        <ul spacing="normal">
          <li>
            <t>JWT</t>
          </li>
          <li>
            <t>CWT</t>
          </li>
        </ul>
        <t>This specification states no requirements to not mix different formats like a CBOR based Referenced Token using a JWT for the Status List, but the expectation is that within an ecosystem, a choice for specific formats is made.
Within such an ecosystem, only support for those selected variants is required and implementations should know what to expect via a profile.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="json-web-token-claims-registration">
        <name>JSON Web Token Claims Registration</name>
        <t>This specification requests registration of the following Claims in the
IANA "JSON Web Token Claims" registry <xref target="IANA.JWT"/> established by <xref target="RFC7519"/>.</t>
        <section anchor="registry-contents">
          <name>Registry Contents</name>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>status</tt></t>
            </li>
            <li>
              <t>Claim Description: Reference to a status or validity mechanism containing up-to-date status information on the JWT.</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-claim"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>status_list</tt></t>
            </li>
            <li>
              <t>Claim Description: A status list containing up-to-date status information on multiple tokens.</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-list-token-jwt"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>ttl</tt></t>
            </li>
            <li>
              <t>Claim Description: Time to Live</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-list-token-jwt"/> of this specification</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="iana-registry">
        <name>JWT Status Mechanisms Registry</name>
        <t>This specification establishes the IANA "JWT Status Mechanisms" registry for JWT "status" member values and adds it to the "JSON Web Token (JWT)" registry group at https://www.iana.org/assignments/jwt. The registry records the status mechanism member and a reference to the specification that defines it.</t>
        <t>JWT Status Mechanisms are registered by Specification Required <xref target="RFC5226"/> after a three-week
review period on the jwt-reg-review@ietf.org mailing list, on the advice of one or more Designated Experts.
However, to allow for the allocation of names prior to publication, the Designated Expert(s) may approve
registration once they are satisfied that such a specification will be published.</t>
        <t>Registration requests sent to the mailing list for review should use an appropriate subject (e.g., "Request to register JWT Status Mechanism: example").</t>
        <t>Within the review period, the Designated Expert(s) will either approve or deny the registration request, communicating this decision
to the review list and IANA. Denials should include an explanation and, if applicable, suggestions as to how to make the request
successful.</t>
        <t>IANA must only accept registry updates from the Designated Expert(s) and should direct all requests for registration to the review mailing list.</t>
        <section anchor="registration-template">
          <name>Registration Template</name>
          <t>Status Mechanism Value:</t>
          <ul empty="true">
            <li>
              <t>The name requested (e.g., "status_list"). The name is case sensitive. Names may not match other registered names in a case-insensitive manner unless the Designated Experts state that there is a compelling reason to allow an exception.</t>
            </li>
          </ul>
          <t>Status Mechanism Description:</t>
          <ul empty="true">
            <li>
              <t>Brief description of the status mechanism.</t>
            </li>
          </ul>
          <t>Change Controller:</t>
          <ul empty="true">
            <li>
              <t>For IETF Stream RFCs, list the IETF. For others, give the name of the responsible party. Other details (e.g., postal address, email address, home page URI) may also be included.</t>
            </li>
          </ul>
          <t>Specification Document(s):</t>
          <ul empty="true">
            <li>
              <t>Reference to the document or documents that specify the parameter, preferably including URIs that can be used to retrieve copies of the documents. An indication of the relevant sections may also be included but is not required.</t>
            </li>
          </ul>
        </section>
        <section anchor="initial-registry-contents">
          <name>Initial Registry Contents</name>
          <ul spacing="normal">
            <li>
              <t>Status Mechanism Value: <tt>status_list</tt></t>
            </li>
            <li>
              <t>Status Mechanism Description: A status list containing up-to-date status information on multiple tokens.</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="referenced-token-jose"/> of this specification</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="cbor-web-token-claims-registration">
        <name>CBOR Web Token Claims Registration</name>
        <t>This specification requests registration of the following Claims in the
IANA "CBOR Web Token (CWT) Claims" registry <xref target="IANA.CWT"/> established by <xref target="RFC8392"/>.</t>
        <section anchor="registry-contents-1">
          <name>Registry Contents</name>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>status</tt></t>
            </li>
            <li>
              <t>Claim Description: Reference to a status or validity mechanism containing up-to-date status information on the CWT.</t>
            </li>
            <li>
              <t>JWT Claim Name: <tt>status</tt></t>
            </li>
            <li>
              <t>Claim Key: TBD (requested assignment 65535)</t>
            </li>
            <li>
              <t>Claim Value Type: map</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Reference: <xref target="status-claim"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>status_list</tt></t>
            </li>
            <li>
              <t>Claim Description: A status list containing up-to-date status information on multiple tokens.</t>
            </li>
            <li>
              <t>JWT Claim Name: <tt>status_list</tt></t>
            </li>
            <li>
              <t>Claim Key: TBD (requested assignment 65533)</t>
            </li>
            <li>
              <t>Claim Value Type: map</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-list-token-cwt"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>ttl</tt></t>
            </li>
            <li>
              <t>Claim Description: Time to Live</t>
            </li>
            <li>
              <t>JWT Claim Name: <tt>ttl</tt></t>
            </li>
            <li>
              <t>Claim Key: TBD (requested assignment 65534)</t>
            </li>
            <li>
              <t>Claim Value Type: unsigned integer</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-list-token-cwt"/> of this specification</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="cwt-iana-registry">
        <name>CWT Status Mechanisms Registry</name>
        <t>This specification establishes the IANA "CWT Status Mechanisms" registry for CWT "status" member values and adds it to the "CBOR Web Token (CWT) Claims" registry group at https://www.iana.org/assignments/cwt. The registry records the status mechanism member and a reference to the specification that defines it.</t>
        <t>CWT Status Mechanisms are registered by Specification Required <xref target="RFC5226"/> after a three-week
review period on the cwt-reg-review@ietf.org mailing list, on the advice of one or more Designated Experts. However, to allow for the allocation of names prior to publication, the Designated Expert(s) may approve registration once they are satisfied that such a
specification will be published.</t>
        <t>Registration requests sent to the mailing list for review should use an appropriate subject (e.g., "Request to register CWT Status Mechanism: example").</t>
        <t>Within the review period, the Designated Expert(s) will either approve or deny the registration request, communicating this decision
to the review list and IANA. Denials should include an explanation and, if applicable, suggestions as to how to make the request
successful.</t>
        <t>IANA must only accept registry updates from the Designated Expert(s) and should direct all requests for registration to the review mailing list.</t>
        <section anchor="registration-template-1">
          <name>Registration Template</name>
          <t>Status Mechanism Value:</t>
          <ul empty="true">
            <li>
              <t>The name requested (e.g., "status_list"). The name is case sensitive. Names may not match other registered names in a case-insensitive manner unless the Designated Experts state that there is a compelling reason to allow an exception.</t>
            </li>
          </ul>
          <t>Status Mechanism Description:</t>
          <ul empty="true">
            <li>
              <t>Brief description of the status mechanism.</t>
            </li>
          </ul>
          <t>Change Controller:</t>
          <ul empty="true">
            <li>
              <t>For IETF Stream RFCs, list the IETF. For others, give the name of the responsible party. Other details (e.g., postal address, email address, home page URI) may also be included.</t>
            </li>
          </ul>
          <t>Specification Document(s):</t>
          <ul empty="true">
            <li>
              <t>Reference to the document or documents that specify the parameter, preferably including URIs that can be used to retrieve copies of the documents. An indication of the relevant sections may also be included but is not required.</t>
            </li>
          </ul>
        </section>
        <section anchor="initial-registry-contents-1">
          <name>Initial Registry Contents</name>
          <ul spacing="normal">
            <li>
              <t>Status Mechanism Value: <tt>status_list</tt></t>
            </li>
            <li>
              <t>Status Mechanism Description: A status list containing up-to-date status information on multiple tokens.</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="referenced-token-cose"/> of this specification</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="iana-status-types">
        <name>OAuth Status Types Registry</name>
        <t>This specification establishes the IANA "OAuth Status Types" registry for Status List values and adds it to the "OAuth Parameters" registry group at https://www.iana.org/assignments/oauth-parameters. The registry records a human readable label, the bit representation and a common description for it.</t>
        <t>Status Types are registered by Specification Required <xref target="RFC5226"/> after a two-week
review period on the oauth-ext-review@ietf.org mailing list, on the advice of one or more Designated Experts. However, to allow for the allocation of names prior to publication, the Designated Expert(s) may approve registration once they are satisfied that such a
specification will be published.</t>
        <t>Registration requests sent to the mailing list for review should use an appropriate subject (e.g., "Request to register Status Type name: example").</t>
        <t>Within the review period, the Designated Expert(s) will either approve or deny the registration request, communicating this decision
to the review list and IANA. Denials should include an explanation and, if applicable, suggestions as to how to make the request
successful.</t>
        <t>IANA must only accept registry updates from the Designated Expert(s) and should direct all requests for registration to the review mailing list.</t>
        <section anchor="registration-template-2">
          <name>Registration Template</name>
          <t>Status Type Name:</t>
          <ul empty="true">
            <li>
              <t>The name is a human-readable case insensitive label for the Status Type that helps to talk about the status of Referenced Token in common language.</t>
            </li>
          </ul>
          <t>Status Type Description:</t>
          <ul empty="true">
            <li>
              <t>Brief description of the Status Type and optional examples.</t>
            </li>
          </ul>
          <t>Status Type value:</t>
          <ul empty="true">
            <li>
              <t>The bit representation of the Status Type in a byte hex representation. Valid Status Type values range from 0x00-0xFF. Values are filled up with zeros if they have less than 8 bits.</t>
            </li>
          </ul>
          <t>Change Controller:</t>
          <ul empty="true">
            <li>
              <t>For IETF Stream RFCs, list the IETF. For others, give the name of the responsible party. Other details (e.g., postal address, email address, home page URI) may also be included.</t>
            </li>
          </ul>
          <t>Specification Document(s):</t>
          <ul empty="true">
            <li>
              <t>Reference to the document or documents that specify the parameter, preferably including URIs that can be used to retrieve copies of the documents. An indication of the relevant sections may also be included but is not required.</t>
            </li>
          </ul>
        </section>
        <section anchor="initial-registry-contents-2">
          <name>Initial Registry Contents</name>
          <ul spacing="normal">
            <li>
              <t>Status Type Name: VALID</t>
            </li>
            <li>
              <t>Status Type Description: The status of the Referenced Token is valid, correct or legal.</t>
            </li>
            <li>
              <t>Status Type value: <tt>0x00</tt></t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-types"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Status Type Name: INVALID</t>
            </li>
            <li>
              <t>Status Type Description: The status of the Referenced Token is revoked, annulled, taken back, recalled or cancelled.</t>
            </li>
            <li>
              <t>Status Type value: <tt>0x01</tt></t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-types"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Status Type Name: SUSPENDED</t>
            </li>
            <li>
              <t>Status Type Description: The status of the Referenced Token is temporarily invalid, hanging or debarred from privilege. This state is reversible.</t>
            </li>
            <li>
              <t>Status Type value: <tt>0x02</tt></t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-types"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Status Type Name: APPLICATION_SPECIFIC</t>
            </li>
            <li>
              <t>Status Type Description: The status of the Referenced Token is application specific.</t>
            </li>
            <li>
              <t>Status Type value: <tt>0x03</tt></t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-types"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Status Type Name: APPLICATION_SPECIFIC</t>
            </li>
            <li>
              <t>Status Type Description: The status of the Referenced Token is application specific.</t>
            </li>
            <li>
              <t>Status Type value: <tt>0x0B-0xOF</tt></t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-types"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
        </section>
      </section>
      <section anchor="oauth-parameters-registration">
        <name>OAuth Parameters Registration</name>
        <t>This specification requests registration of the following values in the IANA "OAuth Authorization Server Metadata" registry <xref target="IANA.OAuth.Params"/> established by <xref target="RFC8414"/>.</t>
        <ul spacing="normal">
          <li>
            <t>Metadata Name: status_list_aggregation_endpoint</t>
          </li>
          <li>
            <t>Metadata Description: URL of the Authorization Server aggregating OAuth Token Status List URLs for token status management.</t>
          </li>
          <li>
            <t>Change Controller: IETF</t>
          </li>
          <li>
            <t>Reference: <xref target="aggregation"/> of this specification</t>
          </li>
        </ul>
      </section>
      <section anchor="media-type-registration">
        <name>Media Type Registration</name>
        <t>This section requests registration of the following media types <xref target="RFC2046"/> in
the "Media Types" registry <xref target="IANA.MediaTypes"/> in the manner described
in <xref target="RFC6838"/>.</t>
        <t>To indicate that the content is an JWT-based Status List:</t>
        <ul spacing="normal">
          <li>
            <t>Type name: application</t>
          </li>
          <li>
            <t>Subtype name: statuslist+jwt</t>
          </li>
          <li>
            <t>Required parameters: n/a</t>
          </li>
          <li>
            <t>Optional parameters: n/a</t>
          </li>
          <li>
            <t>Encoding considerations: See <xref target="status-list-token-jwt"/> of this specification</t>
          </li>
          <li>
            <t>Security considerations: See <xref target="Security"/> of this specification</t>
          </li>
          <li>
            <t>Interoperability considerations: n/a</t>
          </li>
          <li>
            <t>Published specification: this specification</t>
          </li>
          <li>
            <t>Applications that use this media type: Applications using this specification for updated status information of tokens</t>
          </li>
          <li>
            <t>Fragment identifier considerations: n/a</t>
          </li>
          <li>
            <t>Additional information: n/a</t>
          </li>
          <li>
            <t>Person &amp; email address to contact for further information: Paul Bastian, paul.bastian@posteo.de</t>
          </li>
          <li>
            <t>Intended usage: COMMON</t>
          </li>
          <li>
            <t>Restrictions on usage: none</t>
          </li>
          <li>
            <t>Author: Paul Bastian, paul.bastian@posteo.de</t>
          </li>
          <li>
            <t>Change controller: IETF</t>
          </li>
          <li>
            <t>Provisional registration? No</t>
          </li>
        </ul>
        <t>To indicate that the content is an CWT-based Status List:</t>
        <ul spacing="normal">
          <li>
            <t>Type name: application</t>
          </li>
          <li>
            <t>Subtype name: statuslist+cwt</t>
          </li>
          <li>
            <t>Required parameters: n/a</t>
          </li>
          <li>
            <t>Optional parameters: n/a</t>
          </li>
          <li>
            <t>Encoding considerations: See <xref target="status-list-token-cwt"/> of this specification</t>
          </li>
          <li>
            <t>Security considerations: See <xref target="Security"/> of this specification</t>
          </li>
          <li>
            <t>Interoperability considerations: n/a</t>
          </li>
          <li>
            <t>Published specification: this specification</t>
          </li>
          <li>
            <t>Applications that use this media type: Applications using this specification for updated status information of tokens</t>
          </li>
          <li>
            <t>Fragment identifier considerations: n/a</t>
          </li>
          <li>
            <t>Additional information: n/a</t>
          </li>
          <li>
            <t>Person &amp; email address to contact for further information: Paul Bastian, paul.bastian@posteo.de</t>
          </li>
          <li>
            <t>Intended usage: COMMON</t>
          </li>
          <li>
            <t>Restrictions on usage: none</t>
          </li>
          <li>
            <t>Author: Paul Bastian, paul.bastian@posteo.de</t>
          </li>
          <li>
            <t>Change controller: IETF</t>
          </li>
          <li>
            <t>Provisional registration? No</t>
          </li>
        </ul>
      </section>
      <section anchor="x509-certificate-extended-key-purpose-oid-registration">
        <name>X.509 Certificate Extended Key Purpose OID Registration</name>
        <t>IANA is also requested to register the following OID "1.3.6.1.5.5.7.3.TBD" in the "SMI Security for PKIX Extended Key Purpose" registry (1.3.6.1.5.5.7.3), this OID is defined in section <xref target="eku"/>.</t>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC1950">
          <front>
            <title>ZLIB Compressed Data Format Specification version 3.3</title>
            <author fullname="P. Deutsch" initials="P." surname="Deutsch"/>
            <author fullname="J-L. Gailly" surname="J-L. Gailly"/>
            <date month="May" year="1996"/>
            <abstract>
              <t>This specification defines a lossless compressed data format. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1950"/>
          <seriesInfo name="DOI" value="10.17487/RFC1950"/>
        </reference>
        <reference anchor="RFC1951">
          <front>
            <title>DEFLATE Compressed Data Format Specification version 1.3</title>
            <author fullname="P. Deutsch" initials="P." surname="Deutsch"/>
            <date month="May" year="1996"/>
            <abstract>
              <t>This specification defines a lossless compressed data format that compresses data using a combination of the LZ77 algorithm and Huffman coding, with efficiency comparable to the best currently available general-purpose compression methods. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1951"/>
          <seriesInfo name="DOI" value="10.17487/RFC1951"/>
        </reference>
        <reference anchor="RFC2046">
          <front>
            <title>Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="N. Borenstein" initials="N." surname="Borenstein"/>
            <date month="November" year="1996"/>
            <abstract>
              <t>This second document defines the general structure of the MIME media typing system and defines an initial set of media types. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2046"/>
          <seriesInfo name="DOI" value="10.17487/RFC2046"/>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC5226">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <author fullname="H. Alvestrand" initials="H." surname="Alvestrand"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>Many protocols make use of identifiers consisting of constants and other well-known values. Even after a protocol has been defined and deployment has begun, new values may need to be assigned (e.g., for a new option type in DHCP, or a new encryption or authentication transform for IPsec). To ensure that such quantities have consistent values and interpretations across all implementations, their assignment must be administered by a central authority. For IETF protocols, that role is provided by the Internet Assigned Numbers Authority (IANA).</t>
              <t>In order for IANA to manage a given namespace prudently, it needs guidelines describing the conditions under which new values can be assigned or when modifications to existing values can be made. If IANA is expected to play a role in the management of a namespace, IANA must be given clear and concise instructions describing that role. This document discusses issues that should be considered in formulating a policy for assigning values to a namespace and provides guidelines for authors on the specific text that must be included in documents that place demands on IANA.</t>
              <t>This document obsoletes RFC 2434. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5226"/>
          <seriesInfo name="DOI" value="10.17487/RFC5226"/>
        </reference>
        <reference anchor="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols. This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
        <reference anchor="RFC7515">
          <front>
            <title>JSON Web Signature (JWS)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification. Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7515"/>
          <seriesInfo name="DOI" value="10.17487/RFC7515"/>
        </reference>
        <reference anchor="RFC7519">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7519"/>
          <seriesInfo name="DOI" value="10.17487/RFC7519"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="RFC8392">
          <front>
            <title>CBOR Web Token (CWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="E. Wahlstroem" initials="E." surname="Wahlstroem"/>
            <author fullname="S. Erdtman" initials="S." surname="Erdtman"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="May" year="2018"/>
            <abstract>
              <t>CBOR Web Token (CWT) is a compact means of representing claims to be transferred between two parties. The claims in a CWT are encoded in the Concise Binary Object Representation (CBOR), and CBOR Object Signing and Encryption (COSE) is used for added application-layer security protection. A claim is a piece of information asserted about a subject and is represented as a name/value pair consisting of a claim name and a claim value. CWT is derived from JSON Web Token (JWT) but uses CBOR rather than JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8392"/>
          <seriesInfo name="DOI" value="10.17487/RFC8392"/>
        </reference>
        <reference anchor="RFC8725">
          <front>
            <title>JSON Web Token Best Current Practices</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
            <author fullname="D. Hardt" initials="D." surname="Hardt"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>JSON Web Tokens, also known as JWTs, are URL-safe JSON-based security tokens that contain a set of claims that can be signed and/or encrypted. JWTs are being widely used and deployed as a simple security token format in numerous protocols and applications, both in the area of digital identity and in other application areas. This Best Current Practices document updates RFC 7519 to provide actionable guidance leading to secure implementation and deployment of JWTs.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="225"/>
          <seriesInfo name="RFC" value="8725"/>
          <seriesInfo name="DOI" value="10.17487/RFC8725"/>
        </reference>
        <reference anchor="RFC8949">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="December" year="2020"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
              <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049. It does not create a new version of the format.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="94"/>
          <seriesInfo name="RFC" value="8949"/>
          <seriesInfo name="DOI" value="10.17487/RFC8949"/>
        </reference>
        <reference anchor="RFC9052">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol. This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization. This specification additionally describes how to represent cryptographic keys using CBOR.</t>
              <t>This document, along with RFC 9053, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="96"/>
          <seriesInfo name="RFC" value="9052"/>
          <seriesInfo name="DOI" value="10.17487/RFC9052"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC9596">
          <front>
            <title>CBOR Object Signing and Encryption (COSE) "typ" (type) Header Parameter</title>
            <author fullname="M.B. Jones" initials="M.B." surname="Jones"/>
            <author fullname="O. Steele" initials="O." surname="Steele"/>
            <date month="June" year="2024"/>
            <abstract>
              <t>This specification adds the equivalent of the JSON Object Signing and Encryption (JOSE) "typ" (type) header parameter to CBOR Object Signing and Encryption (COSE). This enables the benefits of explicit typing (as defined in RFC 8725, "JSON Web Token Best Current Practices") to be brought to COSE objects. The syntax of the COSE type header parameter value is the same as the existing COSE content type header parameter.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9596"/>
          <seriesInfo name="DOI" value="10.17487/RFC9596"/>
        </reference>
        <reference anchor="IANA.MediaTypes" target="https://www.iana.org/assignments/media-types/media-types.xhtml">
          <front>
            <title>Media Types</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA.JOSE" target="https://www.iana.org/assignments/jose/jose.xhtml">
          <front>
            <title>JSON Object Signing and Encryption (JOSE)</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA.JWT" target="https://www.iana.org/assignments/jwt/jwt.xhtml">
          <front>
            <title>JSON Web Token Claims</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA.CWT" target="https://www.iana.org/assignments/cwt/cwt.xhtml">
          <front>
            <title>CBOR Web Token (CWT) Claims</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA.OAuth.Params" target="https://www.iana.org/assignments/oauth-parameters/oauth-parameters.xhtml#authorization-server-metadata">
          <front>
            <title>OAuth Authorization Server Metadata</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CORS" target="https://fetch.spec.whatwg.org/#http-cors-protocol">
          <front>
            <title>Fetch Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC6749">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf. This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC7662">
          <front>
            <title>OAuth 2.0 Token Introspection</title>
            <author fullname="J. Richer" initials="J." role="editor" surname="Richer"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>This specification defines a method for a protected resource to query an OAuth 2.0 authorization server to determine the active state of an OAuth 2.0 token and to determine meta-information about this token. OAuth 2.0 deployments can use this method to convey information about the authorization context of the token from the authorization server to the protected resource.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7662"/>
          <seriesInfo name="DOI" value="10.17487/RFC7662"/>
        </reference>
        <reference anchor="RFC7800">
          <front>
            <title>Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="April" year="2016"/>
            <abstract>
              <t>This specification describes how to declare in a JSON Web Token (JWT) that the presenter of the JWT possesses a particular proof-of- possession key and how the recipient can cryptographically confirm proof of possession of the key by the presenter. Being able to prove possession of a key is also sometimes described as the presenter being a holder-of-key.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7800"/>
          <seriesInfo name="DOI" value="10.17487/RFC7800"/>
        </reference>
        <reference anchor="RFC8414">
          <front>
            <title>OAuth 2.0 Authorization Server Metadata</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <date month="June" year="2018"/>
            <abstract>
              <t>This specification defines a metadata format that an OAuth 2.0 client can use to obtain the information needed to interact with an OAuth 2.0 authorization server, including its endpoint locations and authorization server capabilities.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8414"/>
          <seriesInfo name="DOI" value="10.17487/RFC8414"/>
        </reference>
        <reference anchor="RFC9458">
          <front>
            <title>Oblivious HTTP</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <author fullname="C. A. Wood" initials="C. A." surname="Wood"/>
            <date month="January" year="2024"/>
            <abstract>
              <t>This document describes Oblivious HTTP, a protocol for forwarding encrypted HTTP messages. Oblivious HTTP allows a client to make multiple requests to an origin server without that server being able to link those requests to the client or to identify the requests as having come from the same client, while placing only limited trust in the nodes used to forward the messages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9458"/>
          <seriesInfo name="DOI" value="10.17487/RFC9458"/>
        </reference>
        <reference anchor="SD-JWT.VC">
          <front>
            <title>SD-JWT-based Verifiable Credentials (SD-JWT VC)</title>
            <author fullname="Oliver Terbu" initials="O." surname="Terbu">
              <organization>MATTR</organization>
            </author>
            <author fullname="Daniel Fett" initials="D." surname="Fett">
              <organization>Authlete Inc.</organization>
            </author>
            <author fullname="Brian Campbell" initials="B." surname="Campbell">
              <organization>Ping Identity</organization>
            </author>
            <date day="3" month="December" year="2024"/>
            <abstract>
              <t>   This specification describes data formats as well as validation and
   processing rules to express Verifiable Credentials with JSON payloads
   with and without selective disclosure based on the SD-JWT
   [I-D.ietf-oauth-selective-disclosure-jwt] format.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-sd-jwt-vc-08"/>
        </reference>
        <reference anchor="ISO.mdoc">
          <front>
            <title>ISO/IEC 18013-5:2021 ISO-compliant driving licence</title>
            <author>
              <organization>ISO/IEC JTC 1/SC 17</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="smith2020let" target="https://www.ndss-symposium.org/ndss-paper/lets-revoke-scalable-global-certificate-revocation/">
          <front>
            <title>Let's revoke: Scalable global certificate revocation</title>
            <author initials="T." surname="Smith" fullname="Trevor Smith">
              <organization>Brigham Young University</organization>
            </author>
            <author initials="L." surname="Dickinson" fullname="Luke Dickinson">
              <organization>Brigham Young University</organization>
            </author>
            <author initials="K." surname="Seamons" fullname="Kent Seamons">
              <organization>Brigham Young University</organization>
            </author>
            <date>n.d.</date>
          </front>
          <seriesInfo name="Network and Distributed Systems Security (NDSS) Symposium 2020" value=""/>
        </reference>
        <reference anchor="W3C.SL" target="https://www.w3.org/TR/vc-bitstring-status-list/">
          <front>
            <title>W3C Bitstring Status List v1.0</title>
            <author initials="D." surname="Longley" fullname="Dave Longley">
              <organization>Digital Bazaar</organization>
            </author>
            <author initials="M." surname="Sporny" fullname="Manu Sporny">
              <organization>Digital Bazaar</organization>
            </author>
            <author initials="O." surname="Steele" fullname="Orie Steele">
              <organization>Transmute</organization>
            </author>
            <date year="2024" month="December"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 1547?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>We would like to thank
Brian Campbell,
Filip Skokan,
Francesco Marino,
Giuseppe De Marco,
Hannes Tschofenig,
Kristina Yasuda,
Markus Kreusch,
Martijn Haring,
Michael B. Jones,
Micha Kraus,
Michael Schwartz,
Mike Prorock,
Mirko Mollik,
Oliver Terbu,
Orie Steele,
Rifaat Shekh-Yusef,
Rohan Mahy,
Timo Glastra
and
Torsten Lodderstedt</t>
      <t>for their valuable contributions, discussions and feedback to this specification.</t>
    </section>
    <section numbered="false" anchor="test-vectors">
      <name>Test vectors for Status List encoding</name>
      <t>All examples here are given in the form of JSON or CBOR payloads. The examples are encoded according to <xref target="status-list-json"/> for JSON and <xref target="status-list-cbor"/> for CBOR. The CBOR examples are displayed as hex values.</t>
      <t>All values that are not mentioned for the examples below can be assumed to be 0 (VALID). All examples are initialized with a size of 2^20 entries.</t>
      <section numbered="false" anchor="bit-status-list">
        <name>1 bit Status List</name>
        <t>The following example uses a 1 bit Status List (2 possible values):</t>
        <artwork><![CDATA[
status[0]=1
status[1993]=1
status[25460]=1
status[159495]=1
status[495669]=1
status[554353]=1
status[645645]=1
status[723232]=1
status[854545]=1
status[934534]=1
status[1000345]=1
]]></artwork>
        <t>JSON encoding:</t>
        <artwork><![CDATA[
{
  "bits": 1,
  "lst": "eNrt3AENwCAMAEGogklACtKQPg9LugC9k_ACvreiogE
  AAKkeCQAAAAAAAAAAAAAAAAAAAIBylgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAXG9IAAAAAAAAAPwsJAAAAAAAAAAAAAAAvhsSAAAAAAAAAAA
  A7KpLAAAAAAAAAAAAAAAAAAAAAJsLCQAAAAAAAAAAADjelAAAAAAAAAAAKjDMAQAAA
  ACAZC8L2AEb"
}
]]></artwork>
        <t>CBOR encoding:</t>
        <artwork><![CDATA[
a2646269747301636c737458bd78daeddc010dc0200c0041a88249400ad2903e0f4b
ba00bd93f002beb7a2a2010000a91e09000000000000000000000000000000807296
04000000000000000000000000000000000000000000000000000000000000000000
000000000000005c6f4800000000000000fc2c240000000000000000000000be1b12
000000000000000000ecaa4b000000000000000000000000000000009b0b09000000
00000000000038de9400000000000000002a30cc010000000080642f0bd8011b
]]></artwork>
      </section>
      <section numbered="false" anchor="bit-status-list-1">
        <name>2 bit Status List</name>
        <t>The following example uses a 2 bit Status List (4 possible values):</t>
        <artwork><![CDATA[
status[0]=1
status[1993]=2
status[25460]=1
status[159495]=3
status[495669]=1
status[554353]=1
status[645645]=2
status[723232]=1
status[854545]=1
status[934534]=2
status[1000345]=3
]]></artwork>
        <t>JSON encoding:</t>
        <artwork><![CDATA[
{
  "bits": 2,
  "lst": "eNrt2zENACEQAEEuoaBABP5VIO01fCjIHTMStt9ovGV
  IAAAAAABAbiEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEB5WwIAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAID0ugQAAAAAAAAAAAAAAAAAQG12SgAAA
  AAAAAAAAAAAAAAAAAAAAAAAAOCSIQEAAAAAAAAAAAAAAAAAAAAAAAD8ExIAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwJEuAQAAAAAAAAAAAAAAAAAAAAAAAMB9S
  wIAAAAAAAAAAAAAAAAAAACoYUoAAAAAAAAAAAAAAEBqH81gAQw"
}
]]></artwork>
        <t>CBOR encoding:</t>
        <artwork><![CDATA[
a2646269747302636c737459013d78daeddb310d00211000412ea1a04004fe5520ed
357c28c81d3312b6df68bc65480000000000406e2101000000000000000000000000
0000000000000000000000000000000000000040795b020000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
0080f4ba0400000000000000000000000000406d764a000000000000000000000000
000000000000000000e0922101000000000000000000000000000000000000fc1312
00000000000000000000000000000000000000000000000000000000000000c0912e
01000000000000000000000000000000000000c07d4b020000000000000000000000
00000000a8614a0000000000000000000000406a1fcd60010c
]]></artwork>
      </section>
      <section numbered="false" anchor="bit-status-list-2">
        <name>4 bit Status List</name>
        <t>The following example uses a 4 bit Status List (16 possible values):</t>
        <artwork><![CDATA[
status[0]=1
status[1993]=2
status[35460]=3
status[459495]=4
status[595669]=5
status[754353]=6
status[845645]=7
status[923232]=8
status[924445]=9
status[934534]=10
status[1004534]=11
status[1000345]=12
status[1030203]=13
status[1030204]=14
status[1030205]=15
]]></artwork>
        <t>JSON encoding:</t>
        <artwork><![CDATA[
{
  "bits": 4,
  "lst": "eNrt0EENgDAQADAIHwImkIIEJEwCUpCEBBQRHOy35Li
  1EjoOQGabAgAAAAAAAAAAAAAAAAAAACC1SQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABADrsCAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAADoxaEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIoCgAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACArpwKAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAGhqVkAzlwIAAAAAiGVRAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAABx3AoAgLpVAQAAAAAAAAAAAAAAwM89rwMAAAAAAAAAA
  AjsA9xMBMA"
}
]]></artwork>
        <t>CBOR encoding:</t>
        <artwork><![CDATA[
a2646269747304636c737459024878daedd0410d8030100030081f0226908204244c
025290840414111cecb7e4b8b5123a0e40669b020000000000000000000000000000
0020b549010000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
0000000000400ebb0200000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
000000000000e8c5a100000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000082280a00000000000000000000000000
00000000000000000000000000000000000000000000000000000000000080ae9c0a
00000000000000000000000000000000000000000000000000000000000000000000
000000686a5640339702000000008865510000000000000000000000000000000000
00000000000000000000000000000071dc0a0080ba55010000000000000000000000
c0cf3daf03000000000000000008ec03dc4c04c0
]]></artwork>
      </section>
      <section numbered="false" anchor="bit-status-list-3">
        <name>8 bit Status List</name>
        <t>The following example uses a 8 bit Status List (256 possible values):</t>
        <artwork><![CDATA[
status[233478] = 0
status[52451] = 1
status[576778] = 2
status[513575] = 3
status[468106] = 4
status[292632] = 5
status[214947] = 6
status[182323] = 7
status[884834] = 8
status[66653] = 9
status[62489] = 10
status[196493] = 11
status[458517] = 12
status[487925] = 13
status[55649] = 14
status[416992] = 15
status[879796] = 16
status[462297] = 17
status[942059] = 18
status[583408] = 19
status[13628] = 20
status[334829] = 21
status[886286] = 22
status[713557] = 23
status[582738] = 24
status[326064] = 25
status[451545] = 26
status[705889] = 27
status[214350] = 28
status[194502] = 29
status[796765] = 30
status[202828] = 31
status[752834] = 32
status[721327] = 33
status[554740] = 34
status[91122] = 35
status[963483] = 36
status[261779] = 37
status[793844] = 38
status[165255] = 39
status[614839] = 40
status[758403] = 41
status[403258] = 42
status[145867] = 43
status[96100] = 44
status[477937] = 45
status[606890] = 46
status[167335] = 47
status[488197] = 48
status[211815] = 49
status[797182] = 50
status[582952] = 51
status[950870] = 52
status[765108] = 53
status[341110] = 54
status[776325] = 55
status[745056] = 56
status[439368] = 57
status[559893] = 58
status[149741] = 59
status[358903] = 60
status[513405] = 61
status[342679] = 62
status[969429] = 63
status[795775] = 64
status[566121] = 65
status[460566] = 66
status[680070] = 67
status[117310] = 68
status[480348] = 69
status[67319] = 70
status[661552] = 71
status[841303] = 72
status[561493] = 73
status[138807] = 74
status[442463] = 75
status[659927] = 76
status[445910] = 77
status[1046963] = 78
status[829700] = 79
status[962282] = 80
status[299623] = 81
status[555493] = 82
status[292826] = 83
status[517215] = 84
status[551009] = 85
status[898490] = 86
status[837603] = 87
status[759161] = 88
status[459948] = 89
status[290102] = 90
status[1034977] = 91
status[190650] = 92
status[98810] = 93
status[229950] = 94
status[320531] = 95
status[335506] = 96
status[885333] = 97
status[133227] = 98
status[806915] = 99
status[800313] = 100
status[981571] = 101
status[527253] = 102
status[24077] = 103
status[240232] = 104
status[559572] = 105
status[713399] = 106
status[233941] = 107
status[615514] = 108
status[911768] = 109
status[331680] = 110
status[951527] = 111
status[6805] = 112
status[552366] = 113
status[374660] = 114
status[223159] = 115
status[625884] = 116
status[417146] = 117
status[320527] = 118
status[784154] = 119
status[338792] = 120
status[1199] = 121
status[679804] = 122
status[1024680] = 123
status[40845] = 124
status[234603] = 125
status[761225] = 126
status[644903] = 127
status[502167] = 128
status[121477] = 129
status[505144] = 130
status[165165] = 131
status[179628] = 132
status[1019195] = 133
status[145149] = 134
status[263738] = 135
status[269256] = 136
status[996739] = 137
status[346296] = 138
status[555864] = 139
status[887384] = 140
status[444173] = 141
status[421844] = 142
status[653716] = 143
status[836747] = 144
status[783119] = 145
status[918762] = 146
status[946835] = 147
status[253764] = 148
status[519895] = 149
status[471224] = 150
status[134272] = 151
status[709016] = 152
status[44112] = 153
status[482585] = 154
status[461829] = 155
status[15080] = 156
status[148883] = 157
status[123467] = 158
status[480125] = 159
status[141348] = 160
status[65877] = 161
status[692958] = 162
status[148598] = 163
status[499131] = 164
status[584009] = 165
status[1017987] = 166
status[449287] = 167
status[277478] = 168
status[991262] = 169
status[509602] = 170
status[991896] = 171
status[853666] = 172
status[399318] = 173
status[197815] = 174
status[203278] = 175
status[903979] = 176
status[743015] = 177
status[888308] = 178
status[862143] = 179
status[979421] = 180
status[113605] = 181
status[206397] = 182
status[127113] = 183
status[844358] = 184
status[711569] = 185
status[229153] = 186
status[521470] = 187
status[401793] = 188
status[398896] = 189
status[940810] = 190
status[293983] = 191
status[884749] = 192
status[384802] = 193
status[584151] = 194
status[970201] = 195
status[523882] = 196
status[158093] = 197
status[929312] = 198
status[205329] = 199
status[106091] = 200
status[30949] = 201
status[195586] = 202
status[495723] = 203
status[348779] = 204
status[852312] = 205
status[1018463] = 206
status[1009481] = 207
status[448260] = 208
status[841042] = 209
status[122967] = 210
status[345269] = 211
status[794764] = 212
status[4520] = 213
status[818773] = 214
status[556171] = 215
status[954221] = 216
status[598210] = 217
status[887110] = 218
status[1020623] = 219
status[324632] = 220
status[398244] = 221
status[622241] = 222
status[456551] = 223
status[122648] = 224
status[127837] = 225
status[657676] = 226
status[119884] = 227
status[105156] = 228
status[999897] = 229
status[330160] = 230
status[119285] = 231
status[168005] = 232
status[389703] = 233
status[143699] = 234
status[142524] = 235
status[493258] = 236
status[846778] = 237
status[251420] = 238
status[516351] = 239
status[83344] = 240
status[171931] = 241
status[879178] = 242
status[663475] = 243
status[546865] = 244
status[428362] = 245
status[658891] = 246
status[500560] = 247
status[557034] = 248
status[830023] = 249
status[274471] = 250
status[629139] = 251
status[958869] = 252
status[663071] = 253
status[152133] = 254
status[19535] = 255
]]></artwork>
        <t>JSON encoding:</t>
        <artwork><![CDATA[
{
  "bits": 8,
  "lst": "eNrt0WOQM2kYhtGsbdu2bdu2bdu2bdu2bdu2jVnU1my
  -SWYm6U5enFPVf7ue97orFYAo7CQBAACQuuckAABStqUEAAAAAAAAtN6wEgAE71QJA
  AAAAIrwhwQAAAAAAdtAAgAAAAAAACLwkAQAAAAAAAAAAACUaFcJAACAeJwkAQAAAAA
  AAABQvL4kAAAAWmJwCQAAAAAAAAjAwBIAAAB06ywJoDKQBARpfgkAAAAAAAAAAAAAA
  AAAAACo50sJAAAAAAAAAOiRcSQAAAAAgAJNKgEAAG23mgQAAAAAAECw3pUAQvegBAA
  AAAAAAADduE4CAAAAyjSvBAAQiw8koHjvSABAb-wlARCONyVoxtMSZOd0CQAAAOjWD
  RKQmLckAAAAAACysLYEQGcnSAAAAAAQooUlAABI15kSAIH5RAIgLB9LABC4_SUgGZN
  IAABAmM6RoLbTJIASzCIBAEAhfpcAAAAAAABquk8CAAAAAAAAaJl9SvvzBOICAFWmk
  IBgfSgBAAAANOgrCQAAAAAAAADStK8EAAC03gASAAAAAAAAAADFWFUCAAAAMjOaBEA
  DHpYAQjCIBADduFwCAAAAAGitMSSI3BUSAECOHpAA6IHrJQAAAAAAsjeVBAAAKRpVA
  orWvwQAAAAAAAAAkKRtJAAAAAAAgCbcLAF0bXUJAAAAoF02kYDg7CYBAAAAAEB6NpQ
  AAAAAAAAAAAAAAEr1uQQAAF06VgIAAAAAAAAAqDaeBAAQqgMkAAAAAABogQMlAAAAA
  AAa87MEAAAQiwslAAAAAAAAAAAAAAAAMrOyBAAAiekv-hcsY0Sgne6QAAAAAAAgaUt
  JAAAAAAAAAAAAAAAAAAAAAAAAAADwt-07vjVkAAAAgDy8KgFAUEaSAAAAAJL3vgQAW
  dhcAgAAoBHDSUDo1pQAAACI2o4SAABZm14CALoyuwQAAPznGQkgZwdLAAAQukclAAA
  AAAAAAAAAgKbMKgEAAAAAAAAAAAAAAAAAAECftpYAAAAAAAAAAAAACnaXBAAAAADk7
  iMJAAAAAAAAAABqe00CAnGbBBG4TAIAgFDdKgFAXCaWAAAAAAAAAAAAAAAAAKAJQwR
  72XbGAQAAAKAhh0sAAAAAAABQgO8kAAAAAAAAAAAAACAaM0kAAAC5W0QCAIJ3mAQAx
  GwxCQAA6nhSAsjZBRIAANEbWQIAAAAAaJE3JACAwA0qAUBIVpKAlphbAiAPp0iQnKE
  kAAAAAAAgBP1KAAAAdOl4CQAAAAAAAPjLZBIAAG10RtrPm8_CAEBMTpYAAAAAAIjQY
  BL8z5QSAAAAAEDYPpUAACAsj0gAAADQkHMlAAjHDxIA0Lg9JQAAgHDsLQEAAABAQS6
  WAAAAgLjNFs2l_RgLAIAEfCEBlGZZCQAAaIHjJACgtlskAAAozb0SAAAAVFtfAgAAA
  AAAAAAAAAAAAAAAAAAAAKDDtxIAAAAAVZaTAKB5W0kAANCAsSUgJ0tL0GqHSNBbL0g
  AZflRAgCARG0kQXNmlgCABiwkAQAAAEB25pIAAAAAAAAAAAAAoFh9SwAAAAAAADWNm
  OSrpjFsEoaRgDKcF9Q1dxsEAAAAAAAAAAAAAAAAgPZ6SQIAAAAAAAAAgChMLgEAAAA
  AAAAAqZlQAsK2qQQAAAAAAAD06XUJAAAAqG9bCQAAgLD9IgEAAAAAAAAAAAAAAAAAA
  EBNe0gAAAAAAAAAAEBPHSEBAAAAlOZtCYA4fS8B0GFRCQAo0gISAOTgNwmC840EAAA
  AAAAAAAAAAAAAAAAAUJydJfjXPBIAAAAAAAAAAAAAAABk6WwJAAAAAAAAAAAAAAAAq
  G8UCQAAgPpOlAAAIA83SQAANWwc9HUjGAgAAAAAAACAusaSAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAqHKVBACQjxklAAAAAAAAAKBHxpQAAAAAACBME0lAdlaUAACyt7sEAAAA0
  Nl0EgAAAAAAAAAAAABA-8wgAQAAAAAAAKU4SgKgUtlBAgAAAAAAAAAAgMCMLwEE51k
  JICdzSgCJGl2CsE0tAQAA0L11JQAAAAAAAAjUOhIAAAAAAAAAAAAAAGTqeQkAAAAAA
  AAAAAAAKM8SEjTrJwkAAAAAAACocqQEULgVJAAAACjDUxJUKgtKAAAAqbpRAgCA0n0
  mAQAAAABAGzwmAUCTLpUAAAAAAAAAAEjZNRIAAAAAAAAAAAAAAAAAAAAA8I-vJaAlh
  pQAAAAAAHrvzjJ-OqCuuVlLAojP8BJAr70sQZVDJYAgXS0BAAAAAAAAAAAAtMnyEgA
  AAAAAFONKCQAAAAAAAADorc0kAAAAAAAAgDqOlgAAAAAAAAAAAADIwv0SAAAAAAAAA
  AAAAADBuV0CIFVDSwAAAABAAI6RAAAAAGIwrQSEZAsJAABouRclAAAAAKDDrxIAAAA
  0bkkJgFiMKwEAAAAAAHQyhwRk7h4JAAAAAAAAAAAgatdKAACUYj0JAAAAAAAAAAAAQ
  nORBLTFJRIAAAAAkIaDJAAAAJryngQAAAAAAAAAAAA98oQEAAAAAAAAAEC2zpcgWY9
  LQKL2kwAgGK9IAAAAAPHaRQIAAAAAAAAAAADIxyoSAAAAAAAAAAAAAADQFotLAECz_
  gQ1PX-B"
}
]]></artwork>
        <t>CBOR encoding:</t>
        <artwork><![CDATA[
a2646269747308636c73745907b078daedd1639033691886d1ac6ddbb66ddbb66ddb
b66ddbb66ddbb68d59d4d66cbe496626e94e5e9c53d57fbb9ef7ba2b158028ec2401
000090bae724000052b6a504000000000000b4deb0120004ef5409000000008af087
040000000001db400200000000000022f09004000000000000000000946857090000
80789c24010000000000000050bcbe240000005a62700900000000000008c0c01200
000074eb2c09a032900404697e09000000000000000000000000000000a8e74b0900
000000000000e89171240000000080024d2a0100006db79a04000000000040b0de95
0042f7a00400000000000000ddb84e02000000ca34af0400108b0f24a078ef480040
6fec2501108e372568c6d31264e77409000000e8d60d129098b7240000000000b2b0
b604406727480000000010a28525000048d799120081f94402202c1f4b0010b8fd25
2019934800004098ce91a0b6d3248012cc22010040217e970000000000006aba4f02
00000000000068997d4afbf304e2020055a69080607d280100000034e82b09000000
00000000d2b4af040000b4de00120000000000000000c558550200000032339a0440
031e96004230880400ddb85c020000000068ad312488dc151200408e1e9000e881eb
250000000000b23795040000291a55028ad6bf040000000000000090a46d24000000
00008026dc2c01746d7509000000a05d369180e0ec260100000000407a3694000000
00000000000000004af5b90400005d3a560200000000000000a8369e040010aa0324
00000000006881032500000000001af3b3040000108b0b2500000000000000000000
000032b3b204000089e92ffa172c6344a09dee90000000000020694b490000000000
000000000000000000000000000000f0b7ed3bbe3564000000803cbc2a0140504692
0000000092f7be040059d85c020000a011c34940e8d69400000088da8e120000599b
5e0200ba32bb040000fce719092067074b000010ba472500000000000000000080a6
cc2a010000000000000000000000000000409fb696000000000000000000000a7697
0400000000e4ee230900000000000000006a7b4d0202719b0411b84c02008050dd2a
01405c269600000000000000000000000000a00943047bd976c601000000a021874b
0000000000005080ef2400000000000000000000201a3349000000b95b4402008277
980400c46c31090000ea785202c8d905120000d11b590200000000689137240080c0
0d2a01404856928096985b02200fa748909ca12400000000002004fd4a00000074e9
7809000000000000f8cb641200006d7446dacf9bcfc200404c4e96000000000088d0
6012fccf94120000000040d83e950000202c8f48000000d09073250008c70f1200d0
b83d2500008070ec2d0100000040412e9600000080b8cd16cda5fd180b0080047c21
019466590900006881e32400a0b65b24000028cdbd12000000545b5f020000000000
00000000000000000000000000a0c3b7120000000055969300a0795b490000d080b1
2520274b4bd06a8748d05b2f480065f951020080446d24417366960080062c240100
00004076e69200000000000000000000a0587d4b000000000000358d98e4aba6316c
12869180329c17d435771b0400000000000000000000000080f67a49020000000000
000080284c2e0100000000000000a9995002c2b6a904000000000000f4e975090000
00a86f5b09000080b0fd22010000000000000000000000000000404d7b4800000000
00000000404f1d210100000094e66d0980387d2f01d06151090028d2021200e4e037
0982f38d04000000000000000000000000000000509c9d25f8d73c12000000000000
00000000000064e96c09000000000000000000000000a86f1409000080fa4e940000
200f37490000356c1cf47523180800000000000080bac69200000000000000000000
0000000000000000000000a872950400908f192500000000000000a047c694000000
0000204c1349407656940000b2b7bb04000000d0d974120000000000000000000040
fbcc2001000000000000a5384a02a052d94102000000000000000080c08c2f0104e7
59092027734a00891a5d82b04d2d010000d0bd752500000000000008d43a12000000
000000000000000064ea79090000000000000000000028cf121234eb270900000000
0000a872a40450b8152400000028c35312542a0b4a000000a9ba51020080d27d2601
00000000401b3c260140932e95000000000000000048d93512000000000000000000
00000000000000f08faf25a025869400000000007aefce327e3aa0aeb9594b0288cf
f01240afbd2c4195432580205d2d01000000000000000000b4c9f212000000000014
e34a0900000000000000e8adcd24000000000000803a8e9600000000000000000000
c8c2fd120000000000000000000000c1b95d022055434b0000000040008e91000000
006230ad0484640b09000068b9172500000000a0c3af12000000346e490980588c2b
0100000000007432870464ee1e090000000000000000206ad74a000094623d090000
0000000000000042739104b4c5251200000000908683240000009af29e0400000000
00000000003df284040000000000000040b6ce9720598f4b40a2f693002018af4800
000000f1da4502000000000000000000c8c72a120000000000000000000000d0168b
4b0040b3fe04353d7f81
]]></artwork>
      </section>
    </section>
    <section numbered="false" anchor="document-history">
      <name>Document History</name>
      <t>-09</t>
      <ul spacing="normal">
        <li>
          <t>update acknowledgments</t>
        </li>
        <li>
          <t>introduce dedicated section for compressed byte array of the Status List</t>
        </li>
        <li>
          <t>fix Status List definitions</t>
        </li>
        <li>
          <t>Add CDDL for CBOR StatusList encoding</t>
        </li>
        <li>
          <t>add diagram for Status List Aggregation for further explanation</t>
        </li>
        <li>
          <t>rename "chunking" of Status List Tokens (for scalability reasons) into "divide .. up"</t>
        </li>
      </ul>
      <t>-08</t>
      <ul spacing="normal">
        <li>
          <t>Fix cwt typ value to full media type</t>
        </li>
        <li>
          <t>Holders may also fetch and verify Status List Tokens</t>
        </li>
        <li>
          <t>Update terminology for referenced token and Status List Token</t>
        </li>
      </ul>
      <t>-07</t>
      <ul spacing="normal">
        <li>
          <t>add considerations about External Status Issuer or Status Provider</t>
        </li>
        <li>
          <t>add recommendations for Key Resolution and Trust Management</t>
        </li>
        <li>
          <t>add extended key usage extensions for x509</t>
        </li>
        <li>
          <t>Relying Parties avoiding correlatable Information</t>
        </li>
        <li>
          <t>editorial changes on terminology and Referenced Tokens</t>
        </li>
        <li>
          <t>clarify privacy consideration around one time use reference tokens</t>
        </li>
        <li>
          <t>explain the Status List Token size dependencies</t>
        </li>
        <li>
          <t>explain possibility to chunk Status List Tokens depending on Referenced Token's expiry date</t>
        </li>
        <li>
          <t>add short-lived tokens in the Rationale</t>
        </li>
        <li>
          <t>rename Status Mechanism Methods registry to Status Mechanisms registry</t>
        </li>
        <li>
          <t>changes as requested by IANA review</t>
        </li>
        <li>
          <t>emphasize that security and privacy considerations only apply to Status List and no other status mechanisms</t>
        </li>
        <li>
          <t>differentiate unlinkability between Issuer-RP and RP-RP</t>
        </li>
        <li>
          <t>add more test vectors for the status list encoding</t>
        </li>
        <li>
          <t>add prior art</t>
        </li>
        <li>
          <t>updated language around application specific status type values and assigned ranges for application specific usage</t>
        </li>
        <li>
          <t>add short security considerations section for mac based deployments</t>
        </li>
        <li>
          <t>privacy considerations for other status types like suspended</t>
        </li>
        <li>
          <t>fix aggregation_uri text in referenced token</t>
        </li>
        <li>
          <t>mention key resolution in validation rules</t>
        </li>
      </ul>
      <t>-06</t>
      <ul spacing="normal">
        <li>
          <t>iana registration text updated with update procedures</t>
        </li>
        <li>
          <t>explicitly mention that status list is expected to be contained in cryptographically secured containers</t>
        </li>
        <li>
          <t>reworked and simplified introduction and abstract</t>
        </li>
        <li>
          <t>specify http status codes and allow redirects</t>
        </li>
        <li>
          <t>add status_list_aggregation_endpoint OAuth metadata</t>
        </li>
        <li>
          <t>remove unsigned options (json/cbor) of status list</t>
        </li>
        <li>
          <t>add section about mixing status list formats and media type</t>
        </li>
        <li>
          <t>fixes from IETF review</t>
        </li>
        <li>
          <t>update guidance around ttl</t>
        </li>
        <li>
          <t>add guidance around aggregation endpoint</t>
        </li>
      </ul>
      <t>-05</t>
      <ul spacing="normal">
        <li>
          <t>add optional support for historical requests</t>
        </li>
        <li>
          <t>update CBOR claim definitions</t>
        </li>
        <li>
          <t>improve section on Status Types and introduce IANA registry for it</t>
        </li>
        <li>
          <t>add Status Issuer and Status Provider role description to the introduction/terminology</t>
        </li>
        <li>
          <t>add information on third party hosting to security consideration</t>
        </li>
        <li>
          <t>remove constraint that Status List Token must not use a MAC</t>
        </li>
      </ul>
      <t>-04</t>
      <ul spacing="normal">
        <li>
          <t>add mDL example as Referenced Token and consolidate CWT and CBOR sections</t>
        </li>
        <li>
          <t>add implementation consideration for Default Values, Double Allocation and Status List Size</t>
        </li>
        <li>
          <t>add privacy consideration on using private relay protocols</t>
        </li>
        <li>
          <t>add privacy consideration on observability of outsiders</t>
        </li>
        <li>
          <t>add security considerations on correct parsing and decoding</t>
        </li>
        <li>
          <t>remove requirement for matching iss claim in Referenced Token and Status List Token</t>
        </li>
        <li>
          <t>add sd-jwt-vc example</t>
        </li>
        <li>
          <t>fix CWT status_list map encoding</t>
        </li>
        <li>
          <t>editorial fixes</t>
        </li>
        <li>
          <t>add CORS considerations to the http endpoint</t>
        </li>
        <li>
          <t>fix reference of Status List in CBOR format</t>
        </li>
        <li>
          <t>added status_list CWT claim key assigned</t>
        </li>
        <li>
          <t>move base64url definition to terminology</t>
        </li>
      </ul>
      <t>-03</t>
      <ul spacing="normal">
        <li>
          <t>remove unused reference to RFC9111</t>
        </li>
        <li>
          <t>add validation rules for status list token</t>
        </li>
        <li>
          <t>introduce the status list aggregation mechanism</t>
        </li>
        <li>
          <t>relax requirements for status_list claims to contain other parameters</t>
        </li>
        <li>
          <t>change cwt referenced token example to hex and annotated hex</t>
        </li>
        <li>
          <t>require TLS only for fetching Status List, not for Status List Token</t>
        </li>
        <li>
          <t>remove the undefined phrase Status List endpoint</t>
        </li>
        <li>
          <t>remove http caching in favor of the new ttl claim</t>
        </li>
        <li>
          <t>clarify the sub claim of Status List Token</t>
        </li>
        <li>
          <t>relax status_list iss requirements for CWT</t>
        </li>
        <li>
          <t>Fixes missing parts &amp; iana ttl registration in CWT examples</t>
        </li>
      </ul>
      <t>-02</t>
      <ul spacing="normal">
        <li>
          <t>add ttl claim to Status List Token to convey caching</t>
        </li>
        <li>
          <t>relax requirements on referenced token</t>
        </li>
        <li>
          <t>clarify Deflate / zlib compression</t>
        </li>
        <li>
          <t>make a reference to the Issuer-Holder-Verifier model of SD-JWT VC</t>
        </li>
        <li>
          <t>add COSE/CWT/CBOR encoding</t>
        </li>
      </ul>
      <t>-01</t>
      <ul spacing="normal">
        <li>
          <t>Rename title of the draft</t>
        </li>
        <li>
          <t>add design consideration to the introduction</t>
        </li>
        <li>
          <t>Change status claim to in referenced token to allow re-use for other mechanisms</t>
        </li>
        <li>
          <t>Add IANA Registry for status mechanisms</t>
        </li>
        <li>
          <t>restructure the sections of this document</t>
        </li>
        <li>
          <t>add option to return an unsigned Status List</t>
        </li>
        <li>
          <t>Changing compression from gzip to zlib</t>
        </li>
        <li>
          <t>Change typo in Status List Token sub claim description</t>
        </li>
        <li>
          <t>Add access token as an example use-case</t>
        </li>
      </ul>
      <t>-00</t>
      <ul spacing="normal">
        <li>
          <t>Initial draft after working group adoption</t>
        </li>
        <li>
          <t>update acknowledgments</t>
        </li>
        <li>
          <t>renamed Verifier to Relying Party</t>
        </li>
        <li>
          <t>added IANA consideration</t>
        </li>
      </ul>
      <t>[ draft-ietf-oauth-status-list ]</t>
      <t>-01</t>
      <ul spacing="normal">
        <li>
          <t>Applied editorial improvements suggested by Michael Jones.</t>
        </li>
      </ul>
      <t>-00</t>
      <ul spacing="normal">
        <li>
          <t>Initial draft</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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
Mn1Q19Isb7m4fnQ2fOCHB+FGeHiyd71//DJ8vLURBg/Hl7tvotPdyUn75XPn
cvjgWey7T7HOm707tZvw3gg+w3ubw9ru+Znrn6cv9yevnp682XQPnqUj8Wz/
+eH5o9nxzqtdkO/PxIP9nRdvd672d07S/fGrZwcPT69w4BdHlzDI+G3Nv97t
7m49ioKHh5f+2+jisatHnr90B+ljd/zWb52M/XA3gXazly9w9I2r/Tenb/e2
Ny7xTw2n/urFGU197/i0vfeWv9jbglGm+87LEAfZdV++PXmz92DHPjhywv3j
087j46dv954/TV9O7o9r+9f29d7x+dXem0dnB8+h4WSPYOK3Ds+ChydvsXNY
/9vgwX07eLE/Gj4Yvw22oOOHSeg9P2zj9zUe8eTaO7phWa19++WLQ8d3r2Yw
wNvHb3fC0Qsblziq+e7h6OXzqyntxHQ/enlk0w6NnjYb56dHjcPGq/b2zvb4
p8P+OajXfefz04cP90E6iO47I//ks1fnrb2a3d2Kpyf9+/3zQeBeuiefv9w4
uDj1h/bIce7/dPu+ePti88XDlh20L/zLnz2/3r0+tK+297cfvT1y7ruvnu1P
Dt3aq2vxrHN0/Gbc2g0JlLY/ORkH9wdnrx4cXr96sf+Wno/333gPTxJYyPVj
2Ju98FEAPT4aDx+ePN+vPRtM99zg+Ph8/Ohg5+TVcLrffnoy2KQ3J1cXL937
iffisJPr6cGrC396eLY7tnFq7lHtedQKduz05fHJ7GS8+fDlZHC8/+IwDcav
uKPpo/Erd3wxZDQ5fvl8P/Ldk/njZ/fn3oP7SbAFU6rhnI6Oz7wT1+48e955
/Ozh5sGzBycHr553dl89ODvkKe1fBM9BO5me0/Yf7jwLXzzF5Ry+cgZP9mtv
Drv+s/vtV8dPr/YmO1d722czf6KWc//81cNHY7+FqLPZ2x0P3r5CFLmfhPvT
V9HB80dXj1/MjvdrO8Hj45N+67C1OX3lvAqfv5h1g+NXF8d28NKfOAcn58HT
o/sbrf2Tk/O9LVzSbueVO3senJzZr3ZeHR3b+9Nntekj+3iy//Dk5Cw9fPPS
8SeHYzEZj/bPT65fuFFrf5Kmz1+M92lm5+nJs/PDp972off07Q5g/r7tvYjS
w9qDl28PTl62Xz0fn4vj+xcnb/bP9uzTq8MHO9fHbzanB9unBIYTu93x34zP
n9qPPjvYOXv2tLV/vDeZPX56st8+qT2Y3RcnvjM8PmnvvzkZPR/3r/1J/9qb
vHp5fPQoGJ3YP8siKLOanwajWmBTK/GpzxPkSj9i9vPwIv7sRXf05MS+GHz2
+fXWyf3N8PH9h8med+Vvf+447Z1J9+S4f+WM6Vrln7APN0kWMSP2uazkXb0t
m37qmVPY6eceSudt1+/4ttceNIad/qDRbjkBcC3Ra7jOwHFd0HV911+pf7Nc
tC5B9rlk78mZ10AGr7jrAm1na4G2499V26GOShZ9yVYXeYuXKD1bd1B6qnyz
6BnqZLrNAqeQVDeT/GJkmP9rtg1ncf4ocZH0KLXIvAZEKQVhKiZKzh9RtcBK
bYjv8sreUO7YBQNTFHvIZRLPxXWDJdqZF6rS4PQ2lsabYD1OEm6pi3RxaHoh
6UpL4doVXxKiVHXHfO0snot5yZbcJaXoV1/vmFe0NCRUSsTi+KKvWG088wyB
z4iBl4+rHOTSAVgp+61RYefKSAojeWQXdI7SJutSCRlYYDvGwWL986Y0kW/1
07x+uvAwfKu7ft26ayXvudlz2m55Dnq1TOdnt4selW4HP7VarXarYzu9VrUj
tFb0nSx1do48pzs0nSedEbpPavjIc6GDQbeNNshuC75Et8QdHLC1RU6ZloOe
Us/pON5oIFrdAJbaB+Y1wCV7btt20H3U7g/ctl9rtW3XH7a8QX/Q6sGgrt9v
9zx7MPRao6ADjTutkT8U7tDt933X7Y18u9XqOtDKHrbaoj20O35t5ImuN/L6
Q4x4a9kwn5E98P9oPaXtJZkeOU+pdsgRSi1ujg6WvyZH6b8Mf2W3cq1WHjqA
ZabDsup4lRyWwnFbbXTbOMmZ9hktOgzG26ZUm7k6q4+o6epEAbjKAan6WHSc
c74m01epHZD//OVfnyep6QjPjn92+nOOcCkUfPk3fqjfW0AdjPeCK/TVYS1l
8vZqoC2gH8abpiag/XNGfIdJXYzXTKVBz9MgPtUItGLqF3d3gi6iZrkT9vTL
f4BdEN33/xM7kfudI/iMHub2I73AHPnLqJ/R0X+H+Efu84fwuvu4jb+///fr
uMOqm0XEMocYg9YlvNqro/vyLfw2+PI3P3j/P2P3He0hX0BcjX5+8P7fv/+b
L/8Rcez9zz99/1t4vYUI62O3qp+MGOdpcW4+9rD9/m+//K8/fv+b93/35T98
+Z+x04Gjwy4U3V60J9xHJ3n/X+E1P+8Trbx0m9x38zREQ2NJmslEawxalHZX
JdVoT9LMw5sA0uxOn71oiFdwHKnq4dKPtLp3dLBWysJVFtpB01H22Yqel5lo
t25jovWViXZhVVQ9qpLNxt5QjBWXI6G8IhF1gfL2ByeLKVvxxjw9K+0BYcb2
Y2uV7jUh2MmqR9iStQ3aPFNiM003pszmAAXsDGxn1GrZfdd2xIj/HXQ8227Z
Lp5t23VANhkJvxd4g54AaiFqTsfzW4HnDwfCG4k+ULn2KLB7o07Ltj27C314
feQQohXYbewI/285TrsF48L3rU6nRl/49hAIYrs7Amo66OJ38DfG3LUcOIK2
PeDG0BYe2W4Ho0lhmk7PDoD51drAA6EX+bf8r+PJrzvV30I/0D1wRlid3a3J
/nEug8JcgAIvm0dnAF204Jtaz1gvAi0PARyoZ7farm3bbc8XPQ+YXtsWnWBA
bNSD1wc1rzvqdHvtjt/zvKDd6np2y2u3YH+9Xm/YGXm9Yb8/gq3pBZ1eAFy0
JZxhqxe0PKDdo3bQ6fdbtW5HtPr+cDjqDAftoAt9t+Hdod/vtZzABy7ktLtA
XPvAh2GjHXjVdnxemhM4I5C3OzVcE/xxAANG8CcAfBhWy8y4E/plF17GGKBO
33FqrfwLALVFHQSqAxswy+nCH/hPuAO75vS8rt/qdF1nNAKYdPsgKgx7bjCE
LmC4VgdAD1OWr8Nutp0+xiD1bafdaY88t9WvtUA+8d2+sAPYqt7AdZEZ2H67
34c3fJu2Vi/BBuhCjwAFxlkbZIUWzKOjx+joBgonesBpHABzYON37gL0r7mw
+308UW2Q3FxAu2HPsYHHtYdYeXkw6tjDAPEOcEF0AEFG7VEraAdwzNoCeus7
oJ4MQFoadXxXdDwPRnEBm3o2cDrXhaPpi67fgaW3B27L63eGrj8ajuBIdtr+
aOANnM4IGoNiIUY9pzfw2kPYhe4Ajn7LhR12+vibM/R63a4pp1RpWzVT3kJ5
ygH6MfDvpHHVKmUiU+jp9rpwELstwN9BD7GnA+Bxuz14GVp1R66owbHu0+Fu
uaIFvbYc+DJot9t+twfrgNn0Whws2W3hd3BQfXjuUMxlm0LWaoP2AL7udkde
C1cOX/Tgc6fb9u1eGygIgAeObYAUBP6GwTpIcWBZ8AeOJ35f63jQl+63DXPE
xd2+A3i/5mUddDpdQVGevtFF58Yu/Bp3AYDqtNu0kA6DE6ihUwReGXYenIZO
DcOg4WgAGQk6dq8zGgY9IUBU97pdkKoA6ds9AQQBPvS6AyAqoicAsXxAusCD
Izpy260akgAgBv2e7XiDTrsLKOn224ELXQCmAWWD1rYHbeDIOyM45XbfGyIG
ekjsBn0gvjXbA0ESuwkcZyTgJAFx68Dww9Gw1R90/BYcGyCRQTAadlsjeBUY
EUy07wwdxx70Oy13UIMzOOrCwaPY7l7bGY7sjsD1DYGqgOTrtjEWFyZl9wcD
igJ0u67vtzwfkTkI/MGg1obeAAowRw4RH3Z7wPOgY+wHMGzU641A+kVM60E/
gd8Xnd5o2B8EYgiUFo6FW+uKQbvdAdIV9EGexG6Gnh8EQ6BzLqwG/gqAnQC3
EUPgqkO3F8CUurCC9gBW2gNiIGpwmAct4YsOUDC7DV9TN3C+oQdPDAHbOsNO
a4hiPLTwW3273w/gwPVBhAUdbQQTrw3EcABsr9sB4PaBPQLt72E3MCDwI3sk
ek7gdVuiA3zJGQxEH0jRsDcAebo/sIFgAIOswQPALligPRAg6YOoD8Kx3cdu
7ACQxff9gd8DeAStwOm5ADtn2B05A5AgAAl7thBuDQlbC3iz7bdg+0fAG4Z9
0YIZDAjEoFQOO2LkBaNWbwS0pNVzbdhfv+MAy7O7fcf3OzUUWNpAtry+2wLJ
xGmBdA4wBLbnEWoBTQNU9WH8AexOAHvTgx12QDEZAYxdAZOvAZA8gLYLRA6W
3B2ABgRs1QOByPVbIJfQotrwGFjHaDRsDxwQj5CO90B5anVRkADZodsfdgeI
9z2At+sM2/7AhkGHvgOECKATAKnpwNHERIJOGxlpRnMcPO+14tceaVQwtuPS
SYKvnFYAxKEl3LZoATwwknsUDB2gAEMPdKZBrQfMvQvHqA/nvyVggwLYYt8D
6g3U36WT5MDRAfosggD4JOBugOIDDCbaXhvYkFsbAVq0fQ+EERd0J2A6KG0E
IBUBEQdhDybcNehKG8lVj+gKUFJgzkG3B7IDdOG4LHt10Wo27Plu0AbhvA9c
C3anD8x9NOgEwm71AbmRG7vwJUiTIOyAeOl4tT4QH+CVwIzgNHQA/4BfAudp
gwQA+hxMEHgoIOUogE3vAL/04RgCdYC9tj2Bx6xjA5/re44Pq4Gzc4O5bDv0
TqdRkoa+tR/lK8QssZah0/O735X+QWfdamDR2XfW97+PXj5+2mqtW2ef3kmu
NsVq6uMDZWslWnN1kw+Xr5HRUB8fK2NzHx8lZzNMSeT6YFmb+lAC9wfK2zwP
Q+j+AJmbsaYgeN9R7uaaOBXC9x1kb96XBQL4LeVvcx6VQvgtZHCexw2C+A1y
OO/tLYTxJbI4z+OWAvkCeZzncQehvCCTf6piBYC8uO3VjMoUQxUWBivocAUg
xfXs2d1CFjhoQU4FzaKRj6447CGKT5thEjUd2ORWs9N0mpPtxyuy3YWIseA7
RSs2bf0U0w3D9BrdqrkFkL0Cc/ttt91w7IbtWE5rvWWv2+53bPg7i7igLu7H
0eT2rZ9N03DMzTuVzXMrJEfedngqkjQH5NJyc6C2kch/mMycOQu08Pxptl8O
dvxhUrTuQ4rTIPAZHbvY8YfJ1boPFLBZvjY6Jn73YZK27mOgJW6j4zZ1/AGy
d1cYHSsZ3Oi4gx3fWRonYVz3kUnlRsdd6vhO8rkSz7PJaTnd6LiHHd9BYjcE
9mzGWnI3Ou5jx7eV4fMifIZuWpY3Oh7Q5t1Gqi8J9bqPTLo3DwgdvZsF/Qo5
X/dhCPxmz3T2bpD9q0X/DBaZDvBpNUEVF6EvPhMlmqi/yNEZR9Zv5Z+Go8uZ
0Ec607dQFMp6QnbIMoXBAEWDDvVNukOl6pABOdMhFoCCiO6GyoVH3nH0cIOD
41iqttakaA2n6s4aRU6hgD4+TKcwVIpPaz8pJLBJRwxyyCTLS8M6KImqcVt5
0ZwukFp5f42XmB3L6qtNa0MFqWT3hKm+RN2aRIGgOJwgVHdAwzenyrOQvyOz
eHlZdVmRQs1BTNTCGgLZHbL6sjO9nqq6oU1rt1wqJUuJi/gCtimF6mFVf+yD
axea1xjCLNWlD6WQpjVK5+PHl2d4T6aOzqGSpvLmLnmvFo7D1+nk949a0YW9
VG1LxKAacj9DkV7ibdF8CRFgivI/hXGxyGh5ckZxFR3BZ0KCa7afRVFCd3B7
ARaLSfUVFzyDVXXl1posrUgJGMXbwvRdGLl14VzpOobM2ZWresitTgjLikib
3ZKlb2KWQXahN/UaJsLLmrq5G0HMa98rUTpzuMkaw+jqVFuOEzcuR8rqQuZn
nl3fqy57zqYvwzNBibcaeLWIDf+snGw83t1egd+MeNMlV8aRTFnn4Eqfroof
i1O8+Zm7dLDL3f07doq3i5+LAO8Rns7xJldAYQ+/A7HkHG8QkVeCw2hw7nyB
H9SILo5o3Jpy2zFTMZlFsReHdHGLXBacvNNweoq3vA09rsWJiSt4xXQI61R3
vBGVkRNHUZ8vczLvojKudYE5tuiolPdcHZAYhqWGmxZe8jXGX+/zvXMinnh4
gyFdV52I+ELGaRq+WhU12rT2hKdj+GZxhPfK0f1rozyOcF2WlO4mURNZ1OWG
Lo1SMX2coZ4VF3KmGFF5PNTpOs5Ph6vMVF+uuarukcc0Jr6/dQ0rAkETJAjX
Fl4zPs981KUuPlUFt5tYXyy7uCcc6SKwGEfNvTAs+XI0Ve0oPYuj+SmHuFJ4
vbW6k5VbOqZikBg8S57nM/LnZ8hGh2pVnikmxNmg5dJKTa6UixRE3mJeICJ0
6OX95oUrzXGXeFxqS+VzOR3Nzy4KfKKhLq1/eLcwIbixH9jwAt+8lshSlXut
kqaJL12rWx1xfXy7sqXjQ02fv1W6SUmVrw1NUqXL/dO1zlXRA3W8dxMPWxZT
wWh0Gc3HAW8G1S3SwRA8rXJF20NgC6J4MWoj5qcop0RWNNRJtiVA1Mtzk/G3
gu4NtR4eHz+xHuwcW7JLFf2PkbDyvmtd16xCysBdoi7UhdeqDFUynwG9SmUO
IUFpK46SpHEQh0CzoK8kmsc+TPnM49jhrYPDozXriy/wX7wxdhrc04kMKt+c
SUkcAZLRHdJ4sSlx0804uoSDLfMc/XHIodYRJkngpZJh2lR5FyYo1GSFDMLP
Nn4D3pulDS7Oix2FIJz56uJqCSwYimP2Ey6gB6wKqPuCinlYHpG2+4ZijEu6
8Jd2kUX+1mq7FUiZ3cqlNp8XKSsQ1+XKjPUQnU2w5Ji6oovv4sYrO7EqAOAv
btE8bUQjAP00ILkTaCLCfDQfG70tvvzGrJM4ZzmKMEolk+C9tRIB3asrZj40
ju4cU2foSElJjIozBGHMyfVCogPf6cz4hNit779cNFpLjVZXd0hLtJJYw8iC
sr0cQD4PRErpOVNOIQBuM6U+/WsfN3WsJ0eEcTVsimbdWgmnlCUhVsyvrXEU
zZKKImhUEqwiFilhgqgOM85Bg4mv46go+0cpErjdi4o9YpXpclASUo28GZJA
ec9pOrWHEd41YNgra4xr69biIdjrUxxFdWm5wKsOPqttcR5MAxn70t6MJN1H
95+93XX2Mbdxks4oo/DNzvVueKkSdnWSKielpj8NWk8xXVTUrh+NxcON8ODN
7vXB8U5r783G1f7bDehnfIbJq3vHL9v7b86v97bhu63L0MOUTujPe3ho+w/3
uo+vB2NRe3A/9R9cjR9P9i+GRzCJqUxedQYJvGDvvpn1diePZsHDPRhoBzq/
4szYycmBP3nkPJsEm09rz8/ePB2fHe5O7UTn5E7O7ODh5tuDsH/x6sXZ2fDF
ZvLqqPNm6NoXuRU93LvYw4Fr00N7CD3vb+/BlDcHzZefN4b2owfTy62Xu739
p5/F95Prq+TR9fbOzv3dn/402X1itw5HR5vHT6OrjfufvZnfP9+pRU+Ors/H
T4Z+2HgxTTZmwdPJ+NH5sfP46YvzwVljvHNaeSnXoULEIi/jx+/0RYYVBCR3
leET5ktxRjMKBSYkivyBkWR5UYzH3HDZnAqkWOWnoKSBx5Ry5qeBXLFZTXFU
KqKo690DEbnlDPybZ7B15xn4NINMXtBdS6KJu3j6NpxZ6nzvGDGopSKzjmNz
sOmI6mNCM0CjMSdQYO9czIElfmXwkFQ9N3q9VIJRTgcEDDRsqaBdEIA5US8d
y/Il5kXI5a2PlOiXmw2iCTIHTC4iPOWpA2DPvAsYj6W/E9TtWCY+RJjWas9g
rrI2ASdplSsieVUyHt9dDzoZ1TdIOfFJ9b1I12xYonkKDIky0yhdjvSSGdcV
9tIUZOB5KpK6VShpyZc850u9sv3kW2WqSpnim1W5ZlPE6T6JH81EdkWRMoXU
+aOxeSHLcZlKgumqdZob3Z8qd4tlNlKCcsnCTC4pR2xhXWIWISuHzehzvRqH
FLngUqaUEzoq4h8WGy53VMJhE3szCm/0A1I431mu9tVMCZSrM0sXcQkXp2lt
6dRLPuFweqkJoZYOVpeFfv1bNM6lsxrkId8X6688fykXc/ovJ2FjUmKuOy/A
vdVZ2XyADIK4JGkWp4tlrqRWVGGshqlUvu/r97eWvK8KmKk080qDeGYUlLqc
Ti6Qm4OyOMvKgbhqYoFe1A3HFfd4MXJp7Vurp9ADVtM9yYBa8R7n+zo3NUNr
QYZnlRBXNoFe082KqHG5MYI4Fu7FBVW1kxn6IyZvOpkbcNiahKdnqTIDK/Yb
jecZvZvNh8CvKSPdM+0REgswh33iTb1TuvOdb6XEO5WXIHrO8CwZm1dCr2p5
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

-->

</rfc>
