From 728b84aec0fc898611a310f095a8c51f97d8c26e Mon Sep 17 00:00:00 2001 From: Emmanuel Gaillot Date: Fri, 27 Dec 2024 18:17:57 +0100 Subject: [PATCH] Supprime champ `use` de la JWK MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … Afin qu'elle puisse servir à la fois au chiffrage des informations transmises par FC+, et à la signature des informations envoyées à OOTS-France. --- src/routes/routesAuth.js | 1 - test/routes/routesAuth.spec.js | 1 - 2 files changed, 2 deletions(-) diff --git a/src/routes/routesAuth.js b/src/routes/routesAuth.js index a9befbe..c782e92 100644 --- a/src/routes/routesAuth.js +++ b/src/routes/routesAuth.js @@ -25,7 +25,6 @@ const routesAuth = (config) => { const clePubliqueDansJWKSet = { keys: [{ kid: idClePublique, - use: 'enc', kty, e, n, diff --git a/test/routes/routesAuth.spec.js b/test/routes/routesAuth.spec.js index 03c9125..02fdfc5 100644 --- a/test/routes/routesAuth.spec.js +++ b/test/routes/routesAuth.spec.js @@ -26,7 +26,6 @@ describe('Le serveur des routes `/auth`', () => { keys: [{ kid: 'hash de 503as-2qay5...', kty: 'RSA', - use: 'enc', e: 'AQAB', n: '503as-2qay5...', }],