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 importing keys with various uses from JWK."); | 12 description("Test importing keys with various uses from JWK."); |
13 | 13 |
14 jsTestIsAsync = true; | 14 jsTestIsAsync = true; |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 testWithAESCBC(["decrypt"], {key_ops: ["Encrypt", "decrypt"]}, ["decrypt"]), | 114 testWithAESCBC(["decrypt"], {key_ops: ["Encrypt", "decrypt"]}, ["decrypt"]), |
115 testWithAESCBC(null, {key_ops: ["'encrypt'", "decrypt"]}, ["encrypt"]), | 115 testWithAESCBC(null, {key_ops: ["'encrypt'", "decrypt"]}, ["encrypt"]), |
116 testWithAESCBC(null, {key_ops: ["encrypt "]}, ["encrypt"]), | 116 testWithAESCBC(null, {key_ops: ["encrypt "]}, ["encrypt"]), |
117 testWithAESCBC(null, {key_ops: ["Encrypt"]}, ["encrypt"]), | 117 testWithAESCBC(null, {key_ops: ["Encrypt"]}, ["encrypt"]), |
118 | 118 |
119 ]).then(finishJSTest, failAndFinishJSTest); | 119 ]).then(finishJSTest, failAndFinishJSTest); |
120 </script> | 120 </script> |
121 | 121 |
122 </body> | 122 </body> |
123 </html> | 123 </html> |
OLD | NEW |