<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.36 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-looker-oauth-attestation-based-client-auth-00" category="info" submissionType="independent" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.4 -->
  <front>
    <title>OAuth 2.0 Attestation-Based Client Authentication</title>
    <seriesInfo name="Internet-Draft" value="draft-looker-oauth-attestation-based-client-auth-00"/>
    <author fullname="Tobias Looker">
      <organization>MATTR</organization>
      <address>
        <email>tobias.looker@mattr.global</email>
      </address>
    </author>
    <author fullname="Paul Bastian">
      <organization>Bundesdruckerei GmbH</organization>
      <address>
        <email>paul.bastian@bdr.de</email>
      </address>
    </author>
    <date year="2023" month="July" day="10"/>
    <abstract>
      <?line 62?>

<t>This specification defines a new method of client authentication for OAuth 2.0 <xref target="RFC6749"/> by extending the approach defined in <xref target="RFC7521"/>. This new method enables client deployments that are traditionally viewed as public clients to be able to authenticate with the authorization server through an attestation based authentication scheme.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://vcstuff.github.io/draft-looker-oauth-attestation-based-client-auth/draft-looker-oauth-attestation-based-client-auth.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-looker-oauth-attestation-based-client-auth/"/>.
      </t>
    </note>
  </front>
  <middle>
    <?line 66?>

