| <!DOCTYPE html> |
| <html> |
| <head> |
| <script src="../../resources/js-test-pre.js"></script> |
| <script src="../resources/common.js"></script> |
| </head> |
| <body> |
| <p id="description"></p> |
| <div id="console"></div> |
| |
| <script> |
| description("Test importing a JWK ECDH private key with P-384"); |
| |
| jsTestIsAsync = true; |
| |
| var jwkKey = { |
| kty: "EC", |
| use: "enc", |
| ext: false, |
| key_ops: ["deriveKey", "deriveBits"], |
| crv: "P-384", |
| x: "NZVgC4P8tS2ztYEDn_heNZ9h40u_VMfDNOBdoFa7kRSxtxNy6QCQmouM0jXydUHf", |
| y: "M5xgBJWr-xs6RXqPjaA4D79joAncTd70eY_B1jcyqJLbwKN6sjE8LI-tJWROBbFE", |
| d: "Jad31DRGPygbSd8rviV06ykvHNw3n-HzAnZUfXLWRIMlv7VKwNzNHFbfmTQPo3mK", |
| }; |
| var nonExtractable = false; |
| |
| debug("Importing a key..."); |
| crypto.subtle.importKey("jwk", jwkKey, { name: "ECDH", namedCurve: "P-384" }, nonExtractable, ["deriveKey", "deriveBits"]).then(function(result) { |
| privateKey = result; |
| |
| shouldBe("privateKey.toString()", "'[object CryptoKey]'"); |
| shouldBe("privateKey.type", "'private'"); |
| shouldBe("privateKey.extractable", "false"); |
| shouldBe("privateKey.algorithm.name", "'ECDH'"); |
| shouldBe("privateKey.algorithm.namedCurve", "'P-384'"); |
| shouldBe("privateKey.usages", "['deriveBits', 'deriveKey']"); |
| |
| finishJSTest(); |
| }); |
| |
| </script> |
| |
| <script src="../../resources/js-test-post.js"></script> |
| </body> |
| </html> |