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 4fe372b commit d98e972Copy full SHA for d98e972
src/utils.js
@@ -43,7 +43,7 @@ async function retrieveSigningKeys(jwks) {
43
44
for (const jwk of jwks) {
45
try {
46
- const key = await jose.importJWK(jwk, resolveAlg(jwk));
+ const key = await jose.importJWK({ ...jwk, ext: true }, resolveAlg(jwk));
47
if (key.type !== 'public') {
48
continue;
49
}
0 commit comments