openid-4-verifiable-credential-issuance | November 2024 | |
Lodderstedt, et al. | Standards Track | [Page] |
This specification defines an API for the issuance of Verifiable Credentials.¶
This specification defines an OAuth-protected API for the issuance of Verifiable Credentials. Credentials can be of any format, including, but not limited to, IETF SD-JWT VC [I-D.ietf-oauth-sd-jwt-vc], ISO mDL [ISO.18013-5], and W3C VCDM [VC_DATA].¶
Verifiable Credentials are very similar to identity assertions, like ID Tokens in OpenID Connect [OpenID.Core], in that they allow a Credential Issuer to assert End-User claims. A Verifiable Credential follows a pre-defined schema (the Credential type) and MAY be bound to a certain holder, e.g., through Cryptographic Holder Binding. Verifiable Credentials can be securely presented for the End-User to the RP, without involvement of the Credential Issuer.¶
Access to this API is authorized using OAuth 2.0 [RFC6749], i.e., the Wallet uses OAuth 2.0 to obtain authorization to receive Verifiable Credentials. This way the issuance process can benefit from the proven security, simplicity, and flexibility of OAuth 2.0 and existing OAuth 2.0 deployments and OpenID Connect OPs (see [OpenID.Core]) can be extended to become Credential Issuers.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
This specification uses the terms "Access Token", "Authorization Endpoint", "Authorization Request", "Authorization Response", "Authorization Code Grant", "Authorization Server", "Client", "Client Authentication", "Client Identifier", "Grant Type", "Refresh Token", "Token Endpoint", "Token Request" and "Token Response" defined by OAuth 2.0 [RFC6749], the terms "End-User", "Entity", and "Request Object" as defined by OpenID Connect Core [OpenID.Core], the term "JSON Web Token (JWT)" defined by JSON Web Token (JWT) [RFC7519], the term "JOSE Header" defined by JSON Web Signature (JWS) [RFC7515].¶
Base64url-encoded denotes the URL-safe base64 encoding without padding defined in Section 2 of [RFC7515].¶
This specification also defines the following terms. In the case where a term has a definition that differs, the definition below is authoritative for this specification.¶
jwt_vc_json
Credential Format, a VC with Cryptographic Holder Binding contains a public key or a reference to a public key that corresponds to the private key controlled by the Holder.¶
This specification defines an API for Credential issuance provided by a Credential Issuer. The API is comprised of the following endpoints:¶
c_nonce
value can be obtained to be used in proof of possession of key material in a subsequent request to the Credential Endpoint (see Section 7).¶
The Credential Endpoint may bind an issued Credential to specific cryptographic key material. Credential requests thus should include proof of possession for the key material. Multiple key proof types are supported.¶
According to the OAuth 2.0 framework, each Credential Issuer acts as a Resource Server that is protected by an Access Token issued by an Authorization Server, as defined in OAuth 2.0 [RFC6749]. The same Authorization Server can protect one or more Credential Issuers. Wallets identify the Authorization Server for a Credential Issuer by referring to the Credential Issuer's metadata (see Section 11.2).¶
All OAuth 2.0 Grant Types and extensions mechanisms can be used in conjunction with the Credential issuance API. Aspects not defined in this specification are expected to follow [RFC6749].¶
Existing OAuth 2.0 mechanisms are extended as following:¶
openid_credential
is defined to convey the details about the Credentials (including Credential Dataset, Credential Formats, and Credential types) the Wallet wants to obtain (see Section 5.1.1).¶
credential_offer_endpoint
is added to allow a Wallet (acting as OAuth 2.0 client) to publish its Credential Offer Endpoint (see Section 11.1).¶
issuer_state
is added to convey state in the context of processing an issuer-initiated Credential Offer (see Section 5.1). Additional parameters wallet_issuer
and user_hint
are added to enable the Credential Issuer to request Verifiable Presentations from the calling Wallet during Authorization Request processing.¶
In the context of this specification, Credential Datasets define the data (claims) about a subject that is to be included in a Credential. The Credential Format defines how the data (or Dataset) within final Verifiable Credential is organized and secured. This can include the specific parameters needed to describe the Credential, which are established in the Credential Format Profile. While in principle independent of each other, the Credential Dataset and the Credential Format can have a relationship in the sense that an Issuer may only offer certain Credential Formats for certain Credential Datasets.¶
An End-User typically authorizes the issuance of Credentials with a specific Credential Dataset, but does not usually care about the Credential Format. The same Credential Dataset may even be issued in different Credential Formats or with multiple Credential instances.¶
This specification is Credential Format agnostic and allows implementers to leverage specific capabilities of Credential Formats of their choice. To this end, extension points to add Credential Format specific parameters in the Credential Issuer metadata, Credential Offer, Authorization Request, and Credential Request are defined.¶
Credential Format Profiles for IETF SD-JWT VC [I-D.ietf-oauth-sd-jwt-vc], ISO mDL [ISO.18013-5], and W3C VCDM [VC_DATA] are specified in Appendix A. Other specifications or deployments can define their own Credential Format Profiles using the above-mentioned extension points.¶
This specification enables the issuance of Verifiable Credentials through the Credential Endpoint. A single request message to this endpoint may request the issuance of one or more Verifiable Credentials.¶
Credentials can vary in their format, including Credential Format Profile-specific parameters, in their contents known as the Credential Dataset, and in the cryptographic data such as Issuer signatures, hashes, and keys used for Cryptographic Holder Binding. Credentials can therefore vary in the following dimensions:¶
In the context of a single request, all issued Credentials MUST share the same Credential Format and Credential Dataset. However, they MAY contain different Cryptographic Data, such as being bound to different cryptographic keys (e.g., to ensure unlinkability between the Credentials). To issue multiple Verifiable Credentials with differing Credential Formats or Credential Datasets, multiple requests MUST be sent to the Credential Endpoint.¶
In the course of the authorization process, the Credential Issuer MAY also request Credential presentation as a means to authenticate or identify the End-User during the issuance flow, as described in Appendix D.5.¶
The issuance can have multiple characteristics that can be combined depending on the use cases:¶
The following subsections illustrate some of the authorization flows supported by this specification.¶
Below is the summary of how Credential(s) that are being issued are identified throughout the issuance flow:¶
credential_configuration_ids
parameter.¶
credential_configuration_id
parameters or format
and other Credential Format
specific parameters to identify the requested Credential Configurations. In this case,
the Authorization Server MUST return credential_identifiers
parameter in the Token Response,
and the Wallet uses those credential_identifier
values in the Credential Request.¶
scope
parameter in the Authorization Request, the scope
value(s)
are used to identify requested Credential Configurations. In this case, the Authorization Server has two options.
If the Authorization Server supports returning credential_identifiers
parameter
in the Token Response, it MAY do so, in which case the Wallet uses those credential_identifier
values
in the Credential Request. If the Authorization Server does not support returning
credential_identifiers
parameter in the Token Response, the Wallet uses credential_configuration_id
parameter
in the Credential Request.¶
Figure 2 is a diagram of a Credential issuance using the Pre-Authorized Code Flow. In this flow, before initiating the flow with the Wallet, the Credential Issuer first conducts the steps required to prepare for Credential issuance, e.g., End-User authentication and authorization. Consequently, the Pre-Authorized Code is sent by the Credential Issuer to the Wallet. This flow does not use the Authorization Endpoint, and the Wallet exchanges the Pre-Authorized Code for the Access Token directly at the Token Endpoint. The Access Token is then used to request Credential issuance at the Credential Endpoint. See Appendix D.2 for the description of such a use case.¶
How the End-User provides information required for the issuance of a requested Credential to the Credential Issuer and the business processes conducted by the Credential Issuer to prepare a Credential are out of scope of this specification.¶
This flow uses the OAuth 2.0 Grant Type urn:ietf:params:oauth:grant-type:pre-authorized_code
, which is defined in Section 4.1.1.¶
The following diagram is based on the Credential Issuer-initiated flow, as described in the use case in Appendix D.2. Please note that it does not illustrate all the optional features outlined in this specification.¶
(1) The Credential Issuer successfully obtains consent and End-User data required for the issuance of a requested Credential from the End-User using an Issuer-specific business process.¶
(2) The flow defined in this specification begins as the Credential Issuer generates a Credential Offer for certain Credential(s) and communicates it to the Wallet, for example, as a QR code or as a URI. The Credential Offer contains the Credential Issuer's URL, the information about the Credential(s) being offered, and the Pre-Authorized Code. This step is defined in Section 4.1.¶
(3) The Wallet uses the Credential Issuer's URL to fetch its metadata, as described in Section 11.2. The Wallet needs the metadata to learn the Credential types and formats that the Credential Issuer supports, and to determine the Token Endpoint (at the OAuth 2.0 Authorization Server) as well as the Credential Endpoint required to start the request.¶
(4) The Wallet sends the Pre-Authorized Code obtained in Step (2) in the Token Request to the Token Endpoint. The Wallet will additionally send a Transaction Code provided by the End-User, if it was required by the Credential Issuer. This step is defined in Section 6.¶
(5) This step is the same as Step (6) in the Authorization Code Flow.¶
It is important to note that anyone who possesses a valid Pre-Authorized Code, without further security measures, would be able to receive a VC from the Credential Issuer. Implementers MUST implement mitigations most suitable to the use case.¶
One such mechanism defined in this specification is the usage of Transaction Codes. The Credential Issuer indicates the usage of Transaction Codes in the Credential Offer and sends the Transaction Code to the End-User via a second channel different than the issuance flow. After the End-User provides the Transaction Code, the Wallet sends the Transaction Code within the Token Request, and the Authorization Server verifies the Transaction Code.¶
For more details and concrete mitigations, see Section 12.3.¶
This endpoint is used by a Credential Issuer that is already interacting with an End-User who wishes to initiate a Credential issuance. It is used to pass available information relevant for the Credential issuance to ensure a convenient and secure process.¶
The Credential Issuer makes a Credential Offer by allowing the End-User to invoke the Wallet using the Wallet's Credential Offer Endpoint defined in Section 11.1. For example, by clicking a link and/or rendering a QR code containing the Credential Offer that the End-User can scan in a wallet or an arbitrary camera application.¶
Credential Issuers MAY also communicate Credential Offers directly to a Wallet's backend but any mechanism for doing so is currently outside the scope of this specification.¶
The Credential Offer object, which is a JSON-encoded object with the Credential Offer parameters, can be sent by value or by reference.¶
The Credential Offer contains a single URI query parameter, either credential_offer
or credential_offer_uri
:¶
credential_offer
: Object with the Credential Offer parameters. This MUST NOT be present when the credential_offer_uri
parameter is present.¶
credential_offer_uri
: String that is a URL using the https
scheme referencing a resource containing a JSON object with the Credential Offer parameters. This MUST NOT be present when the credential_offer
parameter is present.¶
For security considerations, see Section 12.2.¶
This specification defines the following parameters for the JSON-encoded Credential Offer object:¶
credential_issuer
: REQUIRED. The URL of the Credential Issuer, as defined in Section 11.2.1, from which the Wallet is requested to obtain one or more Credentials. The Wallet uses it to obtain the Credential Issuer's Metadata following the steps defined in Section 11.2.2.¶
credential_configuration_ids
: REQUIRED. Array of unique strings that each identify one of the keys in the name/value pairs stored in the credential_configurations_supported
Credential Issuer metadata. The Wallet uses these string values to obtain the respective object that contains information about the Credential being offered as defined in Section 11.2.3. For example, these string values can be used to obtain scope
values to be used in the Authorization Request.¶
grants
: OPTIONAL. Object indicating to the Wallet the Grant Types the Credential Issuer's Authorization Server is prepared to process for this Credential Offer. Every grant is represented by a name/value pair. The name is the Grant Type identifier; the value is an object that contains parameters either determining the way the Wallet MUST use the particular grant and/or parameters the Wallet MUST send with the respective request(s). If grants
is not present or is empty, the Wallet MUST determine the Grant Types the Credential Issuer's Authorization Server supports using the respective metadata. When multiple grants are present, it is at the Wallet's discretion which one to use.¶
Additional Credential Offer parameters MAY be defined and used. The Wallet MUST ignore any unrecognized parameters.¶
The following values are defined by this specification:¶
Grant Type authorization_code
:¶
issuer_state
: OPTIONAL. String value created by the Credential Issuer and opaque to the Wallet that is used to bind the subsequent Authorization Request with the Credential Issuer to a context set up during previous steps. If the Wallet decides to use the Authorization Code Flow and received a value for this parameter, it MUST include it in the subsequent Authorization Request to the Credential Issuer as the issuer_state
parameter value.¶
authorization_server
: OPTIONAL string that the Wallet can use to identify the Authorization Server to use with this grant type when authorization_servers
parameter in the Credential Issuer metadata has multiple entries. It MUST NOT be used otherwise. The value of this parameter MUST match with one of the values in the authorization_servers
array obtained from the Credential Issuer metadata.¶
Grant Type urn:ietf:params:oauth:grant-type:pre-authorized_code
:¶
pre-authorized_code
: REQUIRED. The code representing the Credential Issuer's authorization for the Wallet to obtain Credentials of a certain type. This code MUST be short lived and single use. If the Wallet decides to use the Pre-Authorized Code Flow, this parameter value MUST be included in the subsequent Token Request with the Pre-Authorized Code Flow.¶
tx_code
: OPTIONAL. Object describing the requirements for a Transaction Code, which the Authorization Server expects the End-User to present along with the Token Request in a Pre-Authorized Code Flow. If the Authorization Server does not expect a Transaction Code, this object is absent; this is the default. The Transaction Code is intended to bind the Pre-Authorized Code to a certain transaction to prevent replay of this code by an attacker that, for example, scanned the QR code while standing behind the legitimate End-User. It is RECOMMENDED to send the Transaction Code via a separate channel. If the Wallet decides to use the Pre-Authorized Code Flow, the Transaction Code value MUST be sent in the tx_code
parameter with the respective Token Request as defined in Section 6.1. If no length
or description
is given, this object may be empty, indicating that a Transaction Code is required.¶
input_mode
: OPTIONAL. String specifying the input character set. Possible values are numeric
(only digits) and text
(any characters). The default is numeric
.¶
length
: OPTIONAL. Integer specifying the length of the Transaction Code. This helps the Wallet to render the input screen and improve the user experience.¶
description
: OPTIONAL. String containing guidance for the Holder of the Wallet on how to obtain the Transaction Code, e.g., describing over which communication channel it is delivered. The Wallet is RECOMMENDED to display this description next to the Transaction Code input screen to improve the user experience. The length of the string MUST NOT exceed 300 characters. The description
does not support internationalization, however the Issuer MAY detect the Holder's language by previous communication or an HTTP Accept-Language header within an HTTP GET request for a Credential Offer URI.¶
authorization_server
: OPTIONAL string that the Wallet can use to identify the Authorization Server to use with this grant type when authorization_servers
parameter in the Credential Issuer metadata has multiple entries. It MUST NOT be used otherwise. The value of this parameter MUST match with one of the values in the authorization_servers
array obtained from the Credential Issuer metadata.¶
The following non-normative example shows a Credential Offer object where the Credential Issuer can offer the issuance of two different Credentials (which may even be of different formats):¶
{ "credential_issuer": "https://credential-issuer.example.com", "credential_configuration_ids": [ "UniversityDegreeCredential", "org.iso.18013.5.1.mDL" ], "grants": { "urn:ietf:params:oauth:grant-type:pre-authorized_code": { "pre-authorized_code": "oaKazRN8I0IbtZ0C7JuMn5", "tx_code": { "length": 4, "input_mode": "numeric", "description": "Please provide the one-time code that was sent via e-mail" } } } }¶
credential_offer
Parameter
Below is a non-normative example of a Credential Offer passed by value:¶
GET /credential_offer?credential_offer=%7B%22credential_issuer%22:%22https://credential-issuer.example.com%22,%22credential_configuration_ids%22:%5B%22UniversityDegree_JWT%22,%22org.iso.18013.5.1.mDL%22%5D,%22grants%22:%7B%22urn:ietf:params:oauth:grant-type:pre-authorized_code%22:%7B%22pre-authorized_code%22:%22oaKazRN8I0IbtZ0C7JuMn5%22,%22tx_code%22:%7B%7D%7D%7D%7D¶
The following is a non-normative example of a Credential Offer that can be included in a QR code or a link used to invoke a Wallet deployed as a native app:¶
openid-credential-offer://?credential_offer=%7B%22credential_issuer%22:%22https://credential-issuer.example.com%22,%22credential_configuration_ids%22:%5B%22org.iso.18013.5.1.mDL%22%5D,%22grants%22:%7B%22urn:ietf:params:oauth:grant-type:pre-authorized_code%22:%7B%22pre-authorized_code%22:%22oaKazRN8I0IbtZ0C7JuMn5%22,%22tx_code%22:%7B%22input_mode%22:%22text%22,%22description%22:%22Please%20enter%20the%20serial%20number%20of%20your%20physical%20drivers%20license%22%7D%7D%7D%7D¶
credential_offer_uri
Parameter
Upon receipt of the credential_offer_uri
, the Wallet MUST send an HTTP GET request to the URI to retrieve the referenced Credential Offer Object, unless it is already cached, and parse it to recreate the Credential Offer parameters.¶
Note: The Credential Issuer SHOULD use a unique URI for each Credential Offer utilizing distinct parameters, or otherwise prevent the Credential Issuer from caching the credential_offer_uri
.¶
Below is a non-normative example of this fetch process:¶
GET /credential_offer HTTP/1.1 Host: server.example.com¶
The response from the Credential Issuer that contains a Credential Offer Object MUST use the media type application/json
.¶
This ability to pass the Credential Offer by reference is particularly useful for large Credential Offer objects.¶
When the Credential Offer is displayed as a QR code, it would usually contain the Credential Offer by reference due to the size limitations of the QR codes. Below is a non-normative example:¶
openid-credential-offer://? credential_offer_uri=https%3A%2F%2Fserver%2Eexample%2Ecom%2Fcredential-offer %2FGkurKxf5T0Y-mnPFCHqWOMiZi4VS138cQO_V7PZHAdM¶
Below is a non-normative example of a response from the Credential Issuer that contains a Credential Offer Object used to encourage the Wallet to start an Authorization Code Flow:¶
HTTP/1.1 200 OK Content-Type: application/json { "credential_issuer": "https://credential-issuer.example.com", "credential_configuration_ids": [ "UniversityDegreeCredential" ], "grants": { "authorization_code": { "issuer_state": "eyJhbGciOiJSU0Et...FYUaBy" } } }¶
Below is a non-normative example of a Credential Offer Object for a Pre-Authorized Code Flow (with a Credential type reference):¶
{ "credential_issuer": "https://credential-issuer.example.com", "credential_configuration_ids": [ "UniversityDegree_LDP_VC" ], "grants": { "urn:ietf:params:oauth:grant-type:pre-authorized_code": { "pre-authorized_code": "adhjhdjajkdkhjhdj", "tx_code": {} } } }¶
When retrieving the Credential Offer from the Credential Offer URL, the application/json
media type MUST be used. The Credential Offer cannot be signed and MUST NOT use application/jwt
with "alg": "none"
.¶
The Wallet does not create a response. UX control stays with the Wallet after completion of the process.¶
The Token Endpoint issues an Access Token and, optionally, a Refresh Token in exchange for the Authorization Code that Client obtained in a successful Authorization Response. It is used in the same manner as defined in [RFC6749] and follows the recommendations given in [I-D.ietf-oauth-security-topics].¶
The Token Request is made as defined in Section 4.1.3 of [RFC6749].¶
The following are the extension parameters to the Token Request used in the Pre-Authorized Code Flow defined in Section 3.5:¶
pre-authorized_code
: The code representing the authorization to obtain Credentials of a certain type. This parameter MUST be present if the grant_type
is urn:ietf:params:oauth:grant-type:pre-authorized_code
.¶
tx_code
: OPTIONAL. String value containing a Transaction Code value itself. This value MUST be present if a tx_code
object was present in the Credential Offer (including if the object was empty). This parameter MUST only be used if the grant_type
is urn:ietf:params:oauth:grant-type:pre-authorized_code
.¶
Requirements around how the Wallet identifies and, if applicable, authenticates itself with the Authorization Server in the Token Request depends on the Client type defined in Section 2.1 of [RFC6749] and the Client authentication method indicated in the token_endpoint_auth_method
Client metadata. The requirements specified in Sections 4.1.3 and 3.2.1 of [RFC6749] MUST be followed.¶
For the Pre-Authorized Code Grant Type, authentication of the Client is OPTIONAL, as described in Section 3.2.1 of OAuth 2.0 [RFC6749], and, consequently, the client_id
parameter is only needed when a form of Client Authentication that relies on this parameter is used.¶
If the Token Request contains an authorization_details
parameter (as defined by [RFC9396]) of type openid_credential
and the Credential Issuer's metadata contains an authorization_servers
parameter, the authorization_details
object MUST contain the Credential Issuer's identifier in the locations
element.¶
If the Token Request contains a scope value related to Credential issuance and the Credential Issuer's metadata contains an authorization_servers
parameter, it is RECOMMENDED to use a resource
parameter [RFC8707] whose value is the Credential Issuer's identifier value to allow the Authorization Server to differentiate Credential Issuers.¶
When the Pre-Authorized Grant Type is used, it is RECOMMENDED that the Credential Issuer issues an Access Token valid only for the Credentials indicated in the Credential Offer (see Section 4.1). The Wallet SHOULD obtain a separate Access Token if it wants to request issuance of any Credentials that were not included in the Credential Offer, but were discoverable from the Credential Issuer's credential_configurations_supported
metadata parameter.¶
Additional Token Request parameters MAY be defined and used, as described in [RFC6749]. The Authorization Server MUST ignore any unrecognized parameters.¶
Below is a non-normative example of a Token Request in an Authorization Code Flow:¶
POST /token HTTP/1.1 Host: server.example.com Content-Type: application/x-www-form-urlencoded grant_type=authorization_code &code=SplxlOBeZQQYbYS6WxSbIA &code_verifier=dBjftJeZ4CVP-mB92K27uhbUJU1p1r_wW1gFWFOEjXk &redirect_uri=https%3A%2F%2FWallet.example.org%2Fcb &client_assertion_type=urn%3Aietf%3Aparams%3Aoauth%3Aclient-assertion-type%3Ajwt-bearer &client_assertion=eyJhbGciOiJSU...¶
Token Responses are made as defined in [RFC6749].¶
The Authorization Server might decide to authorize issuance of multiple instances for each Credential requested in the Authorization Request. Each Credential instance is described using the same entry in the credential_configurations_supported
Credential Issuer metadata, but contains different claim values or different subset of claims within the claims set identified by the credential_configuration_id
.¶
In addition to the response parameters defined in [RFC6749], the Authorization Server MAY return the following parameters:¶
authorization_details
: REQUIRED when the authorization_details
parameter is used to request issuance of a Credential of a certain Credential Configuration as defined in Section 5.1.1. OPTIONAL when scope
parameter was used to request issuance of a Credential of a certain Credential Configuration. It is an array of objects, as defined in Section 7 of [RFC9396]. In addition to the parameters defined in Section 5.1.1, this specification defines the following parameter to be used with the authorization details type openid_credential
in the Token Response:¶
credential_identifiers
: REQUIRED. Array of strings, each uniquely identifying a Credential Dataset that can be issued using the Access Token returned in this response. Each of these Credential Datasets corresponds to the same Credential Configuration in the credential_configurations_supported
parameter of the Credential Issuer metadata. The Wallet MUST use these identifiers together with an Access Token in subsequent Credential Requests. See Section 3.3.4 for the summary of the options how requested Credential(s) are identified throughout the Issuance flow.¶
Additional Token Response parameters MAY be defined and used,
as described in [RFC6749].
The Wallet MUST ignore any unrecognized parameters in the Token Response.
An included authorization_details
parameter MAY also have additional data fields defined and used
when the type
value is openid_credential
.
The Wallet MUST ignore any unrecognized data fields in the authorization_details
present in the Token Response.¶
Below is a non-normative example of a Token Response when the authorization_details
parameter was used to request issuance of a certain Credential type:¶
HTTP/1.1 200 OK Content-Type: application/json Cache-Control: no-store { "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6Ikp..sHQ", "token_type": "Bearer", "expires_in": 86400, "authorization_details": [ { "type": "openid_credential", "credential_configuration_id": "UniversityDegreeCredential", "credential_identifiers": [ "CivilEngineeringDegree-2023", "ElectricalEngineeringDegree-2023" ] } ] }¶
If the Token Request is invalid or unauthorized, the Authorization Server constructs the error response as defined as in Section 5.2 of OAuth 2.0 [RFC6749].¶
The following additional clarifications are provided for some of the error codes already defined in [RFC6749]:¶
invalid_request
:¶
invalid_grant
:¶
invalid_client
:¶
Below is a non-normative example Token Error Response:¶
HTTP/1.1 400 Bad Request Content-Type: application/json Cache-Control: no-store { "error": "invalid_request" }¶
This endpoint allows a Client to acquire a fresh c_nonce
value. A Credential Issuer that requires c_nonce
values to be incorporated into proofs in the Credential Request (see Section 8.2) MUST offer a Nonce Endpoint.¶
The nonce_endpoint
Credential Issuer Metadata parameter, as defined in Section 11.2.3, contains the URL of the Credential Issuer's Nonce Endpoint.¶
A request for a nonce is made by sending an HTTP POST request to the URL provided in the nonce_endpoint
Credential Issuer Metadata parameter.¶
Below is a non-normative example of a Nonce Request:¶
POST /nonce HTTP/1.1 Host: credential-issuer.example.com Content-Length: 0¶
The Credential Issuer provides a nonce value in the HTTP response with a 2xx status code and the following parameters included as top-level members in the message body of the HTTP response using the application/json media type:¶
c_nonce
: REQUIRED. String containing a nonce to be used when creating a proof of possession of the key proof (see Section 8.2).¶
c_nonce_expires_in
: OPTIONAL. Number denoting the lifetime in seconds of the c_nonce
. This value serves only as a hint to the Client, indicating how long the Credential Issuer is likely to accept the c_nonce
as valid.¶
Due to the temporal and contextually sensitive nature of the c_nonce
value, the Credential Issuer MUST make the response uncacheable by adding a Cache-Control
header field including the value no-store
.¶
Below is a non-normative example of a Nonce Response:¶
HTTP/1.1 200 OK Content-Type: application/json Cache-Control: no-store { "c_nonce": "wKI4LT17ac15ES9bw8ac4", "c_nonce_expires_in": 120 }¶
The Credential Endpoint issues one or more Credentials of the same Credential Configuration and Credential Dataset (as approved by the End-User) upon presentation of a valid Access Token representing this approval. Support for this endpoint is REQUIRED.¶
Communication with the Credential Endpoint MUST utilize TLS.¶
The Client sends a Credential Request to obtain:¶
If the Issuer supports the issuance of multiple Credentials, the Client can send several consecutive Credential Requests to obtain multiple Credentials in a chosen sequence.¶
The issued Credential SHOULD be cryptographically bound to the identifier of the End-User who possesses the Credential. Cryptographic binding allows the Verifier to verify during the presentation of a Credential that the End-User presenting a Credential is the same End-User to whom that Credential was issued. For non-cryptographic types of binding and Credentials issued without any binding, see the Implementation Considerations in Section 13.1 and Section 13.2.¶
Note: Claims in the Credential are about the subject of the Credential, which is often the End-User who possesses it.¶
For cryptographic binding, the Client has the following options defined in Section 8.2 to provide cryptographic binding material for a requested Credential:¶
A Client makes a Credential Request to the Credential Endpoint by sending the following parameters in the entity-body of an HTTP POST request using the application/json
media type.¶
credential_identifier
: REQUIRED when an Authorization Details of type openid_credential
was returned from the Token Response. It MUST NOT be used otherwise. A string that identifies a Credential Dataset that is requested for issuance. When this parameter is used, the credential_configuration_id
MUST NOT be present.¶
credential_configuration_id
: REQUIRED if a credential_identifiers
parameter was not returned from the Token Response as part of the authorization_details
parameter. It MUST NOT be used otherwise. String that uniquely identifies one of the keys in the name/value pairs stored in the credential_configurations_supported
Credential Issuer metadata. The corresponding object in the credential_configurations_supported
map MUST contain one of the value(s) used in the scope
parameter in the Authorization Request. When this parameter is used, the credential_identifier
MUST NOT be present.¶
proof
: OPTIONAL. Object providing a single proof of possession of the cryptographic key material to which the issued Credential instance will be bound to. proof
parameter MUST NOT be present if proofs
parameter is used. The proof
object MUST contain the following:¶
proof_type
: REQUIRED. String specifying the key proof type. The value set for this parameter determines the additional parameters in the key proof object and their corresponding processing rules. The key proof types outlined in this specification are detailed in Section 8.2.1.¶
proofs
: OPTIONAL. Object providing one or more proof of possessions of the cryptographic key material to which the issued Credential instances will be bound to. The proofs
parameter MUST NOT be present if proof
parameter is used. proofs
object contains exactly one parameter named as the proof type in Section 8.2.1, the value set for this parameter is an array containing parameters as defined by the corresponding proof type.¶
credential_response_encryption
: OPTIONAL. Object containing information for encrypting the Credential Response. If this request element is not present, the corresponding credential response returned is not encrypted.¶
See Section 3.3.4 for the summary of the options how requested Credential(s) are identified throughout the Issuance flow.¶
The proof_type
parameter is an extension point that enables the use of different types of proofs for different cryptographic schemes.¶
The proof(s) in the proof
or proofs
parameter MUST incorporate the Credential Issuer Identifier (audience), and optionally a c_nonce
value generated by the Credential Issuer to allow the Credential Issuer to detect replay. The way that data is incorporated depends on the key proof type. In a JWT, for example, the c_nonce
value is conveyed in the nonce
claim, whereas the audience is conveyed in the aud
claim. In a Linked Data proof, for example, the c_nonce
is included as the challenge
element in the key proof object and the Credential Issuer (the intended audience) is included as the domain
element.¶
Either the proof
or proofs
parameter MUST be present if the proof_types_supported
parameter is present in the credential_configurations_supported
parameter of the Issuer metadata for the requested Credential.¶
The c_nonce
value can be retrieved from the Nonce Endpoint as defined in Section 7.¶
Additional Credential Request parameters MAY be defined and used. The Credential Issuer MUST ignore any unrecognized parameters.¶
Below is a non-normative example of a Credential Request for a Credential in [ISO.18013-5] format using the Credential configuration identifier and a key proof type jwt
:¶
POST /credential HTTP/1.1 Host: server.example.com Content-Type: application/json Authorization: Bearer czZCaGRSa3F0MzpnWDFmQmF0M2JW { "credential_configuration_id": "org.iso.18013.5.1.mDL", "proof": { "proof_type": "jwt", "jwt": "eyJraWQiOiJkaWQ6ZXhhbXBsZTplYmZlYjFmNzEyZWJjNmYxYzI3NmUxMmVjMjEva2V5cy8xIiwiYWxnIjoiRVMyNTYiLCJ0eXAiOiJKV1QifQ" } }¶
Below is a non-normative example of a Credential Request for two Credential instances in an IETF SD-JWT VC [I-D.ietf-oauth-sd-jwt-vc] format using a Credential identifier from the Token Response and key proof type jwt
:¶
POST /credential HTTP/1.1 Host: server.example.com Content-Type: application/json Authorization: Bearer czZCaGRSa3F0MzpnWDFmQmF0M2JW { "credential_identifier": "CivilEngineeringDegree-2023", "proofs": { "jwt": [ "eyJ0eXAiOiJvcGVuaWQ0dmNpLXByb29mK2p3dCIsImFsZyI6IkVTMjU2IiwiandrIjp7Imt0eSI6IkVDIiwiY3J2IjoiUC0yNTYiLCJ4IjoiblVXQW9BdjNYWml0aDhFN2kxOU9kYXhPTFlGT3dNLVoyRXVNMDJUaXJUNCIsInkiOiJIc2tIVThCalVpMVU5WHFpN1N3bWo4Z3dBS18weGtjRGpFV183MVNvc0VZIn19", "eyJraWQiOiJkaWQ6ZXhhbXBsZTplYmZlYjFmNzEyZWJjNmYxYzI3NmUxMmVjMjEva2V5cy8xIiwiYWxnIjoiRVMyNTYiLCJ0eXAiOiJKV1QifQ" ] } }¶
Below is a non-normative example of a Credential Request for one Credential in W3C VCDM format using a Credential identifier from the Token Response and key proof type ldp_vp
:¶
POST /credential HTTP/1.1 Host: server.example.com Content-Type: application/json Authorization: BEARER czZCaGRSa3F0MzpnWDFmQmF0M2JW { "credential_identifier": "CivilEngineeringDegree-2023", "proof": { "proof_type": "ldp_vp", "ldp_vp": { "@context": [ "https://www.w3.org/ns/credentials/v2", "https://www.w3.org/ns/credentials/examples/v2" ], "type": [ "VerifiablePresentation" ], "holder": "did:key:z6MkvrFpBNCoYewiaeBLgjUDvLxUtnK5R6mqh5XPvLsrPsro", "proof": [ { "type": "DataIntegrityProof", "cryptosuite": "eddsa-2022", "proofPurpose": "authentication", "verificationMethod": "did:key:z6MkvrFpBNCoYewiaeBLgjUDvLxUtnK5R6mqh5XPvLsrPsro#z6MkvrFpBNCoYewiaeBLgjUDvLxUtnK5R6mqh5XPvLsrPsro", "created": "2023-03-01T14:56:29.280619Z", "challenge": "82d4cb36-11f6-4273-b9c6-df1ac0ff17e9", "domain": "did:web:audience.company.com", "proofValue": "z5hrbHzZiqXHNpLq6i7zePEUcUzEbZKmWfNQzXcUXUrqF7bykQ7ACiWFyZdT2HcptF1zd1t7NhfQSdqrbPEjZceg7" } ] } } }¶
The Client MAY request encrypted responses by providing its encryption parameters in the Credential Request.¶
The Credential Issuer indicates support for encrypted responses by including the credential_response_encryption
parameter in the Credential Issuer Metadata.¶
This specification defines the following proof types:¶
jwt
: A JWT [RFC7519] is used for proof of possession. When a proof_type
parameter in a proof
object is set to jwt
, it MUST also contain a jwt
parameter that includes a JWT as defined in Section 8.2.1.1. When a proofs
object is using a jwt
proof type, it MUST include a jwt
parameter with its value being an array of JWTs, where each JWT is formed as defined in Section 8.2.1.1.¶
ldp_vp
: A W3C Verifiable Presentation object signed using the Data Integrity Proof [VC_Data_Integrity] as defined in [VC_DATA_2.0] or [VC_DATA] is used for proof of possession. When a proof_type
parameter in a proof
object is set to ldp_vp
, it MUST also contain an ldp_vp
parameter that includes a W3C Verifiable Presentation defined in Section 8.2.1.2. When a proofs
object is using a ldp_vp
proof type, it MUST include an ldp_vp
parameter with its value being an array of W3C Verifiable Presentations, where each of these W3C Verifiable Presentation is formed as defined in Section 8.2.1.2.¶
attestation
: A JWT [RFC7519] representing a key attestation without using a proof of possession of the cryptographic key material that is being attested. When a proof_type
parameter in a proof
object is set to attestation
, the object MUST also contain an attestation
parameter that includes a JWT as defined in Section 8.2.1.3.¶
There are two ways to convey key attestations (as defined in Appendix B) of the cryptographic key material during Credential issuance:¶
jwt
proof type in the Credential Request to create a proof of possession of the key and adds the key attestation in the JOSE header.¶
attestation
proof type in the Credential Request with the key attestation without a proof of possession of the key itself.¶
Depending on the Wallet's implementation, the attestation
may avoid unnecessary End-User interaction during Credential issuance, as the key itself does not necessarily need to perform signature operations.¶
Additional proof types MAY be defined and used.¶
jwt
Proof Type
The JWT MUST contain the following elements:¶
in the JOSE header,¶
alg
: REQUIRED. A digital signature algorithm identifier such as per IANA "JSON Web Signature and Encryption Algorithms" registry [IANA.JOSE]. It MUST NOT be none
or an identifier for a symmetric algorithm (MAC).¶
typ
: REQUIRED. MUST be openid4vci-proof+jwt
, which explicitly types the key proof JWT as recommended in Section 3.11 of [RFC8725].¶
kid
: OPTIONAL. JOSE Header containing the key ID. If the Credential shall be bound to a DID, the kid
refers to a DID URL which identifies a particular key in the DID Document that the Credential shall be bound to. It MUST NOT be present if jwk
is present.¶
jwk
: OPTIONAL. JOSE Header containing the key material the new Credential shall be bound to. It MUST NOT be present if kid
is present.¶
x5c
: OPTIONAL. JOSE Header containing a certificate or certificate chain corresponding to the key used to sign the JWT.¶
key_attestation
: OPTIONAL. JOSE Header containing a key attestation as described in Appendix B.¶
trust_chain
: OPTIONAL. JOSE Header containing an [OpenID.Federation] Trust Chain. This element MAY be used to convey key attestation, metadata, metadata policies, federation Trust Marks and any other information related to a specific federation, if available in the chain. When used for signature verification, the header parameter kid
MUST be present.¶
in the JWT body,¶
iss
: OPTIONAL (string). The value of this claim MUST be the client_id
of the Client making the Credential request. This claim MUST be omitted if the access token authorizing the issuance call was obtained from a Pre-Authorized Code Flow through anonymous access to the token endpoint.¶
aud
: REQUIRED (string). The value of this claim MUST be the Credential Issuer Identifier.¶
iat
: REQUIRED (number). The value of this claim MUST be the time at which the key proof was issued using the syntax defined in [RFC7519].¶
nonce
: OPTIONAL (string). The value type of this claim MUST be a string, where the value is a server-provided c_nonce
. It MUST be present when the Wallet received a server-provided c_nonce
.¶
The Credential Issuer MUST validate that the JWT used as a proof is actually signed by a key identified in the JOSE Header.¶
The Credential Issuer SHOULD issue a Credential for each cryptographic public key specified in the attested_keys
claim within the key_attestation
parameter.¶
Cryptographic algorithm names used in the proof_signing_alg_values_supported
Credential Issuer metadata parameter for this proof type SHOULD be one of those defined in [IANA.JOSE].¶
Below is a non-normative example of a proof
parameter (with line breaks within values for display purposes only):¶
{ "proof_type": "jwt", "jwt": "eyJ0eXAiOiJvcGVuaWQ0dmNpLXByb29mK2p3dCIsImFsZyI6IkVTMjU2IiwiandrI jp7Imt0eSI6IkVDIiwiY3J2IjoiUC0yNTYiLCJ4IjoiblVXQW9BdjNYWml0aDhFN2k xOU9kYXhPTFlGT3dNLVoyRXVNMDJUaXJUNCIsInkiOiJIc2tIVThCalVpMVU5WHFpN 1N3bWo4Z3dBS18weGtjRGpFV183MVNvc0VZIn19.eyJhdWQiOiJodHRwczovL2NyZW RlbnRpYWwtaXNzdWVyLmV4YW1wbGUuY29tIiwiaWF0IjoxNzAxOTYwNDQ0LCJub25j ZSI6IkxhclJHU2JtVVBZdFJZTzZCUTR5bjgifQ.-a3EDsxClUB4O3LeDD5DVGEnNMT 01FCQW4P6-2-BNBqc_Zxf0Qw4CWayLEpqkAomlkLb9zioZoipdP-jvh1WlA" }¶
where the decoded JWT looks like this:¶
{ "typ": "openid4vci-proof+jwt", "alg": "ES256", "jwk": { "kty": "EC", "crv": "P-256", "x": "nUWAoAv3XZith8E7i19OdaxOLYFOwM-Z2EuM02TirT4", "y": "HskHU8BjUi1U9Xqi7Swmj8gwAK_0xkcDjEW_71SosEY" } }.{ "aud": "https://credential-issuer.example.com", "iat": 1701960444, "nonce": "LarRGSbmUPYtRYO6BQ4yn8" }¶
Here is another example JWT not only proving possession of a private key but also providing key attestation data for that key:¶
{ "typ": "openid4vci-proof+jwt", "alg": "ES256", "kid": "0", "key_attestation": <key attestation in JWT format> }. { "iss": "s6BhdRkqt3", "aud": "https://server.example.com", "iat": 1659145924, "nonce": "tZignsnFbp" }¶
ldp_vp
Proof Type
When a W3C Verifiable Presentation as defined by [VC_DATA_2.0] or [VC_DATA] signed using Data Integrity is used as key proof, it MUST contain the following elements:¶
holder
: OPTIONAL. MUST be equivalent to the controller identifier (e.g., DID) for the verificationMethod
value identified by the proof.verificationMethod
property.¶
proof
: REQUIRED. The proof body of a W3C Verifiable Presentation.¶
domain
: REQUIRED (string). The value of this claim MUST be the Credential Issuer Identifier.¶
challenge
: REQUIRED when the Credential Issuer has provided a c_nonce
. It MUST NOT be used otherwise. String, where the value is a server-provided c_nonce
. It MUST be present when the Wallet received a server-provided c_nonce
.¶
The Credential Issuer MUST validate that the W3C Verifiable Presentation used as a proof is actually signed with a key in the possession of the Holder.¶
Cryptographic algorithm names used in the proof_signing_alg_values_supported
Credential Issuer metadata parameter for this proof type SHOULD be one of those defined in [LD_Suite_Registry].¶
Below is a non-normative example of a proof
parameter:¶
{ "proof_type": "ldp_vp", "ldp_vp": { "@context": [ "https://www.w3.org/ns/credentials/v2", "https://www.w3.org/ns/credentials/examples/v2" ], "type": [ "VerifiablePresentation" ], "holder": "did:key:z6MkvrFpBNCoYewiaeBLgjUDvLxUtnK5R6mqh5XPvLsrPsro", "proof": [ { "type": "DataIntegrityProof", "cryptosuite": "eddsa-2022", "proofPurpose": "authentication", "verificationMethod": "did:key:z6MkvrFpBNCoYewiaeBLgjUDvLxUtnK5R6mqh5XPvLsrPsro#z6MkvrFpBNCoYewiaeBLgjUDvLxUtnK5R6mqh5XPvLsrPsro", "created": "2023-03-01T14:56:29.280619Z", "challenge": "82d4cb36-11f6-4273-b9c6-df1ac0ff17e9", "domain": "did:web:audience.company.com", "proofValue": "z5hrbHzZiqXHNpLq6i7zePEUcUzEbZKmWfNQzXcUXUrqF7bykQ7ACiWFyZdT2HcptF1zd1t7NhfQSdqrbPEjZceg7" } ] } }¶
attestation
Proof Type
A key attestation in JWT format as defined in Appendix B.1.¶
When a key attestation is used as a proof type, it MUST contain the c_nonce
value provided by the Credential Issuer in its nonce
parameter.¶
Below is a non-normative example of a proof
parameter (with line breaks within values for display purposes only):¶
{ "proof_type": "attestation", "attestation": "<key attestation in JWT format>" }¶
The Credential Issuer SHOULD issue a Credential for each cryptographic public key specified in the attested_keys
claim within the key_attestation
parameter.¶
To validate a key proof, the Credential Issuer MUST ensure that:¶
alg
parameter value is not none
, is supported by the application, and is acceptable per local policy,¶
c_nonce
, the nonce in the key proof matches the server-provided c_nonce
value,¶
These checks may be performed in any order.¶
Credential Response can contain one or more Credentials depending on the Credential Request.¶
Credential Response can be immediate or deferred and can contain one or more Credentials with the same Credential Configuration and Credential Dataset depending on the Credential Request. The Credential Issuer MAY be able to immediately issue requested Credentials and send them to the Client. In other cases, the Credential Issuer MAY NOT be able to immediately issue a requested Credential and would send a transaction_id
parameter to the Client to be used later to receive a Credential when it is ready.¶
The HTTP status code MUST be 202 (see Section 15.3.3 of [RFC9110]).¶
If the Client requested an encrypted response by including the credential_response_encryption
object in the request, the Credential Issuer MUST encode the information in the Credential Response as a JWT using the parameters from the credential_response_encryption
object. If the Credential Response is encrypted, the media type of the response MUST be set to application/jwt
. If encryption was requested in the Credential Request and the Credential Response is not encrypted, the Client SHOULD reject the Credential Response.¶
If the Credential Response is not encrypted, the media type of the response MUST be set to application/json
.¶
The following parameters are used in the JSON-encoded Credential Response body:¶
credentials
: OPTIONAL. Contains an array of one or more issued Credentials. It MUST NOT be used if the transaction_id
parameter is present. The elements of the array MUST be objects. This specification defines the following parameters to be used inside this object:¶
credential
: REQUIRED. Contains one issued Credential. It MAY be a string or an object, depending on the Credential Format. See Appendix A for the Credential Format-specific encoding requirements.¶
transaction_id
: OPTIONAL. String identifying a Deferred Issuance transaction. This parameter is contained in the response if the Credential Issuer cannot immediately issue the Credential. The value is subsequently used to obtain the respective Credential with the Deferred Credential Endpoint (see Section 9). It MUST not be used if the credentials
parameter is present. It MUST be invalidated after the Credential for which it was meant has been obtained by the Wallet.¶
notification_id
: OPTIONAL. String identifying one or more Credentials issued in one Credential Response. It MUST be included in the Notification Request as defined in Section 10.1. It MUST not be used if the credentials
parameter is not present.¶
The encoding of the Credential returned in the credential
parameter depends on the Credential Format. Credential Formats expressed as binary data MUST be base64url-encoded and returned as a string.¶
More details such as Credential Format Identifiers are defined in the Credential Format Profiles in Appendix A.¶
Additional Credential Response parameters MAY be defined and used. The Wallet MUST ignore any unrecognized parameters.¶
Below is a non-normative example of a Credential Response in an immediate issuance flow for a Credential in JWT VC format (JSON encoded):¶
HTTP/1.1 200 OK Content-Type: application/json Cache-Control: no-store { "credentials": [ { "credential": "LUpixVCWJk0eOt4CXQe1NXK....WZwmhmn9OQp6YxX0a2L" } ] }¶
Below is a non-normative example of a Credential Response in an immediate issuance flow for multiple Credential instances in JWT VC format (JSON encoded) with an additional notification_id
parameter:¶
HTTP/1.1 200 OK Content-Type: application/json { "credentials": [ { "credential": "LUpixVCWJk0eOt4CXQe1NXK....WZwmhmn9OQp6YxX0a2L" }, { "credential": "YXNkZnNhZGZkamZqZGFza23....29tZTIzMjMyMzIzMjMy" } ], "notification_id": "3fwe98js" }¶
Below is a non-normative example of a Credential Response in a deferred flow:¶
HTTP/1.1 202 Accepted Content-Type: application/json Cache-Control: no-store { "transaction_id": "8xLOxBtZp8" }¶
When the Credential Request is invalid or unauthorized, the Credential Issuer constructs the error response as defined in this section.¶
For errors related to the Credential Request's payload, such as issues with type
, format
, proof
, encryption parameters, or if the request is denied, the specific error codes from this section MUST be used instead of the generic invalid_request
parameter defined in Section 3.1 of [RFC6750].¶
If the Wallet is requesting the issuance of a Credential that is not supported by the Credential Endpoint, the HTTP response MUST use the HTTP status code 400 (Bad Request) and set the content type to application/json
with the following parameters in the JSON-encoded response body:¶
error
: REQUIRED. The error
parameter SHOULD be a single ASCII [USASCII] error code from the following:¶
invalid_credential_request
: The Credential Request is missing a required parameter, includes an unsupported parameter or parameter value, repeats the same parameter, or is otherwise malformed.¶
unsupported_credential_type
: Requested Credential type is not supported.¶
unsupported_credential_format
: Requested Credential Format is not supported.¶
invalid_proof
: The proof
or proofs
parameter in the Credential Request is invalid: (1) if both fields are missing, or (2) both are present simultaneously, or (3) one of the provided key proofs is invalid, or (4) if at least one of the key proofs does not contain a c_nonce
value (refer to Section 7.2).¶
invalid_nonce
: The proof
or proofs
parameter in the Credential Request uses an invalid nonce: at least one of the key proofs contains an invalid c_nonce
value. The wallet should retrieve a new c_nonce
value (refer to Section 7).¶
invalid_encryption_parameters
: This error occurs when the encryption parameters in the Credential Request are either invalid or missing. In the latter case, it indicates that the Credential Issuer requires the Credential Response to be sent encrypted, but the Credential Request does not contain the necessary encryption parameters.¶
credential_request_denied
: The Credential Request has not been accepted by the Credential Issuer.¶
error_description
: OPTIONAL. The error_description
parameter MUST be a human-readable ASCII [USASCII] text, providing any additional information used to assist the Client implementers in understanding the occurred error. The values for the error_description
parameter MUST NOT include characters outside the set %x20-21 / %x23-5B / %x5D-7E
.¶
The usage of these parameters takes precedence over the invalid_request
parameter defined in Section 8.3.1.1, since they provide more details about the errors.¶
The following is a non-normative example of a Credential Error Response where an unsupported Credential Format was requested:¶
HTTP/1.1 400 Bad Request Content-Type: application/json Cache-Control: no-store { "error": "unsupported_credential_format" }¶
This endpoint is used to issue one or more Credentials previously requested at the Credential Endpoint in cases where the Credential Issuer was not able to immediately issue this Credential. Support for this endpoint is OPTIONAL.¶
The Wallet MUST present to the Deferred Endpoint an Access Token that is valid for the issuance of the Credential(s) previously requested at the Credential Endpoint.¶
Communication with the Deferred Credential Endpoint MUST utilize TLS.¶
The Deferred Credential Request is an HTTP POST request. It MUST be sent using the application/json
media type.¶
The following parameter is used in the Deferred Credential Request:¶
transaction_id
: REQUIRED. String identifying a Deferred Issuance transaction.¶
The Credential Issuer MUST invalidate the transaction_id
after the Credential for which it was meant has been obtained by the Wallet.¶
Additional Deferred Credential Request parameters MAY be defined and used. The Credential Issuer MUST ignore any unrecognized parameters.¶
The following is a non-normative example of a Deferred Credential Request:¶
POST /deferred_credential HTTP/1.1 Host: server.example.com Content-Type: application/json Authorization: Bearer czZCaGRSa3F0MzpnWDFmQmF0M2JW { "transaction_id": "8xLOxBtZp8" }¶
The Deferred Credential Response uses the credentials
and notification_id
parameters as defined in Section 8.3.¶
Additional Deferred Credential Response parameters MAY be defined and used. The Wallet MUST ignore any unrecognized parameters.¶
The Deferred Credential Response MUST be sent using the application/json
media type.¶
The following is a non-normative example of a Deferred Credential Response:¶
HTTP/1.1 200 OK Content-Type: application/json { "credentials": [ { "credential": "LUpixVCWJk0eOt4CXQe1NXK....WZwmhmn9OQp6YxX0a2L" }, { "credential": "YXNkZnNhZGZkamZqZGFza23....29tZTIzMjMyMzIzMjMy" } ], "notification_id": "3fwe98js" }¶
When the Deferred Credential Request is invalid or the Credential is not available yet, the Credential Issuer constructs the error response as defined in Section 8.3.1.¶
The following additional error codes are specified in addition to those already defined in Section 8.3.1.2:¶
issuance_pending
: The Credential issuance is still pending. The error response SHOULD also contain the interval
member, determining the minimum amount of time in seconds that the Wallet needs to wait before providing a new request to the Deferred Credential Endpoint. If interval
member is not present, the Wallet MUST use 5
as the default value.¶
invalid_transaction_id
: The Deferred Credential Request contains an invalid transaction_id
. This error occurs when the transaction_id
was not issued by the respective Credential Issuer or it was already used to obtain a Credential.¶
This is a non-normative example of a Deferred Credential Error Response:¶
HTTP/1.1 400 Bad Request Content-Type: application/json Cache-Control: no-store { "error": "invalid_transaction_id" }¶
This endpoint is used by the Wallet to notify the Credential Issuer of certain events for issued Credentials. These events enable the Credential Issuer to take subsequent actions after issuance. The Credential Issuer needs to return one notification_id
parameter per Credential Response or Deferred Credential Response for the Wallet to be able to use this endpoint. Support for this endpoint is OPTIONAL. The Issuer cannot assume that a notification will be sent for every issued Credential since the use of this Endpoint is not mandatory for the Wallet.¶
The Wallet MUST present to the Notification Endpoint a valid Access Token issued at the Token Endpoint as defined in Section 6.¶
A Credential Issuer that requires a request to the Notification Endpoint MUST ensure the Access Token issued by the Authorization Server is valid at the Notification Endpoint.¶
The notification from the Wallet is idempotent. When the Credential Issuer receives multiple identical calls from the Wallet for the same notification_id
, it returns success. Due to the network errors, there are no guarantees that a Credential Issuer will receive a notification within a certain time period or at all.¶
Communication with the Notification Endpoint MUST utilize TLS.¶
The Wallet sends an HTTP POST request to the Notification Endpoint with the following parameters in the entity-body and using the application/json
media type. If the Wallet supports the Notification Endpoint, the Wallet MAY send one or more Notification Requests per notification_id
value received.
* notification_id
: REQUIRED. String received in the Credential Response or Deferred Credential Response identifying an issuance flow that contained one or more Credentials with the same Credential Configuration and Credential Dataset.
* event
: REQUIRED. Type of the notification event. It MUST be a case sensitive string whose value is either credential_accepted
, credential_failure
, or credential_deleted
. credential_accepted
is to be used when the Credentials were successfully stored in the Wallet, with or without user action. credential_deleted
is to be used when the unsuccessful Credential issuance was caused by a user action. In all other unsuccessful cases, credential_failure
is to be used. Partial errors during batch credential issuance (e.g., one of the Credentials in the batch could not be stored) MUST be treated as the overall issuance flow failing.¶
event_description
: OPTIONAL. Human-readable ASCII [USASCII] text providing additional information, used to assist the Credential Issuer developer in understanding the event that occurred. Values for the event_description
parameter MUST NOT include characters outside the set %x20-21 / %x23-5B / %x5D-7E
.¶
Additional Notification Request parameters MAY be defined and used. The Credential Issuer MUST ignore any unrecognized parameters.¶
Below is a non-normative example of a Notification Request when a credential was successfully accepted by the End-User:¶
POST /notification HTTP/1.1 Host: server.example.com Content-Type: application/json Authorization: Bearer czZCaGRSa3F0MzpnWDFmQmF0M2JW { "notification_id": "3fwe98js", "event": "credential_accepted" }¶
Below is a non-normative example of a Notification Request when a Credential was deleted by the End-User:¶
POST /notification HTTP/1.1 Host: server.example.com Content-Type: application/json Authorization: Bearer czZCaGRSa3F0MzpnWDFmQmF0M2JW { "notification_id": "3fwe98js", "event": "credential_failure", "event_description": "Could not store the Credential. Out of storage." }¶
When the Credential Issuer has successfully received the Notification Request from the Wallet, it MUST respond with an HTTP status code in the 2xx range. Use of the HTTP status code 204 (No Content) is RECOMMENDED.¶
Below is a non-normative example of response to a successful Notification Request:¶
HTTP/1.1 204 No Content¶
If the Notification Request does not contain an Access Token or contains an invalid Access Token, the Notification Endpoint returns an Authorization Error Response, such as defined in Section 3 of [RFC6750].¶
When the notification_id
value is invalid, the HTTP response MUST use the HTTP status code 400 (Bad Request) and set the content type to application/json
with the following parameters in the JSON-encoded response body:¶
error
: REQUIRED. The value of the error
parameter SHOULD be one of the following ASCII [USASCII] error codes:¶
It is at the discretion of the Issuer to decide how to proceed after returning an error response.¶
The following is a non-normative example of a Notification Error Response when an invalid notification_id
value was used:¶
HTTP/1.1 400 Bad Request Content-Type: application/json Cache-Control: no-store { "error": "invalid_notification_id" }¶
This specification defines the following new Client Metadata parameter in addition to those defined by [RFC7591] for Wallets acting as OAuth 2.0 Client:¶
credential_offer_endpoint
: OPTIONAL. Credential Offer Endpoint of a Wallet.¶
Additional Client metadata parameters MAY be defined and used, as described in [RFC7591]. The Wallet MUST ignore any unrecognized parameters.¶
How to obtain Client Metadata is out of scope of this specification. Profiles of this specification MAY also define static sets of Client Metadata values to be used.¶
If the Credential Issuer is unable to perform discovery of the Wallet's Credential Offer Endpoint, the following custom URL scheme is used: openid-credential-offer://
.¶
The Credential Issuer Metadata contains information on the Credential Issuer's technical capabilities, supported Credentials, and (internationalized) display information.¶
A Credential Issuer is identified by a case sensitive URL using the https
scheme that contains scheme, host and, optionally, port number and path components, but no query or fragment components.¶
The Credential Issuer's configuration can be retrieved using the Credential Issuer Identifier.¶
Credential Issuers publishing metadata MUST make a JSON document available at the path formed by concatenating the string /.well-known/openid-credential-issuer
to the Credential Issuer Identifier. If the Credential Issuer value contains a path component, any terminating /
MUST be removed before appending /.well-known/openid-credential-issuer
.¶
Communication with the Credential Issuer Metadata Endpoint MUST utilize TLS.¶
To fetch the Credential Issuer Metadata, the requester MUST send an HTTP request using the GET method and the path formed following the steps above. The Credential Issuer MUST return a JSON document compliant with this specification using the application/json
media type and the HTTP Status Code 200.¶
The Wallet is RECOMMENDED to send an Accept-Language
Header in the HTTP GET request to indicate the language(s) preferred for display. It is up to the Credential Issuer whether to:¶
Content-Language
Header, or¶
Accept-Language
Header and send all supported languages or any chosen subset.¶
The language(s) in HTTP Accept-Language
and Content-Language
Headers MUST use the values defined in [RFC3066].¶
Below is a non-normative example of a Credential Issuer Metadata request:¶
GET /.well-known/openid-credential-issuer HTTP/1.1 Host: server.example.com Accept-Language: fr-ch, fr;q=0.9, en;q=0.8, de;q=0.7, *;q=0.5¶
This specification defines the following Credential Issuer Metadata parameters:¶
credential_issuer
: REQUIRED. The Credential Issuer's identifier, as defined in Section 11.2.1.¶
authorization_servers
: OPTIONAL. Array of strings, where each string is an identifier of the OAuth 2.0 Authorization Server (as defined in [RFC8414]) the Credential Issuer relies on for authorization. If this parameter is omitted, the entity providing the Credential Issuer is also acting as the Authorization Server, i.e., the Credential Issuer's identifier is used to obtain the Authorization Server metadata. The actual OAuth 2.0 Authorization Server metadata is obtained from the oauth-authorization-server
well-known location as defined in Section 3 of [RFC8414]. When there are multiple entries in the array, the Wallet may be able to determine which Authorization Server to use by querying the metadata; for example, by examining the grant_types_supported
values, the Wallet can filter the server to use based on the grant type it plans to use. When the Wallet is using authorization_server
parameter in the Credential Offer as a hint to determine which Authorization Server to use out of multiple, the Wallet MUST NOT proceed with the flow if the authorization_server
Credential Offer parameter value does not match any of the entries in the authorization_servers
array.¶
credential_endpoint
: REQUIRED. URL of the Credential Issuer's Credential Endpoint, as defined in Section 8.2. This URL MUST use the https
scheme and MAY contain port, path, and query parameter components.¶
nonce_endpoint
: OPTIONAL. URL of the Credential Issuer's Nonce Endpoint, as defined in Section 7. This URL MUST use the https
scheme and MAY contain port, path, and query parameter components. If omitted, the Credential Issuer does not support the Nonce Endpoint.¶
deferred_credential_endpoint
: OPTIONAL. URL of the Credential Issuer's Deferred Credential Endpoint, as defined in Section 9. This URL MUST use the https
scheme and MAY contain port, path, and query parameter components. If omitted, the Credential Issuer does not support the Deferred Credential Endpoint.¶
notification_endpoint
: OPTIONAL. URL of the Credential Issuer's Notification Endpoint, as defined in Section 10. This URL MUST use the https
scheme and MAY contain port, path, and query parameter components. If omitted, the Credential Issuer does not support the Notification Endpoint.¶
credential_response_encryption
: OPTIONAL. Object containing information about whether the Credential Issuer supports encryption of the Credential Credential Response on top of TLS.¶
alg_values_supported
: REQUIRED. Array containing a list of the JWE [RFC7516] encryption algorithms (alg
values) [RFC7518] supported by the Credential Endpoint to encode the Credential Response in a JWT [RFC7519].¶
enc_values_supported
: REQUIRED. Array containing a list of the JWE [RFC7516] encryption algorithms (enc
values) [RFC7518] supported by the Credential Endpoint to encode the Credential Response in a JWT [RFC7519].¶
encryption_required
: REQUIRED. Boolean value specifying whether the Credential Issuer requires the additional encryption on top of TLS for the Credential Response. If the value is true
, the Credential Issuer requires encryption for every Credential Response and therefore the Wallet MUST provide encryption keys in the Credential Request. If the value is false
, the Wallet MAY chose whether it provides encryption keys or not.¶
batch_credential_issuance
: OPTIONAL. Object containing information about the Credential Issuer's supports for batch issuance of Credentials on the Credential Endpoint. The presence of this parameter means that the issuer supports the proofs
parameter in the Credential Request so can issue more than one Verifiable Credential for the same Credential Dataset in a single request/response.¶
batch_size
: REQUIRED. Integer value specifying the maximum array size for the proofs
parameter in a Credential Request.¶
signed_metadata
: OPTIONAL. String that is a signed JWT. This JWT contains Credential Issuer metadata parameters as claims. The signed metadata MUST be secured using JSON Web Signature (JWS) [RFC7515] and MUST contain an iat
(Issued At) claim, an iss
(Issuer) claim denoting the party attesting to the claims in the signed metadata, and sub
(Subject) claim matching the Credential Issuer identifier. If the Wallet supports signed metadata, metadata values conveyed in the signed JWT MUST take precedence over the corresponding values conveyed using plain JSON elements. If the Credential Issuer wants to enforce use of signed metadata, it omits the respective metadata parameters from the unsigned part of the Credential Issuer metadata. A signed_metadata
metadata value MUST NOT appear as a claim in the JWT. The Wallet MUST establish trust in the signer of the metadata, and obtain the keys to validate the signature before processing the metadata. The concrete mechanism how to do that is out of scope of this specification and MAY be defined in the profiles of this specification.¶
display
: OPTIONAL. Array of objects, where each object contains display properties of a Credential Issuer for a certain language. Below is a non-exhaustive list of valid parameters that MAY be included:¶
name
: OPTIONAL. String value of a display name for the Credential Issuer.¶
locale
: OPTIONAL. String value that identifies the language of this object represented as a language tag taken from values defined in BCP47 [RFC5646]. There MUST be only one object for each language identifier.¶
logo
: OPTIONAL. Object with information about the logo of the Credential Issuer. Below is a non-exhaustive list of parameters that MAY be included:¶
uri
: REQUIRED. String value that contains a URI where the Wallet can obtain the logo of the Credential Issuer. The Wallet needs to determine the scheme, since the URI value could use the https:
scheme, the data:
scheme, etc.¶
alt_text
: OPTIONAL. String value of the alternative text for the logo image.¶
credential_configurations_supported
: REQUIRED. Object that describes specifics of the Credential that the Credential Issuer supports issuance of. This object contains a list of name/value pairs, where each name is a unique identifier of the supported Credential being described. This identifier is used in the Credential Offer as defined in Section 4.1.1 to communicate to the Wallet which Credential is being offered. The value is an object that contains metadata about a specific Credential and contains the following parameters defined by this specification:¶
format
: REQUIRED. A JSON string identifying the format of this Credential, i.e., jwt_vc_json
or ldp_vc
. Depending on the format value, the object contains further elements defining the type and (optionally) particular claims the Credential MAY contain and information about how to display the Credential. Appendix A contains Credential Format Profiles introduced by this specification.¶
scope
: OPTIONAL. A JSON string identifying the scope value that this Credential Issuer supports for this particular Credential. The value can be the same across multiple credential_configurations_supported
objects. The Authorization Server MUST be able to uniquely identify the Credential Issuer based on the scope value. The Wallet can use this value in the Authorization Request as defined in Section 5.1.2. Scope values in this Credential Issuer metadata MAY duplicate those in the scopes_supported
parameter of the Authorization Server.¶
cryptographic_binding_methods_supported
: OPTIONAL. Array of case sensitive strings that identify the representation of the cryptographic key material that the issued Credential is bound to, as defined in Section 8.1. Support for keys in JWK format [RFC7517] is indicated by the value jwk
. Support for keys expressed as a COSE Key object [RFC8152] (for example, used in [ISO.18013-5]) is indicated by the value cose_key
. When the Cryptographic Binding Method is a DID, valid values are a did:
prefix followed by a method-name using a syntax as defined in Section 3.1 of [DID-Core], but without a :
and method-specific-id. For example, support for the DID method with a method-name "example" would be represented by did:example
.¶
credential_signing_alg_values_supported
: OPTIONAL. Array of case sensitive strings that identify the algorithms that the Issuer uses to sign the issued Credential. Algorithm names used are determined by the Credential Format and are defined in Appendix A.¶
proof_types_supported
: OPTIONAL. Object that describes specifics of the key proof(s) that the Credential Issuer supports. This object contains a list of name/value pairs, where each name is a unique identifier of the supported proof type(s). Valid values are defined in Section 8.2.1, other values MAY be used. This identifier is also used by the Wallet in the Credential Request as defined in Section 8.2. The value in the name/value pair is an object that contains metadata about the key proof and contains the following parameters defined by this specification:¶
proof_signing_alg_values_supported
: REQUIRED. Array of case sensitive strings that identify the algorithms that the Issuer supports for this proof type. The Wallet uses one of them to sign the proof. Algorithm names used are determined by the key proof type and are defined in Section 8.2.1.¶
key_attestations_required
: OPTIONAL. Object that describes the requirement for key attestations as described in Appendix B, which the Credential Issuer expects the Wallet to send within the proof of the Credential Request. If the Credential Issuer does not require a key attestation, this parameter MUST NOT be present in the metadata. If both key_storage
and user_authentication
parameters are absent, the key_attestations_required
parameter may be empty, indicating a key attestation is needed without additional constraints.¶
key_storage
: OPTIONAL. Array defining values specified in Appendix B.2 accepted by the Credential Issuer.¶
user_authentication
: OPTIONAL. Array defining values specified in Appendix B.2 accepted by the Credential Issuer.¶
display
: OPTIONAL. Array of objects, where each object contains the display properties of the supported Credential for a certain language. Below is a non-exhaustive list of parameters that MAY be included.¶
name
: REQUIRED. String value of a display name for the Credential.¶
locale
: OPTIONAL. String value that identifies the language of this object represented as a language tag taken from values defined in BCP47 [RFC5646]. Multiple display
objects MAY be included for separate languages. There MUST be only one object for each language identifier.¶
logo
: OPTIONAL. Object with information about the logo of the Credential. The following non-exhaustive set of parameters MAY be included:¶
uri
: REQUIRED. String value that contains a URI where the Wallet can obtain the logo of the Credential from the Credential Issuer. The Wallet needs to determine the scheme, since the URI value could use the https:
scheme, the data:
scheme, etc.¶
alt_text
: OPTIONAL. String value of the alternative text for the logo image.¶
description
: OPTIONAL. String value of a description of the Credential.¶
background_color
: OPTIONAL. String value of a background color of the Credential represented as numerical color values defined in CSS Color Module Level 37 [CSS-Color].¶
background_image
: OPTIONAL. Object with information about the background image of the Credential. At least the following parameter MUST be included:¶
uri
: REQUIRED. String value that contains a URI where the Wallet can obtain the background image of the Credential from the Credential Issuer. The Wallet needs to determine the scheme, since the URI value could use the https:
scheme, the data:
scheme, etc.¶
text_color
: OPTIONAL. String value of a text color of the Credential represented as numerical color values defined in CSS Color Module Level 37 [CSS-Color].¶
An Authorization Server that only supports the Pre-Authorized Code grant type MAY omit the response_types_supported
parameter in its metadata despite [RFC8414] mandating it.¶
Note: It can be challenging for a Credential Issuer that accepts tokens from multiple Authorization Servers to introspect an Access Token to check the validity and determine the permissions granted. Some ways to achieve this are relying on Authorization Servers that use [RFC9068] or by the Credential Issuer understanding the proprietary Access Token structures of the Authorization Servers.¶
Depending on the Credential Format, additional parameters might be present in the credential_configurations_supported
object values, such as information about claims in the Credential. For Credential Format-specific claims, see the "Credential Issuer Metadata" subsections in Appendix A.¶
The Authorization Server MUST be able to determine from the Issuer metadata what claims are disclosed by the requested Credentials to be able to render meaningful End-User consent.¶
Additional Credential Issuer metadata parameters MAY be defined and used. The Wallet MUST ignore any unrecognized parameters.¶
The following is a non-normative example of Credential Issuer metadata of a Credential in the IETF SD-JWT VC [I-D.ietf-oauth-sd-jwt-vc] format:¶
{ "credential_configurations_supported": { "SD_JWT_VC_example_in_OpenID4VCI": { "format": "vc+sd-jwt", "scope": "SD_JWT_VC_example_in_OpenID4VCI", "cryptographic_binding_methods_supported": [ "jwk" ], "credential_signing_alg_values_supported": [ "ES256" ], "display": [ { "name": "IdentityCredential", "logo": { "uri": "https://university.example.edu/public/logo.png", "alt_text": "a square logo of a university" }, "locale": "en-US", "background_color": "#12107c", "text_color": "#FFFFFF" } ], "proof_types_supported": { "jwt": { "proof_signing_alg_values_supported": [ "ES256" ] } }, "vct": "SD_JWT_VC_example_in_OpenID4VCI", "claims": { "given_name": { "display": [ { "name": "Given Name", "locale": "en-US" }, { "name": "Vorname", "locale": "de-DE" } ] }, "family_name": { "display": [ { "name": "Surname", "locale": "en-US" }, { "name": "Nachname", "locale": "de-DE" } ] }, "email": {}, "phone_number": {}, "address": { "street_address": {}, "locality": {}, "region": {}, "country": {} }, "birthdate": {}, "is_over_18": {}, "is_over_21": {}, "is_over_65": {} } } } }¶
Note: The Client MAY use other mechanisms to obtain information about the Verifiable Credentials that a Credential Issuer can issue.¶
This specification also defines a new OAuth 2.0 Authorization Server metadata [RFC8414] parameter to publish whether the Authorization Server that the Credential Issuer relies on for authorization supports anonymous Token Requests with the Pre-Authorized Grant Type. It is defined as follows:¶
pre-authorized_grant_anonymous_access_supported
: OPTIONAL. A boolean indicating whether the Credential Issuer accepts a Token Request with a Pre-Authorized Code but without a client_id
. The default is false
.¶
Additional Authorization Server metadata parameters MAY be defined and used, as described in [RFC8414]. The Wallet MUST ignore any unrecognized parameters.¶
Credential Issuers often want to know what Wallet they are issuing Credentials to and how private keys are managed for the following reasons:¶
The following mechanisms in concert can be utilized to fulfill those objectives:¶
Key attestation is a mechanism where the key storage component or Wallet Provider asserts the cryptographic public keys and their security policy. The Wallet MAY provide this data in the Credential Request to allow the Credential Issuer to validate the cryptographic key management policy. This requires the Credential Issuer to rely on the trust anchor of the key attestation and the respective key management policy. While some existing platforms have key attestation formats, this specification introduces a common key attestation format that may be used by Credential Issuers for improved interoperability, see #keyattestation.¶
App Attestation: Key attestation, however, does not establish trust in the application storing the Credential and producing presentation of that Credential. App attestation, as provided by mobile operating systems, e.g., iOS's DeviceCheck or Android's SafetyNet, allows a server system to ensure it is communicating to a legitimate instance of its genuine app. Those mechanisms can be utilized to validate the internal integrity of the Wallet (as a whole).¶
Device Attestation: Device Attestation attests to the health of the device on which the Wallet is running, as a whole. It helps prevent compromises such as a malicious third-party application tampering with a Wallet that manages keys and Credentials, which cannot be captured only by obtaining app attestation of a Wallet.¶
Client Authentication allows a Wallet to authenticate with a Credential Issuer. To securely authenticate, the Wallet needs to utilize a backend component managing the key material and processing the secure communication with the Credential Issuer. The Credential Issuer MAY establish trust with the Wallet based on its own auditing or a trusted third-party attestation of the conformance of the Wallet to a certain policy.¶
Directly using key, app, and/or device attestations to prove certain capabilities to a Credential Issuer is an obvious option. However, this at least requires platform mechanisms that issue signed assertions that third parties can evaluate, which is not always the case (e.g., iOS's DeviceCheck). Also, such an approach creates dependencies on platform specific mechanisms, trust anchors, and platform specific identifiers (e.g., Android apkPackageName
) and it reveals information about the internal design of a Wallet. Implementers should take these consequences into account.¶
The approach recommended by this specification is that the Credential Issuer relies on the OAuth 2.0 Client Authentication to establish trust in the Wallet and leaves it to the Wallet to ensure its internal integrity using app and key attestation (if required). This establishes a clean separation between the different components and a uniform interface irrespective of the Wallet's architecture (e.g., native vs. Web Wallet). Client Authentication can be performed with assertions registered with the Credential Issuer or with assertions issued to the Wallet by a third party the Credential Issuer trusts for the purpose of Client Authentication.¶
The Wallet MUST consider the parameter values in the Credential Offer as not trustworthy, since the origin is not authenticated and the message integrity is not protected. The Wallet MUST apply the same checks on the Credential Issuer that it would apply when the flow is started from the Wallet itself, since the Credential Issuer is not trustworthy just because it sent the Credential Offer. An attacker might attempt to use a Credential Offer to conduct a phishing or injection attack.¶
The Wallet MUST NOT accept Credentials just because this mechanism was used. All protocol steps defined in this specification MUST be performed in the same way as if the Wallet would have started the flow.¶
The Credential Issuer MUST ensure the release of any privacy-sensitive data in Credential Offer is legal.¶
The Pre-Authorized Code Flow is vulnerable to the replay of the Pre-Authorized Code, because by design, it is not bound to a certain device (as the Authorization Code Flow does with PKCE). This means an attacker can replay the Pre-Authorized Code meant for a victim at another device, e.g., the attacker can scan the QR code while it is displayed on the victim's screen, and thereby get access to the Credential. Such replay attacks must be prevented using other means. The design facilitates the following options:¶
An attacker might leverage the Credential issuance process and the End-User's trust in the Wallet to phish Transaction Codes sent out by a different service that grant the attacker access to services other than Credential issuance. The attacker could set up a Credential Issuer site and in parallel to the issuance request, trigger transmission of a Transaction Code to the End-User's phone from a service other than Credential issuance, e.g., from a payment service. The End-User would then be asked to enter this Transaction Code into the Wallet and since the Wallet sends this Transaction Code to the Token Endpoint of the Credential Issuer (the attacker), the attacker would get access to the Transaction Code, and access to that other service.¶
In order to cope with that issue, the Wallet is RECOMMENDED to interact with trusted Credential Issuers only. In that case, the Wallet would not process a Credential Offer with an untrusted issuer URL. The Wallet MAY also show the End-User the endpoint of the Credential Issuer it will be sending the Transaction Code to and ask the End-User for confirmation.¶
The Credential Issuer is supposed to be responsible for the lifecycle of its Credentials. This means the Credential Issuer will invalidate Credentials when it deems appropriate, e.g., if it detects fraudulent behavior.¶
The Wallet is supposed to detect signs of fraudulent behavior related to the Credential management in the Wallet (e.g., device rooting) and to act upon such signals. Options include Credential revocation at the Credential Issuer and/or invalidation of the key material used to cryptographically bind the Credential to the identifier of the End-User possessing that Credential.¶
If an adversary obtains a key proof (as outlined in #proof-types), they could potentially have a Credential issued that is linked to a key pair controlled by the victim. The c_nonce
parameter serves as the main defense against replay attacks involving key proofs. It is RECOMMENDED that Credential Issuers utilize the Nonce Endpoint as specified in nonce-endpoint. A Wallet can continue using a given nonce until it either expires or is rejected by the Credential Issuer. The Credential Issuer determines how frequently a particular nonce can be used. Servers MUST establish a clear policy on whether the same key proof can be reused and for how long, or if each Credential Request requires a new key proof.¶
Note: For the attacker to be able to present a Credential bound to a replayed key proof to the Verifier, the attacker also needs to obtain the victim's private key. To limit this, Credential Issuers are RECOMMENDED to check how the Wallet protects the private keys, using mechanisms defined in #keyattestation.¶
Note: To accommodate for clock offsets, the Credential Issuer server MAY accept proofs that carry an iat
time in the reasonably near future (on the order of seconds or minutes). Because clock skews between servers and Clients may be large, servers MAY limit key proof lifetimes by using server-provided nonce values containing the time at the server rather than comparing the client-supplied iat
time to the time at the server. Nonces created in this way yield the same result even in the face of arbitrarily large clock skews.¶
Implementations MUST follow [BCP195]. Whenever TLS is used, a TLS server certificate check MUST be performed, per [RFC6125].¶
Access Tokens represent End-User authorization and consent to issue certain Credential(s). Long-lived Access Tokens giving access to Credentials MUST not be issued unless sender-constrained. Access Tokens with lifetimes longer than 5 minutes are, in general, considered long lived.¶
To sender-constrain Access Tokens, see the recommendations in Section 4.10.1 in [I-D.ietf-oauth-security-topics]. If Bearer Access Tokens are stored by the Wallet, they MUST be stored in a secure manner, for example, encrypted using a key stored in a protected key store.¶
Credentials not cryptographically bound to the identifier of the End-User possessing it (see Section 8.1), should be bound to the End-User possessing the Credential, based on the claims included in the Credential.¶
In claims-based binding, no cryptographic binding material is provided. Instead, the issued Credential includes End-User claims that can be used by the Verifier to verify possession of the Credential by requesting presentation of existing forms of physical or digital identification that includes the same claims (e.g., a driving license or other ID cards in person, or an online ID verification service).¶
Some Credential Issuers might choose to issue bearer Credentials without either cryptographic binding or claims-based binding because they are meant to be presented without proof of possession.¶
One such use case is low assurance Credentials, such as coupons or tickets.¶
Another use case is when the Credential Issuer uses cryptographic schemes that can provide binding to the End-User possessing that Credential without explicit cryptographic material being supplied by the application used by that End-User. For example, in the case of the BBS Signature Scheme, the issued Credential itself is a secret and only a derivation from the Credential is presented to the Verifier. Effectively, the Credential is bound to the Credential Issuer's signature on the Credential, which becomes a shared secret transferred from the Credential Issuer to the End-User.¶
The Credential Endpoint can be accessed multiple times by a Wallet using the same Access Token, even for the same Credential. The Credential Issuer determines if the subsequent successful requests will return the same or an updated Credential, such as having a new expiration time or using the most current End-User claims.¶
The Credential Issuer MAY also decide to no longer accept the Access Token and a re-authentication or Token Refresh (see [RFC6749], Section 6) MAY be required at the Credential Issuer's discretion. The policies between the Credential Endpoint and the Authorization Server that MAY change the behavior of what is returned with a new Access Token are beyond the scope of this specification (see Section 7).¶
The action leading to the Wallet performing another Credential Request can also be triggered by a background process, or by the Credential Issuer using an out-of-band mechanism (SMS, email, etc.) to inform the End-User.¶
The Credential Issuer Identifier is always a URL using the https
scheme, as defined in Section 11.2.1. Depending on the Credential Format, the Issuer identifier in the issued Credential may not be a URL using the https
scheme. Some other forms that it can take are a DID included in the issuer
property in a [VC_DATA] format, or the Subject
value of the document signer certificate included in the x5chain
element in an [ISO.18013-5] format.¶
When the Issuer identifier in the issued Credential is a DID, a non-exhaustive list of mechanisms the Credential Issuer MAY use to bind to the Credential Issuer Identifier is as follows:¶
credential_issuer
claim, as defined in Section 11.2.1.¶
The Wallet MAY check the binding between the Credential Issuer Identifier and the Issuer identifier in the issued Credential.¶
After a Verifiable Credential has been issued to the Holder, claim values about the subject of a Credential or a signature on the Credential may need to be updated. There are two possible mechanisms to do so.¶
First, the Wallet may receive an updated version of a Credential from a Credential Endpoint using a valid Access Token. This does not involve interaction with the End-User. If the Credential Issuer issued a Refresh Token to the Wallet, the Wallet would obtain a fresh Access Token by making a request to the Token Endpoint, as defined in Section 6 of [RFC6749].¶
Second, the Credential Issuer can reissue the Credential by starting the issuance process from the beginning. This would involve interaction with the End-User. A Credential needs to be reissued if the Wallet does not have a valid Access Token or a valid Refresh Token. With this approach, when a new Credential is issued, the Wallet might need to check if it already has a Credential of the same type and, if necessary, delete the old Credential. Otherwise, the Wallet might end up with more than one Credential of the same type, without knowing which one is the latest.¶
Credential Refresh can be initiated by the Wallet independently from the Credential Issuer, or the Credential Issuer can send a signal to the Wallet asking it to request Credential refresh. How the Credential Issuer sends such a signal is out of scope of this specification.¶
It is up to the Credential Issuer whether to update both the signature and the claim values, or only the signature.¶
When [RFC9396] is used, the Privacy Considerations of that specification also apply.¶
The privacy principles of [ISO.29100] should be adhered to.¶
The Credential Issuer SHOULD obtain the End-User's consent before issuing Credential(s) to the Wallet. It SHOULD be made clear to the End-User what information is being included in the Credential(s) and for what purpose.¶
To ensure minimum disclosure and prevent Verifiers from obtaining claims unnecessary for the transaction at hand, when issuing Credentials that are intended to be created once and then used a number of times by the End-User, the Credential Issuers and the Wallets SHOULD implement Credential Formats that support selective disclosure, or consider issuing a separate Credential for each user claim.¶
To prevent a leak of End-User data, especially when it is signed, which risks revealing private data of End-Users to third parties, systems implementing this specification SHOULD be designed to minimize the amount of End-User data that is stored. All involved parties SHOULD store Verifiable Credentials containing privacy-sensitive data only for as long as needed, including in log files. Any logging of End-User data should be carefully considered as to whether it is necessary at all. The time logs are retained for should be minimized.¶
After Issuance, Credential Issuers SHOULD NOT store the Issuer-signed Credentials if they contain privacy-sensitive data. Wallets SHOULD store Credentials only in encrypted form, and, wherever possible, use hardware-backed encryption. Wallets SHOULD not store Credentials longer than needed.¶
Issuance/presentation or two presentation sessions by the same End-User can be linked on the basis of unique values encoded in the Credential (End-User claims, identifiers, Issuer signature, etc.) either by colluding Issuer/Verifier or Verifier/Verifier pairs, or by the same Verifier.¶
To prevent these types of correlation, Credential Issuers and Wallets SHOULD use methods, including but not limited to the following ones:¶
Credential Issuers specifically SHOULD discard values that can be used in collusion with a Verifier to track a user, such as the Issuer's signature or cryptographic key material to which an issued credential was bound to.¶
The Privacy Considerations in Section 11.2 of [RFC9101] apply to the credential_offer
and
credential_offer_uri
parameters defined in Section 4.1.¶
Information in the credential identifying a particular Credential Issuer, such as a Credential Issuer Identifier, issuer's certificate, or issuer's public key may reveal information about the End-User.¶
For example, when a military organization or a drug rehabilitation center issues a vaccine credential, verifiers can deduce that the owner of the Wallet storing such Credential is a military member or may have a substance use disorder.¶
In addition, when a Credential Issuer issues only one type of Credential, it might have privacy implications, because if the Wallet has a Credential issued by that Issuer, its type and claim names can be determined.¶
For example, if the National Cancer Institute only issued Credentials with cancer registry information, it is possible to deduce that the owner of the Wallet storing such Credential is a cancer patient.¶
To mitigate these issues, a group of organizations may elect to use a common Credential Issuer, such that any credentials issued by this Issuer cannot be attributed to a particular organization through identifiers of the Credential Issuers alone. A group signature scheme may also be used instead of an individual signature.¶
When a common Credential Issuer is used, appropriate guardrails need to be in place to prevent one organization from issuing illegitimate credentials on behalf of other organizations.¶
There is a potential for leaking information about the Wallet to third parties when the
Wallet reacts to a Credential Offer. An attacker may send Credential Offers using different
custom URL schemes or claimed https urls, see if the
Wallet reacts (e.g., whether the wallet retrieves Credential Issuer metadata hosted by an
attacker's server), and, therefore, learn which Wallet is installed. To avoid this, the Wallet SHOULD
require user interaction or establish trust in the Issuer before fetching any credential_offer_uri
or acting on the received Credential Offer.¶
The Wallet transmits and stores sensitive information about the End-User. To ensure that the Wallet can handle those appropriately (i.e., according to a certain trust framework or a regulation), the Credential Issuer should properly authenticate the Wallet and ensure it is a trusted entity. For more details, see Section 12.1.¶
This specification defines several extension points to accommodate the differences across Credential Formats. Sets of Credential Format-specific parameters or claims referred to as Credential Format Profiles are identified by the Credential Format Identifier and used at these extension points.¶
This section defines Credential Format Profiles for a few of the commonly used Credential Formats. Other specifications or deployments can define their own Credential Format Profiles. It is RECOMMENDED that new Credential Format Profiles use the media type of the particular Credential Format for the Credential Format Identifier.¶
Sections 6.1 and 6.2 of [VC_DATA] define how Verifiable Credentials MAY or MAY NOT use JSON-LD [JSON-LD]. As acknowledged in Section 4.1 of [VC_DATA], implementations can behave differently regarding processing of the @context
property whether JSON-LD is used or not.¶
This specification therefore differentiates between the following three Credential Formats for W3C Verifiable Credentials:¶
jwt_vc_json
)¶
jwt_vc_json-ld
)¶
ldp_vc
)¶
Note: VCs secured using Data Integrity MAY NOT necessarily use JSON-LD and MAY NOT necessarily use proof suites requiring Linked Data canonicalization. Credential Format Profiles for them may be defined in the future versions of this specification.¶
Distinct Credential Format Identifiers, extension parameters/claims, and processing rules are defined for each of the above-mentioned Credential Formats.¶
It is on purpose that the Credential Offer does not contain credentialSubject
property, while Authorization Details and Credential Request do. This is because this property is meant to be used by the Wallet to specify which claims it is requesting to be issued out of all the claims the Credential Issuer is capable of issuing for this particular Credential (data minimization), while Credential Offer is a mere "invitation" from the Credential Issuer to the Wallet to start the issuance flow.¶
The Credential Format Identifier is jwt_vc_json
.¶
When the format
value is jwt_vc_json
, the entire Credential Offer, Authorization Details, Credential Request and Credential Issuer metadata, including credential_definition
object, MUST NOT be processed using JSON-LD rules.¶
Cryptographic algorithm names used in the credential_signing_alg_values_supported
parameter SHOULD be one of those defined in [IANA.JOSE].¶
The following additional Credential Issuer metadata parameters are defined for this Credential Format for use in the credential_configurations_supported
parameter, in addition to those defined in Section 11.2.3.¶
credential_definition
: REQUIRED. Object containing the detailed description of the Credential type. It consists of the following parameters defined by this specification:¶
type
: REQUIRED. Array designating the types a certain Credential type supports, according to [VC_DATA], Section 4.3.¶
credentialSubject
: OPTIONAL. Object containing a list of name/value pairs, where each name identifies a claim offered in the Credential. The value can be another such object (nested data structures), or an array of such objects. To express the specifics about the claim, the most deeply nested value MAY be an object that includes the following parameters defined by this specification (other parameters MAY also be used):¶
mandatory
: OPTIONAL. Boolean which, when set to true
, indicates that the Credential Issuer will always include this claim in the issued Credential. If set to false
, the claim is not included in the issued Credential if the wallet did not request the inclusion of the claim, and/or if the Credential Issuer chose to not include the claim. If the mandatory
parameter is omitted, the default value is false
.¶
value_type
: OPTIONAL. String value determining the type of value of the claim. Valid values defined by this specification are string
, number
, and image media types such as image/jpeg
as defined in IANA media type registry for images (https://www.iana.org/assignments/media-types/media-types.xhtml#image). Other values MAY also be used.¶
display
: OPTIONAL. Array of objects, where each object contains display properties of a certain claim in the Credential for a certain language. Below is a non-exhaustive list of valid parameters that MAY be included:¶
order
: OPTIONAL. Array of the claim name values that lists them in the order they should be displayed by the Wallet.¶
The following is a non-normative example of an object containing the credential_configurations_supported
parameter for Credential Format jwt_vc_json
:¶
{ "credential_configurations_supported": { "UniversityDegreeCredential": { "format": "jwt_vc_json", "scope": "UniversityDegree", "cryptographic_binding_methods_supported": [ "did:example" ], "credential_signing_alg_values_supported": [ "ES256" ], "credential_definition": { "type": [ "VerifiableCredential", "UniversityDegreeCredential" ], "credentialSubject": { "given_name": { "display": [ { "name": "Given Name", "locale": "en-US" } ] }, "family_name": { "display": [ { "name": "Surname", "locale": "en-US" } ] }, "degree": {}, "gpa": { "mandatory": true, "display": [ { "name": "GPA" } ] } } }, "proof_types_supported": { "jwt": { "proof_signing_alg_values_supported": [ "ES256" ] } }, "display": [ { "name": "University Credential", "locale": "en-US", "logo": { "uri": "https://university.example.edu/public/logo.png", "alt_text": "a square logo of a university" }, "background_color": "#12107c", "text_color": "#FFFFFF" } ] } } }¶
The value of the credential
claim in the Credential Response MUST be a JWT. Credentials of this format are already a sequence of base64url-encoded values separated by period characters and MUST NOT be re-encoded.¶
The following is a non-normative example of a Credential Response with Credential Format jwt_vc_json
:¶
HTTP/1.1 200 OK Content-Type: application/json Cache-Control: no-store { "credentials": [ { "credential": "eyJ0eXAiOiJKV1QiLCJhbGciOiJFUzI1NiIsImtpZCI6I nVybjppZXRmOnBhcmFtczpvYXV0aDpqd2stdGh1bWJwcmludDpzaGEtMjU2O m1sVXBvZzd2RWV3RkJlbTZVbDA5YzJkdFR3YzhkRnpWcElEWDNzcUdXVzAif Q.eyJ2YyI6eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvMjAxOC 9jcmVkZW50aWFscy92MSIsImh0dHBzOi8vd3d3LnczLm9yZy8yMDE4L2NyZW RlbnRpYWxzL2V4YW1wbGVzL3YxIl0sImlkIjoiaHR0cHM6Ly9jcmVkZW50aW FsLWlzc3Vlci5leGFtcGxlLmNvbS9jcmVkZW50aWFscy8zNzMyIiwidHlwZS I6WyJWZXJpZmlhYmxlQ3JlZGVudGlhbCIsIlVuaXZlcnNpdHlEZWdyZWVDcm VkZW50aWFsIl0sImlzc3VlciI6Imh0dHBzOi8vY3JlZGVudGlhbC1pc3N1ZX IuZXhhbXBsZS5jb20iLCJpc3N1YW5jZURhdGUiOiIyMDI1LTAxLTAxVDAwOj AwOjAwWiIsImNyZWRlbnRpYWxTdWJqZWN0Ijp7ImlkIjoiZGlkOmp3azpleU pyYVdRaU9pSjFjbTQ2YVdWMFpqcHdZWEpoYlhNNmIyRjFkR2c2YW5kckxYUm 9kVzFpY0hKcGJuUTZjMmhoTFRJMU5qcFdZa3BQVTNacWVGVTJURGhETjBkVl R6UmtjMmhKV1ZZemVtSjJSbmRyV1VJME0xbEtOVXQwZERoRklpd2lhM1I1SW pvaVJVTWlMQ0pqY25ZaU9pSlFMVEkxTmlJc0ltRnNaeUk2SWtWVE1qVTJJaX dpZUNJNklrMWtReTFQUzNFMFFWRktabFpEV0RWNmNGRnZURGhxTkZaRlpuWl FXRGs0ZEZVNWFIaGpUbGhIY204aUxDSjVJam9pYm5OWGJtWmlOazVYYzBzek 9VSklMV2hCWVZOclExTmxORUo1YldWT2MyTktSVjl6WVVRelJETmlUU0o5Ii wiZGVncmVlIjp7InR5cGUiOiJCYWNoZWxvckRlZ3JlZSIsIm5hbWUiOiJCYW NoZWxvciBvZiBTY2llbmNlIGFuZCBBcnRzIn19fSwiaXNzIjoiaHR0cHM6Ly 9jcmVkZW50aWFsLWlzc3Vlci5leGFtcGxlLmNvbSIsIm5iZiI6MTczNTY4OT YwMCwianRpIjoiaHR0cHM6Ly9jcmVkZW50aWFsLWlzc3Vlci5leGFtcGxlLm NvbS9jcmVkZW50aWFscy8zNzMyIiwic3ViIjoiZGlkOmp3azpleUpyYVdRaU 9pSjFjbTQ2YVdWMFpqcHdZWEpoYlhNNmIyRjFkR2c2YW5kckxYUm9kVzFpY0 hKcGJuUTZjMmhoTFRJMU5qcFdZa3BQVTNacWVGVTJURGhETjBkVlR6UmtjMm hKV1ZZemVtSjJSbmRyV1VJME0xbEtOVXQwZERoRklpd2lhM1I1SWpvaVJVTW lMQ0pqY25ZaU9pSlFMVEkxTmlJc0ltRnNaeUk2SWtWVE1qVTJJaXdpZUNJNk lrMWtReTFQUzNFMFFWRktabFpEV0RWNmNGRnZURGhxTkZaRlpuWlFXRGs0ZE ZVNWFIaGpUbGhIY204aUxDSjVJam9pYm5OWGJtWmlOazVYYzBzek9VSklMV2 hCWVZOclExTmxORUo1YldWT2MyTktSVjl6WVVRelJETmlUU0o5In0.k13xQC nQIKAIuwQIbg37dwlNr8D6_2YUQtDTVQCq-ZsjcXxHagGC_VIZtd7RpR8OvB zTBHVwrBRD-_RzoV2Ofg" } ] }¶
The following is the dereferenced document for the Issuer HTTP URL identifier that matches the Credential in the above example:¶
{ "jwks": [ { "kid": "urn:ietf:params:oauth:jwk-thumbprint:sha-256:mlUpog7vEewFBem6Ul09c2dtTwc8dFzVpIDX3sqGWW0", "kty": "EC", "crv": "P-256", "alg": "ES256", "x": "_LC1FTUl0MltKAOQzXNsofVMpWFV2obLGrNCat_CQ-g", "y": "kBjoyjNuMVAOq--qVUgylDoLKuMdk4imS-Kk5ahuYIU" } ] }¶
The Credential Format Identifier is ldp_vc
.¶
When the format
value is ldp_vc
, the entire Credential Offer, Authorization Details, Credential Request and Credential Issuer metadata, including credential_definition
object, MUST NOT be processed using JSON-LD rules.¶
The @context
value in the credential_definition
object can be used by the Wallet to check whether it supports a certain VC or not. If necessary, the Wallet could apply JSON-LD processing to the Credential issued by the Credential Issuer.¶
Note: Data Integrity used to be called Linked Data Proofs, hence the "ldp" in the Credential Format Identifier.¶
Cryptographic algorithm names used in the credential_signing_alg_values_supported
parameter SHOULD be one of those defined in [LD_Suite_Registry].¶
The following additional Credential Issuer metadata parameters are defined for this Credential Format for use in the credential_configurations_supported
parameter, in addition to those defined in Section 11.2.3:¶
credential_definition
: REQUIRED. Object containing the detailed description of the Credential type. It consists of the following parameters defined by this specification:¶
@context
: REQUIRED. Array as defined in [VC_DATA], Section 4.1.¶
type
: REQUIRED. Array designating the types a certain credential type supports, according to [VC_DATA], Section 4.3.¶
credentialSubject
: OPTIONAL. Object containing a list of name/value pairs, where each name identifies a claim offered in the Credential. The value can be another such object (nested data structures), or an array of such objects. To express the specifics about the claim, the most deeply nested value MAY be an object that includes the following parameters defined by this specification (other parameters MAY also be included):¶
mandatory
: OPTIONAL. Boolean which, when set to true
, indicates that the Credential Issuer will always include this claim in the issued Credential. If set to false
, the claim is not included in the issued Credential if the wallet did not request the inclusion of the claim, and/or if the Credential Issuer chose to not include the claim. If the mandatory
parameter is omitted, the default value is false
.¶
value_type
: OPTIONAL. String value determining the type of value of the claim. Valid values defined by this specification are string
, number
, and image media types such as image/jpeg
as defined in IANA media type registry for images (https://www.iana.org/assignments/media-types/media-types.xhtml#image). Other values MAY also be used.¶
display
: OPTIONAL. Array of objects, where each object contains display properties of a certain claim in the Credential for a certain language. Below is a non-exhaustive list of valid parameters that MAY be included:¶
order
: OPTIONAL. Array of the claim name values that lists them in the order they should be displayed by the Wallet.¶
The following is a non-normative example of an object containing the credential_configurations_supported
parameter for Credential Format ldp_vc
:¶
{ "credential_configurations_supported": { "UniversityDegree_LDP_VC": { "format": "ldp_vc", "cryptographic_binding_methods_supported": [ "did:example" ], "credential_signing_alg_values_supported": [ "Ed25519Signature2018" ], "credentials_definition": { "@context": [ "https://www.w3.org/2018/credentials/v1", "https://www.w3.org/2018/credentials/examples/v1" ], "type": [ "VerifiableCredential", "UniversityDegreeCredential" ], "credentialSubject": { "given_name": { "display": [ { "name": "Given Name", "locale": "en-US" } ] }, "family_name": { "display": [ { "name": "Surname", "locale": "en-US" } ] }, "degree": {}, "gpa": { "mandatory": true, "display": [ { "name": "GPA" } ] } } }, "display": [ { "name": "University Credential", "locale": "en-US", "logo": { "uri": "https://university.example.edu/public/logo.png", "alt_text": "a square logo of a university" }, "background_color": "#12107c", "text_color": "#FFFFFF" } ] } } }¶
The value of the credential
claim in the Credential Response MUST be a JSON object. Credentials of this format MUST NOT be re-encoded.¶
The following is a non-normative example of a Credential Response with Credential Format ldp_vc
:¶
HTTP/1.1 200 OK Content-Type: application/json Cache-Control: no-store { "credentials": [ { "credential": { "@context": [ "https://www.w3.org/2018/credentials/v1", "https://www.w3.org/2018/credentials/examples/v1" ], "id": "http://example.edu/credentials/3732", "type": [ "VerifiableCredential", "UniversityDegreeCredential" ], "issuer": "https://example.edu/issuers/565049", "issuanceDate": "2010-01-01T00:00:00Z", "credentialSubject": { "id": "did:example:ebfeb1f712ebc6f1c276e12ec21", "degree": { "type": "BachelorDegree", "name": "Bachelor of Science and Arts" } }, "proof": { "type": "Ed25519Signature2020", "created": "2022-02-25T14:58:43Z", "verificationMethod": "https://example.edu/issuers/565049#key-1", "proofPurpose": "assertionMethod", "proofValue": "zeEdUoM7m9cY8ZyTpey83yBKeBcmcvbyrEQzJ19rD2UXArU2U1 jPGoEtrRvGYppdiK37GU4NBeoPakxpWhAvsVSt" } } } ] }¶
The Credential Format Identifier is jwt_vc_json-ld
.¶
When the format
value is jwt_vc_json-ld
, the entire Credential Offer, Authorization Details, Credential Request and Credential Issuer metadata, including credential_definition
object, MUST NOT be processed using JSON-LD rules.¶
The @context
value in the credential_definition
parameter can be used by the Wallet to check whether it supports a certain VC or not. If necessary, the Wallet could apply JSON-LD processing to the Credential issued by the Credential Issuer.¶
The definitions in Appendix A.1.2.2 apply for metadata of Credentials of this type as well.¶
The definitions in Appendix A.1.1.4 apply for Credentials of this type as well.¶
This section defines a Credential Format Profile for Credentials complying with [ISO.18013-5].¶
The Credential Format Identifier is mso_mdoc
. This refers to the Mobile Security Object (MSO) which secures the mdoc data model encoded as CBOR.¶
Cryptographic algorithm names used in the credential_signing_alg_values_supported
parameter SHOULD be one of those defined in [ISO.18013-5].¶
The following additional Credential Issuer metadata parameters are defined for this Credential Format for use in the credential_configurations_supported
parameter, in addition to those defined in Section 11.2.3.¶
doctype
: REQUIRED. String identifying the Credential type, as defined in [ISO.18013-5].¶
claims
: OPTIONAL. Object containing a list of name/value pairs, where the name is a certain namespace
as defined in [ISO.18013-5] (or any profile of it), and the value is an object. This object also contains a list of name/value pairs, where the name is a claim name value that is defined in the respective namespace and is offered in the Credential. The value is an object detailing the specifics of the claim with the following non-exhaustive list of parameters that MAY be included:¶
mandatory
: OPTIONAL. Boolean which, when set to true
, indicates that the Credential Issuer will always include this claim in the issued Credential. If set to false
, the claim is not included in the issued Credential if the wallet did not request the inclusion of the claim, and/or if the Credential Issuer chose to not include the claim. If the mandatory
parameter is omitted, the default value is false
.¶
value_type
: OPTIONAL. String value determining the type of value of the claim. Valid values defined by this specification are string
, number
, and image media types such as image/jpeg
as defined in IANA media type registry for images (https://www.iana.org/assignments/media-types/media-types.xhtml#image). Other values MAY also be used.¶
display
: OPTIONAL. Array of objects, where each object contains display properties of a certain claim in the Credential for a certain language. Below is a non-exhaustive list of valid parameters that MAY be included:¶
order
: OPTIONAL. Array of namespaced claim name values that lists them in the order they should be displayed by the Wallet. The values MUST be two strings separated by a tilde ('~') character, where the first string is a namespace value and a second is a claim name value. For example, `org.iso.18013.5.1~given_name".¶
The following is a non-normative example of an object containing the credential_configurations_supported
parameter for Credential Format mso_mdoc
:¶
{ "credential_configurations_supported": { "org.iso.18013.5.1.mDL": { "format": "mso_mdoc", "doctype": "org.iso.18013.5.1.mDL", "cryptographic_binding_methods_supported": [ "cose_key" ], "credential_signing_alg_values_supported": [ "ES256", "ES384", "ES512" ], "display": [ { "name": "Mobile Driving License", "locale": "en-US", "logo": { "uri": "https://state.example.org/public/mdl.png", "alt_text": "state mobile driving license" }, "background_color": "#12107c", "text_color": "#FFFFFF" }, { "name": "モバイル運転免許証", "locale": "ja-JP", "logo": { "uri": "https://state.example.org/public/mdl.png", "alt_text": "米国州発行のモバイル運転免許証" }, "background_color": "#12107c", "text_color": "#FFFFFF" } ], "claims": { "org.iso.18013.5.1": { "given_name": { "display": [ { "name": "Given Name", "locale": "en-US" }, { "name": "名前", "locale": "ja-JP" } ] }, "family_name": { "display": [ { "name": "Surname", "locale": "en-US" } ] }, "birth_date": { "mandatory": true } }, "org.iso.18013.5.1.aamva": { "organ_donor": {} } } } } }¶
The value of the credential
claim in the Credential Response MUST be a string that is the base64url-encoded representation of the CBOR-encoded IssuerSigned
structure, as defined in [ISO.18013-5]. This structure SHOULD contain all Namespaces
and IssuerSignedItems
that are included in the AuthorizedNamespaces
of the MobileSecurityObject
.¶
The following is a non-normative example of a Credential Response containing a Credential of format mso_mdoc
.¶
HTTP/1.1 200 OK Content-Type: application/json Cache-Control: no-store { "credentials": [ { "credential": "omppc3N1ZXJBdXRohEOhASahG...ArQwggKwMIICVqADAgEC" } ] }¶
This section defines a Credential Format Profile for Credentials complying with [I-D.ietf-oauth-sd-jwt-vc].¶
The Credential Format Identifier is vc+sd-jwt
.¶
Cryptographic algorithm names used in the credential_signing_alg_values_supported
parameter SHOULD be one of those defined in [IANA.JOSE].¶
The following additional Credential Issuer metadata parameters are defined for this Credential Format for use in the credential_configurations_supported
parameter, in addition to those defined in Section 11.2.3.¶
vct
: REQUIRED. String designating the type of a Credential, as defined in [I-D.ietf-oauth-sd-jwt-vc].¶
claims
: OPTIONAL. Object containing a list of name/value pairs, where each name identifies a claim about the subject offered in the Credential. The value can be another such object (nested data structures), or an array of such objects. To express the specifics about the claim, the most deeply nested value MAY be an object that includes the following parameters defined by this specification:¶
mandatory
: OPTIONAL. Boolean which when set to true
indicates the claim MUST be present in the issued Credential. If the mandatory
property is omitted its default should be assumed to be false
.¶
value_type
: OPTIONAL. String value determining the type of value of the claim. Valid values defined by this specification are string
, number
, and image media types such as image/jpeg
as defined in IANA media type registry for images (https://www.iana.org/assignments/media-types/media-types.xhtml#image). Other values MAY also be used.¶
display
: OPTIONAL. Array of objects, where each object contains display properties of a certain claim in the Credential for a certain language. Below is a non-exhaustive list of valid parameters that MAY be included:¶
order
: OPTIONAL. An array of the claim name values that lists them in the order they should be displayed by the Wallet.¶
The following is a non-normative example of an object comprising the credential_configurations_supported
parameter for Credential Format vc+sd-jwt
.¶
{ "credential_configurations_supported": { "SD_JWT_VC_example_in_OpenID4VCI": { "format": "vc+sd-jwt", "scope": "SD_JWT_VC_example_in_OpenID4VCI", "cryptographic_binding_methods_supported": [ "jwk" ], "credential_signing_alg_values_supported": [ "ES256" ], "display": [ { "name": "IdentityCredential", "logo": { "uri": "https://university.example.edu/public/logo.png", "alt_text": "a square logo of a university" }, "locale": "en-US", "background_color": "#12107c", "text_color": "#FFFFFF" } ], "proof_types_supported": { "jwt": { "proof_signing_alg_values_supported": [ "ES256" ] } }, "vct": "SD_JWT_VC_example_in_OpenID4VCI", "claims": { "given_name": { "display": [ { "name": "Given Name", "locale": "en-US" }, { "name": "Vorname", "locale": "de-DE" } ] }, "family_name": { "display": [ { "name": "Surname", "locale": "en-US" }, { "name": "Nachname", "locale": "de-DE" } ] }, "email": {}, "phone_number": {}, "address": { "street_address": {}, "locality": {}, "region": {}, "country": {} }, "birthdate": {}, "is_over_18": {}, "is_over_21": {}, "is_over_65": {} } } } }¶
The value of the credential
claim in the Credential Response MUST be a string that is an SD-JWT VC. Credentials of this format are already suitable for transfer and, therefore, they need not and MUST NOT be re-encoded.¶
The following is a non-normative example of a Credential Response containing a Credential of format vc+sd-jwt
.¶
HTTP/1.1 200 OK Content-Type: application/json Cache-Control: no-store { "credentials": [ { "credential": "eyJhbGciOiAiRVMyNTYiLCAidHlwIjogInZjK3NkLWp3d CIsICJraWQiOiAiZG9jLXNpZ25lci0wNS0yNS0yMDIyIn0.eyJfc2QiOiBbI jA5dktySk1PbHlUV00wc2pwdV9wZE9CVkJRMk0xeTNLaHBINTE1blhrcFkiL CAiMnJzakdiYUMwa3k4bVQwcEpyUGlvV1RxMF9kYXcxc1g3NnBvVWxnQ3diS SIsICJFa084ZGhXMGRIRUpidlVIbEVfVkNldUM5dVJFTE9pZUxaaGg3WGJVV HRBIiwgIklsRHpJS2VpWmREd3BxcEs2WmZieXBoRnZ6NUZnbldhLXNONndxU VhDaXciLCAiSnpZakg0c3ZsaUgwUjNQeUVNZmVadTZKdDY5dTVxZWhabzdGN 0VQWWxTRSIsICJQb3JGYnBLdVZ1Nnh5bUphZ3ZrRnNGWEFiUm9jMkpHbEFVQ TJCQTRvN2NJIiwgIlRHZjRvTGJnd2Q1SlFhSHlLVlFaVTlVZEdFMHc1cnREc 3JaemZVYW9tTG8iLCAiamRyVEU4WWNiWTRFaWZ1Z2loaUFlX0JQZWt4SlFaS UNlaVVRd1k5UXF4SSIsICJqc3U5eVZ1bHdRUWxoRmxNXzNKbHpNYVNGemdsa FFHMERwZmF5UXdMVUs0Il0sICJpc3MiOiAiaHR0cHM6Ly9leGFtcGxlLmNvb S9pc3N1ZXIiLCAiaWF0IjogMTY4MzAwMDAwMCwgImV4cCI6IDE4ODMwMDAwM DAsICJ2Y3QiOiAiaHR0cHM6Ly9jcmVkZW50aWFscy5leGFtcGxlLmNvbS9pZ GVudGl0eV9jcmVkZW50aWFsIiwgIl9zZF9hbGciOiAic2hhLTI1NiIsICJjb mYiOiB7Imp3ayI6IHsia3R5IjogIkVDIiwgImNydiI6ICJQLTI1NiIsICJ4I jogIlRDQUVSMTladnUzT0hGNGo0VzR2ZlNWb0hJUDFJTGlsRGxzN3ZDZUdlb WMiLCAieSI6ICJaeGppV1diWk1RR0hWV0tWUTRoYlNJaXJzVmZ1ZWNDRTZ0N GpUOUYySFpRIn19fQ.oiDeF5QD8nCi8NHpKCVBsyitThK1xdRPtMePDdEIqJ FY1BKtd5PhYjXLUVg3VuQZqyuOUev0OQAgu1KuMY0DNA~WyIyR0xDNDJzS1F 2ZUNmR2ZyeU5STjl3IiwgImdpdmVuX25hbWUiLCAiSm9obiJd~WyJlbHVWNU 9nM2dTTklJOEVZbnN4QV9BIiwgImZhbWlseV9uYW1lIiwgIkRvZSJd~WyI2S Wo3dE0tYTVpVlBHYm9TNXRtdlZBIiwgImVtYWlsIiwgImpvaG5kb2VAZXhhb XBsZS5jb20iXQ~WyJlSThaV205UW5LUHBOUGVOZW5IZGhRIiwgInBob25lX2 51bWJlciIsICIrMS0yMDItNTU1LTAxMDEiXQ~WyJRZ19PNjR6cUF4ZTQxMmE xMDhpcm9BIiwgImFkZHJlc3MiLCB7InN0cmVldF9hZGRyZXNzIjogIjEyMyB NYWluIFN0IiwgImxvY2FsaXR5IjogIkFueXRvd24iLCAicmVnaW9uIjogIkF ueXN0YXRlIiwgImNvdW50cnkiOiAiVVMifV0~WyJBSngtMDk1VlBycFR0TjR RTU9xUk9BIiwgImJpcnRoZGF0ZSIsICIxOTQwLTAxLTAxIl0~WyJQYzMzSk0 yTGNoY1VfbEhnZ3ZfdWZRIiwgImlzX292ZXJfMTgiLCB0cnVlXQ~WyJHMDJO U3JRZmpGWFE3SW8wOXN5YWpBIiwgImlzX292ZXJfMjEiLCB0cnVlXQ~WyJsa 2x4RjVqTVlsR1RQVW92TU5JdkNBIiwgImlzX292ZXJfNjUiLCB0cnVlXQ~" } ] }¶
A key attestation, as defined by this specification, is a verifiable statement that demonstrates the authenticity and security properties of a key and its storage component to the Credential Issuer. Keys can be stored in various key storage components, which vary in their ability to protect the private key from extraction and duplication, as well as in the methods used for User authentication to enable key operations. These key storage components can be software-based or hardware-based and may reside on the same device as the Wallet, on external security tokens, or on remote services that facilitate cryptographic key operations. Key attestations are issued either by the Wallet's key storage component itself or by the Wallet Provider. When the Wallet Provider creates the key attestation, it MUST verify the authenticity of its claims about the keys, possibly using platform-specific key attestations.¶
A Wallet MAY provide key attestations to inform the Credential Issuer about the properties of the cryptographic public keys, such as those used in proof types sent in the Credential Request. Credential Issuers SHOULD evaluate these key attestations to ensure the cryptographic keys meet their security requirements, based on the trust framework, regulatory requirements, laws, or internal policies. A Credential Issuer MUST communicate the need to evaluate key attestations through its metadata or via an out-of-band mechanism.¶
Key attestations are used by various Credential Issuers with different trust frameworks and requirements, so a common approach is needed for interoperability. Therefore, key attestations SHOULD follow a common format. This helps Credential Issuers create consistent evaluation processes, reducing complexity and errors. Common formats also simplify compliance with regulatory requirements across jurisdictions and support the creation of shared best practices and security standards.¶
The JWT is signed by the Wallet Provider or the Wallet's key storage component itself and contains the following elements:¶
in the JOSE header,¶
alg
: REQUIRED. A digital signature algorithm identifier such as per IANA "JSON Web Signature and Encryption Algorithms" registry [IANA.JOSE]. It MUST NOT be none
or an identifier for a symmetric algorithm (MAC).¶
typ
: REQUIRED. MUST be keyattestation+jwt
, which explicitly types the key proof JWT as recommended in Section 3.11 of [RFC8725].¶
The key attestation may use x5c
, kid
or trust_chain
(as defined in Section 8.2.1.1 ) to convey the public key and the associated trust mechanism to sign the key attestation.¶
in the JWT body,¶
iat
: REQUIRED (number). Integer for the time at which the key attestation was issued using the syntax defined in [RFC7519].¶
exp
: OPTIONAL (number). Integer for the time at which the key attestation and the key(s) it is attesting expire, using the syntax defined in [RFC7519]. MUST be present if the attestation is used with the JWT proof type.¶
attested_keys
: REQUIRED. Array of attested keys from the same key storage component using the syntax of JWK as defined in [RFC7517].¶
key_storage
: OPTIONAL. Array of case sensitive strings that assert the attack potential resistance of the key storage component and its keys attested in the attested_keys
parameter. This specification defines initial values in Appendix B.2.¶
user_authentication
: OPTIONAL. Array of case sensitive strings that assert the attack potential resistance of the user authentication methods allowed to access the private keys from the attested_keys
parameter. This specification defines initial values in Appendix B.2.¶
certification
: OPTIONAL. A String that contains a URL that links to the certification of the key storage component.¶
nonce
: OPTIONAL. String that represents a nonce provided by the Issuer to prove that a key attestation was freshly generated.¶
status
: OPTIONAL. JSON Object representing the supported revocation check mechanisms, such as the one defined in [I-D.ietf-oauth-status-list]¶
If used with the jwt
proof type, the Credential Issuer MUST validate that the JWT used as a proof is signed by a key contained in the attestation in the JOSE Header.¶
This is an example of a Key Attestation:¶
{ "typ": "keyattestation+jwt", "alg": "ES256", "x5c": ["MIIDQjCCA..."] } . { "iss": "<identifier of the issuer of this key attestation>", "iat": 1516247022, "exp": 1541493724, "key_storage": [ "iso_18045_moderate" ], "user_authentication": [ "iso_18045_moderate" ], "attested_keys": [ { "kty": "EC", "crv": "P-256", "x": "TCAER19Zvu3OHF4j4W4vfSVoHIP1ILilDls7vCeGemc", "y": "ZxjiWWbZMQGHVWKVQ4hbSIirsVfuecCE6t4jT9F2HZQ" } ] }¶
This specification defines the following values for key_storage
and user_authentication
:¶
iso_18045_high
: It MUST be used when key storage or user authentication is resistent to attack with attack potential "High", equivalent to VAN.5 according to ISO 18045.¶
iso_18045_moderate
: It MUST be used when key storage or user authentication is resistent to attack with attack potential "Moderate", equivalent to VAN.4 according to ISO 18045.¶
iso_18045_enhanced-basic
: It MUST be used when key storage or user authentication is resistent to attack with attack potential "Enhanced-Basic", equivalent to VAN.3 according to ISO 18045.¶
iso_18045_basic
: It MUST be used when key storage or user authentication is resistent to attack with attack potential "Basic", equivalent to VAN.2 according to ISO 18045.¶
Specifications that extend this list MUST choose collision-resistant values.¶
When ISO 18045 is not used, ecosystems may define their own values. If the value does not map to a well-known specification, it is RECOMMENDED that the value is a URL that gives further information about the attack potential resistance and possible relations to level of assurances.¶
This specification registers the following URN in the IANA "OAuth URI" registry [IANA.OAuth.Parameters] established by [RFC6755].¶
This specification registers the following OAuth parameters in the IANA "OAuth Parameters" registry [IANA.OAuth.Parameters] established by [RFC6749].¶
wallet_issuer
¶
user_hint
¶
issuer_state
¶
tx_code
¶
credential_identifiers
¶
This specification registers the following client metadata parameter in the IANA "OAuth Dynamic Client Registration Metadata" registry [IANA.OAuth.Parameters] established by [RFC7591].¶
credential_offer_endpoint
¶
This specification registers the following well-known URI in the IANA "Well-Known URI" registry [IANA.OAuth.Parameters] established by [RFC5785].¶
openid-credential-issuer
¶
This specification registers the following media type [RFC2046] in the IANA "Media Types" registry [IANA.MediaTypes] in the manner described in [RFC6838].¶
application
¶
openid4vci-proof+jwt
¶
Additional information:¶
This specification registers the following URI scheme in the IANA "Uniform Resource Identifier (URI) Schemes" registry [IANA.URI.Schemes].¶
This is a non-exhaustive list of sample use cases.¶
While browsing the university's home page, the End-User finds a link "request your digital diploma". The End-User clicks on this link and is redirected to a digital Wallet. The Wallet notifies the End-User that a Credential Issuer offered to issue a diploma Credential. The End-User confirms this inquiry and is taken to the university's Credential issuance service's End-User experience. Upon successful authentication at the university and consent to the issuance of a digital diploma, the End-User is redirected back to the Wallet. Here, the End-User can verify the successful creation of the digital diploma.¶
The End-User is starting a job at a new employer. The employer requests the End-User to upload specific documents to the employee portal. After a few days, the End-User receives an email from the employer indicating that the employee Credential is ready to be claimed and provides instructions to scan a presented QR code for its retrieval. The End-User scans the QR code with a smartphone, which opens the Wallet. Meanwhile, the End-User has received a text message with a Transaction Code to the smartphone. After entering the Transaction Code in the Wallet for security reasons, the End-User approves the Credential issuance, and receives the Credential in the Wallet.¶
The End-User intends to acquire a digital criminal record. This involves a visit to the local administration's office to request the official criminal record be issued as a digital Credential. After presenting an ID document, the End-User is prompted to scan a QR code using the Wallet and is informed that the issuance of the Credential will require some time, due to necessary background checks by the authority.¶
While using the Wallet, the End-User notices an indication that the issuance of the digital record is in progress. After a few days, the End-User receives a notification from the Wallet indicating that the requested Credential was successfully issued. Upon opening the Wallet, the End-User is queried about the download of the Credential. After confirmation, the Wallet fetches and saves the new Credential.¶
An End-User comes across a Verifier app that is requesting the End-User to present a Credential, e.g., a driving license. The Wallet determines the requested Credential type(s) from the presentation request and notifies the End-User that there is currently no matching Credential in the Wallet. The Wallet selects a Credential Issuer capable of issuing the missing Credential and, upon End-User consent, sends the End-User to the Credential Issuer's End-User experience (Web site or app). Once authenticated and consent is provided for the issuance of the Credential into the Wallet, the End-User is redirected back to the Wallet. The Wallet informs the End-User that Credential was successfully issued into the Wallet and is ready to be presented to the Verifier app that originally requested presentation of that Credential.¶
An End-User comes across a Verifier app that is requesting the End-User to present a Credential, e.g., a university diploma. The Wallet determines the requested Credential type(s) from the presentation request and notifies the End-User that there is currently no matching Credential in the Wallet. The Wallet then offers the End-User a list of Credential Issuers, which might be based on a Credential Issuer list curated by the Wallet provider. The End-User selects the university of graduation and is subsequently redirected to the corresponding university's website or app.¶
The End-User logs into the university, which identifies that the corresponding End-User account is not yet verified. Among various identification options, the End-User opts to present a Credential from the Wallet. The End-User is redirected back to the Wallet to consent to present the requested Credential(s) to the university. Following this, the End-User is redirected back to the university End-User experience. Based on the presented Credential, the university finalizes the End-User verification, retrieves data about the End-User from its database, and proposes to issue a diploma as a Verifiable Credential.¶
Upon providing consent, the End-User is sent back to the Wallet. The Wallet informs the End-User that the Credential was successfully issued into the Wallet and is ready to be presented to the Verifier app that originally requested presentation of that Credential.¶
The End-User installs a new Wallet and opens it. The Wallet offers the End-User a selection of Credentials that the End-User may obtain from a Credential Issuer, e.g. a national identity Credential, a mobile driving license, or a public transport ticket. The corresponding Credential Issuers (and their URLs) are pre-configured by the Wallet or follow some discovery processes that are out of scope for this specification. By clicking on one of these options corresponding to the Credentials available for issuance, the issuance process starts using a flow supported by the Credential Issuer (Pre-Authorized Code flow or Authorization Code flow).¶
Wallet Providers may also provide a market place where Issuers can register to be found for Wallet-initiated flows.¶
We would like to thank Richard Barnes, Paul Bastian, Vittorio Bertocci, Christian Bormann, John Bradley, Brian Campbell, Gabe Cohen, David Chadwick, Andrii Deinega, Giuseppe De Marco, Mark Dobrinic, Daniel Fett, Pedro Felix, George Fletcher, Christian Fries, Timo Glasta, Mark Haine, Fabian Hauck, Roland Hedberg, Joseph Heenan, Alen Horvat, Andrew Hughes, Jacob Ideskog, Lukasz Jaromin, Edmund Jay, Michael B. Jones, Tom Jones, Judith Kahrer, Takahiko Kawasaki, Niels Klomp, Ronald Koenig, Micha Kraus, Markus Kreusch, Philipp Lehwalder, Adam Lemmon, Dave Longley, David Luna, Daniel McGrogan, Jeremie Miller, Kenichi Nakamura, Rolson Quadras, Nat Sakimura, Sudesh Shetty, Oliver Terbu, Dimitri James Tsiflitzis, Mike Varley, Arjen van Veen, Jan Vereecken, David Waite, Jacob Ward for their valuable feedback and contributions to this specification.¶
Copyright (c) 2024 The OpenID Foundation.¶
The OpenID Foundation (OIDF) grants to any Contributor, developer, implementer, or other interested party a non-exclusive, royalty free, worldwide copyright license to reproduce, prepare derivative works from, distribute, perform and display, this Implementers Draft or Final Specification solely for the purposes of (i) developing specifications, and (ii) implementing Implementers Drafts and Final Specifications based on such documents, provided that attribution be made to the OIDF as the source of the material, but that such attribution does not indicate an endorsement by the OIDF.¶
The technology described in this specification was made available from contributions from various sources, including members of the OpenID Foundation and others. Although the OpenID Foundation has taken steps to help ensure that the technology is available for distribution, it takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this specification or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any independent effort to identify any such rights. The OpenID Foundation and the contributors to this specification make no (and hereby expressly disclaim any) warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to this specification, and the entire risk as to implementing this specification is assumed by the implementer. The OpenID Intellectual Property Rights policy requires contributors to offer a patent promise not to assert certain patent claims against other contributors and against implementers. The OpenID Foundation invites any interested party to bring to its attention any copyrights, patents, patent applications, or other proprietary rights that MAY cover technology that MAY be required to practice this specification.¶
[[ To be removed from the final specification ]]¶
-15¶
credential_configuration_id
in the Credential Request when scopes were used in the authorization request and no credential_identifiers returned in the token response¶
format
and format-specific parameters from Credential Request¶
claims
parameter from ISO mdoc and SD-JWT VC Credential Request¶
c_nonce
and c_nonce_expires_in
from the Credential Error Response¶
-14¶
credential_identifiers
mandatory for authorization_details
flow¶
authorization_details
for Authorization Request¶
authorization_pending
and slow_down
error codes¶
c_nonce
and c_nonce_expires_in
from the token endpoint response¶
-13¶
proof_types
from an array to a proof_types_supported
map that contains a required proof_signing_alg_values_supported
parameter¶
cryptographic_suites_supported
to credential_signing_alg_values_supported
to clarify the purpose of the parameter¶
credential_configurations
Credential Offer parameter to credential_configuration_ids
¶
format
from the Credential Response¶
signed_metadata
parameter¶
mandatory
claim¶
authorization_details
to use credential_configuration_id
pointing to the name of a credential_configurations_supported
object in the Credential Issuer's Metadata; in addition to an option to use format and type.¶
credentials
Credential Offer parameter to credential_configuration_ids
¶
credentials_supported
Credential Issuer metadata parameter to credential_configurations_supported
¶
credential_encryption_jwk
, credential_response_encryption_alg
and credential_response_encryption_enc
from Credential Request into a single credential_response_encryption
object¶
user_pin_required
in Credential Offer with a tx_code
object that also now contains description
and length
¶
response_types_supported
metadata¶
background_image
credential issuer metadata¶
-12¶
authorization_servers
Credential Issuer metadata parameter to be an array.¶
credentials_supported
parameter to a map from array of objects¶
credentials
parameter in Credential Offer to only be a string (no more objects) whose value is a key in the credentials_supported
mapcredential_identifiers
in authorization_details
Token Response parameter that can be used to identify Credentials with the same metadata but different claimset/claim values and/or simplify the Credential request even when only one Credential is being issued.¶
-11¶
-10¶
grants
structure to Credential offer¶
-09¶
-08¶
-07¶
-06¶
-05¶
-04¶
-03¶
-02¶
-01¶
-00¶