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

Side by Side Diff: LayoutTests/crypto/subtle/hmac/cloneKey-empty.html

Issue 958353003: [WebCrypto] Move cloneKey test to respective algorithm directory (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
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 de-cloning of empty HMAC keys"); 12 description("Tests structured de-cloning of empty HMAC keys");
13 13
14 // It used to be possible to import empty HMAC keys, so it is possible that 14 // It used to be possible to import empty HMAC keys, so it is possible that
15 // such keys were persisted to storage. This test verifies that such keys can 15 // such keys were persisted to storage. This test verifies that such keys can
16 // still be successfully de-serialized. 16 // still be successfully de-serialized.
17 // 17 //
18 // The version number of the serialized format used is 7. 18 // The version number of the serialized format used is 7.
19 19
20 var serializedKeyHex = "ff073f004b0200050900"; 20 var serializedKeyHex = "ff073f004b0200050900";
21 21
22 key = internals.deserializeBuffer(hexStringToUint8Array(serializedKeyHex).buffer ); 22 key = internals.deserializeBuffer(hexStringToUint8Array(serializedKeyHex).buffer );
23 23
24 shouldEvaluateAs("key.type", "secret"); 24 shouldEvaluateAs("key.type", "secret");
25 shouldEvaluateAs("key.extractable", true); 25 shouldEvaluateAs("key.extractable", true);
26 shouldEvaluateAs("key.algorithm.name", "HMAC"); 26 shouldEvaluateAs("key.algorithm.name", "HMAC");
27 shouldEvaluateAs("key.algorithm.length", 0); 27 shouldEvaluateAs("key.algorithm.length", 0);
28 shouldEvaluateAs("key.algorithm.hash.name", "SHA-1"); 28 shouldEvaluateAs("key.algorithm.hash.name", "SHA-1");
29 shouldEvaluateAs("key.usages.toString()", "sign"); 29 shouldEvaluateAs("key.usages.toString()", "sign");
30 30
31 </script> 31 </script>
32 32
33 </body> 33 </body>
34 </html> 34 </html>
OLDNEW
« no previous file with comments | « LayoutTests/crypto/subtle/hmac/cloneKey.html ('k') | LayoutTests/crypto/subtle/hmac/cloneKey-empty-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698