<?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.1 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-attestation-based-client-auth-01" category="info" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.2 -->
  <front>
    <title>OAuth 2.0 Attestation-Based Client Authentication</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-attestation-based-client-auth-01"/>
    <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="October" day="23"/>
    <abstract>
      <?line 40?>

<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-ietf-oauth-attestation-based-client-auth/draft-ietf-oauth-attestation-based-client-auth.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-oauth-attestation-based-client-auth/"/>.
      </t>
    </note>
  </front>
  <middle>
    <?line 44?>

<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)
                 +-------+
                 |       |
                 |      \ /
             +---------------+
             |               |
             |    Client     |
             |    Backend    |
             |               |
             +---------------+
                / \      |
            (2)  |       |  (4)
                 |      \ /
             +---------------+           +---------------+
      +----->|               |           |               |
  (1) |      |    Client     |    (6)    | Authorization |
      |      |   Instance    |<--------->|    Server     |
      +------|               |           |               |
             +---------------+           +---------------+
                / \      |
                 |       |
                 +-------+
                    (5)

]]></artwork>
      <t>The following steps describe this OAuth flow:</t>
      <t>(1) The Client Instance generates a key (Client Instance Key) and optional further attestations (that are out of scope) to prove its authenticity to the Client Backend.</t>
      <t>(2) The Client Instance sends this data to the Client Backend in request for a Client Attestation JWT.</t>
      <t>(3) The Client Backend validates the Client Instance Key and optional further data. It generates a signed Client Attestation JWT that is cryptographically bound to the Client Instance Key generated by the Client. Therefore, the attestation is bound to this particular Client Instance.</t>
      <t>(4) The Client Backend responds to the Client Instance by sending the Client Attestation JWT.</t>
      <t>(5) The Client Instance generates a Proof of Possession (PoP) with the Client Instance Key.</t>
      <t>(6) The Client Instance sends both the Client Attestation JWT and the Client Attestation PoP JWT to the authorization server, e.g. within a token request. The authorization server validates the Client Attestation and thus authenticates the Client Instance.</t>
      <t>Note that the protocol for steps (2) and (4) and how the Client Instance authenticates to 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>
          <t>A Client Attestation JWT - typically produced by the client backend.</t>
        </li>
        <li>
          <t>A Client Attestation Proof of Possession (PoP) - produced by the client instance.</t>
        </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">
      <name>Client Authentication</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" parameter (as defined in <xref target="RFC7521"/>) set to "urn:ietf:params:oauth:client-assertion-type:jwt-client-attestation".</t>
      <t>The value of the "client_assertion" parameter (as defined in <xref target="RFC7521"/>) set to a value containing two JWTs, separated by a '~' character. It <bcp14>MUST NOT</bcp14> contain more or less than precisely two JWTs separated 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> be 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>
              <t>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"/>.</t>
            </li>
            <li>
              <t>The JWT <bcp14>MUST</bcp14> contain a "sub" (subject) claim with a value corresponding to the "client_id" of the OAuth client.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>The JWT <bcp14>MUST</bcp14> contain an "cnf" claim conforming <xref target="RFC7800"/> that conveys the key to be used for producing the client attestation pop for client authentication with an authorization server. The key <bcp14>MUST</bcp14> be expressed using the "jwk" representation.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>The JWT <bcp14>MAY</bcp14> contain an "iat" (issued at) claim that identifies the time at which the JWT was issued.</t>
            </li>
            <li>
              <t>The JWT <bcp14>MAY</bcp14> contain other claims.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>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"/>.</t>
            </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>
              <t>The JWT <bcp14>MUST</bcp14> contain an "iss" (issuer) claim with a value corresponding to the "client_id" of the OAuth client.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>The JWT <bcp14>MAY</bcp14> contain an "nonce" claim containing a String value that is provided by the authorization server to associate the Client Attestation PoP JWT with a particular transaction and prevent replay attacks.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>The JWT <bcp14>MAY</bcp14> contain other claims.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>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"/>.</t>
            </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,
  "jti": "d25d00ab-552b-46fc-ae19-98f440f25064"
}
]]></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 key that was present in the "cnf" claim of the client attestation that was used for client 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 anchor="replay-attack-detection">
        <name>Replay Attack Detection</name>
        <t>The following mechanisms exist within this client authentication method in order to allow an authorization server to detect replay attacks for presented client attestation PoPs:</t>
        <ul spacing="normal">
          <li>
            <t>The client uses "jti" (JWT ID) claims for the Client Attestation PoP JWT and the authorization server maintains a list of used (seen) "jti" values for the time of which the JWT would be considered valid based on the applicable "exp" claim. If any Client Attestation PoP JWT would be replayed, the authorization server would recognize the "jti" and respond with an authentication error.</t>
          </li>
          <li>
            <t>The authorization server provides a nonce for the particular transaction and the client uses it for the "nonce" claim in the Client Attestation PoP JWT. The authorization server validates that the nonce matches for the transaction. This approach may require an additional roundtrip in the protocol. The authorization server <bcp14>MUST</bcp14> ensure that the nonce provides sufficient entropy.</t>
          </li>
          <li>
            <t>The authorization server may expect the usage of a nonce in the Client Attestation PoP JWT, but instead of providing the nonce explicitly, the client may implicitly reuse an existing artefact, e.g. the authorization code. The authorization server <bcp14>MUST</bcp14> ensure that the nonce provides sufficient entropy.</t>
          </li>
        </ul>
        <t>The approach using a nonce explicitly provided by the authorization server gives stronger replay attack detection guarantees, however support by the authorization server is <bcp14>OPTIONAL</bcp14> to simplify mandatory implementation requirements. The "jti" method is mandatory and hence acts as a default fallback.</t>
      </section>
    </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>
            <t>URN: urn:ietf:params:oauth:client-assertion-type:jwt-client-attestation</t>
          </li>
          <li>
            <t>Common Name: OAuth 2.0 Attested Key-Based Client Authentication</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Specification Document: TBC</t>
          </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>
            <t>Token Endpoint Authentication Method Name: "attest_jwt_client_auth"</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Specification Document(s): TBC</t>
          </li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-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="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="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="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 303?>

