OLD | NEW |
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("Test generating, importing and exporting keys for AES-KW. Test that
they can't be used with another algorithm."); | 12 description("Test generating, importing and exporting keys for AES-KW. Test that
they can't be used with another algorithm."); |
13 | 13 |
14 jsTestIsAsync = true; | 14 jsTestIsAsync = true; |
(...skipping 28 matching lines...) Expand all Loading... |
43 shouldBe("importedKey.toString()", "'[object CryptoKey]'"); | 43 shouldBe("importedKey.toString()", "'[object CryptoKey]'"); |
44 shouldBe("importedKey.type", "'secret'"); | 44 shouldBe("importedKey.type", "'secret'"); |
45 shouldBe("importedKey.algorithm.name", "'AES-KW'"); | 45 shouldBe("importedKey.algorithm.name", "'AES-KW'"); |
46 shouldBe("importedKey.algorithm.length", "256"); | 46 shouldBe("importedKey.algorithm.length", "256"); |
47 }).then(finishJSTest, failAndFinishJSTest); | 47 }).then(finishJSTest, failAndFinishJSTest); |
48 | 48 |
49 </script> | 49 </script> |
50 | 50 |
51 </body> | 51 </body> |
52 </html> | 52 </html> |
OLD | NEW |