<section anchor="introduction">
      <name>Introduction</name>
      <t><xref target="RFC7521"/> defines a way for a client to include an assertion in a token request to an authorization server for the purposes of client authentication. This specification uses this framework to define a new assertion type that provides a way for a client instance to authenticate itself with the authorization server through an assertion that is bound to a public key (for proof of possession). This assertion is designated with the name of Client Attestation in this draft.</t>
      <t>The following diagram depicts the overall architecture and protocol flow.</t>
      <artwork type="ascii-art"><![CDATA[
                              (3) Generate Client
                                  Attestation
                                  +-------+
                                  |       |
                                  |      \ /
                              +---------------+
                              |               |
                              |               |
                              |    Client     |
                              |    Backend    |
                              |               |
                              |               |
                              +---------------+
                                 / \      |
                                  |       |
                (2) Request       |       |     (4) Respond with
                Client            |       |     generated Client
                Attestation       |       |     Attestation
                for generated     |       |
                key               |       |
                                  |       |
                                  |      \ /
                              +---------------+                          +---------------+
                              |               |                          |               |
                     +------->|               |<------------------------>|               |
  (1) Generate       |        |    Client     |    (6) Interaction       | Authorization |
  Attestation Key    |        |   Instance    |    using Client          |    Server     |
                     +--------|               |    Attestation + PoP     |               |
                              |               |    for authentication    |               |
                              +---------------+                          +---------------+
                                 / \      |
                                  |       |
                                  +-------+
                                (5) Generate
                           Client Attestation PoP
]]></artwork>
      <t>The flow starts with the Authorization Server communicating its requirements for the client authentication to the client, made available in its metadata. A Client instance that wants to request an access token from this Authorization Server needs to obtain a Client Attestation JWT, for example, from its client backend first.</t>
      <t>Therefore, the client generates a key (Client Instance Key) and (platform specific) attestations to prove its authenticity, integrity and security to the client backend (step 1). The Client instance sends this data to the client backend in request for a Client Attestation JWT (step 2). If the Client Backend successfully validates the Client Instance Key and further data, it generates a signed Client Attestation JWT (step 3). As the Client Attestation JWT is cryptographically bound to the Client Instance Key generated by the client, the attestation is bound to this particular client instance. The client backend responds to the client's request by sending the Client Attestation JWT (step 4).</t>
      <t>The client can proceed now and generate a Client Attestation Proof of Possession (PoP) for the Client Instance Key (step 5). Lastly, the client sends both the Client Attestation JWT and the Client Attestation PoP with the Token Request to the Authorization Server. The Authorization Server validates the client attestation and thus authenticates the client. The Authorization Server may continue to issue sender-constrained access tokens using <xref target="DPOP"/>.</t>
      <t>Note that the protocol for steps 2 and 4 and how the client instance authenticates with the client backend is out of scope of this specification.  Note also that this specification can be utilized without the client having a backend server at all; in this case, each client instance will perform the functions described as being done by the backend for itself.</t>
      <t>This specification defines the format of the Client Attestation that a client instance uses to authenticate in its interactions with an authorization server, which is comprised of two key parts:</t>
      <ol spacing="normal" type="1"><li>A Client Attestation JWT - typically produced by the client backend.</li>
        <li>A Client Attestation Proof of Possession (PoP) - produced by the client instance.</li>
      </ol>
    </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>Client Attestation JWT:</dt>
        <dd>
          <t>A JSON Web Token (JWT) generated by the client backend which is bound to a key managed by a client instance which can then be used by the instance for client authentication.</t>
        </dd>
        <dt>Client Attestation Proof of Possession (PoP) JWT:</dt>
        <dd>
          <t>A Proof of Possession generated by the client instance using the key that the Client Attestation JWT is bound to.</t>
        </dd>
        <dt>Client Instance Key:</dt>
        <dd>
          <t>A cryptographic, asymmetric key generated by the client instance and proven to the client backend. The public key is contained in the Client Attestation JWT and is used to sign the Client Attestation Proof of Possession.</t>
        </dd>
      </dl>
    </section>
    <section anchor="client-authentication-in-the-token-request">
      <name>Client Authentication in the Token Request</name>
      <t>To perform client authentication using this scheme, the client instance uses the following parameter values and encodings.</t>
      <t>The value of the "client_assertion_type" is "urn:ietf:params:oauth:client-assertion-type:jwt-client-attestation".</t>
      <t>The value of the "client_assertion" parameter contains two JWTs, separated by a '~' character. It <bcp14>MUST NOT</bcp14> contain more or less than precisely two JWTs seperated by the '~' character. The first JWT <bcp14>MUST</bcp14> be the client attestation JWT defined in <xref target="client-attestation-jwt"/>, the second JWT <bcp14>MUST</bcp14> the client attestation PoP defined in <xref target="client-attestation-pop-jwt"/>.</t>
      <t>The following example demonstrates client authentication using this scheme during the presentation of an authorization code grant in an access token request (with extra line breaks for display purposes only):</t>
      <artwork><![CDATA[
POST /token HTTP/1.1
Host: as.example.com
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code&
code=n0esc3NRze7LTCu7iYzS6a5acc3f0ogp4&
client_assertion_type=urn%3Aietf%3Aparams%3Aoauth%3A
client-assertion-type%3Ajwt-client-attestation&
client_assertion=eyJhbGciOiJSUzI1NiIsImtpZCI6IjIyIn0.
eyJpc3Mi[...omitted for brevity...].
cC4hiUPo[...omitted for brevity...]~eyJzI1NiIsImtphbGciOimtpZCI6IjIyIn0.
IjIyIn0[...omitted for brevity...].
iOiJSUzI1[...omitted for brevity...]
]]></artwork>
      <section anchor="jwt-format-and-processing-requirements">
        <name>JWT Format and Processing Requirements</name>
        <t>In order to authenticate the client using this scheme, the authorization server <bcp14>MUST</bcp14> validate BOTH the JWTs present in the "client_assertion" parameter according to the criteria below.</t>
        <t>It is <bcp14>RECOMMENDED</bcp14> that the authorization server validate the Client Attestation JWT prior to validating the Client Attestation PoP.</t>
        <section anchor="client-attestation-jwt">
          <name>Client Attestation JWT</name>
          <t>The following rules apply to validating the client attestation JWT. Application of additional restrictions and policy are at the discretion of the authorization server.</t>
          <ol spacing="normal" type="1"><li>The JWT <bcp14>MUST</bcp14> contain an "iss" (issuer) claim that contains a unique identifier for the entity that issued the JWT. In the absence of an application profile specifying otherwise, compliant applications <bcp14>MUST</bcp14> compare issuer values using the Simple String Comparison method defined in Section 6.2.1 of <xref target="RFC3986"/>.</li>
            <li>The JWT <bcp14>MUST</bcp14> contain a "sub" (subject) claim with a value corresponding to the "client_id" of the OAuth client.</li>
            <li>The JWT <bcp14>MUST</bcp14> contain an "exp" (expiration time) claim that limits the time window during which the JWT can be used.  The authorization server <bcp14>MUST</bcp14> reject any JWT with an expiration time that has passed, subject to allowable clock skew between systems.</li>
            <li>The JWT <bcp14>MUST</bcp14> contain an "cnf" claim conforming <xref target="RFC7800"/> that conveys the key to be used for sender constraining tokens issued by the authorization server. The key <bcp14>MUST</bcp14> be expressed using the "jwk" representation.</li>
            <li>The JWT <bcp14>MAY</bcp14> contain an "nbf" (not before) claim that identifies the time before which the token <bcp14>MUST NOT</bcp14> be accepted for processing.</li>
            <li>The JWT <bcp14>MAY</bcp14> contain an "iat" (issued at) claim that identifies the time at which the JWT was issued.</li>
            <li>The JWT <bcp14>MAY</bcp14> contain a "jti" (JWT ID) claim that provides a unique identifier for the token.  The authorization server <bcp14>MAY</bcp14> ensure that JWTs are not replayed by maintaining the set of used "jti" values for the length of time for which the JWT would be considered valid based on the applicable "exp" instant.</li>
            <li>The JWT <bcp14>MAY</bcp14> contain other claims.</li>
            <li>The JWT <bcp14>MUST</bcp14> be digitally signed using an asymmetric cryptographic algorithm. The authorization server <bcp14>MUST</bcp14> reject the JWT if it is using a Message Authentication Code (MAC) based algorithm. The authorization server <bcp14>MUST</bcp14> reject JWTs with an invalid signature.</li>
            <li>The authorization server <bcp14>MUST</bcp14> reject a JWT that is not valid in all other respects per "JSON Web Token (JWT)" <xref target="RFC7519"/>.</li>
          </ol>
          <t>The following example is the decoded header and payload of a JWT meeting the processing rules as defined above.</t>
          <artwork><![CDATA[
{
  "alg": "ES256",
  "kid": "11"
}
.
{
  "iss": "https://client.example.com",
  "sub": "https://client.example.com",
  "nbf":1300815780,
  "exp":1300819380,
  "cnf": {
    "jwk": {
      "kty": "EC",
      "use": "sig",
      "crv": "P-256",
      "x": "18wHLeIgW9wVN6VD1Txgpqy2LszYkMf6J8njVAibvhM",
      "y": "-V4dS4UaLMgP_4fY4j8ir7cl1TXlFdAgcx55o7TkcSA"
    }
  }
}
]]></artwork>
        </section>
        <section anchor="client-attestation-pop-jwt">
          <name>Client Attestation PoP JWT</name>
          <t>The following rules apply to validating the Client Attestation JWT. Application of additional restrictions and policy are at the discretion of the Authorization Server.</t>
          <ol spacing="normal" type="1"><li>The JWT <bcp14>MUST</bcp14> contain an "iss" (issuer) claim with a value corresponding to the "client_id" of the OAuth client.</li>
            <li>The JWT <bcp14>MUST</bcp14> contain an "exp" (expiration time) claim that limits the time window during which the JWT can be used.  The authorization server <bcp14>MUST</bcp14> reject any JWT with an expiration time that has passed, subject to allowable clock skew between systems.  Note that the authorization server may reject JWTs with an "exp" claim value that is unreasonably far in the future.</li>
            <li>The JWT <bcp14>MUST</bcp14> contain a "jti" (JWT ID) claim that provides a unique identifier for the token.  The authorization server <bcp14>MAY</bcp14> ensure that JWTs are not replayed by maintaining the set of used "jti" values for the length of time for which the JWT would be considered valid based on the applicable "exp" instant.</li>
            <li>The JWT <bcp14>MUST</bcp14> contain an "aud" (audience) claim containing a value that identifies the authorization server as an intended audience. The <xref target="RFC8414"/> issuer identifier URL of the authorization server <bcp14>MUST</bcp14> be used as a value for an "aud" element to identify the authorization server as the intended audience of the JWT.</li>
            <li>The JWT <bcp14>MAY</bcp14> contain an "nbf" (not before) claim that identifies the time before which the token <bcp14>MUST NOT</bcp14> be accepted for processing.</li>
            <li>The JWT <bcp14>MAY</bcp14> contain an "iat" (issued at) claim that identifies the time at which the JWT was issued.  Note that the authorization server may reject JWTs with an "iat" claim value that is unreasonably far in the past.</li>
            <li>The JWT <bcp14>MAY</bcp14> contain other claims.</li>
            <li>The JWT <bcp14>MUST</bcp14> be digitally signed using an asymmetric cryptographic algorithm. The authorization server <bcp14>MUST</bcp14> reject the JWT if it is using a Message Authentication Code (MAC) based algorithm. The authorization server <bcp14>MUST</bcp14> reject JWTs with an invalid signature.</li>
            <li>The public key used to verify the JWT <bcp14>MUST</bcp14> be the key located in the "cnf" claim of the corresponding client attestation JWT.</li>
            <li>The authorization server <bcp14>MUST</bcp14> reject a JWT that is not valid in all other respects per "JSON Web Token (JWT)" <xref target="RFC7519"/>.</li>
          </ol>
          <t>The following example is the decoded header and payload of a JWT meeting the processing rules as defined above.</t>
          <artwork><![CDATA[
{
  "alg": "ES256"
}
.
{
  "iss": "https://client.example.com",
  "aud": "https://as.example.com",
  "nbf":1300815780,
  "exp":1300819380,
}
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="implementation-considerations">
      <name>Implementation Considerations</name>
      <section anchor="reuse-of-a-client-attestation-jwt">
        <name>Reuse of a Client Attestation JWT</name>
        <t>Implementers should be aware that the design of this authentication mechanism deliberately allows for a client instance to re-use a single Client Attestation JWT in multiple interactions/requests with an authorization server, whilst producing a fresh Client Attestation PoP JWT. Client deployments should consider this when determining the validity period for issued Client Attestation JWTs as this ultimately controls how long a client instance can re-use a single Client Attestation JWT.</t>
      </section>
      <section anchor="refresh-token-binding">
        <name>Refresh token binding</name>
        <t>Authorization servers issuing a refresh token in response to a token request using the "urn:ietf:params:oauth:client-assertion-type:jwt-client-attestation" client authentication method <bcp14>MUST</bcp14> bind the refresh token to the client instance, and NOT just the client as specified in section 6 <xref target="RFC6749"/>. To prove this binding, the client instance <bcp14>MUST</bcp14> authenticate itself to the authorization server when refreshing an access token using the "urn:ietf:params:oauth:client-assertion-type:jwt-client-attestation" authentication method. The client <bcp14>MUST</bcp14> also use the same Client Attestation that was used for authentication when the refresh token was issued.</t>
      </section>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <section anchor="client-instance-tracking-across-authorization-servers">
        <name>Client Instance Tracking Across Authorization Servers</name>
        <t>Implementers should be aware that using the same client attestation across multiple authorization servers could result in correlation of the end user using the client instance through claim values (including the public key in the <tt>cnf</tt> claim). Client deployments are therefore <bcp14>RECOMMENDED</bcp14> to use different client attestations across different authorization servers.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The guidance provided by <xref target="RFC7519"/> and <xref target="RFC8725"/> applies.</t>
    </section>
    <section anchor="appendix-a-iana-considerations">
      <name>Appendix A IANA Considerations</name>
      <section anchor="sub-namespace-registration-of-urnietfparamsoauthclient-assertion-typejwt-client-attestation">
        <name>Sub-Namespace Registration of urn:ietf:params:oauth:client-assertion-type:jwt-client-attestation</name>
        <t>This section registers the value "client-assertion-type:jwt-client-attestation" in the IANA "OAuth URI" registry established by "An IETF URN Sub-Namespace for OAuth" <xref target="RFC6755"/>.</t>
        <ul spacing="normal">
          <li>URN: urn:ietf:params:oauth:client-assertion-type:jwt-client-attestation</li>
          <li>Common Name: OAuth 2.0 Attested Key-Based Client Authentication</li>
          <li>Change Controller: IESG</li>
          <li>Specification Document: TBC</li>
        </ul>
      </section>
      <section anchor="registration-of-attestjwtclientauth-token-endpoint-authentication-method">
        <name>Registration of attest_jwt_client_auth Token Endpoint Authentication Method</name>
        <t>This section registers the value "attest_jwt_client_auth" in the IANA "OAuth Token Endpoint Authentication Methods" registry established by OAuth 2.0 Dynamic Client Registration Protocol <xref target="RFC7591"/>.</t>
        <ul spacing="normal">
          <li>Token Endpoint Authentication Method Name: "attest_jwt_client_auth"</li>
          <li>Change Controller: IESG</li>
          <li>Specification Document(s): TBC</li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <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="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="RFC7638">
          <front>
            <title>JSON Web Key (JWK) Thumbprint</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>This specification defines a method for computing a hash value over a JSON Web Key (JWK). It defines which fields in a JWK are used in the hash computation, the method of creating a canonical form for those fields, and how to convert the resulting Unicode string into a byte sequence to be hashed. The resulting hash value can be used for identifying or selecting the key represented by the JWK that is the subject of the thumbprint.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7638"/>
          <seriesInfo name="DOI" value="10.17487/RFC7638"/>
        </reference>
        <reference anchor="RFC6755">
          <front>
            <title>An IETF URN Sub-Namespace for OAuth</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>This document establishes an IETF URN Sub-namespace for use with OAuth-related specifications. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6755"/>
          <seriesInfo name="DOI" value="10.17487/RFC6755"/>
        </reference>
        <reference anchor="RFC7591">
          <front>
            <title>OAuth 2.0 Dynamic Client Registration Protocol</title>
            <author fullname="J. Richer" initials="J." role="editor" surname="Richer"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="M. Machulak" initials="M." surname="Machulak"/>
            <author fullname="P. Hunt" initials="P." surname="Hunt"/>
            <date month="July" year="2015"/>
            <abstract>
              <t>This specification defines mechanisms for dynamically registering OAuth 2.0 clients with authorization servers. Registration requests send a set of desired client metadata values to the authorization server. The resulting registration responses return a client identifier to use at the authorization server and the client metadata values registered for the client. The client can then use this registration information to communicate with the authorization server using the OAuth 2.0 protocol. This specification also defines a set of common client metadata fields and values for clients to use during registration.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7591"/>
          <seriesInfo name="DOI" value="10.17487/RFC7591"/>
        </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="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="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="DPOP">
          <front>
            <title>OAuth 2.0 Demonstrating Proof-of-Possession at the Application Layer (DPoP)</title>
            <author initials="D." surname="Fett" fullname="Daniel Fett">
              <organization/>
            </author>
            <author initials="B." surname="Campbell" fullname="Brian Campbell">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <author initials="T." surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization/>
            </author>
            <author initials="M." surname="Jones" fullname="Mike Jones">
              <organization/>
            </author>
            <author initials="D." surname="Waite" fullname="Daniel Waite">
              <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>
        <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="RFC7521">
          <front>
            <title>Assertion Framework for OAuth 2.0 Client Authentication and Authorization Grants</title>
            <author fullname="B. Campbell" initials="B." surname="Campbell"/>
            <author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="Y. Goland" initials="Y." surname="Goland"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification provides a framework for the use of assertions with OAuth 2.0 in the form of a new client authentication mechanism and a new authorization grant type. Mechanisms are specified for transporting assertions during interactions with a token endpoint; general processing rules are also specified.</t>
              <t>The intent of this specification is to provide a common framework for OAuth 2.0 to interwork with other identity systems using assertions and to provide alternative client authentication mechanisms.</t>
              <t>Note that this specification only defines abstract message flows and processing rules. In order to be implementable, companion specifications are necessary to provide the corresponding concrete instantiations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7521"/>
          <seriesInfo name="DOI" value="10.17487/RFC7521"/>
        </reference>
        <reference anchor="ARF">
          <front>
            <title>The European Digital Identity Wallet Architecture and Reference Framework</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 318?>

<section anchor="additional-examples">
      <name>Additional Examples</name>
      <section anchor="wallet-instance-attestation">
        <name>Wallet Instance Attestation</name>
        <t>This non-normative example shows a client attestations used as an wallet instance attestation in the context of eIDAS 2.0 <xref target="ARF"/>, e.g. to secure a Type-1 configuration credential. The additional claims describe the wallet's device binding und user binding capabilities and the achievable level of assurance.</t>
        <artwork><![CDATA[
{
        "typ": "wallet-attestation+jwt",
        "alg": "ES256",
        "kid": "1"
}
.
{
        "iss": "https://wallet-provider.com",
        "sub": "https://wallet-provider.com/solution/wallet-1.6.0",
        "iat": 1541493724,
        "exp": 1516247022,
        "wallet_name": "human readable wallet name",
        "key_type" : "STRONGBOX",
        "user_authentication" : "SYSTEM_PIN",
        "attested_security_context" : "https://eu-trust-list.eu/asc/high",
        "cnf": {
                "jwk" : {
                        "kty": "EC",
                        "crv": "P-256",
                        "x": "TCAER19Zvu3OHF4j4W4vfSVoHIP1ILilDls7vCeGemc",
                        "y": "ZxjiWWbZMQGHVWKVQ4hbSIirsVfuecCE6t4jT9F2HZQ"
                }
        }
}

]]></artwork>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>We would like to thank
Michael B. Jones,
Torsten Lodderstedt,
and
Kristina Yasuda
for their valuable contributions to this specification.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
AAA=

-->

</rfc>
