OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <script src="../fast/js/resources/js-test-pre.js"></script> |
| 5 <script src="resources/common.js"></script> |
| 6 </head> |
| 7 <body> |
| 8 <p id="description"></p> |
| 9 <div id="console"></div> |
| 10 |
| 11 <script> |
| 12 description("Tests cypto.subtle.encrypt and crypto.subtle.decrypt"); |
| 13 |
| 14 jsTestIsAsync = true; |
| 15 |
| 16 importTestKeys().then(function(importedKeys) { |
| 17 keys = importedKeys; |
| 18 |
| 19 data = asciiToArrayBuffer("hello"); |
| 20 |
| 21 // --------------------------------------------------- |
| 22 // AES-CBC normalization failures (AesCbcParams) |
| 23 // --------------------------------------------------- |
| 24 |
| 25 shouldThrow("crypto.subtle.encrypt({name: 'AES-CBC', iv: null}, keys.aesCbc,
data)"); |
| 26 shouldThrow("crypto.subtle.encrypt({name: 'AES-CBC'}, keys.aesCbc, data)"); |
| 27 shouldThrow("crypto.subtle.encrypt({name: 'AES-CBC', iv: 3}, keys.aesCbc, da
ta)"); |
| 28 shouldThrow("crypto.subtle.encrypt({name: 'AES-CBC', iv: new Uint8Array[0]},
keys.aesCbc, data)"); |
| 29 |
| 30 // Try calling with the wrong key type. |
| 31 aesCbc = {name: 'AES-CBC', iv: new Uint8Array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15])}; |
| 32 shouldThrow("crypto.subtle.encrypt(aesCbc, keys.hmacSha1, data)"); |
| 33 |
| 34 // Key doesn't support encrypt. |
| 35 shouldThrow("crypto.subtle.encrypt(aesCbc, keys.aesCbcJustDecrypt, data)"); |
| 36 }).then(finishJSTest, failAndFinishJSTest); |
| 37 |
| 38 </script> |
| 39 |
| 40 <script src="../fast/js/resources/js-test-post.js"></script> |
| 41 </body> |
OLD | NEW |