diff options
author | Filip Skokan <panva.ip@gmail.com> | 2022-03-11 15:56:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 20:26:16 +0530 |
commit | f9b4d262b307649966b6433c72a9ee2b57bde8f7 (patch) | |
tree | 31766d95c4f093b67992d1d798cb8aa315f9a340 /cli/tests/unit/webcrypto_test.ts | |
parent | 189e2f617ea0f4304bb44bb6243e0378ca55b8b5 (diff) |
fix(ext/crypto): handle JWK import with "use" (#13912)
Diffstat (limited to 'cli/tests/unit/webcrypto_test.ts')
-rw-r--r-- | cli/tests/unit/webcrypto_test.ts | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cli/tests/unit/webcrypto_test.ts b/cli/tests/unit/webcrypto_test.ts index bdb99e8b7..94f011bae 100644 --- a/cli/tests/unit/webcrypto_test.ts +++ b/cli/tests/unit/webcrypto_test.ts @@ -1727,3 +1727,26 @@ Deno.test(async function ecPrivateKeyMaterialExportSpki() { const spki = await crypto.subtle.exportKey("spki", keys.publicKey); assert(spki instanceof ArrayBuffer); }); + +// https://github.com/denoland/deno/issues/13911 +Deno.test(async function importJwkWithUse() { + const jwk = { + "kty": "EC", + "use": "sig", + "crv": "P-256", + "x": "FWZ9rSkLt6Dx9E3pxLybhdM6xgR5obGsj5_pqmnz5J4", + "y": "_n8G69C-A2Xl4xUW2lF0i8ZGZnk_KPYrhv4GbTGu5G4", + }; + + const algorithm = { name: "ECDSA", namedCurve: "P-256" }; + + const key = await crypto.subtle.importKey( + "jwk", + jwk, + algorithm, + true, + ["verify"], + ); + + assert(key instanceof CryptoKey); +}); |