Skip to content

Commit

Permalink
Update progress list in MitzXNuts POC merge
Browse files Browse the repository at this point in the history
Updated the progress task list in MitzXNuts POC merge to master documentation file, showing which tasks have been completed, those that aren't done, and reasons why, and those that are yet to be completed. Some tasks have been highlighted with explanations or references for a better understanding.
  • Loading branch information
rolandgroen committed Mar 26, 2024
1 parent fb5cd5f commit cfb5d18
Showing 1 changed file with 63 additions and 27 deletions.
90 changes: 63 additions & 27 deletions merge-to-master-things.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
# MitzXNuts POC merge to master TODOs

## Legenda
* ✅ gedaan en afgerond
* 🧦 niet gedaan, uitleg waarom
* ❌ nog te doen, open

## Summary

OpenID4VCI API design in the Nuts node hasn't be made yet, but will probably not follow the design as implemented in the POC.
Authentication of the user must be considered if the user-agent (browser) is going to perform operations on the wallet in the Nuts node.

Useful bits, low-hanging-fruit to keep:
- `vdr/resolver/key.go` support for `@base` property in DID documents
- ES256K support (PR already exists for merge to master)
- `vdr/resolver/key.go` support for `@base` property in DID documents
- ES256K support (PR already exists for merge to master) ✅ Done

## General
- Why is session ID kept in the URLs everywhere?
- Remove `UnsecureSkipVerify` from TLS configuration
- Why is session ID kept in the URLs everywhere? ✅ Resolved, the state param is used now.
- Remove `UnsecureSkipVerify` from TLS configuration ✅ Done
- Move well-known endpoints to the root (`/.well-known/...`)
- Thoughts for making POC-code more production ready
- Code complexity (`for, for, if, for, if`)
- println's
- Ignored errors
- Logging
- OpenID4VP and OpenID4VCI clients could be useful in future
- Code complexity (`for, for, if, for, if`)
- println's ✅ Opgeruimd
- Ignored errors ✅ Opgeruimd
- Logging ✅ Added logging on crucial points.
- OpenID4VP and OpenID4VCI clients could be useful in future

## API endpoints

Expand All @@ -28,55 +32,87 @@ Triggers start OpenID4VCI flow.

API design:
- Should be an internal endpoint, not exposed to the public. E.g. called by frontend for cloud wallet (Nuts node).
- Something like /internal/iam/v1/{did}/request-credential
- Something like /internal/iam/v1/{did}/request-credential
- Who calls this endpoint, the wallet front-end (thus the browser), or a back-end of the wallet front-end?
- If it's a browser, it needs user authentication on the Nuts node wallet
- If it's a back-end, the response shouldn't be a HTTP 302 with Location header, but a JSON response.
- If it's a browser, it needs user authentication on the Nuts node wallet 🚦
- If it's a back-end, the response shouldn't be a HTTP 302 with Location header, but a JSON response.

Implementation:
- PKCE code_challenge_method is not implemented properly, method must not be sent until access token request
- PKCE code_challenge_method is not implemented properly, method must not be sent until access token request 🧦 Nope, not true, see https://www.rfc-editor.org/rfc/rfc7636#page-8

> 4.3. Client Sends the Code Challenge with the Authorization Request
>
> The client sends the code challenge as part of the OAuth 2.0
> Authorization Request (Section 4.1.1 of [RFC6749]) using the
> following additional parameters:
>
> code_challenge
> REQUIRED. Code challenge.
>
> code_challenge_method
> OPTIONAL, defaults to "plain" if not present in the request. Code
> verifier transformation method is "S256" or "plain".
and

> 4.5. Client Sends the Authorization Code and the Code Verifier to the
> Token Endpoint
>
> Upon receipt of the Authorization Code, the client sends the Access
> Token Request to the token endpoint. In addition to the parameters
> defined in the OAuth 2.0 Access Token Request (Section 4.1.3 of
> [RFC6749]), it sends the following parameter:
>
> code_verifier
> REQUIRED. Code verifier
>
> The "code_challenge_method" is bound to the Authorization Code when
> the Authorization Code is issued. That is the method that the token
> endpoint MUST use to verify the "code_verifier".

- Returned errors should be user-friendly if browser calls the endpoint
- user_hint is now a signed JWT with session ID, is this functionally OK and secure? Do we want to use user_hint for this?
- user_hint is now a signed JWT with session ID, is this functionally OK and secure? Do we want to use user_hint for this? ✅ removed, the hint can go as it was part of the dynamic credential request (DCR).

### /iam/oidc4vci/dcr/{sessionId}/.well-known/openid-configuration

- Missing properties should be added to existing metadata endpoint
- Why is metadata session specific?
- Missing properties should be added to existing metadata endpoint 🧦 Code removed
- Why is metadata session specific? 🧦 Code removed

### /iam/oidc4vci/dcr/{sessionId}/authorize
Triggers OpenID4VP flow within a OpenID4VCI flow (a.k.a. Dynamic Credential Request).
Triggers OpenID4VP flow within a OpenID4VCI flow (a.k.a. Dynamic Credential Request). 🧦 Code removed

API design:
- Call for the browser? Same points as for `start-oid4vci-issuance` endpoint (probably internal endpoint, security considerations).
- Dynamic Credential Request is triggered by credential issuer (backend, state machine), not by the user (frontend, browser).

Implementation:
- Only 1 credential from Presentation Definition is supported
- VP format should be derived from what is supported by the involved parties
- Only 1 credential from Presentation Definition is supported 🧦 Code removed
- VP format should be derived from what is supported by the involved parties 🧦 Code removed

### /iam/oidc4vci/{sessionId}/callback
Who calls this?
Who calls this? ✅ the issuer when done.

API design:
- We're considering OAuth2 Client Registration, which involves pre-registered redirect URIs. This means they can't contain dynamic session IDs.
- We're considering OAuth2 Client Registration, which involves pre-registered redirect URIs. This means they can't contain dynamic session IDs. ✅ removed, depends on session now.

Implementation:
- The concept of credentials trust will be removed and is not applicable to did:web, OpenID4VCI and OpenID4VP as implemented in Nuts node.
- Why was it needed in the POC?
- Why was it needed in the POC? ✅ nope, code is verwijderd.
- `authorization_servers` property in Credential Issuer Metadata was recently added and is optional, not sure if we want to support it?
- Why was it needed in the POC?
- Why was it needed in the POC? 🧦 we need it to find the /authorize endpoint, so if there are no authorization_servers defined we cannot authorize the user.


### /internal/auth/v2/{did}/wallet

Remove, already exists as `/internal/vcr/v2/holder/{did}`
Remove, already exists as `/internal/vcr/v2/holder/{did}` ✅ removed as code exists.

### DELETE /internal/auth/v2/{did}/wallet/{id)

To be implemented (https://github.com/nuts-foundation/nuts-node/issues/2820)
To be implemented (https://github.com/nuts-foundation/nuts-node/issues/2820) ✅ removed as code exists.

## Other code

- PKCE implementation we still need to implement, so could be useful. But we're not at that point yet.
- Now stored separately from session, can be part of session struct?
- `Wrapper.findCredentialWithDescriptors()`: use `PresentationDefinition.Match()` instead
- Now stored separately from session, can be part of session struct? ✅ Done
- `Wrapper.findCredentialWithDescriptors()`: use `PresentationDefinition.Match()` instead 🧦 Code removed

0 comments on commit cfb5d18

Please sign in to comment.