Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: LayoutTests/crypto/hmac-generate-key.html

Issue 298023002: [webcrypto] Import WebKit's webcrypto tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove FIXME for unrecognized jwk usages (supported now) Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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>
OLDNEW
« no previous file with comments | « LayoutTests/crypto/hmac-export-key-expected.txt ('k') | LayoutTests/crypto/hmac-generate-key-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698