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 a JWK key for HMAC."); | 12 description("Test importing a JWK key for HMAC."); |
13 | 13 |
14 jsTestIsAsync = true; | 14 jsTestIsAsync = true; |
(...skipping 28 matching lines...) Expand all Loading... |
43 debug("\nVerifying the signature..."); | 43 debug("\nVerifying the signature..."); |
44 return crypto.subtle.verify(key.algorithm, key, result, asciiToUint8Array('f
oo')); | 44 return crypto.subtle.verify(key.algorithm, key, result, asciiToUint8Array('f
oo')); |
45 }).then(function(result) { | 45 }).then(function(result) { |
46 verificationResult = result; | 46 verificationResult = result; |
47 shouldBe("verificationResult", "true"); | 47 shouldBe("verificationResult", "true"); |
48 }).then(finishJSTest, failAndFinishJSTest); | 48 }).then(finishJSTest, failAndFinishJSTest); |
49 </script> | 49 </script> |
50 | 50 |
51 </body> | 51 </body> |
52 </html> | 52 </html> |
OLD | NEW |