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 a HMAC key."); | |
13 | |
14 jsTestIsAsync = true; | |
15 | |
16 var extractable = true; | |
17 | |
18 | |
19 debug("\nGenerating a key with default length..."); | |
20 | |
21 Promise.resolve(null).then(function(result) { | |
22 return crypto.subtle.generateKey("hmac", extractable, ["sign", "verify"]); | |
23 }).then(failAndFinishJSTest, function(result) { | |
24 logError(result); | |
25 return crypto.subtle.generateKey({name: "hmac"}, extractable, ["sign", "veri
fy"]); | |
26 }).then(failAndFinishJSTest, function(result) { | |
27 logError(result); | |
28 return crypto.subtle.generateKey({name: "hmac", length: undefined, hash: {na
me: "sha-1"}}, extractable, ["sign", "verify"]); | |
29 }).then(failAndFinishJSTest, function(result) { | |
30 logError(result); | |
31 return crypto.subtle.generateKey({name: "hmac", length: {}, hash: {name: "sh
a-1"}}, extractable, ["sign", "verify"]); | |
32 }).then(failAndFinishJSTest, function(result) { | |
33 logError(result); | |
34 return crypto.subtle.generateKey({name: "hmac", hash: {name: "sha-1"}}, extr
actable, ["sign", "verify"]); | |
35 }).then(function(result) { | |
36 key = result; | |
37 | |
38 shouldBe("key.type", "'secret'"); | |
39 shouldBe("key.extractable", "true"); | |
40 shouldBe("key.algorithm.name", "'HMAC'"); | |
41 shouldBe("key.algorithm.length", "512"); | |
42 shouldBe("key.usages", '["sign", "verify"]'); | |
43 | |
44 debug("\nGenerating a key with custom length..."); | |
45 return crypto.subtle.generateKey({name: "hmac", hash: {name: "sha-1"}, lengt
h: 40}, extractable, ["sign"]); | |
46 }).then(function(result) { | |
47 key = result; | |
48 | |
49 shouldBe("key.type", "'secret'"); | |
50 shouldBe("key.extractable", "true"); | |
51 shouldBe("key.algorithm.name", "'HMAC'"); | |
52 shouldBe("key.algorithm.length", "40"); | |
53 shouldBe("key.usages", '["sign"]'); | |
54 }).then(finishJSTest, failAndFinishJSTest); | |
55 </script> | |
56 | |
57 </body> | |
58 </html> | |
OLD | NEW |