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