| 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 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 }).then(failAndFinishJSTest, function(result) { | 44 }).then(failAndFinishJSTest, function(result) { |
| 45 logError(result); | 45 logError(result); |
| 46 | 46 |
| 47 // Operation does not support signing. | 47 // Operation does not support signing. |
| 48 return crypto.subtle.sign({name: 'sha-1'}, key, data); | 48 return crypto.subtle.sign({name: 'sha-1'}, key, data); |
| 49 }).then(failAndFinishJSTest, function(result) { | 49 }).then(failAndFinishJSTest, function(result) { |
| 50 logError(result); | 50 logError(result); |
| 51 | 51 |
| 52 // Operation doesn't support signing (also given an invalid key, but the | 52 // Operation doesn't support signing (also given an invalid key, but the |
| 53 // first failure takes priority) | 53 // first failure takes priority) |
| 54 return crypto.subtle.sign({name: 'RSAES-PKCS1-v1_5'}, key, data); | 54 return crypto.subtle.sign({name: 'AES-CBC'}, key, data); |
| 55 }).then(failAndFinishJSTest, function(result) { | 55 }).then(failAndFinishJSTest, function(result) { |
| 56 logError(result); | 56 logError(result); |
| 57 }).then(finishJSTest, failAndFinishJSTest); | 57 }).then(finishJSTest, failAndFinishJSTest); |
| 58 | 58 |
| 59 </script> | 59 </script> |
| 60 | 60 |
| 61 </body> | 61 </body> |
| 62 </html> | 62 </html> |
| OLD | NEW |