Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!: removing unused and deprecated WIA claims #113

Merged
merged 2 commits into from
Sep 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 8 additions & 22 deletions docs/en/wallet-instance-attestation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,13 @@ Header
+-----------------------------------+-----------------------------------+
| x5c | Array containing the X.509 |
| | certificate (and the entire chain |
| | of certificates) used to certify |
| | the public key of the issuer. |
| | of certificates) used to attest |
| | the public key of the Wallet |
| | Provider. |
+-----------------------------------+-----------------------------------+
| trust_chain | Array containing the JWS of the |
| | trust chain relating to its |
| | issuer (Wallet Provider). |
| | trust chain relating to the |
| | Wallet Provider. |
+-----------------------------------+-----------------------------------+

Payload
Expand All @@ -226,17 +227,6 @@ Payload
|| || problems is to have a limited |
|| || duration of the attestation. |
+---------------------------+------------------------------------------------+
|| type || String: |
|| || "WalletInstanceAttestation". |
+---------------------------+------------------------------------------------+
|| policy_uri || URL to the privacy policy |
|| || of the wallet. |
+---------------------------+------------------------------------------------+
|| tos_uri || URL to the terms |
|| || of use of the Wallet Provider. |
+---------------------------+------------------------------------------------+
|| logo_uri || URL of the Wallet Provider logo in SVG format |
+---------------------------+------------------------------------------------+
|| attested_security_context|| Attested security context: |
|| || Represents a level of "trust" of |
|| || the service containing a Level Of |
Expand All @@ -248,20 +238,20 @@ Payload
|| || with the public key of the Wallet |
|| || necessary for the holder binding. |
+---------------------------+------------------------------------------------+
|| authorization_endpoint || URL of the OP's OAuth 2.0 |
|| authorization_endpoint || URL of the SIOPv2 |
|| || Authorization Endpoint. |
+---------------------------+------------------------------------------------+
|| response_types_supported || JSON array containing a list of |
|| || the OAuth 2.0 response_type values |
|| || that this OP supports. |
|| || that this SIOP supports. |
+---------------------------+------------------------------------------------+
|| vp_formats_supported || JSON object containing |
|| || ``jwt_vp_json`` and ``jwt_vc_json`` |
|| || supported algorithms array. |
+---------------------------+------------------------------------------------+
|| request_object_signing || JSON array containing a list of the |
|| _alg_values_supported || JWS signing algorithms (alg values) |
|| || supported by the OP for Request Objects. |
|| || supported by the SIOP for Request Objects. |
+---------------------------+------------------------------------------------+
|| presentation_definition || Boolean value specifying whether the |
|| _uri_supported || Wallet Instance supports the transfer of |
Expand Down Expand Up @@ -296,10 +286,6 @@ Below is an example of Wallet Instance Attestation:
{
"iss": "https://wallet-provider.example.org",
"sub": "vbeXJksM45xphtANnCiG6mCyuU4jfGNzopGuKvogg9c",
"type": "WalletInstanceAttestation",
"policy_uri": "https://wallet-provider.example.org/privacy_policy",
"tos_uri": "https://wallet-provider.example.org/info_policy",
"logo_uri": "https://wallet-provider.example.org/logo.svg",
"attested_security_context": "https://wallet-provider.example.org/LoA/basic",
"cnf":
{
Expand Down
Loading