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 generating an EC key pair for ECDSA."); | |
13 | |
14 jsTestIsAsync = true; | |
15 | |
16 var algorithmKeyGen = { | |
17 name: "ecdsa", | |
18 namedCurve: "P-256", | |
19 }; | |
20 var extractable = true; | |
21 | |
22 debug("Generating a key pair..."); | |
23 crypto.subtle.generateKey(algorithmKeyGen, extractable, ["sign", "verify"]).then
(function(result) { | |
24 keyPair = result; | |
25 shouldBe("keyPair.toString()", "'[object Object]'"); | |
26 shouldBe("keyPair.publicKey.type", "'public'"); | |
27 shouldBe("keyPair.publicKey.algorithm.name", "'ECDSA'"); | |
28 shouldBe("keyPair.publicKey.algorithm.namedCurve", "'P-256'"); | |
29 shouldBe("keyPair.publicKey.usages", '["verify"]'); | |
30 shouldBe("keyPair.privateKey.type", "'private'"); | |
31 shouldBe("keyPair.privateKey.algorithm.name", "'ECDSA'"); | |
32 shouldBe("keyPair.privateKey.algorithm.namedCurve", "'P-256'"); | |
33 shouldBe("keyPair.privateKey.usages", '["sign"]'); | |
34 | |
35 debug("\nTesting that custom attributes on keys survive garbage collection..
."); | |
36 keyPair.publicKey.foo = "bar"; | |
37 gc(); | |
38 setTimeout(function() { | |
39 gc(); | |
40 setTimeout(function() { | |
41 shouldBe("keyPair.publicKey.foo", "'bar'"); | |
42 finishJSTest(); | |
43 }, 0); | |
44 }, 0); | |
45 }).catch(failAndFinishJSTest); | |
46 | |
47 </script> | |
48 | |
49 </body> | |
50 </html> | |
OLD | NEW |