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.
2 parents aff09ba + dbe0804 commit e056e51Copy full SHA for e056e51
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