<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://attestation-service.com",
        "sub": "https://wallet-provider.com",
        "iat": 1541493724,
        "exp": 1516247022,
        "attested_security_context" : "https://eu-trust-list.eu/asc/high",
        "cnf": {
                "jwk" : {
                        "kty": "EC",
                        "crv": "P-256",
                        "x": "TCAER19Zvu3OHF4j4W4vfSVoHIP1ILilDls7vCeGemc",
                        "y": "ZxjiWWbZMQGHVWKVQ4hbSIirsVfuecCE6t4jT9F2HZQ"
                },
                "key_type" : "STRONGBOX",
                "user_authentication" : "SYSTEM_PIN"
        }
}

]]></artwork>
      </section>
    </section>
    <section anchor="document-history">
      <name>Document History</name>
      <t>-01</t>
      <ul spacing="normal">
        <li>
          <t>Updated eIDAS example in appendix</t>
        </li>
        <li>
          <t>Removed text around jti claim in client attestation, refined text for its usage in the client attestation pop</t>
        </li>
        <li>
          <t>Refined text around cnf claim in client attestation</t>
        </li>
        <li>
          <t>Clarified how to bind refresh tokens to a client instance using this client authentication method</t>
        </li>
        <li>
          <t>Made it more explicit that the client authentication mechanism is general purpose making it compatible with extensions like PAR</t>
        </li>
        <li>
          <t>Updated acknowledgments</t>
        </li>
        <li>
          <t>Simplified the diagram in the introduction</t>
        </li>
        <li>
          <t>Updated references</t>
        </li>
        <li>
          <t>Added some guidance around replay attack detection</t>
        </li>
      </ul>
      <t>-00</t>
      <ul spacing="normal">
        <li>
          <t>Initial draft</t>
        </li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>We would like to thank
Brian Campbell,
Francesco Marino,
Guiseppe De Marco,
Kristina Yasuda,
Michael B. Jones,
Takahiko Kawasaki
and
Torsten Lodderstedt
for their valuable contributions to this specification.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
3XjwNjzrX7f759I/9dXh3Yl4JWbuurGIrJ8/fZTv3o1+vvjp1dnbdz++/akz
HQ36MlZvx6lwT14cJJ2Pw+OXu2c//9RYGep+dfQGJKnmhD2MPhjeXF2+en71
1wo68IBC/KEM1HWn94Phi4sP1/3LfEY8LmArqNa9sDNYMMAH4F522hTDIo+K
69p4s5o0HQYkXADP3IhZeIelejR0TvCXAfDIgfqqG9nCEgbVoqmTeT/OgFTr
OiqPdtF8ha5mPlCmdfOhp4V0Q5e06N3FUFfLSpUU/f5c7WssD2S+MMcF97C0
pQ/9WziZ49O63rZoDBPo11d8e/AcEBvVZ2Siz00mEh2TPbgOFJNL9uWtYNe9
m8J6QWAIwrkvvAnBQYwnGj9Kc8zT/kqDEbYs/lhHPkxsf0wFR4AoA00qnBVq
EEb8NdgX1WgH1aiPL98BW/SLERSxluj70tU/PCS8HxqAP5VogHK+EyZFJQap
VsiDW+d5LCH4nIAqjoTvbzkvyTcrNwT5xzIIt5xXqVQCFJSdCmxzoenHmDIP
zt5zlXp8y7mAtJyDf3/eYq/DAMC5M+S3fCpvQ/Yjn3MFgncgKDjDMAaHF7Dz
ENjHSy9xTH4o9fFVfWgCI7iEjIlWxL4yXX6l1fkfNjngZx5KAAA=

-->

</rfc>
