Index: LayoutTests/crypto/aes-cbc-parseAlgorithm-failures-expected.txt |
diff --git a/LayoutTests/crypto/aes-cbc-parseAlgorithm-failures-expected.txt b/LayoutTests/crypto/aes-cbc-parseAlgorithm-failures-expected.txt |
index 226a47c3e8f319c3b223f65ad1cf2457ef28c394..3df8e297580b8379801eeb246d7f0958d204e91e 100644 |
--- a/LayoutTests/crypto/aes-cbc-parseAlgorithm-failures-expected.txt |
+++ b/LayoutTests/crypto/aes-cbc-parseAlgorithm-failures-expected.txt |
@@ -3,10 +3,22 @@ Tests bad algorithm inputs for AES-CBC |
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
+ |
+Importing AES-CBC key... |
+ |
+encrypt() with iv that is null... |
error is: TypeError: AesCbcParams: iv: Not a BufferSource |
+ |
+encrypt() without iv... |
error is: TypeError: AesCbcParams: iv: Missing required property |
+ |
+encrypt() with iv that is a number... |
error is: TypeError: AesCbcParams: iv: Not a BufferSource |
+ |
+encrypt() with an iv containing 0 bytes... |
error is: OperationError: The "iv" has an unexpected length -- must be 16 bytes |
+ |
+encrypt() with an iv containing 17 bytes... |
error is: OperationError: The "iv" has an unexpected length -- must be 16 bytes |
PASS successfullyParsed is true |