Skip to content

Commit

Permalink
feat: add mso mdoc proof support
Browse files Browse the repository at this point in the history
Signed-off-by: Bjorn Molin <[email protected]>
  • Loading branch information
bjornmolin committed Feb 18, 2025
1 parent 5245793 commit b5276d0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion docs/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ openssl req -new -x509 \
-key issuer_private_pkcs8.key \
-out issuer-certificate.crt \
-days 365 \
-subj "/CN=local.dev.swedenconnect.se"
-subj "/CN=local.dev.swedenconnect.se" \
-addext "subjectAltName = DNS:local.dev.swedenconnect.se" \
-addext "keyUsage = Digital Signature"
```


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ CredentialIssuerMetadata metadata() {
.scope("eu.europa.ec.eudi.pid.1")
.credentialSigningAlgValuesSupported(List.of("ES256"))
.cryptographicBindingMethodsSupported(List.of("jwk"))
.proofType("jwt", ProofTypeWrapper.createProofType(List.of("ES256")))
.display(List.of(
Display.builder()
.name("DIGG mdoc PID")
Expand Down
5 changes: 3 additions & 2 deletions src/main/resources/application-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ eudiw:
- "https://local.dev.swedenconnect.se:9443/callback-test-2-pre-authorisation-flow"
- "https://local.dev.swedenconnect.se:9443/callback-test-3-par"
- "https://local.dev.swedenconnect.se:9443"
- "eu.europa.ec.euidi://authorization"
swedenconnect:
base-url: https://local.dev.swedenconnect.se:9060/id-backend/auth
client: wallet-dev
Expand All @@ -90,7 +91,7 @@ credential:
certificates: file:../eudiw-prototype/sc-environment/config/openid-fed/keystores/issuer-certificate.crt
#./pkcs8/certificate.crt

name: "Issuer credential"
#name: "Issuer credential"
bundle:
monitoring:
health-endpoint-enabled: true
health-endpoint-enabled: true

0 comments on commit b5276d0

Please sign in to comment.