fix: Update supported DPoP algorithms to run CTH

This commit is contained in:
Joachim Van Herwegen 2023-10-05 16:01:42 +02:00
parent 180d5f131e
commit 1e3684bcf3
2 changed files with 10 additions and 4 deletions

View File

@ -23,7 +23,7 @@ jobs:
uses: ./.github/workflows/cth-test.yml
with:
ignore_failures: true
version: 1.1.7 # The latest version that CSS is confirmed to pass
version: 1.1.14 # The latest version that CSS is confirmed to pass
docker:
# Build docker containers on version tag, push to main and push to versions/

View File

@ -2,9 +2,7 @@
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^6.0.0/components/context.jsonld",
"@graph": [
{
"comment": [
"Sets all the relevant Solid-OIDC parameters.",
],
"comment": "Sets all the relevant Solid-OIDC parameters.",
"@id": "urn:solid-server:default:IdentityProviderFactory",
"@type": "IdentityProviderFactory",
"adapterFactory": { "@id": "urn:solid-server:default:IdpAdapterFactory" },
@ -27,6 +25,14 @@
"long": { "signed": true, "maxAge": 86400000 },
"short": { "signed": true }
},
"enabledJWA": {
"dPoPSigningAlgValues": [
"RS256", "RS384", "RS512",
"PS256", "PS384", "PS512",
"ES256", "ES256K", "ES384", "ES512",
"EdDSA"
]
},
"features": {
"claimsParameter": { "enabled": true },
"clientCredentials": { "enabled": true },