Index: LayoutTests/crypto/aes-ctr-parseAlgorithm-failures.html |
diff --git a/LayoutTests/crypto/aes-ctr-parseAlgorithm-failures.html b/LayoutTests/crypto/aes-ctr-parseAlgorithm-failures.html |
deleted file mode 100644 |
index 38ce269480853b0133c20d74393f7e630769d828..0000000000000000000000000000000000000000 |
--- a/LayoutTests/crypto/aes-ctr-parseAlgorithm-failures.html |
+++ /dev/null |
@@ -1,65 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../resources/js-test.js"></script> |
-<script src="resources/common.js"></script> |
-</head> |
-<body> |
-<p id="description"></p> |
-<div id="console"></div> |
- |
-<script> |
-description("Tests bad algorithm inputs for AES-CTR"); |
- |
-jsTestIsAsync = true; |
- |
-var keyData = hexStringToUint8Array("2b7e151628aed2a6abf7158809cf4f3c"); |
-var data = asciiToUint8Array("hello"); |
-var key = null; |
- |
-Promise.resolve(null).then(function(result) { |
- var usages = ['encrypt', 'decrypt']; |
- var extractable = false; |
- // FIXME: Should use aes-ctr here. |
- var algorithm = {name: 'aes-cbc'}; |
- |
- debug("\nImporting AES-CBC key..."); |
- return crypto.subtle.importKey('raw', keyData, algorithm, extractable, usages); |
-}).then(function(result) { |
- key = result; |
- |
- debug("\nencrypt() with counter null..."); |
- return crypto.subtle.encrypt({name: 'AES-CTR', counter: null}, key, data); |
-}).then(failAndFinishJSTest, function(result) { |
- logError(result); |
- |
- debug("\nencrypt() without counter..."); |
- return crypto.subtle.encrypt({name: 'AES-CTR'}, key, data); |
-}).then(failAndFinishJSTest, function(result) { |
- logError(result); |
- |
- debug("\nencrypt() without length..."); |
- return crypto.subtle.encrypt({name: 'AES-CTR', counter: new Uint8Array(0)}, key, data); |
-}).then(failAndFinishJSTest, function(result) { |
- logError(result); |
- |
- debug("\nencrypt() with a length of 256..."); |
- return crypto.subtle.encrypt({name: 'AES-CTR', counter: new Uint8Array(16), length: 256}, key, data); |
-}).then(failAndFinishJSTest, function(result) { |
- logError(result); |
- |
- debug("\nencrypt() with a length of -3..."); |
- return crypto.subtle.encrypt({name: 'AES-CTR', counter: new Uint8Array(16), length: -3}, key, data); |
-}).then(failAndFinishJSTest, function(result) { |
- logError(result); |
- |
- debug("\nencrypt() with length that is Infinity..."); |
- return crypto.subtle.encrypt({name: 'AES-CTR', counter: new Uint8Array(16), length: Infinity}, key, data); |
-}).then(failAndFinishJSTest, function(result) { |
- logError(result); |
-}).then(finishJSTest, failAndFinishJSTest); |
- |
-</script> |
- |
-</body> |
-</html> |