You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add format-specific credential metadata contribution for OID4VC
Introduce a CredentialBuilder hook that allows credential formats to
contribute format-specific metadata to the OID4VC issuer well-known
configuration. The issuer delegates metadata shaping to the
corresponding CredentialBuilder implementation.
Refactor metadata contribution to work directly with
SupportedCredentialConfiguration and CredentialScopeModel, improving
type-safety and avoiding unnecessary serialization.
Add integration tests to verify that SD-JWT credentials expose `vct`
without `credential_definition`, and JWT_VC credentials expose
`credential_definition` without `vct`.
Closeskeycloak#45485
Signed-off-by: NAMAN JAIN <naman.049259@tmu.ac.in>
Copy file name to clipboardExpand all lines: testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/oid4vc/issuance/signing/OID4VCIssuerWellKnownProviderTest.java
-81Lines changed: 0 additions & 81 deletions
Original file line number
Diff line number
Diff line change
@@ -880,87 +880,6 @@ public void testOldOidcDiscoveryCompliantWellKnownUrlWithDeprecationHeaders() {
880
880
}
881
881
}
882
882
883
-
/**
884
-
* Tests that SD-JWT credential metadata contains 'vct' and does NOT contain 'credential_definition'.
885
-
* This is an end-to-end test using HTTP requests to the well-known endpoint.
0 commit comments