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

Unified Diff: LayoutTests/crypto/aes-generateKey.html

Issue 325323004: [webcrypto] Remove support for AES 192-bit keys (1 of 2) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/aes-generateKey.html
diff --git a/LayoutTests/crypto/aes-generateKey.html b/LayoutTests/crypto/aes-generateKey.html
index af1c9484b51475a4781526bc3f013b78c408388d..4d6fc22189ed40ce9ad2348716c03de0982035db 100644
--- a/LayoutTests/crypto/aes-generateKey.html
+++ b/LayoutTests/crypto/aes-generateKey.html
@@ -13,7 +13,7 @@ description("Tests generating AES keys");
jsTestIsAsync = true;
-// Tests the 48 permutations of keys generated by:
+// Tests the 32 permutations of keys generated by:
// kPossibleAlgorithms x kPossibleExtractable x kPossibleKeyUsages x kPossibleKeyLengths
//
// For practical reasons these tests are not exhaustive.
@@ -21,7 +21,7 @@ jsTestIsAsync = true;
var kPossibleAlgorithms = ['AES-CBC', 'AES-GCM'];
var kPossibleExtractable = [true, false];
var kPossibleKeyUsages = [[], ['encrypt'], ['decrypt', 'wrapKey'], ['encrypt', 'wrapKey', 'unwrapKey']];
-var kPossibleKeyLengths = [128, 192, 256];
+var kPossibleKeyLengths = [128, 256];
// Set of all key data generated so far.
var allKeyDataGenerated = {};
« no previous file with comments | « LayoutTests/crypto/aes-gcm-encrypt-decrypt-expected.txt ('k') | LayoutTests/crypto/aes-generateKey-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698