-
Notifications
You must be signed in to change notification settings - Fork 3
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
Improve EUDIW interop #48
Conversation
This may apply to request objects itsef, or JSON Web Key Sets, client metadata.
@@ -240,35 +240,3 @@ data class AuthenticationRequestParameters( | |||
} | |||
} | |||
} | |||
|
|||
// restricted to internal as there is no reason to make this public for now |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we completely removing those instead of just renaming them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because with this class you don't see the serial name of the property at a glance (which is quite useful for OID obejcts). Additionally, it is different from all other classes then. Also, nobody needs the serial names.
vclib-openid/src/commonMain/kotlin/at/asitplus/wallet/lib/oidc/JsonWebKeySet.kt
Outdated
Show resolved
Hide resolved
val constraintFields = attributeConstraint + typeConstraint | ||
val schemaReference = SchemaReference( | ||
requestOptions.credentialScheme?.schemaUri ?: "https://example.com" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems off
As a general remark which does not need to be addressed here: would you mind upgrading to the latest conventions (1.9.23+20240409+1) for automated version catalog publishing? |
This should be handled in a separate PR imho |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Updates the implementation of OIDC SIOPv2 and OpenID for Verifiable Presentations, refactors interfaces of public classes to further improve the interoperability with EUDIW reference implementation.
These changes should allow Wallet implementations to generate a correct response to EUDIW verifier at https://verifier.eudiw.dev/home
Fixes #47