Skip to content

Commit

Permalink
fix(compat): ensure WebCryptoAPI runtime imported keys are re-exportable
Browse files Browse the repository at this point in the history
  • Loading branch information
panva authored May 3, 2024
1 parent 4fe372b commit d98e972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async function retrieveSigningKeys(jwks) {

for (const jwk of jwks) {
try {
const key = await jose.importJWK(jwk, resolveAlg(jwk));
const key = await jose.importJWK({ ...jwk, ext: true }, resolveAlg(jwk));
if (key.type !== 'public') {
continue;
}
Expand Down

0 comments on commit d98e972

Please sign in to comment.