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

Side by Side Diff: LayoutTests/crypto/subtle/clone-hkdfKey.html

Issue 822083003: Webcrypto: add layout tests for HKDF algorithm (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: remove duplicate test case Created 5 years, 11 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/crypto/subtle/clone-hkdfKey-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("Tests structured cloning of HMAC keys"); 12 description("Tests structured cloning of HKDF keys");
13 13
14 jsTestIsAsync = true; 14 jsTestIsAsync = true;
15 15
16 // Tests the 48 permutations of keys generated by: 16 // Tests the 18 permutations of keys generated by:
17 // kPossibleHashAlgorithms x kPossibleExtractable x kPossibleKeyUsages x kPoss ibleKeyData 17 // kPossibleHashAlgorithms x kPossibleKeyUsages x kPossibleKeyData
18 // 18 //
19 // For practical reasons these tests are not exhaustive. 19 // For practical reasons these tests are not exhaustive.
20 20
21 var k128BitData = "30112233445566778899aabbccddeeff" 21 var k128BitData = "30112233445566778899aabbccddeeff"
22 var k256BitData = "00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0 e0f"; 22 var k256BitData = "00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0 e0f";
23 23
24 var kPossibleHashAlgorithms = ['SHA-1', 'SHA-256', 'SHA-512']; 24 var kPossibleHashAlgorithms = ['SHA-1', 'SHA-256', 'SHA-512'];
25 var kPossibleExtractable = [true, false]; 25 var kPossibleKeyUsages = [['deriveBits'], ['deriveKey'], ['deriveKey', 'deriveBi ts']];
26 var kPossibleKeyUsages = [['sign'], ['verify'], ['sign', 'verify']];
27 var kPossibleKeyData = [ 26 var kPossibleKeyData = [
28 k128BitData, 27 k128BitData,
29 k256BitData 28 k256BitData
30 ]; 29 ];
31 30
32 function runTest(hashName, extractable, keyUsages, keyData) 31 function runTest(hashName, keyUsages, keyData)
33 { 32 {
34 var importData = hexStringToUint8Array(keyData); 33 var importData = hexStringToUint8Array(keyData);
35 var importAlgorithm = { name: 'HMAC', hash: {name: hashName } }; 34 var importAlgorithm = { name: 'HKDF', hash: {name: hashName } };
36 35
37 var results = {}; 36 var results = {};
38 37
38 var extractable = false;
39 return crypto.subtle.importKey('raw', importData, importAlgorithm, extractab le, keyUsages).then(function(importedKey) { 39 return crypto.subtle.importKey('raw', importData, importAlgorithm, extractab le, keyUsages).then(function(importedKey) {
40 results.importedKey = importedKey; 40 results.importedKey = importedKey;
41 importedKey.extraProperty = 'hi'; 41 importedKey.extraProperty = 'hi';
42 return cloneKey(importedKey); 42 return cloneKey(importedKey);
43 }).then(function(clonedKey) { 43 }).then(function(result) {
44 results.clonedKey = clonedKey; 44 results.clonedKey = result;
45 if (extractable) 45
46 return crypto.subtle.exportKey('raw', clonedKey);
47 return null;
48 }).then(function(clonedKeyData) {
49 importedKey = results.importedKey; 46 importedKey = results.importedKey;
50 clonedKey = results.clonedKey; 47 clonedKey = results.clonedKey;
51 48
52 shouldEvaluateAs("importedKey.extraProperty", "hi"); 49 shouldEvaluateAs("importedKey.extraProperty", "hi");
53 shouldEvaluateAs("importedKey.type", "secret"); 50 shouldEvaluateAs("importedKey.type", "secret");
54 shouldEvaluateAs("importedKey.extractable", extractable); 51 shouldEvaluateAs("importedKey.extractable", extractable);
55 shouldEvaluateAs("importedKey.algorithm.name", "HMAC"); 52 shouldEvaluateAs("importedKey.algorithm.name", "HKDF");
56 shouldEvaluateAs("importedKey.algorithm.length", importData.length * 8);
57 shouldEvaluateAs("importedKey.algorithm.hash.name", hashName);
58 shouldEvaluateAs("importedKey.usages.join(',')", keyUsages.join(",")); 53 shouldEvaluateAs("importedKey.usages.join(',')", keyUsages.join(","));
59 54
60 shouldNotBe("importedKey", "clonedKey"); 55 shouldNotBe("importedKey", "clonedKey");
61 56
62 shouldBeUndefined("clonedKey.extraProperty"); 57 shouldBeUndefined("clonedKey.extraProperty");
63 shouldEvaluateAs("clonedKey.type", "secret"); 58 shouldEvaluateAs("clonedKey.type", "secret");
64 shouldEvaluateAs("clonedKey.extractable", extractable); 59 shouldEvaluateAs("clonedKey.extractable", extractable);
65 shouldEvaluateAs("clonedKey.algorithm.name", "HMAC"); 60 shouldEvaluateAs("clonedKey.algorithm.name", "HKDF");
66 shouldEvaluateAs("clonedKey.algorithm.length", importData.length * 8);
67 shouldEvaluateAs("clonedKey.algorithm.hash.name", hashName);
68 shouldEvaluateAs("clonedKey.usages.join(',')", keyUsages.join(",")); 61 shouldEvaluateAs("clonedKey.usages.join(',')", keyUsages.join(","));
69 62
70 logSerializedKey(importedKey); 63 logSerializedKey(importedKey);
71 64
72 if (extractable)
73 bytesShouldMatchHexString("Cloned key exported data", keyData, clone dKeyData);
74
75 debug(""); 65 debug("");
76 }); 66 });
77 } 67 }
78 68
79 var lastPromise = Promise.resolve(null); 69 var lastPromise = Promise.resolve(null);
80 70
81 kPossibleHashAlgorithms.forEach(function(hashName) { 71 kPossibleHashAlgorithms.forEach(function(hashName) {
82 kPossibleExtractable.forEach(function(extractable) { 72 kPossibleKeyUsages.forEach(function(keyUsages) {
83 kPossibleKeyUsages.forEach(function(keyUsages) { 73 kPossibleKeyData.forEach(function(keyData) {
84 kPossibleKeyData.forEach(function(keyData) { 74 lastPromise = lastPromise.then(runTest.bind(null, hashName, keyUsage s, keyData));
85 lastPromise = lastPromise.then(runTest.bind(null, hashName, extr actable, keyUsages, keyData));
86 });
87 }); 75 });
88 }); 76 });
89 }); 77 });
90 78
91 lastPromise.then(finishJSTest, failAndFinishJSTest); 79 lastPromise.then(finishJSTest, failAndFinishJSTest);
92 80
93 </script> 81 </script>
94 82
95 </body> 83 </body>
96 </html> 84 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/crypto/subtle/clone-hkdfKey-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698