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 exporting keys with various usages to JWK."); | 12 description("Test exporting keys with various usages to JWK."); |
13 | 13 |
14 jsTestIsAsync = true; | 14 jsTestIsAsync = true; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 testWithAESCBC(["encrypt", "decrypt", "wrapKey"], ["encrypt", "decrypt", "wr
apKey"]), | 54 testWithAESCBC(["encrypt", "decrypt", "wrapKey"], ["encrypt", "decrypt", "wr
apKey"]), |
55 testWithAESCBC(["encrypt", "decrypt", "wrapKey", "unwrapKey"], ["encrypt", "
decrypt", "wrapKey", "unwrapKey"]), | 55 testWithAESCBC(["encrypt", "decrypt", "wrapKey", "unwrapKey"], ["encrypt", "
decrypt", "wrapKey", "unwrapKey"]), |
56 testWithHMAC(["sign"], ["sign"]), | 56 testWithHMAC(["sign"], ["sign"]), |
57 testWithHMAC(["verify"], ["verify"]), | 57 testWithHMAC(["verify"], ["verify"]), |
58 testWithHMAC(["sign", "verify"], ["sign", "verify"]), | 58 testWithHMAC(["sign", "verify"], ["sign", "verify"]), |
59 ]).then(finishJSTest, failAndFinishJSTest); | 59 ]).then(finishJSTest, failAndFinishJSTest); |
60 </script> | 60 </script> |
61 | 61 |
62 </body> | 62 </body> |
63 </html> | 63 </html> |
OLD | NEW |