From c3a91f821390e1bfb3a2d1c0f2f37d0e3cac891b Mon Sep 17 00:00:00 2001 From: Aramis Date: Fri, 26 Jan 2024 17:13:59 -0500 Subject: [PATCH] fix(auth): add support for additional alg values Signed-off-by: Aramis --- plugins/auth-backend/src/identity/router.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/auth-backend/src/identity/router.ts b/plugins/auth-backend/src/identity/router.ts index d994f44d37..38e48f0a5d 100644 --- a/plugins/auth-backend/src/identity/router.ts +++ b/plugins/auth-backend/src/identity/router.ts @@ -34,7 +34,7 @@ export function createOidcRouter(options: Options) { jwks_uri: `${baseUrl}/.well-known/jwks.json`, response_types_supported: ['id_token'], subject_types_supported: ['public'], - id_token_signing_alg_values_supported: ['RS256'], + id_token_signing_alg_values_supported: ['RS256', 'ES256'], scopes_supported: ['openid'], token_endpoint_auth_methods_supported: [], claims_supported: ['sub'],