We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbdca08 commit e67037aCopy full SHA for e67037a
certification/oidc/docker.js
@@ -13,6 +13,9 @@ import routes from '../../example/routes/koa.js';
13
14
import configuration from './configuration.js';
15
16
+// TODO: revert after https://gitlab.com/openid/conformance-suite/-/issues/1598 is fixed
17
+configuration.jwks.keys = configuration.jwks.keys.filter((jwk) => jwk.kty !== 'AKP');
18
+
19
const selfsigned = generate(null, { keySize: 2048 });
20
const { PORT = 3000, ISSUER = `http://localhost:${PORT}` } = process.env;
21
configuration.findAccount = Account.findAccount;
0 commit comments