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

Unified Diff: LayoutTests/crypto/clone-aesKey.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/clone-aesKey.html
diff --git a/LayoutTests/crypto/clone-aesKey.html b/LayoutTests/crypto/clone-aesKey.html
index 0347f599728c6c6343ac1db32e8bb810911fe69d..26a96299210a64e2312c90aeecf0b0d8ceab4a46 100644
--- a/LayoutTests/crypto/clone-aesKey.html
+++ b/LayoutTests/crypto/clone-aesKey.html
@@ -13,19 +13,18 @@ description("Tests structured cloning of 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 kPossibleKeyData
//
// For practical reasons these tests are not exhaustive.
var k128BitData = "30112233445566778899aabbccddeeff"
-var k192BitData = "800102030405060708090a0b0c0d0e0f1011121314151617";
var k256BitData = "00112233445546778899aabbccddeeff000102030405060708090a0b0c0d0e0f";
var kPossibleAlgorithms = ['AES-CBC', 'AES-GCM'];
var kPossibleExtractable = [true, false];
var kPossibleKeyUsages = [[], ['encrypt'], ['decrypt', 'wrapKey'], ['encrypt', 'wrapKey', 'unwrapKey']];
-var kPossibleKeyData = [k128BitData, k192BitData, k256BitData];
+var kPossibleKeyData = [k128BitData, k256BitData];
function runTest(algorithmName, extractable, keyUsages, keyData)
{
« no previous file with comments | « LayoutTests/crypto/aes-kw-wrapKey-unwrapKey-raw-expected.txt ('k') | LayoutTests/crypto/clone-aesKey-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698