Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Unified Diff: LayoutTests/crypto/subtle/aes-gcm-failures.html

Issue 957713004: [WebCrypto] Split LayoutTests/crypto/subtle into per-algorithm directories (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated to latest master Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/crypto/subtle/aes-gcm-failures.html
diff --git a/LayoutTests/crypto/subtle/aes-gcm-failures.html b/LayoutTests/crypto/subtle/aes-gcm-failures.html
deleted file mode 100644
index 6d9e8149dffa592d6fc1abd180e9c1ff6a81f398..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/subtle/aes-gcm-failures.html
+++ /dev/null
@@ -1,79 +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-GCM");
-
-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;
- var algorithm = {name: 'aes-gcm'};
-
- debug('\nImporting AES-GCM key...');
- return crypto.subtle.importKey('raw', keyData, algorithm, extractable, usages);
-}).then(function(result) {
- key = result;
-
- debug('\nencrypt() without iv...');
- return crypto.subtle.encrypt({name: 'AES-gcm'}, key, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug('\nencrypt() with iv that is a number...');
- return crypto.subtle.encrypt({name: 'AES-gcm', iv: 3}, key, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug('\nencrypt() with iv that is a string...');
- return crypto.subtle.encrypt({name: 'AES-gcm', iv: 'foo'}, key, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug('\nencrypt() with additionalData that is a string...');
- return crypto.subtle.encrypt({name: 'AeS-gcm', iv: new Uint8Array(16), additionalData: '5'}, key, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug('\nencrypt() with tagLength that is a string...');
- return crypto.subtle.encrypt({name: 'AES-gcm', iv: new Uint8Array(16), additionalData: new Uint8Array(1), tagLength: 'foo'}, key, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug('\nencrypt() with negative tagLength...');
- return crypto.subtle.encrypt({name: 'AES-gcm', iv: new Uint8Array(16), additionalData: new Uint8Array(1), tagLength: -1}, key, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug('\nencrypt() with tagLength larger than an octet...');
- return crypto.subtle.encrypt({name: 'AES-gcm', iv: new Uint8Array(16), additionalData: new Uint8Array(1), tagLength: 8000}, key, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug('\nencrypt() with tagLength that is 0...');
- return crypto.subtle.encrypt({name: 'AES-gcm', iv: new Uint8Array(16), additionalData: new Uint8Array(1), tagLength: 0}, key, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug('\nencrypt() with tagLength that is 130...');
- return crypto.subtle.encrypt({name: 'AES-gcm', iv: new Uint8Array(16), additionalData: new Uint8Array(1), tagLength: 130}, key, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-}).then(finishJSTest, failAndFinishJSTest);
-
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698