| OLD | NEW |
| (Empty) |
| 1 Tests generateKey() with bad AES-CBC parameters. | |
| 2 | |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | |
| 4 | |
| 5 | |
| 6 | |
| 7 generateKey() with invalid keyUsages value that is -1... | |
| 8 error is: TypeError: Failed to execute 'generateKey' on 'SubtleCrypto': The 3rd
argument is neither an array, nor does it have indexed properties. | |
| 9 | |
| 10 generateKey() with invalid keyUsages value that is null... | |
| 11 error is: TypeError: Failed to execute 'generateKey' on 'SubtleCrypto': The 3rd
argument is neither an array, nor does it have indexed properties. | |
| 12 | |
| 13 generateKey() with an invalid key usage of 'boo'... | |
| 14 error is: TypeError: Invalid keyUsages argument | |
| 15 | |
| 16 generateKey() without length... | |
| 17 error is: TypeError: AesKeyGenParams: length: Missing required property | |
| 18 | |
| 19 generateKey() with a length of 70000... | |
| 20 error is: TypeError: AesKeyGenParams: length: Outside of numeric range | |
| 21 | |
| 22 generateKey() with a length of -3... | |
| 23 error is: TypeError: AesKeyGenParams: length: Outside of numeric range | |
| 24 | |
| 25 generateKey() with length that is minus Infinity... | |
| 26 error is: TypeError: AesKeyGenParams: length: Outside of numeric range | |
| 27 PASS successfullyParsed is true | |
| 28 | |
| 29 TEST COMPLETE | |
| 30 | |
| OLD | NEW |