OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../resources/js-test.js"></script> | 4 <script src="../resources/js-test.js"></script> |
5 <script src="resources/common.js"></script> | 5 <script src="resources/common.js"></script> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <p id="description"></p> | 8 <p id="description"></p> |
9 <div id="console"></div> | 9 <div id="console"></div> |
10 | 10 |
11 <script> | 11 <script> |
12 description("Test importing an EC public and private key for ECDSA."); | 12 description("Test importing an EC public and private key for ECDH."); |
13 | 13 |
14 jsTestIsAsync = true; | 14 jsTestIsAsync = true; |
15 | 15 |
16 var extractable = true; | 16 var extractable = true; |
17 | 17 |
18 var publicKeyJSON = { | 18 var publicKeyJSON = { |
19 "kty": "EC", | 19 "kty": "EC", |
20 "crv": "P-256", | 20 "crv": "P-256", |
21 "x": "nLDPaTA9r8dh1ORoe07PA55tNKuWSvgIENjVWKSo1vc", | 21 "x": "nLDPaTA9r8dh1ORoe07PA55tNKuWSvgIENjVWKSo1vc", |
22 "y": "LVEjOheIkgqG7gihlix576MX-3h54pfa0hRtuZX6HHg" | 22 "y": "LVEjOheIkgqG7gihlix576MX-3h54pfa0hRtuZX6HHg" |
23 }; | 23 }; |
24 | 24 |
25 var privateKeyJSON = { | 25 var privateKeyJSON = { |
26 "kty": "EC", | 26 "kty": "EC", |
27 "crv": "P-384", | 27 "crv": "P-384", |
28 "d": "pJLOj6kAhMIn4aMveXTTnp_2en6HBew0GbNftgdYK-vUYeCxUgrHbsLdTptj665x", | 28 "d": "pJLOj6kAhMIn4aMveXTTnp_2en6HBew0GbNftgdYK-vUYeCxUgrHbsLdTptj665x", |
29 "x": "5V_ubEnY1SP1znv5wEJc5P9lBwi33lz7CVkBUjl5p_BCYC2zCFRzU2mBO1w_Xvho", | 29 "x": "5V_ubEnY1SP1znv5wEJc5P9lBwi33lz7CVkBUjl5p_BCYC2zCFRzU2mBO1w_Xvho", |
30 "y": "KPWcxdxQmJKpiNOKjiUZ3j0MT9D72wmT448YUGwXYGxeJCSSRvHOlJg6U2HFvpg-" | 30 "y": "KPWcxdxQmJKpiNOKjiUZ3j0MT9D72wmT448YUGwXYGxeJCSSRvHOlJg6U2HFvpg-" |
31 }; | 31 }; |
32 | 32 |
33 debug("Importing a public key..."); | 33 debug("Importing a public key..."); |
34 crypto.subtle.importKey("jwk", publicKeyJSON, {name: "ECDSA", namedCurve: "P-256
"}, extractable, ["verify"]).then(function(result) { | 34 crypto.subtle.importKey("jwk", publicKeyJSON, {name: "ECDH", namedCurve: "P-256"
}, extractable, []).then(function(result) { |
35 publicKey = result; | 35 publicKey = result; |
36 shouldBe("publicKey.toString()", "'[object CryptoKey]'"); | 36 shouldBe("publicKey.toString()", "'[object CryptoKey]'"); |
37 shouldBe("publicKey.type", "'public'"); | 37 shouldBe("publicKey.type", "'public'"); |
38 shouldBe("publicKey.usages", "['verify']"); | 38 shouldBe("publicKey.usages", "[]"); |
39 shouldBe("publicKey.algorithm.name", "'ECDSA'"); | 39 shouldBe("publicKey.algorithm.name", "'ECDH'"); |
40 shouldBe("publicKey.algorithm.namedCurve", "'P-256'"); | 40 shouldBe("publicKey.algorithm.namedCurve", "'P-256'"); |
41 debug("\nImporting a private key..."); | 41 debug("\nImporting a private key..."); |
42 return crypto.subtle.importKey("jwk", privateKeyJSON, {name: "ECDSA", namedC
urve: "P-384"}, extractable, ["sign"]); | 42 return crypto.subtle.importKey("jwk", privateKeyJSON, {name: "ECDH", namedCu
rve: "P-384"}, extractable, ["deriveBits"]); |
43 }).then(function(result) { | 43 }).then(function(result) { |
44 privateKey = result; | 44 privateKey = result; |
45 shouldBe("privateKey.toString()", "'[object CryptoKey]'"); | 45 shouldBe("privateKey.toString()", "'[object CryptoKey]'"); |
46 shouldBe("privateKey.type", "'private'"); | 46 shouldBe("privateKey.type", "'private'"); |
47 shouldBe("privateKey.usages", "['sign']"); | 47 shouldBe("privateKey.usages", "['deriveBits']"); |
48 shouldBe("privateKey.algorithm.name", "'ECDSA'"); | 48 shouldBe("privateKey.algorithm.name", "'ECDH'"); |
49 shouldBe("privateKey.algorithm.namedCurve", "'P-384'"); | 49 shouldBe("privateKey.algorithm.namedCurve", "'P-384'"); |
50 }).then(finishJSTest, failAndFinishJSTest); | 50 }).then(finishJSTest, failAndFinishJSTest); |
51 </script> | 51 </script> |
52 | 52 |
53 </body> | 53 </body> |
54 </html> | 54 </html> |
OLD | NEW |